diff --git a/ansible/roles/ckan-config/templates/ckan.ini.j2 b/ansible/roles/ckan-config/templates/ckan.ini.j2 index 25d0ed609..7eee25751 100755 --- a/ansible/roles/ckan-config/templates/ckan.ini.j2 +++ b/ansible/roles/ckan-config/templates/ckan.ini.j2 @@ -81,15 +81,15 @@ ckan.feeds.author_link = scheming.presets = ckanext.scheming:presets.json ckanext.fluent:presets.json - ckanext.sixodp_scheming:presets.json + ckanext.sixodp:presets.json -scheming.dataset_schemas = ckanext.sixodp_scheming.schemas:dataset.json +scheming.dataset_schemas = ckanext.sixodp.schemas:dataset.json ckanext.sixodp_showcase.schemas:showcase.json -scheming.group_schemas = ckanext.sixodp_scheming.schemas:group.json +scheming.group_schemas = ckanext.sixodp.schemas:group.json ckanext.collection.schemas:collection.json -licenses_group_url = file://{{ckanext_sync_path}}/ckanext-sixodp_scheming/ckanext/sixodp_scheming/licenses/licenses.json +licenses_group_url = file://{{ckanext_sync_path}}/ckanext-sixodp/ckanext/sixodp/licenses/licenses.json ckanext.sixodp.cms_site_url = {{ cms_site_url }} ckanext.sixodp.wp_api_base_url = /wp-json/wp/v2 diff --git a/ansible/vars/environment-specific/build.yml b/ansible/vars/environment-specific/build.yml index e32d6ace1..b7bf3bfda 100644 --- a/ansible/vars/environment-specific/build.yml +++ b/ansible/vars/environment-specific/build.yml @@ -89,7 +89,6 @@ wordpress_users: email: admin@localhost.localdomain ckan_extensions: - - ckanext-sixodp_scheming - ckanext-sixodp - ckanext-sixodp_showcase - ckanext-scheming @@ -128,7 +127,6 @@ enabled_ckan_extensions: - disqus - datastore - datasetcopy - - sixodp_scheming - scheming_datasets - scheming_groups - fluent diff --git a/ansible/vars/environment-specific/generic-qa.yml b/ansible/vars/environment-specific/generic-qa.yml index 5c2885a43..0789e9428 100755 --- a/ansible/vars/environment-specific/generic-qa.yml +++ b/ansible/vars/environment-specific/generic-qa.yml @@ -101,7 +101,6 @@ ckan_admins: - "{{ ckan_users.harvest.username }}" ckan_extensions: - - ckanext-sixodp_scheming - ckanext-sixodp - ckanext-sixodp_showcase - ckanext-scheming @@ -145,7 +144,6 @@ enabled_ckan_extensions: - disqus - datastore - datasetcopy - - sixodp_scheming - scheming_datasets - scheming_groups - fluent diff --git a/ansible/vars/environment-specific/vagrant.yml b/ansible/vars/environment-specific/vagrant.yml index 61e113ada..4f213f522 100644 --- a/ansible/vars/environment-specific/vagrant.yml +++ b/ansible/vars/environment-specific/vagrant.yml @@ -87,7 +87,6 @@ ckan_admins: - "{{ ckan_users.harvest.username }}" ckan_extensions: - - ckanext-sixodp_scheming - ckanext-sixodp - ckanext-sixodp_showcase - ckanext-scheming @@ -131,7 +130,6 @@ enabled_ckan_extensions: - disqus - datastore - datasetcopy - - sixodp_scheming - scheming_datasets - scheming_groups - fluent diff --git a/ckanext/ckanext-sixodp/.tx/config b/ckanext/ckanext-sixodp/.tx/config index 300d42c2a..efe51b98e 100644 --- a/ckanext/ckanext-sixodp/.tx/config +++ b/ckanext/ckanext-sixodp/.tx/config @@ -1,8 +1,9 @@ [main] host = https://www.transifex.com -[sixodp.ckanext-sixodp] +[o:6aika-dataportal:p:sixodp:r:ckanext-sixodp] file_filter = ckanext/sixodp/i18n//LC_MESSAGES/ckanext-sixodp.po source_file = ckanext/sixodp/i18n/ckanext-sixodp.pot source_lang = en -type = PO \ No newline at end of file +type = PO + diff --git a/ckanext/ckanext-sixodp/ckanext/sixodp/helpers.py b/ckanext/ckanext-sixodp/ckanext/sixodp/helpers.py index fdfbd7fb6..b25adbadd 100644 --- a/ckanext/ckanext-sixodp/ckanext/sixodp/helpers.py +++ b/ckanext/ckanext-sixodp/ckanext/sixodp/helpers.py @@ -9,6 +9,7 @@ import ckan.plugins.toolkit as tk from ckan.model.package import Package from ckan.lib.dictization.model_dictize import group_list_dictize +from ckan.plugins import toolkit from ckanext.scheming.helpers import lang from ckan.common import _, c @@ -327,4 +328,141 @@ def get_created_or_updated(pkg_or_res): return newer def get_cookiehub_domain_code(): - return config.get('ckanext.sixodp.cookiehub_domain_code') \ No newline at end of file + return config.get('ckanext.sixodp.cookiehub_domain_code') + + + +def call_toolkit_function(fn, args, kwargs): + return getattr(toolkit,fn)(*args, **kwargs) + + +def add_locale_to_source(kwargs, locale): + copy = kwargs.copy() + source = copy.get('data-module-source', None) + if source: + copy.update({'data-module-source': source + '_' + locale}) + return copy + return copy + +def get_current_lang(): + return i18n.get_lang() + + +def scheming_field_only_default_required(field, lang): + + if field and field.get('only_default_lang_required') and lang == config.get('ckan.locale_default', 'en'): + return True + + return False + +def get_current_date(): + import datetime + return datetime.date.today().strftime("%d.%m.%Y") + +def get_package_groups_by_type(package_id, group_type): + context = {'model': model, 'session': model.Session, + 'for_view': True, 'use_cache': False} + + group_list = [] + + data_dict = { + 'all_fields': True, + 'include_extras': True, + 'type': group_type + } + + groups = logic.get_action('group_list')(context, data_dict) + + try: + pkg_obj = Package.get(package_id) + pkg_group_ids = set(group['id'] for group in group_list_dictize(pkg_obj.get_groups(group_type, None), context)) + group_list = [group + for group in groups if + group['id'] in pkg_group_ids] + except (NotFound): + abort(404, _('Dataset not found')) + + return group_list + + +def get_lang_prefix(): + language = i18n.get_lang() + if language in _LOCALE_ALIASES: + language = _LOCALE_ALIASES[language] + + return language + +def get_translated_or_default_locale(data_dict, field): + language = i18n.get_lang() + if language in _LOCALE_ALIASES: + language = _LOCALE_ALIASES[language] + + try: + value = data_dict[field+'_translated'][language] + if value: + return value + else: + return data_dict[field+'_translated'][config.get('ckan.locale_default', 'en')] + except KeyError: + return data_dict.get(field, '') + + +def show_qa(): + + from ckan.plugins import plugin_loaded + + if plugin_loaded('qa'): + return True + + return False + + +def scheming_category_list(args): + from ckan.logic import NotFound + # FIXME: sometimes this might return 0 categories if in development + + try: + context = {'model': model, 'session': model.Session, 'ignore_auth': True} + group_ids = get_action('group_list')(context, {}) + except NotFound: + return None + else: + category_list = [] + + # filter groups to those user is allowed to edit + group_authz = get_action('group_list_authz')({ + 'model': model, 'session': model.Session, 'user': c.user + }, {}) + + user_group_ids = set(group[u'name'] for group in group_authz) + group_ids = [group for group in group_ids if group in user_group_ids] + + for group in group_ids: + try: + context = {'model': model, 'session': model.Session, 'ignore_auth': True} + group_details = get_action('group_show')(context, {'id': group}) + except Exception as e: + log.error(e) + return None + + category_list.append({ + "value": group, + "label": group_details.get('title') + }) + + return category_list + + +def check_group_selected(val, data): + log.info(val) + log.info(data) + + if filter(lambda x: x['name'] == val, data): + return True + return False + + +def get_field_from_schema(schema, field_name): + + field = next(field for field in schema.get('dataset_fields', []) if field.get('field_name') == field_name) + return field \ No newline at end of file diff --git a/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/ckanext-sixodp.pot b/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/ckanext-sixodp.pot new file mode 100644 index 000000000..7006b6dfd --- /dev/null +++ b/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/ckanext-sixodp.pot @@ -0,0 +1,1687 @@ +# Translations template for ckanext-sixodp. +# Copyright (C) 2022 ORGANIZATION +# This file is distributed under the same license as the ckanext-sixodp project. +# FIRST AUTHOR , 2022. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckanext-sixodp 0.0.1\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2022-12-19 08:02+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" + +#: ckanext/sixodp/helpers.py:177 ckanext/sixodp/helpers.py:383 +msgid "Dataset not found" +msgstr "" + +#: ckanext/sixodp/helpers.py:288 +msgid "Show submenu for " +msgstr "" + +#: ckanext/sixodp/plugin.py:236 ckanext/sixodp/plugin.py:247 +#: ckanext/sixodp/plugin.py:257 +msgid "Formats" +msgstr "" + +#: ckanext/sixodp/plugin.py:237 ckanext/sixodp/plugin.py:248 +#: ckanext/sixodp/plugin.py:258 ckanext/sixodp/translations.py:31 +msgid "Geographical Coverage" +msgstr "" + +#: ckanext/sixodp/plugin.py:238 ckanext/sixodp/plugin.py:249 +#: ckanext/sixodp/plugin.py:259 ckanext/sixodp/templates/package/group_list.html:5 +#: ckanext/sixodp/templates/package/read_base.html:41 +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:114 +msgid "Groups" +msgstr "" + +#: ckanext/sixodp/plugin.py:239 ckanext/sixodp/plugin.py:250 +#: ckanext/sixodp/plugin.py:260 +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:44 +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:46 +msgid "Organizations" +msgstr "" + +#: ckanext/sixodp/plugin.py:240 ckanext/sixodp/plugin.py:251 +#: ckanext/sixodp/plugin.py:261 ckanext/sixodp/templates/package/read_base.html:42 +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:129 +msgid "Collections" +msgstr "" + +#: ckanext/sixodp/translations.py:8 +msgid "Broken links" +msgstr "" + +#: ckanext/sixodp/translations.py:9 +msgid "Dataset resource URLs that are found to result in errors when resolved." +msgstr "" + +#: ckanext/sixodp/translations.py:10 +msgid "Openness (Five Stars)" +msgstr "" + +#: ckanext/sixodp/translations.py:11 +msgid "" +"Datasets graded on Tim Berners Lees' Five Stars of Openness - openly " +"licensed, openly accessible, structured, open format, URIs for entities, " +"linked." +msgstr "" + +#: ckanext/sixodp/translations.py:13 +msgid "Most popular datasets" +msgstr "" + +#: ckanext/sixodp/translations.py:14 +msgid "Google analytics showing top datasets with most views" +msgstr "" + +#: ckanext/sixodp/translations.py:15 +msgid "Most popular resources" +msgstr "" + +#: ckanext/sixodp/translations.py:16 +msgid "Google analytics showing most downloaded resources" +msgstr "" + +#: ckanext/sixodp/translations.py:17 +msgid "Publisher activity" +msgstr "" + +#: ckanext/sixodp/translations.py:18 +msgid "A quarterly list of datasets created and edited by a publisher." +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/view_form.html:8 +#: ckanext/sixodp/translations.py:20 +msgid "Title" +msgstr "" + +#: ckanext/sixodp/translations.py:21 +msgid "eg. A descriptive title for the dataset" +msgstr "" + +#: ckanext/sixodp/translations.py:22 +msgid "" +"A short and descriptive title for the dataset in multiple languages. Try not " +"to use dates when naming a dataset, since data from multiple years will " +"usually be published as multiple resources in one dataset." +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.js:20 +#: ckanext/sixodp/fanstatic/javascript/modules/slug-preview.js:35 +#: ckanext/sixodp/fanstatic/javascript/modules/slug-preview.min.js:1 +#: ckanext/sixodp/templates/package/snippets/resource_form.html:24 +#: ckanext/sixodp/translations.py:24 ckanext/sixodp/translations.py:96 +msgid "URL" +msgstr "" + +#: ckanext/sixodp/translations.py:25 +msgid "" +"An URL-address which refers to the dataset. The automatically filled option " +"derived from the title is the best option in most cases." +msgstr "" + +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:61 +#: ckanext/sixodp/templates/snippets/tag_list.html:4 +#: ckanext/sixodp/translations.py:27 +msgid "Tags" +msgstr "" + +#: ckanext/sixodp/translations.py:28 +msgid "E.g. transport, housing, buildings" +msgstr "" + +#: ckanext/sixodp/translations.py:29 +msgid "" +"Descriptive keywords or tags through which users are able to find this " +"dataset easily through the search. The input will suggest existing keywords " +"in the portal. New keywords should utilize ontologies such as the generic " +"finnish ontology YSO: finto.fi/yso/fi." +msgstr "" + +#: ckanext/sixodp/translations.py:32 +msgid "eg. tampere" +msgstr "" + +#: ckanext/sixodp/translations.py:33 +msgid "Select the municipalities from which the dataset contains data." +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:32 +#: ckanext/sixodp/templates/package/snippets/view_form.html:9 +#: ckanext/sixodp/translations.py:35 ckanext/sixodp/translations.py:105 +msgid "Description" +msgstr "" + +#: ckanext/sixodp/translations.py:36 +msgid "E.g. A diverse and detailed description" +msgstr "" + +#: ckanext/sixodp/translations.py:37 +msgid "eg. A detailed description" +msgstr "" + +#: ckanext/sixodp/translations.py:38 +msgid "" +"An universal and easy to understand, but also diverse description of the " +"added dataset. Describe the dataset creation process, use case and possible " +"limitations and shortcomings as well as possible." +msgstr "" + +#: ckanext/sixodp/translations.py:40 +msgid "Links to additional information concerning the dataset" +msgstr "" + +#: ckanext/sixodp/translations.py:41 +msgid "" +"You may attach external websites or other documentation which could assist in" +" interpreting the dataset." +msgstr "" + +#: ckanext/sixodp/translations.py:43 +msgid "Organization" +msgstr "" + +#: ckanext/sixodp/translations.py:44 +msgid "The organization which owns the dataset." +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:18 +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:185 +#: ckanext/sixodp/translations.py:46 +msgid "Source" +msgstr "" + +#: ckanext/sixodp/translations.py:47 +msgid "http://example.com/dataset.json" +msgstr "" + +#: ckanext/sixodp/translations.py:48 +msgid "" +"The original author of the dataset. Can also be an external author such as " +"Statistics Finland. The field can e.g. be used to describe a situation where " +"the dataset is published by a single unit but it has multiple authors." +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:41 +#: ckanext/sixodp/templates/package/snippets/additional_info.html:46 +#: ckanext/sixodp/translations.py:50 +msgid "Maintainer" +msgstr "" + +#: ckanext/sixodp/translations.py:51 +msgid "Joe Bloggs" +msgstr "" + +#: ckanext/sixodp/translations.py:52 +msgid "" +"The technical maintainer for the dataset. Can in practice be the maintaining " +"unit, bureau or as an exception a single employee." +msgstr "" + +#: ckanext/sixodp/translations.py:54 +msgid "Maintainer Email" +msgstr "" + +#: ckanext/sixodp/translations.py:55 +msgid "Maintainer email address" +msgstr "" + +#: ckanext/sixodp/translations.py:56 +msgid "" +"The email address for the maintaining party for the dataset. Use a mailing " +"list or other similar means to direct the message to multiple recipients." +msgstr "" + +#: ckanext/sixodp/translations.py:58 +msgid "Maintainer Website" +msgstr "" + +#: ckanext/sixodp/translations.py:59 +msgid "http://www.example.com" +msgstr "" + +#: ckanext/sixodp/templates/scheming/form_snippets/private.html:2 +#: ckanext/sixodp/translations.py:61 +msgid "Visibility" +msgstr "" + +#: ckanext/sixodp/translations.py:62 +msgid "" +"Private datasets will only be seen by the logged in users of the dataset's " +"organization. The private status is used when preparing a new dataset for " +"publication." +msgstr "" + +#: ckanext/sixodp/translations.py:64 +msgid "Published" +msgstr "" + +#: ckanext/sixodp/translations.py:65 +msgid "The resource publication date." +msgstr "" + +#: ckanext/sixodp/translations.py:66 +msgid "The dataset publication date." +msgstr "" + +#: ckanext/sixodp/translations.py:68 +msgid "Updated" +msgstr "" + +#: ckanext/sixodp/translations.py:69 +msgid "The resource update date." +msgstr "" + +#: ckanext/sixodp/translations.py:70 +msgid "" +"A manually maintained date which can be used to notify when the dataset has " +"been updated." +msgstr "" + +#: ckanext/sixodp/translations.py:72 +msgid "Update Frequency" +msgstr "" + +#: ckanext/sixodp/translations.py:73 +msgid "eg. every second week" +msgstr "" + +#: ckanext/sixodp/translations.py:74 +msgid "" +"The supposed update frequency for the dataset. The field will suggest similar" +" values used in other datasets such as yearly, monthly or realtime. A new " +"value can also be created if required." +msgstr "" + +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:177 +#: ckanext/sixodp/templates/snippets/license.html:21 +#: ckanext/sixodp/translations.py:76 +msgid "License" +msgstr "" + +#: ckanext/sixodp/translations.py:78 +msgid "Reminder date" +msgstr "" + +#: ckanext/sixodp/translations.py:79 +msgid "" +"A date when a reminder email will be sent to the system administrator " +"reminding to check this dataset e.g. for a yearly update." +msgstr "" + +#: ckanext/sixodp/translations.py:81 +msgid "Global ID" +msgstr "" + +#: ckanext/sixodp/translations.py:82 +msgid "A global id can be assigned to identify the dataset in external services." +msgstr "" + +#: ckanext/sixodp/translations.py:84 +msgid "Search Synonyms" +msgstr "" + +#: ckanext/sixodp/translations.py:85 +msgid "" +"Keywords can be provided here to improve the findability of the dataset. E.g." +" words from spoken language can be provided to make the dataset searchable by" +" those words." +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/package_form.html:5 +#: ckanext/sixodp/translations.py:87 +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 "" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:28 +#: ckanext/sixodp/translations.py:93 +msgid "Name" +msgstr "" + +#: ckanext/sixodp/translations.py:94 +msgid "A short and descriptive name for the resource." +msgstr "" + +#: ckanext/sixodp/translations.py:97 +msgid "A file or url which describes the location of the desired resource file." +msgstr "" + +#: ckanext/sixodp/templates/scheming/package/resource_read.html:34 +#: ckanext/sixodp/translations.py:99 +msgid "Size" +msgstr "" + +#: ckanext/sixodp/translations.py:100 +msgid "" +"Size of the added resouce file in bytes. Will be automatically filled when " +"the file is uploaded." +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:37 +#: ckanext/sixodp/templates/scheming/package/resource_read.html:27 +#: ckanext/sixodp/translations.py:102 +msgid "Format" +msgstr "" + +#: ckanext/sixodp/translations.py:103 +msgid "File format of the selected resource." +msgstr "" + +#: ckanext/sixodp/translations.py:106 +msgid "" +"An universal, compact and easy to understand description of the added " +"resource." +msgstr "" + +#: ckanext/sixodp/translations.py:108 +msgid "Position coordinates" +msgstr "" + +#: ckanext/sixodp/translations.py:109 +msgid "" +"Coordinates which describe the area which the added resource is associated " +"with." +msgstr "" + +#: ckanext/sixodp/translations.py:111 +msgid "Time series start" +msgstr "" + +#: ckanext/sixodp/translations.py:112 +msgid "A moment in time after which the data is relevant." +msgstr "" + +#: ckanext/sixodp/translations.py:114 +msgid "Time series end" +msgstr "" + +#: ckanext/sixodp/translations.py:115 +msgid "A moment in time after which the data is no longer relevant." +msgstr "" + +#: ckanext/sixodp/translations.py:117 +msgid "Time Series Precision" +msgstr "" + +#: ckanext/sixodp/translations.py:118 +msgid "eg. 2 weeks" +msgstr "" + +#: ckanext/sixodp/translations.py:119 +msgid "A string which describes the precision of the entered time series." +msgstr "" + +#: ckanext/sixodp/translations.py:122 +msgid "Creative Commons Attribution 4.0" +msgstr "" + +#: ckanext/sixodp/translations.py:123 +msgid "https://creativecommons.org/licenses/by/4.0/" +msgstr "" + +#: ckanext/sixodp/translations.py:125 +msgid "CC0 1.0" +msgstr "" + +#: ckanext/sixodp/translations.py:126 +msgid "https://creativecommons.org/publicdomain/zero/1.0/" +msgstr "" + +#: ckanext/sixodp/translations.py:128 +msgid "Other (Open)" +msgstr "" + +#: ckanext/sixodp/translations.py:130 +msgid "Parent" +msgstr "" + +#: ckanext/sixodp/translations.py:131 +msgid "None - top level" +msgstr "" + +#: ckanext/sixodp/translations.py:132 +msgid "Icon URL" +msgstr "" + +#: ckanext/sixodp/translations.py:133 +msgid "My Group" +msgstr "" + +#: ckanext/sixodp/validators.py:95 +msgid "Missing value" +msgstr "" + +#: ckanext/sixodp/validators.py:190 +msgid "expecting list of strings" +msgstr "" + +#: ckanext/sixodp/validators.py:196 +#, python-format +msgid "invalid type for repeating text: %r" +msgstr "" + +#: ckanext/sixodp/validators.py:203 +#, python-format +msgid "invalid encoding for \"%s\" value" +msgstr "" + +#: ckanext/sixodp/validators.py:265 +msgid "Failed to decode JSON string" +msgstr "" + +#: ckanext/sixodp/validators.py:268 +msgid "Invalid encoding for JSON string" +msgstr "" + +#: ckanext/sixodp/validators.py:271 +msgid "expecting JSON object" +msgstr "" + +#: ckanext/sixodp/validators.py:277 ckanext/sixodp/validators.py:284 +#, python-format +msgid "Required language \"%s\" missing" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/activity-stream.js:20 +#: ckanext/sixodp/fanstatic/javascript/modules/activity-stream.min.js:1 +#: ckanext/sixodp/fanstatic/javascript/modules/popover-context.js:45 +#: ckanext/sixodp/fanstatic/javascript/modules/popover-context.min.js:1 +#: ckanext/sixodp/templates/package/snippets/data_api_button.html:8 +#: ckanext/sixodp/templates/package/snippets/resource_item.html:26 +msgid "Loading..." +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/api-info.js:20 +#: ckanext/sixodp/fanstatic/javascript/modules/api-info.min.js:1 +msgid "There is no API data to load for this resource" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/api-info.js:21 +#: ckanext/sixodp/fanstatic/javascript/modules/api-info.min.js:1 +msgid "Failed to load data API information" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/autocomplete.js:31 +#: ckanext/sixodp/fanstatic/javascript/modules/autocomplete.min.js:1 +msgid "No matches found" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/autocomplete.js:32 +#: ckanext/sixodp/fanstatic/javascript/modules/autocomplete.min.js:1 +msgid "Start typing…" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/autocomplete.js:34 +#: ckanext/sixodp/fanstatic/javascript/modules/autocomplete.min.js:1 +msgid "Input is too short, must be at least one character" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/basic-form.js:4 +#: ckanext/sixodp/fanstatic/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/confirm-action.js:7 +#: ckanext/sixodp/fanstatic/javascript/modules/confirm-action.min.js:1 +msgid "Please Confirm Action" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/confirm-action.js:8 +#: ckanext/sixodp/fanstatic/javascript/modules/confirm-action.min.js:1 +msgid "Are you sure you want to perform this action?" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/confirm-action.js:9 +#: ckanext/sixodp/fanstatic/javascript/modules/confirm-action.min.js:1 +msgid "Confirm" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/confirm-action.js:10 +#: ckanext/sixodp/fanstatic/javascript/modules/confirm-action.min.js:1 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-reorder.js:11 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-reorder.min.js:1 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-view-reorder.js:11 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-view-reorder.min.js:1 +#: ckanext/sixodp/templates/package/confirm_delete.html:15 +msgid "Cancel" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/follow.js:23 +#: ckanext/sixodp/fanstatic/javascript/modules/follow.min.js:1 +msgid "Follow" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/follow.js:24 +#: ckanext/sixodp/fanstatic/javascript/modules/follow.min.js:1 +msgid "Unfollow" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.js:16 +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.min.js:1 +msgid "Upload" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.js:17 +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.min.js:1 +msgid "Link" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.js:18 +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.min.js:1 +#: ckanext/sixodp/templates/group/snippets/group_item.html:41 +#: ckanext/sixodp/templates/scheming/macros/form.html:10 +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:71 +msgid "Remove" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.js:19 +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.min.js:1 +msgid "Image" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.js:21 +msgid "File" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.js:22 +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.min.js:1 +msgid "Upload a file on your computer" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.js:23 +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.min.js:1 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/related-item.js:25 +#: ckanext/sixodp/fanstatic/javascript/modules/related-item.min.js:1 +msgid "show more" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/related-item.js:26 +#: ckanext/sixodp/fanstatic/javascript/modules/related-item.min.js:1 +msgid "show less" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-reorder.js:8 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-reorder.js:9 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-reorder.min.js:1 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-view-reorder.js:9 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-reorder.js:10 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-reorder.min.js:1 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-view-reorder.js:10 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.js:25 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.js:26 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.js:27 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.min.js:1 +msgid "Resource uploaded" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.js:28 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.min.js:1 +msgid "Unable to upload file" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.js:29 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.min.js:1 +msgid "Unable to authenticate upload" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.js:30 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.min.js:1 +msgid "Unable to get data for uploaded file" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.js:31 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.min.js:1 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-view-reorder.js:8 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-view-reorder.min.js:1 +msgid "Reorder resource view" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/slug-preview.js:36 +#: ckanext/sixodp/fanstatic/javascript/modules/slug-preview.min.js:1 +#: ckanext/sixodp/templates/ckanext_pages/blog.html:12 +#: ckanext/sixodp/templates/organization/bulk_process.html:69 +#: ckanext/sixodp/templates/showcase/edit_base.html:14 +msgid "Edit" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/table-toggle-more.js:9 +#: ckanext/sixodp/fanstatic/javascript/modules/table-toggle-more.min.js:1 +#: ckanext/sixodp/templates/package/resource_read.html:131 +#: ckanext/sixodp/templates/scheming/package/read.html:18 +#: ckanext/sixodp/templates/snippets/facet_list.html:36 +msgid "Show more" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/table-toggle-more.js:10 +#: ckanext/sixodp/fanstatic/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "" + +#: ckanext/sixodp/templates/footer.html:9 +msgid "Data portal" +msgstr "" + +#: ckanext/sixodp/templates/footer.html:12 +msgid "Content management" +msgstr "" + +#: ckanext/sixodp/templates/footer.html:16 +msgid "Management" +msgstr "" + +#: ckanext/sixodp/templates/footer.html:33 +msgid "Follow us" +msgstr "" + +#: ckanext/sixodp/templates/sixodp_header.html:26 +msgid "Skip to content" +msgstr "" + +#: ckanext/sixodp/templates/admin/config.html:7 +msgid "Service message" +msgstr "" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:36 +msgid "Endpoints" +msgstr "" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:41 +msgid "The Data API can be accessed via the following actions of the CKAN action API." +msgstr "" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:46 +msgid "Query" +msgstr "" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:50 +msgid "Query (via SQL)" +msgstr "" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:62 +msgid "Querying" +msgstr "" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:67 +msgid "Query example (first 5 results)" +msgstr "" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:72 +msgid "Query example (results containing 'my_resource_query')" +msgstr "" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:77 +msgid "Query example (via SQL statement)" +msgstr "" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:89 +msgid "Example: Javascript" +msgstr "" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:94 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "" + +#: ckanext/sixodp/templates/ckanext_pages/blog.html:4 +#: ckanext/sixodp/templates/ckanext_pages/blog_list.html:11 +msgid "Articles" +msgstr "" + +#: ckanext/sixodp/templates/ckanext_pages/blog.html:28 +#: ckanext/sixodp/templates/ckanext_pages/snippets/pages_list.html:51 +#: ckanext/sixodp/templates/ckanext_pages/snippets/pages_list.html:71 +msgid "This page currently has no content" +msgstr "" + +#: ckanext/sixodp/templates/ckanext_pages/blog_list.html:5 +msgid "Add Article" +msgstr "" + +#: ckanext/sixodp/templates/ckanext_pages/blog_list.html:15 +msgid "Blog" +msgstr "" + +#: ckanext/sixodp/templates/ckanext_pages/pages_edit.html:5 +msgid "Add page" +msgstr "" + +#: ckanext/sixodp/templates/ckanext_pages/snippets/pages_list.html:80 +msgid "There are currently no blog articles here" +msgstr "" + +#: ckanext/sixodp/templates/ckanext_pages/snippets/pages_list.html:82 +msgid "There are currently no pages here" +msgstr "" + +#: ckanext/sixodp/templates/collection/index.html:7 +msgid "Search collections..." +msgstr "" + +#: ckanext/sixodp/templates/group/index.html:7 +#: ckanext/sixodp/templates/group/index.html:15 +msgid "Search groups..." +msgstr "" + +#: ckanext/sixodp/templates/group/index.html:15 +#: ckanext/sixodp/templates/group/read.html:15 +#: ckanext/sixodp/templates/organization/bulk_process.html:21 +#: ckanext/sixodp/templates/organization/read.html:15 +#: ckanext/sixodp/templates/package/search.html:42 +#: ckanext/sixodp/templates/showcase/manage_datasets.html:25 +#: ckanext/sixodp/templates/showcase/search.html:13 +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:30 +msgid "Name Ascending" +msgstr "" + +#: ckanext/sixodp/templates/group/index.html:15 +#: ckanext/sixodp/templates/group/read.html:16 +#: ckanext/sixodp/templates/organization/bulk_process.html:22 +#: ckanext/sixodp/templates/organization/read.html:16 +#: ckanext/sixodp/templates/package/search.html:43 +#: ckanext/sixodp/templates/showcase/manage_datasets.html:26 +#: ckanext/sixodp/templates/showcase/search.html:14 +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:30 +msgid "Name Descending" +msgstr "" + +#: ckanext/sixodp/templates/group/read.html:12 +#: ckanext/sixodp/templates/organization/read.html:12 +msgid "Last Created" +msgstr "" + +#: ckanext/sixodp/templates/group/read.html:13 +#: ckanext/sixodp/templates/organization/read.html:13 +#: ckanext/sixodp/templates/package/search.html:40 +#: ckanext/sixodp/templates/showcase/manage_datasets.html:28 +#: ckanext/sixodp/templates/showcase/search.html:16 +#: ckanext/sixodp/templates/snippets/package_item.html:81 +msgid "Popular" +msgstr "" + +#: ckanext/sixodp/templates/group/read.html:14 +#: ckanext/sixodp/templates/organization/read.html:14 +#: ckanext/sixodp/templates/package/search.html:41 +#: ckanext/sixodp/templates/showcase/manage_datasets.html:24 +#: ckanext/sixodp/templates/showcase/search.html:12 +msgid "Relevance" +msgstr "" + +#: ckanext/sixodp/templates/group/read.html:17 +#: ckanext/sixodp/templates/organization/bulk_process.html:23 +#: ckanext/sixodp/templates/organization/read.html:17 +#: ckanext/sixodp/templates/package/search.html:44 +#: ckanext/sixodp/templates/package/snippets/resource_form.html:51 +#: ckanext/sixodp/templates/showcase/manage_datasets.html:27 +#: ckanext/sixodp/templates/showcase/search.html:15 +msgid "Last Modified" +msgstr "" + +#: ckanext/sixodp/templates/group/read.html:19 +#: ckanext/sixodp/templates/organization/read.html:19 +#: ckanext/sixodp/templates/package/search.html:11 +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:3 +msgid "Search datasets..." +msgstr "" + +#: ckanext/sixodp/templates/group/read.html:25 +#: ckanext/sixodp/templates/organization/read.html:30 +#: ckanext/sixodp/templates/package/search.html:88 +msgid "Filter results" +msgstr "" + +#: ckanext/sixodp/templates/group/read_base.html:4 +#: ckanext/sixodp/templates/group/snippets/info.html:12 +#: ckanext/sixodp/templates/organization/bulk_process.html:14 +msgid "Datasets" +msgstr "" + +#: ckanext/sixodp/templates/group/read_base.html:5 +#: ckanext/sixodp/templates/package/activity.html:3 +#: ckanext/sixodp/templates/package/read_base.html:39 +msgid "Activity Stream" +msgstr "" + +#: ckanext/sixodp/templates/group/snippets/group_item.html:29 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "" +msgstr[1] "" + +#: ckanext/sixodp/templates/group/snippets/group_item.html:31 +msgid "0 Datasets" +msgstr "" + +#: ckanext/sixodp/templates/group/snippets/group_item.html:36 +#: ckanext/sixodp/templates/group/snippets/group_item.html:37 +msgid "View {name}" +msgstr "" + +#: ckanext/sixodp/templates/group/snippets/group_item.html:41 +msgid "Remove dataset from this group" +msgstr "" + +#: ckanext/sixodp/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "" + +#: ckanext/sixodp/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 "" + +#: ckanext/sixodp/templates/home/snippets/sixodp_language-changer.html:6 +msgid "In Finnish" +msgstr "" + +#: ckanext/sixodp/templates/home/snippets/sixodp_language-changer.html:12 +msgid "In English" +msgstr "" + +#: ckanext/sixodp/templates/home/snippets/sixodp_language-changer.html:18 +msgid "In Swedish" +msgstr "" + +#: ckanext/sixodp/templates/home/snippets/sixodp_navbar_search.html:4 +#: ckanext/sixodp/templates/home/snippets/sixodp_navbar_search.html:11 +#: ckanext/sixodp/templates/snippets/search_form.html:5 +#: ckanext/sixodp/templates/snippets/search_input.html:18 +msgid "Search" +msgstr "" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:12 +msgid "Sysadmin settings" +msgstr "" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:14 +msgid "Admin" +msgstr "" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:18 +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:20 +msgid "Dataset Editor" +msgstr "" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:26 +msgid "View profile" +msgstr "" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:35 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "" +msgstr[1] "" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:38 +msgid "Dashboard" +msgstr "" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:56 +#: ckanext/sixodp/templates/user/dashboard.html:8 +msgid "Edit settings" +msgstr "" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:58 +msgid "Settings" +msgstr "" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:65 +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:67 +msgid "Log out" +msgstr "" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:76 +msgid "Log in" +msgstr "" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:78 +msgid "Register" +msgstr "" + +#: ckanext/sixodp/templates/organization/bulk_process.html:5 +msgid "Edit datasets" +msgstr "" + +#: ckanext/sixodp/templates/organization/bulk_process.html:10 +msgid " found for \"{query}\"" +msgstr "" + +#: ckanext/sixodp/templates/organization/bulk_process.html:12 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "" + +#: ckanext/sixodp/templates/organization/bulk_process.html:41 +msgid "Make public" +msgstr "" + +#: ckanext/sixodp/templates/organization/bulk_process.html:45 +msgid "Make private" +msgstr "" + +#: ckanext/sixodp/templates/organization/bulk_process.html:51 +#: ckanext/sixodp/templates/package/snippets/resource_form.html:65 +msgid "Delete" +msgstr "" + +#: ckanext/sixodp/templates/organization/bulk_process.html:74 +#: ckanext/sixodp/templates/package/read_base.html:15 +#: ckanext/sixodp/templates/showcase/read.html:20 +#: ckanext/sixodp/templates/snippets/package_item.html:69 +msgid "Draft" +msgstr "" + +#: ckanext/sixodp/templates/organization/bulk_process.html:76 +#: ckanext/sixodp/templates/package/read_base.html:20 +#: ckanext/sixodp/templates/scheming/form_snippets/state.html:7 +#: ckanext/sixodp/templates/snippets/package_item.html:71 +msgid "Deleted" +msgstr "" + +#: ckanext/sixodp/templates/organization/bulk_process.html:79 +#: ckanext/sixodp/templates/package/read.html:11 +#: ckanext/sixodp/templates/scheming/form_snippets/private.html:5 +#: ckanext/sixodp/templates/showcase/read.html:13 +#: ckanext/sixodp/templates/snippets/package_item.html:62 +msgid "Private" +msgstr "" + +#: ckanext/sixodp/templates/organization/bulk_process.html:92 +msgid "This organization has no datasets associated to it" +msgstr "" + +#: ckanext/sixodp/templates/organization/index.html:7 +#: ckanext/sixodp/templates/organization/index.html:15 +msgid "Search organizations..." +msgstr "" + +#: ckanext/sixodp/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "" + +#: ckanext/sixodp/templates/package/confirm_delete.html:16 +msgid "Confirm Delete" +msgstr "" + +#: ckanext/sixodp/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "" + +#: ckanext/sixodp/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "" + +#: ckanext/sixodp/templates/package/group_list.html:24 +msgid "There are no groups associated with this dataset" +msgstr "" + +#: ckanext/sixodp/templates/package/new_view.html:3 +#: ckanext/sixodp/templates/package/new_view.html:4 +#: ckanext/sixodp/templates/package/new_view.html:8 +#: ckanext/sixodp/templates/package/new_view.html:12 +msgid "Add view" +msgstr "" + +#: ckanext/sixodp/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 "" + +#: ckanext/sixodp/templates/package/new_view.html:28 +#: ckanext/sixodp/templates/package/snippets/resource_view.html:48 +msgid "Preview" +msgstr "" + +#: ckanext/sixodp/templates/package/new_view.html:29 +#: ckanext/sixodp/templates/package/snippets/resource_form.html:81 +#: ckanext/sixodp/templates/scheming/macros/form.html:9 +msgid "Add" +msgstr "" + +#: ckanext/sixodp/templates/package/read.html:43 +#: ckanext/sixodp/templates/package/read_base.html:75 +#: ckanext/sixodp/templates/package/resource_read.html:186 +msgid "Subscribe for dataset updates" +msgstr "" + +#: ckanext/sixodp/templates/package/read_base.html:37 +msgid "Dataset" +msgstr "" + +#: ckanext/sixodp/templates/package/read_base.html:38 +#: ckanext/sixodp/templates/showcase/edit_base.html:5 +#: ckanext/sixodp/templates/showcase/edit_base.html:12 +#: ckanext/sixodp/templates/showcase/edit_base.html:16 +msgid "Showcases" +msgstr "" + +#: ckanext/sixodp/templates/package/resource_read.html:18 +#: ckanext/sixodp/templates/showcase/read.html:6 +msgid "Manage" +msgstr "" + +#: ckanext/sixodp/templates/package/resource_read.html:41 +msgid "View" +msgstr "" + +#: ckanext/sixodp/templates/package/resource_read.html:43 +msgid "API Endpoint" +msgstr "" + +#: ckanext/sixodp/templates/package/resource_read.html:45 +#: ckanext/sixodp/templates/package/snippets/resource_item.html:36 +#: ckanext/sixodp/templates/report/view.html:47 +msgid "Download" +msgstr "" + +#: ckanext/sixodp/templates/package/resource_read.html:89 +msgid "There are no views created for this resource yet." +msgstr "" + +#: ckanext/sixodp/templates/package/resource_read.html:92 +msgid "Not seeing the views you were expecting?" +msgstr "" + +#: ckanext/sixodp/templates/package/resource_read.html:94 +#: ckanext/sixodp/templates/package/snippets/resource_view.html:18 +msgid "Click here for more information." +msgstr "" + +#: ckanext/sixodp/templates/package/resource_read.html:98 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" + +#: ckanext/sixodp/templates/package/resource_read.html:100 +msgid "No view has been created that is suitable for this resource" +msgstr "" + +#: ckanext/sixodp/templates/package/resource_read.html:101 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" + +#: ckanext/sixodp/templates/package/resource_read.html:102 +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 "" + +#: ckanext/sixodp/templates/package/resource_read.html:123 +msgid "From the dataset abstract" +msgstr "" + +#: ckanext/sixodp/templates/package/resource_read.html:125 +#, python-format +msgid "Source: %(dataset)s" +msgstr "" + +#: ckanext/sixodp/templates/package/resource_read.html:132 +#: ckanext/sixodp/templates/scheming/package/read.html:19 +#: ckanext/sixodp/templates/snippets/facet_list.html:39 +msgid "Show less" +msgstr "" + +#: ckanext/sixodp/templates/package/resource_read.html:155 +msgid "Back to dataset" +msgstr "" + +#: ckanext/sixodp/templates/package/search.html:25 +msgid "Add Dataset" +msgstr "" + +#: ckanext/sixodp/templates/package/search.html:38 +msgid "Newest first" +msgstr "" + +#: ckanext/sixodp/templates/package/search.html:39 +msgid "Oldest first" +msgstr "" + +#: ckanext/sixodp/templates/package/search.html:67 +msgid "API" +msgstr "" + +#: ckanext/sixodp/templates/package/search.html:68 +msgid "API Docs" +msgstr "" + +#: ckanext/sixodp/templates/package/search.html:70 +msgid "full {format} dump" +msgstr "" + +#: ckanext/sixodp/templates/package/search.html:71 +#, 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 "" + +#: ckanext/sixodp/templates/package/search.html:75 +#, python-format +msgid "" +"You can also access this registry using the %(api_link)s (see " +"%(api_doc_link)s)." +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:2 +msgid "Additional Info" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:7 +#: ckanext/sixodp/templates/scheming/package/resource_read.html:9 +msgid "Metadata API" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:29 +#: ckanext/sixodp/templates/package/snippets/additional_info.html:34 +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:63 +msgid "Author" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:53 +msgid "Version" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:60 +#: ckanext/sixodp/templates/scheming/form_snippets/state.html:3 +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:171 +msgid "State" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:66 +msgid "Last Updated" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:72 +msgid "Created" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/data_api_button.html:10 +#: ckanext/sixodp/templates/package/snippets/resource_item.html:28 +msgid "Data API" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:24 +msgid "Data" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:40 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:55 +#: ckanext/sixodp/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:55 +#: ckanext/sixodp/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:88 +msgid "Estimated upload times with the selected resource file" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:16 +msgid "This resource view is not available at the moment." +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:25 +msgid "Download resource" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:49 +msgid "Your browser does not support iframes." +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:60 +msgid "Fullscreen" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:68 +msgid "Embed" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:80 +msgid "Embed resource view" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:83 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:86 +msgid "Width" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:89 +msgid "Height" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:92 +msgid "Code" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resources.html:4 +msgid "Resources" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resources_list.html:26 +#, python-format +msgid "" +"

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

" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/view_help.html:4 +msgid "A view is a representation of the data held against a resource" +msgstr "" + +#: ckanext/sixodp/templates/report/index.html:5 +#: ckanext/sixodp/templates/report/view.html:3 +#: ckanext/sixodp/templates/report/view.html:6 +msgid "Reports" +msgstr "" + +#: ckanext/sixodp/templates/report/index.html:24 +msgid "View Report" +msgstr "" + +#: ckanext/sixodp/templates/report/view.html:16 +msgid "Generated" +msgstr "" + +#: ckanext/sixodp/templates/report/view.html:20 +msgid "Refresh report" +msgstr "" + +#: ckanext/sixodp/templates/report/view.html:23 +msgid "Refresh" +msgstr "" + +#: ckanext/sixodp/templates/report/view.html:25 +msgid "" +"As a system administrator you are able to refresh this report on demand by " +"clicking the 'Refresh' button." +msgstr "" + +#: ckanext/sixodp/templates/report/view.html:31 +msgid "Options" +msgstr "" + +#: ckanext/sixodp/templates/report/view.html:52 +msgid "Results" +msgstr "" + +#: ckanext/sixodp/templates/report/view.html:54 +msgid "No results found." +msgstr "" + +#: ckanext/sixodp/templates/scheming/form_snippets/organization_ex.html:26 +msgid "No organization" +msgstr "" + +#: ckanext/sixodp/templates/scheming/form_snippets/private.html:5 +msgid "Public" +msgstr "" + +#: ckanext/sixodp/templates/scheming/form_snippets/state.html:6 +msgid "Active" +msgstr "" + +#: ckanext/sixodp/templates/scheming/form_snippets/ytp_multiple_checkbox.html:18 +#, python-format +msgid "" +"Categories can be edited from here." +msgstr "" + +#: ckanext/sixodp/templates/scheming/macros/form.html:37 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" + +#: ckanext/sixodp/templates/scheming/package/resource_read.html:5 +msgid "Additional Information" +msgstr "" + +#: ckanext/sixodp/templates/scheming/package/resource_read.html:16 +msgid "Field" +msgstr "" + +#: ckanext/sixodp/templates/scheming/package/resource_read.html:17 +msgid "Value" +msgstr "" + +#: ckanext/sixodp/templates/scheming/package/resource_read.html:28 +msgid "unknown" +msgstr "" + +#: ckanext/sixodp/templates/scheming/package/resource_read.html:38 +msgid "GB" +msgstr "" + +#: ckanext/sixodp/templates/scheming/package/resource_read.html:40 +msgid "MB" +msgstr "" + +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:183 +msgid "How to reference" +msgstr "" + +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:190 +msgid "" +"The maintainer of the dataset is {maintainer} and the original author is " +"{author}" +msgstr "" + +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:193 +msgid "The maintainer of the dataset is {maintainer}" +msgstr "" + +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:196 +msgid "The dataset has been downloaded from" +msgstr "" + +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:196 +msgid "service on {date}" +msgstr "" + +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:199 +msgid "using the license" +msgstr "" + +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:201 +msgid "The license can be found on the maintainer's service" +msgstr "" + +#: ckanext/sixodp/templates/showcase/edit_base.html:17 +msgid "Create Showcase" +msgstr "" + +#: ckanext/sixodp/templates/showcase/edit_base.html:30 +msgid "View showcase" +msgstr "" + +#: ckanext/sixodp/templates/showcase/edit_base.html:36 +msgid "Edit showcase" +msgstr "" + +#: ckanext/sixodp/templates/showcase/edit_base.html:37 +msgid "Manage datasets" +msgstr "" + +#: ckanext/sixodp/templates/showcase/manage_datasets.html:3 +msgid "Showcases - Manage datasets" +msgstr "" + +#: ckanext/sixodp/templates/showcase/manage_datasets.html:36 +msgid "Datasets available to add to this showcase" +msgstr "" + +#: ckanext/sixodp/templates/showcase/manage_datasets.html:51 +msgid "Add to Showcase" +msgstr "" + +#: ckanext/sixodp/templates/showcase/manage_datasets.html:88 +msgid "No datasets could be found" +msgstr "" + +#: ckanext/sixodp/templates/showcase/manage_datasets.html:96 +msgid "Datasets in this showcase" +msgstr "" + +#: ckanext/sixodp/templates/showcase/manage_datasets.html:109 +msgid "Remove from Showcase" +msgstr "" + +#: ckanext/sixodp/templates/showcase/manage_datasets.html:140 +msgid "This showcase has no datasets associated to it" +msgstr "" + +#: ckanext/sixodp/templates/showcase/read.html:38 +msgid "Launch website" +msgstr "" + +#: ckanext/sixodp/templates/showcase/search.html:19 +msgid "Search showcases..." +msgstr "" + +#: ckanext/sixodp/templates/snippets/facet_list.html:43 +msgid "There are no {facet_type} that match this search" +msgstr "" + +#: ckanext/sixodp/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "" + +#: ckanext/sixodp/templates/snippets/horizontal_accordion.html:30 +msgid "Close preview" +msgstr "" + +#: ckanext/sixodp/templates/snippets/horizontal_accordion.html:31 +msgid "Show preview" +msgstr "" + +#: ckanext/sixodp/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "" + +#: ckanext/sixodp/templates/snippets/license.html:33 +msgid "This dataset satisfies the Open Definition." +msgstr "" + +#: ckanext/sixodp/templates/snippets/package_item.html:88 +msgid "This dataset has no description" +msgstr "" + +#: ckanext/sixodp/templates/snippets/page_highlight_item.html:8 +msgid "View {showcase_title}" +msgstr "" + +#: ckanext/sixodp/templates/snippets/search_form.html:9 +msgid "Submit" +msgstr "" + +#: ckanext/sixodp/templates/snippets/search_form.html:19 +msgid "Sort" +msgstr "" + +#: ckanext/sixodp/templates/snippets/search_form.html:30 +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:43 +msgid "Go" +msgstr "" + +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:36 +msgid "Sort results" +msgstr "" + +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:82 +msgid "

Please try another search or change search facets.

" +msgstr "" + +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:88 +msgid "

There was an error while searching. Please try again.

" +msgstr "" + +#: ckanext/sixodp/templates/snippets/sixodp_offcanvas-filter-button.html:2 +msgid "Filters" +msgstr "" + +#: ckanext/sixodp/templates/snippets/sixodp_offcanvas-info-button.html:2 +msgid "About" +msgstr "" + +#: ckanext/sixodp/templates/user/dashboard.html:11 +#: ckanext/sixodp/templates/user/dashboard.html:29 +msgid "News feed" +msgstr "" + +#: ckanext/sixodp/templates/user/dashboard.html:12 +msgid "My Datasets" +msgstr "" + +#: ckanext/sixodp/templates/user/dashboard.html:13 +msgid "My Organizations" +msgstr "" + +#: ckanext/sixodp/templates/user/dashboard.html:14 +msgid "My Groups" +msgstr "" + +#: ckanext/sixodp/templates/user/dashboard.html:31 +msgid "Activity from items that I'm following" +msgstr "" + +#: ckanext/sixodp/templates/user/login.html:6 +msgid "Login" +msgstr "" + +#: ckanext/sixodp/templates/user/snippets/followee_dropdown.html:14 +#: ckanext/sixodp/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "" + +#: ckanext/sixodp/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "" + +#: ckanext/sixodp/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "" + diff --git a/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/ckanext-sixodp_ui.pot b/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/ckanext-sixodp_ui.pot deleted file mode 100644 index 1e31e9ce5..000000000 --- a/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/ckanext-sixodp_ui.pot +++ /dev/null @@ -1,1236 +0,0 @@ -# Translations template for ckanext-sixodp_ui. -# Copyright (C) 2020 ORGANIZATION -# This file is distributed under the same license as the ckanext-sixodp_ui -# project. -# FIRST AUTHOR , 2020. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: ckanext-sixodp_ui 0.0.1\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2020-09-11 11:35+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.3.4\n" - -#: ckanext/sixodp_ui/helpers.py:176 -msgid "Dataset not found" -msgstr "" - -#: ckanext/sixodp_ui/helpers.py:287 -msgid "Show submenu for " -msgstr "" - -#: ckanext/sixodp_ui/plugin.py:218 ckanext/sixodp_ui/plugin.py:229 -#: ckanext/sixodp_ui/plugin.py:239 -msgid "Formats" -msgstr "" - -#: ckanext/sixodp_ui/plugin.py:219 ckanext/sixodp_ui/plugin.py:230 -#: ckanext/sixodp_ui/plugin.py:240 -msgid "Geographical Coverage" -msgstr "" - -#: ckanext/sixodp_ui/plugin.py:220 ckanext/sixodp_ui/plugin.py:231 -#: ckanext/sixodp_ui/plugin.py:241 -#: ckanext/sixodp_ui/templates/package/group_list.html:5 -#: ckanext/sixodp_ui/templates/package/read_base.html:41 -msgid "Groups" -msgstr "" - -#: ckanext/sixodp_ui/plugin.py:221 ckanext/sixodp_ui/plugin.py:232 -#: ckanext/sixodp_ui/plugin.py:242 -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:44 -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:46 -msgid "Organizations" -msgstr "" - -#: ckanext/sixodp_ui/plugin.py:222 ckanext/sixodp_ui/plugin.py:233 -#: ckanext/sixodp_ui/plugin.py:243 -#: ckanext/sixodp_ui/templates/package/read_base.html:42 -msgid "Collections" -msgstr "" - -#: ckanext/sixodp_ui/translations.py:8 -msgid "Broken links" -msgstr "" - -#: ckanext/sixodp_ui/translations.py:9 -msgid "Dataset resource URLs that are found to result in errors when resolved." -msgstr "" - -#: ckanext/sixodp_ui/translations.py:10 -msgid "Openness (Five Stars)" -msgstr "" - -#: ckanext/sixodp_ui/translations.py:11 -msgid "" -"Datasets graded on Tim Berners Lees' Five Stars of Openness - openly " -"licensed, openly accessible, structured, open format, URIs for entities, " -"linked." -msgstr "" - -#: ckanext/sixodp_ui/translations.py:13 -msgid "Most popular datasets" -msgstr "" - -#: ckanext/sixodp_ui/translations.py:14 -msgid "Google analytics showing top datasets with most views" -msgstr "" - -#: ckanext/sixodp_ui/translations.py:15 -msgid "Most popular resources" -msgstr "" - -#: ckanext/sixodp_ui/translations.py:16 -msgid "Google analytics showing most downloaded resources" -msgstr "" - -#: ckanext/sixodp_ui/translations.py:17 -msgid "Publisher activity" -msgstr "" - -#: ckanext/sixodp_ui/translations.py:18 -msgid "A quarterly list of datasets created and edited by a publisher." -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/activity-stream.js:20 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/activity-stream.min.js:1 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/popover-context.js:45 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/popover-context.min.js:1 -#: ckanext/sixodp_ui/templates/package/snippets/data_api_button.html:8 -#: ckanext/sixodp_ui/templates/package/snippets/resource_item.html:26 -msgid "Loading..." -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/api-info.js:20 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/api-info.min.js:1 -msgid "There is no API data to load for this resource" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/api-info.js:21 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/api-info.min.js:1 -msgid "Failed to load data API information" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/autocomplete.js:31 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/autocomplete.min.js:1 -msgid "No matches found" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/autocomplete.js:32 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/autocomplete.min.js:1 -msgid "Start typing…" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/autocomplete.js:34 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/autocomplete.min.js:1 -msgid "Input is too short, must be at least one character" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/basic-form.js:4 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/basic-form.min.js:1 -msgid "There are unsaved modifications to this form" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/confirm-action.js:7 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/confirm-action.min.js:1 -msgid "Please Confirm Action" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/confirm-action.js:8 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/confirm-action.min.js:1 -msgid "Are you sure you want to perform this action?" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/confirm-action.js:9 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/confirm-action.min.js:1 -msgid "Confirm" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/confirm-action.js:10 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/confirm-action.min.js:1 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-reorder.js:11 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-reorder.min.js:1 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-view-reorder.js:11 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-view-reorder.min.js:1 -#: ckanext/sixodp_ui/templates/package/confirm_delete.html:15 -msgid "Cancel" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/follow.js:23 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/follow.min.js:1 -msgid "Follow" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/follow.js:24 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/follow.min.js:1 -msgid "Unfollow" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.js:16 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.min.js:1 -msgid "Upload" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.js:17 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.min.js:1 -msgid "Link" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.js:18 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.min.js:1 -#: ckanext/sixodp_ui/templates/group/snippets/group_item.html:41 -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:71 -msgid "Remove" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.js:19 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.min.js:1 -msgid "Image" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.js:20 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/slug-preview.js:35 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/slug-preview.min.js:1 -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.js:22 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.min.js:1 -msgid "Upload a file on your computer" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.js:23 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.min.js:1 -msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/related-item.js:25 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/related-item.min.js:1 -msgid "show more" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/related-item.js:26 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/related-item.min.js:1 -msgid "show less" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-reorder.js:8 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-reorder.min.js:1 -msgid "Reorder resources" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-reorder.js:9 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-reorder.min.js:1 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-view-reorder.js:9 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-view-reorder.min.js:1 -msgid "Save order" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-reorder.js:10 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-reorder.min.js:1 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-view-reorder.js:10 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-view-reorder.min.js:1 -msgid "Saving..." -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.js:25 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.min.js:1 -msgid "Upload a file" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.js:26 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.min.js:1 -msgid "An Error Occurred" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.js:27 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.min.js:1 -msgid "Resource uploaded" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.js:28 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.min.js:1 -msgid "Unable to upload file" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.js:29 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.min.js:1 -msgid "Unable to authenticate upload" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.js:30 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.min.js:1 -msgid "Unable to get data for uploaded file" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.js:31 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.min.js:1 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-view-reorder.js:8 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-view-reorder.min.js:1 -msgid "Reorder resource view" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/slug-preview.js:36 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/slug-preview.min.js:1 -#: ckanext/sixodp_ui/templates/ckanext_pages/blog.html:12 -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:69 -#: ckanext/sixodp_ui/templates/showcase/edit_base.html:14 -msgid "Edit" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/table-toggle-more.js:9 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/table-toggle-more.min.js:1 -#: ckanext/sixodp_ui/templates/package/resource_read.html:130 -#: ckanext/sixodp_ui/templates/snippets/facet_list.html:36 -msgid "Show more" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/table-toggle-more.js:10 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/table-toggle-more.min.js:1 -msgid "Hide" -msgstr "" - -#: ckanext/sixodp_ui/templates/footer.html:9 -msgid "Data portal" -msgstr "" - -#: ckanext/sixodp_ui/templates/footer.html:12 -msgid "Content management" -msgstr "" - -#: ckanext/sixodp_ui/templates/footer.html:16 -msgid "Management" -msgstr "" - -#: ckanext/sixodp_ui/templates/footer.html:33 -msgid "Follow us" -msgstr "" - -#: ckanext/sixodp_ui/templates/sixodp_header.html:26 -msgid "Skip to content" -msgstr "" - -#: ckanext/sixodp_ui/templates/admin/config.html:7 -msgid "Service message" -msgstr "" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:21 -msgid "CKAN Data API" -msgstr "" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:25 -msgid "Access resource data via a web API with powerful query support" -msgstr "" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:26 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:36 -msgid "Endpoints" -msgstr "" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:41 -msgid "The Data API can be accessed via the following actions of the CKAN action API." -msgstr "" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:46 -msgid "Query" -msgstr "" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:50 -msgid "Query (via SQL)" -msgstr "" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:62 -msgid "Querying" -msgstr "" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:67 -msgid "Query example (first 5 results)" -msgstr "" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:72 -msgid "Query example (results containing 'my_resource_query')" -msgstr "" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:77 -msgid "Query example (via SQL statement)" -msgstr "" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:89 -msgid "Example: Javascript" -msgstr "" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:94 -msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:116 -msgid "Example: Python" -msgstr "" - -#: ckanext/sixodp_ui/templates/ckanext_pages/blog.html:4 -#: ckanext/sixodp_ui/templates/ckanext_pages/blog_list.html:11 -msgid "Articles" -msgstr "" - -#: ckanext/sixodp_ui/templates/ckanext_pages/blog.html:28 -#: ckanext/sixodp_ui/templates/ckanext_pages/snippets/pages_list.html:51 -#: ckanext/sixodp_ui/templates/ckanext_pages/snippets/pages_list.html:71 -msgid "This page currently has no content" -msgstr "" - -#: ckanext/sixodp_ui/templates/ckanext_pages/blog_list.html:5 -msgid "Add Article" -msgstr "" - -#: ckanext/sixodp_ui/templates/ckanext_pages/blog_list.html:15 -msgid "Blog" -msgstr "" - -#: ckanext/sixodp_ui/templates/ckanext_pages/pages_edit.html:5 -msgid "Add page" -msgstr "" - -#: ckanext/sixodp_ui/templates/ckanext_pages/snippets/pages_list.html:80 -msgid "There are currently no blog articles here" -msgstr "" - -#: ckanext/sixodp_ui/templates/ckanext_pages/snippets/pages_list.html:82 -msgid "There are currently no pages here" -msgstr "" - -#: ckanext/sixodp_ui/templates/collection/index.html:7 -msgid "Search collections..." -msgstr "" - -#: ckanext/sixodp_ui/templates/group/index.html:7 -#: ckanext/sixodp_ui/templates/group/index.html:15 -msgid "Search groups..." -msgstr "" - -#: ckanext/sixodp_ui/templates/group/index.html:15 -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:21 -#: ckanext/sixodp_ui/templates/organization/read.html:15 -#: ckanext/sixodp_ui/templates/package/search.html:38 -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:25 -#: ckanext/sixodp_ui/templates/showcase/search.html:13 -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:30 -msgid "Name Ascending" -msgstr "" - -#: ckanext/sixodp_ui/templates/group/index.html:15 -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:22 -#: ckanext/sixodp_ui/templates/organization/read.html:16 -#: ckanext/sixodp_ui/templates/package/search.html:39 -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:26 -#: ckanext/sixodp_ui/templates/showcase/search.html:14 -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:30 -msgid "Name Descending" -msgstr "" - -#: ckanext/sixodp_ui/templates/group/read.html:6 -#: ckanext/sixodp_ui/templates/organization/read.html:30 -#: ckanext/sixodp_ui/templates/package/search.html:84 -msgid "Filter results" -msgstr "" - -#: ckanext/sixodp_ui/templates/group/read_base.html:4 -#: ckanext/sixodp_ui/templates/group/snippets/info.html:12 -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:14 -msgid "Datasets" -msgstr "" - -#: ckanext/sixodp_ui/templates/group/read_base.html:5 -#: ckanext/sixodp_ui/templates/package/activity.html:3 -#: ckanext/sixodp_ui/templates/package/read_base.html:39 -msgid "Activity Stream" -msgstr "" - -#: ckanext/sixodp_ui/templates/group/snippets/group_item.html:29 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "" -msgstr[1] "" - -#: ckanext/sixodp_ui/templates/group/snippets/group_item.html:31 -msgid "0 Datasets" -msgstr "" - -#: ckanext/sixodp_ui/templates/group/snippets/group_item.html:36 -#: ckanext/sixodp_ui/templates/group/snippets/group_item.html:37 -msgid "View {name}" -msgstr "" - -#: ckanext/sixodp_ui/templates/group/snippets/group_item.html:41 -msgid "Remove dataset from this group" -msgstr "" - -#: ckanext/sixodp_ui/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "" - -#: ckanext/sixodp_ui/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 "" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_language-changer.html:6 -msgid "In Finnish" -msgstr "" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_language-changer.html:12 -msgid "In English" -msgstr "" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_language-changer.html:18 -msgid "In Swedish" -msgstr "" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_navbar_search.html:4 -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_navbar_search.html:11 -#: ckanext/sixodp_ui/templates/snippets/search_form.html:5 -#: ckanext/sixodp_ui/templates/snippets/search_input.html:18 -msgid "Search" -msgstr "" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:12 -msgid "Sysadmin settings" -msgstr "" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:14 -msgid "Admin" -msgstr "" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:18 -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:20 -msgid "Dataset Editor" -msgstr "" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:26 -msgid "View profile" -msgstr "" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:35 -#, python-format -msgid "Dashboard (%(num)d new item)" -msgid_plural "Dashboard (%(num)d new items)" -msgstr[0] "" -msgstr[1] "" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:38 -msgid "Dashboard" -msgstr "" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:56 -#: ckanext/sixodp_ui/templates/user/dashboard.html:8 -msgid "Edit settings" -msgstr "" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:58 -msgid "Settings" -msgstr "" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:65 -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:67 -msgid "Log out" -msgstr "" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:76 -msgid "Log in" -msgstr "" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:78 -msgid "Register" -msgstr "" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:5 -msgid "Edit datasets" -msgstr "" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:10 -msgid " found for \"{query}\"" -msgstr "" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:12 -msgid "Sorry no datasets found for \"{query}\"" -msgstr "" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:23 -#: ckanext/sixodp_ui/templates/organization/read.html:17 -#: ckanext/sixodp_ui/templates/package/search.html:40 -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:51 -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:27 -#: ckanext/sixodp_ui/templates/showcase/search.html:15 -msgid "Last Modified" -msgstr "" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:41 -msgid "Make public" -msgstr "" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:45 -msgid "Make private" -msgstr "" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:51 -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:65 -msgid "Delete" -msgstr "" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:74 -#: ckanext/sixodp_ui/templates/package/read_base.html:15 -#: ckanext/sixodp_ui/templates/showcase/read.html:20 -#: ckanext/sixodp_ui/templates/snippets/package_item.html:68 -msgid "Draft" -msgstr "" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:76 -#: ckanext/sixodp_ui/templates/package/read_base.html:20 -#: ckanext/sixodp_ui/templates/snippets/package_item.html:70 -msgid "Deleted" -msgstr "" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:79 -#: ckanext/sixodp_ui/templates/package/read.html:11 -#: ckanext/sixodp_ui/templates/showcase/read.html:13 -#: ckanext/sixodp_ui/templates/snippets/package_item.html:61 -msgid "Private" -msgstr "" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:92 -msgid "This organization has no datasets associated to it" -msgstr "" - -#: ckanext/sixodp_ui/templates/organization/index.html:7 -#: ckanext/sixodp_ui/templates/organization/index.html:15 -msgid "Search organizations..." -msgstr "" - -#: ckanext/sixodp_ui/templates/organization/read.html:12 -msgid "Last Created" -msgstr "" - -#: ckanext/sixodp_ui/templates/organization/read.html:13 -#: ckanext/sixodp_ui/templates/package/search.html:36 -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:28 -#: ckanext/sixodp_ui/templates/showcase/search.html:16 -#: ckanext/sixodp_ui/templates/snippets/package_item.html:80 -msgid "Popular" -msgstr "" - -#: ckanext/sixodp_ui/templates/organization/read.html:14 -#: ckanext/sixodp_ui/templates/package/search.html:37 -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:24 -#: ckanext/sixodp_ui/templates/showcase/search.html:12 -msgid "Relevance" -msgstr "" - -#: ckanext/sixodp_ui/templates/organization/read.html:19 -#: ckanext/sixodp_ui/templates/package/search.html:7 -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:3 -msgid "Search datasets..." -msgstr "" - -#: ckanext/sixodp_ui/templates/package/confirm_delete.html:12 -msgid "Are you sure you want to delete dataset - {name}?" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/confirm_delete.html:16 -msgid "Confirm Delete" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/group_list.html:24 -msgid "There are no groups associated with this dataset" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/new_view.html:3 -#: ckanext/sixodp_ui/templates/package/new_view.html:4 -#: ckanext/sixodp_ui/templates/package/new_view.html:8 -#: ckanext/sixodp_ui/templates/package/new_view.html:12 -msgid "Add view" -msgstr "" - -#: ckanext/sixodp_ui/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 "" - -#: ckanext/sixodp_ui/templates/package/new_view.html:28 -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:48 -msgid "Preview" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/new_view.html:29 -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:81 -msgid "Add" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/read.html:43 -#: ckanext/sixodp_ui/templates/package/read_base.html:75 -#: ckanext/sixodp_ui/templates/package/resource_read.html:185 -msgid "Subscribe for dataset updates" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/read_base.html:37 -msgid "Dataset" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/read_base.html:38 -#: ckanext/sixodp_ui/templates/showcase/edit_base.html:5 -#: ckanext/sixodp_ui/templates/showcase/edit_base.html:12 -#: ckanext/sixodp_ui/templates/showcase/edit_base.html:16 -msgid "Showcases" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:18 -#: ckanext/sixodp_ui/templates/showcase/read.html:6 -msgid "Manage" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:40 -msgid "View" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:42 -msgid "API Endpoint" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:44 -#: ckanext/sixodp_ui/templates/package/snippets/resource_item.html:36 -#: ckanext/sixodp_ui/templates/report/view.html:47 -msgid "Download" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:88 -msgid "There are no views created for this resource yet." -msgstr "" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:91 -msgid "Not seeing the views you were expecting?" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:93 -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:18 -msgid "Click here for more information." -msgstr "" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:97 -msgid "Here are some reasons you may not be seeing expected views:" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:99 -msgid "No view has been created that is suitable for this resource" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:100 -msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:101 -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 "" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:122 -msgid "From the dataset abstract" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:124 -#, python-format -msgid "Source: %(dataset)s" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:131 -#: ckanext/sixodp_ui/templates/snippets/facet_list.html:39 -msgid "Show less" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:154 -msgid "Back to dataset" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/search.html:21 -msgid "Add Dataset" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/search.html:34 -msgid "Newest first" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/search.html:35 -msgid "Oldest first" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/search.html:63 -msgid "API" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/search.html:64 -msgid "API Docs" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/search.html:66 -msgid "full {format} dump" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/search.html:67 -#, 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 "" - -#: ckanext/sixodp_ui/templates/package/search.html:71 -#, python-format -msgid "" -" You can also access this registry using the %(api_link)s (see " -"%(api_doc_link)s). " -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:2 -msgid "Additional Info" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:7 -msgid "Metadata API" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:18 -msgid "Source" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:29 -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:34 -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:63 -msgid "Author" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:41 -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:46 -msgid "Maintainer" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:53 -msgid "Version" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:60 -msgid "State" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:66 -msgid "Last Updated" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:72 -msgid "Created" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/data_api_button.html:10 -#: ckanext/sixodp_ui/templates/package/snippets/resource_item.html:28 -msgid "Data API" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/package_form.html:5 -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 "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:24 -msgid "Data" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:32 -#: ckanext/sixodp_ui/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:37 -msgid "Format" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:55 -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:55 -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:71 -msgid "Previous" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:74 -msgid "Save & add another" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:77 -msgid "Finish" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:88 -msgid "Estimated upload times with the selected resource file" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:16 -msgid "This resource view is not available at the moment." -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:25 -msgid "Download resource" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:49 -msgid "Your browser does not support iframes." -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:60 -msgid "Fullscreen" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:68 -msgid "Embed" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:80 -msgid "Embed resource view" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:83 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:86 -msgid "Width" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:89 -msgid "Height" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:92 -msgid "Code" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resources.html:4 -msgid "Resources" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/view_form.html:8 -msgid "Title" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/view_help.html:2 -msgid "What's a view?" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/view_help.html:4 -msgid "A view is a representation of the data held against a resource" -msgstr "" - -#: ckanext/sixodp_ui/templates/report/index.html:5 -#: ckanext/sixodp_ui/templates/report/view.html:3 -#: ckanext/sixodp_ui/templates/report/view.html:6 -msgid "Reports" -msgstr "" - -#: ckanext/sixodp_ui/templates/report/index.html:24 -msgid "View Report" -msgstr "" - -#: ckanext/sixodp_ui/templates/report/view.html:16 -msgid "Generated" -msgstr "" - -#: ckanext/sixodp_ui/templates/report/view.html:20 -msgid "Refresh report" -msgstr "" - -#: ckanext/sixodp_ui/templates/report/view.html:23 -msgid "Refresh" -msgstr "" - -#: ckanext/sixodp_ui/templates/report/view.html:25 -msgid "" -"As a system administrator you are able to refresh this report on demand by " -"clicking the 'Refresh' button." -msgstr "" - -#: ckanext/sixodp_ui/templates/report/view.html:31 -msgid "Options" -msgstr "" - -#: ckanext/sixodp_ui/templates/report/view.html:52 -msgid "Results" -msgstr "" - -#: ckanext/sixodp_ui/templates/report/view.html:54 -msgid "No results found." -msgstr "" - -#: ckanext/sixodp_ui/templates/showcase/edit_base.html:17 -msgid "Create Showcase" -msgstr "" - -#: ckanext/sixodp_ui/templates/showcase/edit_base.html:30 -msgid "View showcase" -msgstr "" - -#: ckanext/sixodp_ui/templates/showcase/edit_base.html:36 -msgid "Edit showcase" -msgstr "" - -#: ckanext/sixodp_ui/templates/showcase/edit_base.html:37 -msgid "Manage datasets" -msgstr "" - -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:3 -msgid "Showcases - Manage datasets" -msgstr "" - -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:36 -msgid "Datasets available to add to this showcase" -msgstr "" - -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:51 -msgid "Add to Showcase" -msgstr "" - -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:88 -msgid "No datasets could be found" -msgstr "" - -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:96 -msgid "Datasets in this showcase" -msgstr "" - -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:109 -msgid "Remove from Showcase" -msgstr "" - -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:140 -msgid "This showcase has no datasets associated to it" -msgstr "" - -#: ckanext/sixodp_ui/templates/showcase/read.html:38 -msgid "Launch website" -msgstr "" - -#: ckanext/sixodp_ui/templates/showcase/search.html:19 -msgid "Search showcases..." -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/facet_list.html:43 -msgid "There are no {facet_type} that match this search" -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/horizontal_accordion.html:30 -msgid "Close preview" -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/horizontal_accordion.html:31 -msgid "Show preview" -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/license.html:14 -msgid "No License Provided" -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/license.html:21 -msgid "License" -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/license.html:33 -msgid "This dataset satisfies the Open Definition." -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/package_item.html:87 -msgid "This dataset has no description" -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/page_highlight_item.html:8 -msgid "View {showcase_title}" -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/page_highlight_item.html:25 -msgid "This showcase has no description" -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/search_form.html:9 -msgid "Submit" -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/search_form.html:19 -msgid "Sort" -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/search_form.html:27 -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:43 -msgid "Go" -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:36 -msgid "Sort results" -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:61 -#: ckanext/sixodp_ui/templates/snippets/tag_list.html:4 -msgid "Tags" -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:82 -msgid "

Please try another search or change search facets.

" -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:88 -msgid "" -"

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

" -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/sixodp_offcanvas-filter-button.html:2 -msgid "Filters" -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/sixodp_offcanvas-info-button.html:2 -msgid "About" -msgstr "" - -#: ckanext/sixodp_ui/templates/user/dashboard.html:11 -#: ckanext/sixodp_ui/templates/user/dashboard.html:29 -msgid "News feed" -msgstr "" - -#: ckanext/sixodp_ui/templates/user/dashboard.html:12 -msgid "My Datasets" -msgstr "" - -#: ckanext/sixodp_ui/templates/user/dashboard.html:13 -msgid "My Organizations" -msgstr "" - -#: ckanext/sixodp_ui/templates/user/dashboard.html:14 -msgid "My Groups" -msgstr "" - -#: ckanext/sixodp_ui/templates/user/dashboard.html:31 -msgid "Activity from items that I'm following" -msgstr "" - -#: ckanext/sixodp_ui/templates/user/login.html:6 -msgid "Login" -msgstr "" - -#: ckanext/sixodp_ui/templates/user/snippets/followee_dropdown.html:14 -#: ckanext/sixodp_ui/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "" - -#: ckanext/sixodp_ui/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "" - -#: ckanext/sixodp_ui/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "" - diff --git a/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/en_GB/LC_MESSAGES/ckanext-sixodp.mo b/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/en_GB/LC_MESSAGES/ckanext-sixodp.mo new file mode 100644 index 000000000..43bf83088 Binary files /dev/null and b/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/en_GB/LC_MESSAGES/ckanext-sixodp.mo differ diff --git a/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/en_GB/LC_MESSAGES/ckanext-sixodp.po b/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/en_GB/LC_MESSAGES/ckanext-sixodp.po new file mode 100644 index 000000000..45abda37b --- /dev/null +++ b/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/en_GB/LC_MESSAGES/ckanext-sixodp.po @@ -0,0 +1,1739 @@ +# Translations template for ckanext-sixodp. +# Copyright (C) 2022 ORGANIZATION +# This file is distributed under the same license as the ckanext-sixodp project. +# FIRST AUTHOR , 2022. +# +# Translators: +# Zharktas , 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckanext-sixodp 0.0.1\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2022-12-19 08:02+0000\n" +"PO-Revision-Date: 2022-12-19 08:10+0000\n" +"Last-Translator: Zharktas , 2022\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/6aika-dataportal/teams/68018/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ckanext/sixodp/helpers.py:177 ckanext/sixodp/helpers.py:383 +msgid "Dataset not found" +msgstr "" + +#: ckanext/sixodp/helpers.py:288 +msgid "Show submenu for " +msgstr "" + +#: ckanext/sixodp/plugin.py:236 ckanext/sixodp/plugin.py:247 +#: ckanext/sixodp/plugin.py:257 +msgid "Formats" +msgstr "Formats" + +#: ckanext/sixodp/plugin.py:237 ckanext/sixodp/plugin.py:248 +#: ckanext/sixodp/plugin.py:258 ckanext/sixodp/translations.py:31 +msgid "Geographical Coverage" +msgstr "Area" + +#: ckanext/sixodp/plugin.py:238 ckanext/sixodp/plugin.py:249 +#: ckanext/sixodp/plugin.py:259 +#: ckanext/sixodp/templates/package/group_list.html:5 +#: ckanext/sixodp/templates/package/read_base.html:41 +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:114 +msgid "Groups" +msgstr "Categories" + +#: ckanext/sixodp/plugin.py:239 ckanext/sixodp/plugin.py:250 +#: ckanext/sixodp/plugin.py:260 +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:44 +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:46 +msgid "Organizations" +msgstr "Organisations" + +#: ckanext/sixodp/plugin.py:240 ckanext/sixodp/plugin.py:251 +#: ckanext/sixodp/plugin.py:261 +#: ckanext/sixodp/templates/package/read_base.html:42 +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:129 +msgid "Collections" +msgstr "Data collections" + +#: ckanext/sixodp/translations.py:8 +msgid "Broken links" +msgstr "" + +#: ckanext/sixodp/translations.py:9 +msgid "" +"Dataset resource URLs that are found to result in errors when resolved." +msgstr "" + +#: ckanext/sixodp/translations.py:10 +msgid "Openness (Five Stars)" +msgstr "" + +#: ckanext/sixodp/translations.py:11 +msgid "" +"Datasets graded on Tim Berners Lees' Five Stars of Openness - openly " +"licensed, openly accessible, structured, open format, URIs for entities, " +"linked." +msgstr "" + +#: ckanext/sixodp/translations.py:13 +msgid "Most popular datasets" +msgstr "" + +#: ckanext/sixodp/translations.py:14 +msgid "Google analytics showing top datasets with most views" +msgstr "" + +#: ckanext/sixodp/translations.py:15 +msgid "Most popular resources" +msgstr "" + +#: ckanext/sixodp/translations.py:16 +msgid "Google analytics showing most downloaded resources" +msgstr "" + +#: ckanext/sixodp/translations.py:17 +msgid "Publisher activity" +msgstr "" + +#: ckanext/sixodp/translations.py:18 +msgid "A quarterly list of datasets created and edited by a publisher." +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/view_form.html:8 +#: ckanext/sixodp/translations.py:20 +msgid "Title" +msgstr "" + +#: ckanext/sixodp/translations.py:21 +msgid "eg. A descriptive title for the dataset" +msgstr "A descriptive title for the dataset" + +#: ckanext/sixodp/translations.py:22 +msgid "" +"A short and descriptive title for the dataset in multiple languages. Try not" +" to use dates when naming a dataset, since data from multiple years will " +"usually be published as multiple resources in one dataset." +msgstr "" +"A short and concise name for the data. Do not use years, but publish the " +"data of different years in the same dataset as separate resources. Also " +"mention the city / region that the material refers to in the name as the " +"information is transferred e.g. in the national data portal." + +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.js:20 +#: ckanext/sixodp/fanstatic/javascript/modules/slug-preview.js:35 +#: ckanext/sixodp/fanstatic/javascript/modules/slug-preview.min.js:1 +#: ckanext/sixodp/templates/package/snippets/resource_form.html:24 +#: ckanext/sixodp/translations.py:24 ckanext/sixodp/translations.py:96 +msgid "URL" +msgstr "" + +#: ckanext/sixodp/translations.py:25 +msgid "" +"An URL-address which refers to the dataset. The automatically filled option " +"derived from the title is the best option in most cases." +msgstr "" +"An URL address which refers to the dataset. The automatically filled option " +"derived from the title is the best option in most cases." + +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:61 +#: ckanext/sixodp/templates/snippets/tag_list.html:4 +#: ckanext/sixodp/translations.py:27 +msgid "Tags" +msgstr "Tags" + +#: ckanext/sixodp/translations.py:28 +msgid "E.g. transport, housing, buildings" +msgstr "" + +#: ckanext/sixodp/translations.py:29 +msgid "" +"Descriptive keywords or tags through which users are able to find this " +"dataset easily through the search. The input will suggest existing keywords " +"in the portal. New keywords should utilize ontologies such as the generic " +"finnish ontology YSO: finto.fi/yso/fi." +msgstr "" +"Keywords or tags that help users find data from the search page and through " +"material with the same keywords. In the keywords, you might want to use the " +"Finto YSO vocabulary . The computable words are in" +" plural (e.g. schools); others in singular (e.g. training)." + +#: ckanext/sixodp/translations.py:32 +msgid "eg. tampere" +msgstr "e.g. a city's name" + +#: ckanext/sixodp/translations.py:33 +msgid "Select the municipalities from which the dataset contains data." +msgstr "" +"Select the municipalities or other areas from which the dataset contains " +"data." + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:32 +#: ckanext/sixodp/templates/package/snippets/view_form.html:9 +#: ckanext/sixodp/translations.py:35 ckanext/sixodp/translations.py:105 +msgid "Description" +msgstr "Description" + +#: ckanext/sixodp/translations.py:36 +msgid "E.g. A diverse and detailed description" +msgstr "A diverse and detailed description" + +#: ckanext/sixodp/translations.py:37 +msgid "eg. A detailed description" +msgstr "A detailed description of the resource" + +#: ckanext/sixodp/translations.py:38 +msgid "" +"An universal and easy to understand, but also diverse description of the " +"added dataset. Describe the dataset creation process, use case and possible " +"limitations and shortcomings as well as possible." +msgstr "" +"An universal and easy to understand, but also diverse description of the " +"dataset. Describe the dataset creation process, use case and possible " +"limitations and shortcomings as well as possible." + +#: ckanext/sixodp/translations.py:40 +msgid "Links to additional information concerning the dataset" +msgstr "More information" + +#: ckanext/sixodp/translations.py:41 +msgid "" +"You may attach external websites or other documentation which could assist " +"in interpreting the dataset." +msgstr "" + +#: ckanext/sixodp/translations.py:43 +msgid "Organization" +msgstr "Organisation" + +#: ckanext/sixodp/translations.py:44 +msgid "The organization which owns the dataset." +msgstr "The organisation which owns the dataset." + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:18 +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:185 +#: ckanext/sixodp/translations.py:46 +msgid "Source" +msgstr "" + +#: ckanext/sixodp/translations.py:47 +msgid "http://example.com/dataset.json" +msgstr "" + +#: ckanext/sixodp/translations.py:48 +msgid "" +"The original author of the dataset. Can also be an external author such as " +"Statistics Finland. The field can e.g. be used to describe a situation where" +" the dataset is published by a single unit but it has multiple authors." +msgstr "" +"The original producer of the material forming the data basis or material " +"used in the dataset. It can also be an external source to a city " +"organisation, such as Statistics Finland." + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:41 +#: ckanext/sixodp/templates/package/snippets/additional_info.html:46 +#: ckanext/sixodp/translations.py:50 +msgid "Maintainer" +msgstr "" + +#: ckanext/sixodp/translations.py:51 +msgid "Joe Bloggs" +msgstr "Administrator's name" + +#: ckanext/sixodp/translations.py:52 +msgid "" +"The technical maintainer for the dataset. Can in practice be the maintaining" +" unit, bureau or as an exception a single employee." +msgstr "" +"Technical data administrator. Most often the same as the organisation. " + +#: ckanext/sixodp/translations.py:54 +msgid "Maintainer Email" +msgstr "Administrator's email" + +#: ckanext/sixodp/translations.py:55 +msgid "Maintainer email address" +msgstr "Administrator's email address" + +#: ckanext/sixodp/translations.py:56 +msgid "" +"The email address for the maintaining party for the dataset. Use a mailing " +"list or other similar means to direct the message to multiple recipients." +msgstr "" +"The administrator's email. Please use the organisation's general email " +"address, if it is available." + +#: ckanext/sixodp/translations.py:58 +msgid "Maintainer Website" +msgstr "Administrator's webpage" + +#: ckanext/sixodp/translations.py:59 +msgid "http://www.example.com" +msgstr "" + +#: ckanext/sixodp/templates/scheming/form_snippets/private.html:2 +#: ckanext/sixodp/translations.py:61 +msgid "Visibility" +msgstr "Visibility" + +#: ckanext/sixodp/translations.py:62 +msgid "" +"Private datasets will only be seen by the logged in users of the dataset's " +"organization. The private status is used when preparing a new dataset for " +"publication." +msgstr "" +"Private datasets will only be available to logged in users of the dataset " +"organisation. Public datasets will be available to all users." + +#: ckanext/sixodp/translations.py:64 +msgid "Published" +msgstr "Published" + +#: ckanext/sixodp/translations.py:65 +msgid "The resource publication date." +msgstr "" + +#: ckanext/sixodp/translations.py:66 +msgid "The dataset publication date." +msgstr "The dataset publication date." + +#: ckanext/sixodp/translations.py:68 +msgid "Updated" +msgstr "Updated" + +#: ckanext/sixodp/translations.py:69 +msgid "The resource update date." +msgstr "" + +#: ckanext/sixodp/translations.py:70 +msgid "" +"A manually maintained date which can be used to notify when the dataset has " +"been updated." +msgstr "The dataset update date" + +#: ckanext/sixodp/translations.py:72 +msgid "Update Frequency" +msgstr "Update frequency" + +#: ckanext/sixodp/translations.py:73 +msgid "eg. every second week" +msgstr "e.g. month" + +#: ckanext/sixodp/translations.py:74 +msgid "" +"The supposed update frequency for the dataset. The field will suggest " +"similar values used in other datasets such as yearly, monthly or realtime. A" +" new value can also be created if required." +msgstr "" +"A brief description of the data update interval. E.g. day / week / month / " +"year. " + +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:177 +#: ckanext/sixodp/templates/snippets/license.html:21 +#: ckanext/sixodp/translations.py:76 +msgid "License" +msgstr "" + +#: ckanext/sixodp/translations.py:78 +msgid "Reminder date" +msgstr "Update reminder date" + +#: ckanext/sixodp/translations.py:79 +msgid "" +"A date when a reminder email will be sent to the system administrator " +"reminding to check this dataset e.g. for a yearly update." +msgstr "" +"The date when a reminder message is sent to the dataportal admin. It is " +"possible to change the administrator's e-mail address from the CKAN " +"administrator's settings." + +#: ckanext/sixodp/translations.py:81 +msgid "Global ID" +msgstr "Global ID" + +#: ckanext/sixodp/translations.py:82 +msgid "" +"A global id can be assigned to identify the dataset in external services." +msgstr "" +"An unique identifyier of dataset. It is especially needed when the data is " +"copied to other data portals (e.g. avoindata.fi)." + +#: ckanext/sixodp/translations.py:84 +msgid "Search Synonyms" +msgstr "" +"Synonyms to make the search more effective (e.g. preschool -> day care, " +"kindergarten)." + +#: ckanext/sixodp/translations.py:85 +msgid "" +"Keywords can be provided here to improve the findability of the dataset. " +"E.g. words from spoken language can be provided to make the dataset " +"searchable by those words." +msgstr "" +"Search synonyms can be provided here to improve the findability of the " +"dataset. E.g. words from spoken language can be provided to make the dataset" +" searchable by those words." + +#: ckanext/sixodp/templates/package/snippets/package_form.html:5 +#: ckanext/sixodp/translations.py:87 +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 "" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:28 +#: ckanext/sixodp/translations.py:93 +msgid "Name" +msgstr "" + +#: ckanext/sixodp/translations.py:94 +msgid "A short and descriptive name for the resource." +msgstr "Short and descriptive name for a resource" + +#: ckanext/sixodp/translations.py:97 +msgid "" +"A file or url which describes the location of the desired resource file." +msgstr "A file or url to resource file." + +#: ckanext/sixodp/templates/scheming/package/resource_read.html:34 +#: ckanext/sixodp/translations.py:99 +msgid "Size" +msgstr "Size" + +#: ckanext/sixodp/translations.py:100 +msgid "" +"Size of the added resouce file in bytes. Will be automatically filled when " +"the file is uploaded." +msgstr "File size in bytes." + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:37 +#: ckanext/sixodp/templates/scheming/package/resource_read.html:27 +#: ckanext/sixodp/translations.py:102 +msgid "Format" +msgstr "Format" + +#: ckanext/sixodp/translations.py:103 +msgid "File format of the selected resource." +msgstr "Resource file format" + +#: ckanext/sixodp/translations.py:106 +msgid "" +"An universal, compact and easy to understand description of the added " +"resource." +msgstr "A generic, concise and easy-to-understand description of a resource." + +#: ckanext/sixodp/translations.py:108 +msgid "Position coordinates" +msgstr "Coordinate system" + +#: ckanext/sixodp/translations.py:109 +msgid "" +"Coordinates which describe the area which the added resource is associated " +"with." +msgstr "" +"Coordinate system used in dataset. Only for GIS datasets. E.g. ETRS-GK25." + +#: ckanext/sixodp/translations.py:111 +msgid "Time series start" +msgstr "Time series starts" + +#: ckanext/sixodp/translations.py:112 +msgid "A moment in time after which the data is relevant." +msgstr "Starting date for a time series " + +#: ckanext/sixodp/translations.py:114 +msgid "Time series end" +msgstr "Time series ends" + +#: ckanext/sixodp/translations.py:115 +msgid "A moment in time after which the data is no longer relevant." +msgstr "Ending date for a time series" + +#: ckanext/sixodp/translations.py:117 +msgid "Time Series Precision" +msgstr "Time series accuracy " + +#: ckanext/sixodp/translations.py:118 +msgid "eg. 2 weeks" +msgstr "e.g. month / year" + +#: ckanext/sixodp/translations.py:119 +msgid "A string which describes the precision of the entered time series." +msgstr "Update interval for a time series" + +#: ckanext/sixodp/translations.py:122 +msgid "Creative Commons Attribution 4.0" +msgstr "" + +#: ckanext/sixodp/translations.py:123 +msgid "https://creativecommons.org/licenses/by/4.0/" +msgstr "" + +#: ckanext/sixodp/translations.py:125 +msgid "CC0 1.0" +msgstr "" + +#: ckanext/sixodp/translations.py:126 +msgid "https://creativecommons.org/publicdomain/zero/1.0/" +msgstr "" + +#: ckanext/sixodp/translations.py:128 +msgid "Other (Open)" +msgstr "" + +#: ckanext/sixodp/translations.py:130 +msgid "Parent" +msgstr "" + +#: ckanext/sixodp/translations.py:131 +msgid "None - top level" +msgstr "" + +#: ckanext/sixodp/translations.py:132 +msgid "Icon URL" +msgstr "Icon" + +#: ckanext/sixodp/translations.py:133 +msgid "My Group" +msgstr "Name of category" + +#: ckanext/sixodp/validators.py:95 +msgid "Missing value" +msgstr "" + +#: ckanext/sixodp/validators.py:190 +msgid "expecting list of strings" +msgstr "" + +#: ckanext/sixodp/validators.py:196 +#, python-format +msgid "invalid type for repeating text: %r" +msgstr "" + +#: ckanext/sixodp/validators.py:203 +#, python-format +msgid "invalid encoding for \"%s\" value" +msgstr "" + +#: ckanext/sixodp/validators.py:265 +msgid "Failed to decode JSON string" +msgstr "" + +#: ckanext/sixodp/validators.py:268 +msgid "Invalid encoding for JSON string" +msgstr "" + +#: ckanext/sixodp/validators.py:271 +msgid "expecting JSON object" +msgstr "" + +#: ckanext/sixodp/validators.py:277 ckanext/sixodp/validators.py:284 +#, python-format +msgid "Required language \"%s\" missing" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/activity-stream.js:20 +#: ckanext/sixodp/fanstatic/javascript/modules/activity-stream.min.js:1 +#: ckanext/sixodp/fanstatic/javascript/modules/popover-context.js:45 +#: ckanext/sixodp/fanstatic/javascript/modules/popover-context.min.js:1 +#: ckanext/sixodp/templates/package/snippets/data_api_button.html:8 +#: ckanext/sixodp/templates/package/snippets/resource_item.html:26 +msgid "Loading..." +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/api-info.js:20 +#: ckanext/sixodp/fanstatic/javascript/modules/api-info.min.js:1 +msgid "There is no API data to load for this resource" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/api-info.js:21 +#: ckanext/sixodp/fanstatic/javascript/modules/api-info.min.js:1 +msgid "Failed to load data API information" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/autocomplete.js:31 +#: ckanext/sixodp/fanstatic/javascript/modules/autocomplete.min.js:1 +msgid "No matches found" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/autocomplete.js:32 +#: ckanext/sixodp/fanstatic/javascript/modules/autocomplete.min.js:1 +msgid "Start typing…" +msgstr "Start typing…" + +#: ckanext/sixodp/fanstatic/javascript/modules/autocomplete.js:34 +#: ckanext/sixodp/fanstatic/javascript/modules/autocomplete.min.js:1 +msgid "Input is too short, must be at least one character" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/basic-form.js:4 +#: ckanext/sixodp/fanstatic/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/confirm-action.js:7 +#: ckanext/sixodp/fanstatic/javascript/modules/confirm-action.min.js:1 +msgid "Please Confirm Action" +msgstr "Please confirm action" + +#: ckanext/sixodp/fanstatic/javascript/modules/confirm-action.js:8 +#: ckanext/sixodp/fanstatic/javascript/modules/confirm-action.min.js:1 +msgid "Are you sure you want to perform this action?" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/confirm-action.js:9 +#: ckanext/sixodp/fanstatic/javascript/modules/confirm-action.min.js:1 +msgid "Confirm" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/confirm-action.js:10 +#: ckanext/sixodp/fanstatic/javascript/modules/confirm-action.min.js:1 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-reorder.js:11 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-reorder.min.js:1 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-view-reorder.js:11 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-view-reorder.min.js:1 +#: ckanext/sixodp/templates/package/confirm_delete.html:15 +msgid "Cancel" +msgstr "Cancel" + +#: ckanext/sixodp/fanstatic/javascript/modules/follow.js:23 +#: ckanext/sixodp/fanstatic/javascript/modules/follow.min.js:1 +msgid "Follow" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/follow.js:24 +#: ckanext/sixodp/fanstatic/javascript/modules/follow.min.js:1 +msgid "Unfollow" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.js:16 +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.min.js:1 +msgid "Upload" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.js:17 +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.min.js:1 +msgid "Link" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.js:18 +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.min.js:1 +#: ckanext/sixodp/templates/group/snippets/group_item.html:41 +#: ckanext/sixodp/templates/scheming/macros/form.html:10 +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:71 +msgid "Remove" +msgstr "Remove" + +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.js:19 +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.min.js:1 +msgid "Image" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.js:21 +msgid "File" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.js:22 +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.min.js:1 +msgid "Upload a file on your computer" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.js:23 +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.min.js:1 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/related-item.js:25 +#: ckanext/sixodp/fanstatic/javascript/modules/related-item.min.js:1 +msgid "show more" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/related-item.js:26 +#: ckanext/sixodp/fanstatic/javascript/modules/related-item.min.js:1 +msgid "show less" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-reorder.js:8 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-reorder.js:9 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-reorder.min.js:1 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-view-reorder.js:9 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-reorder.js:10 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-reorder.min.js:1 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-view-reorder.js:10 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.js:25 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.js:26 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "An error occurred" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.js:27 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.min.js:1 +msgid "Resource uploaded" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.js:28 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.min.js:1 +msgid "Unable to upload file" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.js:29 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.min.js:1 +msgid "Unable to authenticate upload" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.js:30 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.min.js:1 +msgid "Unable to get data for uploaded file" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.js:31 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.min.js:1 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-view-reorder.js:8 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-view-reorder.min.js:1 +msgid "Reorder resource view" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/slug-preview.js:36 +#: ckanext/sixodp/fanstatic/javascript/modules/slug-preview.min.js:1 +#: ckanext/sixodp/templates/ckanext_pages/blog.html:12 +#: ckanext/sixodp/templates/organization/bulk_process.html:69 +#: ckanext/sixodp/templates/showcase/edit_base.html:14 +msgid "Edit" +msgstr "Edit" + +#: ckanext/sixodp/fanstatic/javascript/modules/table-toggle-more.js:9 +#: ckanext/sixodp/fanstatic/javascript/modules/table-toggle-more.min.js:1 +#: ckanext/sixodp/templates/package/resource_read.html:131 +#: ckanext/sixodp/templates/scheming/package/read.html:18 +#: ckanext/sixodp/templates/snippets/facet_list.html:36 +msgid "Show more" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/table-toggle-more.js:10 +#: ckanext/sixodp/fanstatic/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "Hide" + +#: ckanext/sixodp/templates/footer.html:9 +msgid "Data portal" +msgstr "" + +#: ckanext/sixodp/templates/footer.html:12 +msgid "Content management" +msgstr "" + +#: ckanext/sixodp/templates/footer.html:16 +msgid "Management" +msgstr "" + +#: ckanext/sixodp/templates/footer.html:33 +msgid "Follow us" +msgstr "" + +#: ckanext/sixodp/templates/sixodp_header.html:26 +msgid "Skip to content" +msgstr "Direct link to content" + +#: ckanext/sixodp/templates/admin/config.html:7 +msgid "Service message" +msgstr "" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:36 +msgid "Endpoints" +msgstr "" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:41 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:46 +msgid "Query" +msgstr "" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:50 +msgid "Query (via SQL)" +msgstr "" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:62 +msgid "Querying" +msgstr "" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:67 +msgid "Query example (first 5 results)" +msgstr "" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:72 +msgid "Query example (results containing 'my_resource_query')" +msgstr "" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:77 +msgid "Query example (via SQL statement)" +msgstr "" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:89 +msgid "Example: Javascript" +msgstr "" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:94 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "" + +#: ckanext/sixodp/templates/ckanext_pages/blog.html:4 +#: ckanext/sixodp/templates/ckanext_pages/blog_list.html:11 +msgid "Articles" +msgstr "Articles" + +#: ckanext/sixodp/templates/ckanext_pages/blog.html:28 +#: ckanext/sixodp/templates/ckanext_pages/snippets/pages_list.html:51 +#: ckanext/sixodp/templates/ckanext_pages/snippets/pages_list.html:71 +msgid "This page currently has no content" +msgstr "" + +#: ckanext/sixodp/templates/ckanext_pages/blog_list.html:5 +msgid "Add Article" +msgstr "Add article" + +#: ckanext/sixodp/templates/ckanext_pages/blog_list.html:15 +msgid "Blog" +msgstr "" + +#: ckanext/sixodp/templates/ckanext_pages/pages_edit.html:5 +msgid "Add page" +msgstr "" + +#: ckanext/sixodp/templates/ckanext_pages/snippets/pages_list.html:80 +msgid "There are currently no blog articles here" +msgstr "There are currently no articles here" + +#: ckanext/sixodp/templates/ckanext_pages/snippets/pages_list.html:82 +msgid "There are currently no pages here" +msgstr "" + +#: ckanext/sixodp/templates/collection/index.html:7 +msgid "Search collections..." +msgstr "" + +#: ckanext/sixodp/templates/group/index.html:7 +#: ckanext/sixodp/templates/group/index.html:15 +msgid "Search groups..." +msgstr "Search categories..." + +#: ckanext/sixodp/templates/group/index.html:15 +#: ckanext/sixodp/templates/group/read.html:15 +#: ckanext/sixodp/templates/organization/bulk_process.html:21 +#: ckanext/sixodp/templates/organization/read.html:15 +#: ckanext/sixodp/templates/package/search.html:42 +#: ckanext/sixodp/templates/showcase/manage_datasets.html:25 +#: ckanext/sixodp/templates/showcase/search.html:13 +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:30 +msgid "Name Ascending" +msgstr "Names in ascending order" + +#: ckanext/sixodp/templates/group/index.html:15 +#: ckanext/sixodp/templates/group/read.html:16 +#: ckanext/sixodp/templates/organization/bulk_process.html:22 +#: ckanext/sixodp/templates/organization/read.html:16 +#: ckanext/sixodp/templates/package/search.html:43 +#: ckanext/sixodp/templates/showcase/manage_datasets.html:26 +#: ckanext/sixodp/templates/showcase/search.html:14 +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:30 +msgid "Name Descending" +msgstr "Names in descending order" + +#: ckanext/sixodp/templates/group/read.html:12 +#: ckanext/sixodp/templates/organization/read.html:12 +msgid "Last Created" +msgstr "Last created" + +#: ckanext/sixodp/templates/group/read.html:13 +#: ckanext/sixodp/templates/organization/read.html:13 +#: ckanext/sixodp/templates/package/search.html:40 +#: ckanext/sixodp/templates/showcase/manage_datasets.html:28 +#: ckanext/sixodp/templates/showcase/search.html:16 +#: ckanext/sixodp/templates/snippets/package_item.html:81 +msgid "Popular" +msgstr "Popular" + +#: ckanext/sixodp/templates/group/read.html:14 +#: ckanext/sixodp/templates/organization/read.html:14 +#: ckanext/sixodp/templates/package/search.html:41 +#: ckanext/sixodp/templates/showcase/manage_datasets.html:24 +#: ckanext/sixodp/templates/showcase/search.html:12 +msgid "Relevance" +msgstr "Relevance" + +#: ckanext/sixodp/templates/group/read.html:17 +#: ckanext/sixodp/templates/organization/bulk_process.html:23 +#: ckanext/sixodp/templates/organization/read.html:17 +#: ckanext/sixodp/templates/package/search.html:44 +#: ckanext/sixodp/templates/package/snippets/resource_form.html:51 +#: ckanext/sixodp/templates/showcase/manage_datasets.html:27 +#: ckanext/sixodp/templates/showcase/search.html:15 +msgid "Last Modified" +msgstr "Last modified" + +#: ckanext/sixodp/templates/group/read.html:19 +#: ckanext/sixodp/templates/organization/read.html:19 +#: ckanext/sixodp/templates/package/search.html:11 +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:3 +msgid "Search datasets..." +msgstr "Search data..." + +#: ckanext/sixodp/templates/group/read.html:25 +#: ckanext/sixodp/templates/organization/read.html:30 +#: ckanext/sixodp/templates/package/search.html:88 +msgid "Filter results" +msgstr "" + +#: ckanext/sixodp/templates/group/read_base.html:4 +#: ckanext/sixodp/templates/group/snippets/info.html:12 +#: ckanext/sixodp/templates/organization/bulk_process.html:14 +msgid "Datasets" +msgstr "Datasets" + +#: ckanext/sixodp/templates/group/read_base.html:5 +#: ckanext/sixodp/templates/package/activity.html:3 +#: ckanext/sixodp/templates/package/read_base.html:39 +msgid "Activity Stream" +msgstr "Change history" + +#: ckanext/sixodp/templates/group/snippets/group_item.html:29 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} dataset" +msgstr[1] "{num} datasets" + +#: ckanext/sixodp/templates/group/snippets/group_item.html:31 +msgid "0 Datasets" +msgstr "0 datasets" + +#: ckanext/sixodp/templates/group/snippets/group_item.html:36 +#: ckanext/sixodp/templates/group/snippets/group_item.html:37 +msgid "View {name}" +msgstr "" + +#: ckanext/sixodp/templates/group/snippets/group_item.html:41 +msgid "Remove dataset from this group" +msgstr "Remove dataset from this category" + +#: ckanext/sixodp/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "What are categories?" + +#: ckanext/sixodp/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 "" + +#: ckanext/sixodp/templates/home/snippets/sixodp_language-changer.html:6 +msgid "In Finnish" +msgstr "" + +#: ckanext/sixodp/templates/home/snippets/sixodp_language-changer.html:12 +msgid "In English" +msgstr "" + +#: ckanext/sixodp/templates/home/snippets/sixodp_language-changer.html:18 +msgid "In Swedish" +msgstr "" + +#: ckanext/sixodp/templates/home/snippets/sixodp_navbar_search.html:4 +#: ckanext/sixodp/templates/home/snippets/sixodp_navbar_search.html:11 +#: ckanext/sixodp/templates/snippets/search_form.html:5 +#: ckanext/sixodp/templates/snippets/search_input.html:18 +msgid "Search" +msgstr "" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:12 +msgid "Sysadmin settings" +msgstr "" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:14 +msgid "Admin" +msgstr "Administrator" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:18 +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:20 +msgid "Dataset Editor" +msgstr "Multiedit" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:26 +msgid "View profile" +msgstr "" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:35 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "" +msgstr[1] "" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:38 +msgid "Dashboard" +msgstr "" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:56 +#: ckanext/sixodp/templates/user/dashboard.html:8 +msgid "Edit settings" +msgstr "" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:58 +msgid "Settings" +msgstr "" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:65 +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:67 +msgid "Log out" +msgstr "" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:76 +msgid "Log in" +msgstr "" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:78 +msgid "Register" +msgstr "" + +#: ckanext/sixodp/templates/organization/bulk_process.html:5 +msgid "Edit datasets" +msgstr "" + +#: ckanext/sixodp/templates/organization/bulk_process.html:10 +msgid " found for \"{query}\"" +msgstr "" + +#: ckanext/sixodp/templates/organization/bulk_process.html:12 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "" + +#: ckanext/sixodp/templates/organization/bulk_process.html:41 +msgid "Make public" +msgstr "" + +#: ckanext/sixodp/templates/organization/bulk_process.html:45 +msgid "Make private" +msgstr "" + +#: ckanext/sixodp/templates/organization/bulk_process.html:51 +#: ckanext/sixodp/templates/package/snippets/resource_form.html:65 +msgid "Delete" +msgstr "Delete" + +#: ckanext/sixodp/templates/organization/bulk_process.html:74 +#: ckanext/sixodp/templates/package/read_base.html:15 +#: ckanext/sixodp/templates/showcase/read.html:20 +#: ckanext/sixodp/templates/snippets/package_item.html:69 +msgid "Draft" +msgstr "" + +#: ckanext/sixodp/templates/organization/bulk_process.html:76 +#: ckanext/sixodp/templates/package/read_base.html:20 +#: ckanext/sixodp/templates/scheming/form_snippets/state.html:7 +#: ckanext/sixodp/templates/snippets/package_item.html:71 +msgid "Deleted" +msgstr "" + +#: ckanext/sixodp/templates/organization/bulk_process.html:79 +#: ckanext/sixodp/templates/package/read.html:11 +#: ckanext/sixodp/templates/scheming/form_snippets/private.html:5 +#: ckanext/sixodp/templates/showcase/read.html:13 +#: ckanext/sixodp/templates/snippets/package_item.html:62 +msgid "Private" +msgstr "" + +#: ckanext/sixodp/templates/organization/bulk_process.html:92 +msgid "This organization has no datasets associated to it" +msgstr "This organisation has no datasets associated to it" + +#: ckanext/sixodp/templates/organization/index.html:7 +#: ckanext/sixodp/templates/organization/index.html:15 +msgid "Search organizations..." +msgstr "Search for organisations..." + +#: ckanext/sixodp/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "" + +#: ckanext/sixodp/templates/package/confirm_delete.html:16 +msgid "Confirm Delete" +msgstr "" + +#: ckanext/sixodp/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Associate this category with this dataset" + +#: ckanext/sixodp/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Add to category" + +#: ckanext/sixodp/templates/package/group_list.html:24 +msgid "There are no groups associated with this dataset" +msgstr "No categories are associated with this dataset." + +#: ckanext/sixodp/templates/package/new_view.html:3 +#: ckanext/sixodp/templates/package/new_view.html:4 +#: ckanext/sixodp/templates/package/new_view.html:8 +#: ckanext/sixodp/templates/package/new_view.html:12 +msgid "Add view" +msgstr "" + +#: ckanext/sixodp/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 "" + +#: ckanext/sixodp/templates/package/new_view.html:28 +#: ckanext/sixodp/templates/package/snippets/resource_view.html:48 +msgid "Preview" +msgstr "" + +#: ckanext/sixodp/templates/package/new_view.html:29 +#: ckanext/sixodp/templates/package/snippets/resource_form.html:81 +#: ckanext/sixodp/templates/scheming/macros/form.html:9 +msgid "Add" +msgstr "" + +#: ckanext/sixodp/templates/package/read.html:43 +#: ckanext/sixodp/templates/package/read_base.html:75 +#: ckanext/sixodp/templates/package/resource_read.html:186 +msgid "Subscribe for dataset updates" +msgstr "" + +#: ckanext/sixodp/templates/package/read_base.html:37 +msgid "Dataset" +msgstr "" + +#: ckanext/sixodp/templates/package/read_base.html:38 +#: ckanext/sixodp/templates/showcase/edit_base.html:5 +#: ckanext/sixodp/templates/showcase/edit_base.html:12 +#: ckanext/sixodp/templates/showcase/edit_base.html:16 +msgid "Showcases" +msgstr "" + +#: ckanext/sixodp/templates/package/resource_read.html:18 +#: ckanext/sixodp/templates/showcase/read.html:6 +msgid "Manage" +msgstr "" + +#: ckanext/sixodp/templates/package/resource_read.html:41 +msgid "View" +msgstr "" + +#: ckanext/sixodp/templates/package/resource_read.html:43 +msgid "API Endpoint" +msgstr "API endpoint" + +#: ckanext/sixodp/templates/package/resource_read.html:45 +#: ckanext/sixodp/templates/package/snippets/resource_item.html:36 +#: ckanext/sixodp/templates/report/view.html:47 +msgid "Download" +msgstr "Download" + +#: ckanext/sixodp/templates/package/resource_read.html:89 +msgid "There are no views created for this resource yet." +msgstr "" + +#: ckanext/sixodp/templates/package/resource_read.html:92 +msgid "Not seeing the views you were expecting?" +msgstr "" + +#: ckanext/sixodp/templates/package/resource_read.html:94 +#: ckanext/sixodp/templates/package/snippets/resource_view.html:18 +msgid "Click here for more information." +msgstr "" + +#: ckanext/sixodp/templates/package/resource_read.html:98 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" + +#: ckanext/sixodp/templates/package/resource_read.html:100 +msgid "No view has been created that is suitable for this resource" +msgstr "" + +#: ckanext/sixodp/templates/package/resource_read.html:101 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" + +#: ckanext/sixodp/templates/package/resource_read.html:102 +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 "" + +#: ckanext/sixodp/templates/package/resource_read.html:123 +msgid "From the dataset abstract" +msgstr "" + +#: ckanext/sixodp/templates/package/resource_read.html:125 +#, python-format +msgid "Source: %(dataset)s" +msgstr "" + +#: ckanext/sixodp/templates/package/resource_read.html:132 +#: ckanext/sixodp/templates/scheming/package/read.html:19 +#: ckanext/sixodp/templates/snippets/facet_list.html:39 +msgid "Show less" +msgstr "" + +#: ckanext/sixodp/templates/package/resource_read.html:155 +msgid "Back to dataset" +msgstr "Back " + +#: ckanext/sixodp/templates/package/search.html:25 +msgid "Add Dataset" +msgstr "Add dataset" + +#: ckanext/sixodp/templates/package/search.html:38 +msgid "Newest first" +msgstr "Newest first" + +#: ckanext/sixodp/templates/package/search.html:39 +msgid "Oldest first" +msgstr "Oldest first" + +#: ckanext/sixodp/templates/package/search.html:67 +msgid "API" +msgstr "" + +#: ckanext/sixodp/templates/package/search.html:68 +msgid "API Docs" +msgstr "API docs" + +#: ckanext/sixodp/templates/package/search.html:70 +msgid "full {format} dump" +msgstr "" + +#: ckanext/sixodp/templates/package/search.html:71 +#, 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 "" + +#: ckanext/sixodp/templates/package/search.html:75 +#, python-format +msgid "" +"You can also access this registry using the %(api_link)s (see " +"%(api_doc_link)s)." +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:2 +msgid "Additional Info" +msgstr "Additional information" + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:7 +#: ckanext/sixodp/templates/scheming/package/resource_read.html:9 +msgid "Metadata API" +msgstr "Metadata API" + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:29 +#: ckanext/sixodp/templates/package/snippets/additional_info.html:34 +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:63 +msgid "Author" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:53 +msgid "Version" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:60 +#: ckanext/sixodp/templates/scheming/form_snippets/state.html:3 +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:171 +msgid "State" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:66 +msgid "Last Updated" +msgstr "Last updated" + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:72 +msgid "Created" +msgstr "Created" + +#: ckanext/sixodp/templates/package/snippets/data_api_button.html:10 +#: ckanext/sixodp/templates/package/snippets/resource_item.html:28 +msgid "Data API" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:24 +msgid "Data" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "e.g. Budget 2020" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "Short and concise description of a resource" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "e.g. CSV, XML or JSON" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:40 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "e.g. 2018-06-05" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "File size" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "e.g. 1024" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:55 +#: ckanext/sixodp/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:55 +#: ckanext/sixodp/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "e.g. application/json" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:88 +msgid "Estimated upload times with the selected resource file" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:16 +msgid "This resource view is not available at the moment." +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:25 +msgid "Download resource" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:49 +msgid "Your browser does not support iframes." +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:60 +msgid "Fullscreen" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:68 +msgid "Embed" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:80 +msgid "Embed resource view" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:83 +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." + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:86 +msgid "Width" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:89 +msgid "Height" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:92 +msgid "Code" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resources.html:4 +msgid "Resources" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resources_list.html:26 +#, python-format +msgid "" +"

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

" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "Name of the view" + +#: ckanext/sixodp/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "A brief description of the view" + +#: ckanext/sixodp/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/view_help.html:4 +msgid "A view is a representation of the data held against a resource" +msgstr "" + +#: ckanext/sixodp/templates/report/index.html:5 +#: ckanext/sixodp/templates/report/view.html:3 +#: ckanext/sixodp/templates/report/view.html:6 +msgid "Reports" +msgstr "" + +#: ckanext/sixodp/templates/report/index.html:24 +msgid "View Report" +msgstr "View report" + +#: ckanext/sixodp/templates/report/view.html:16 +msgid "Generated" +msgstr "" + +#: ckanext/sixodp/templates/report/view.html:20 +msgid "Refresh report" +msgstr "" + +#: ckanext/sixodp/templates/report/view.html:23 +msgid "Refresh" +msgstr "" + +#: ckanext/sixodp/templates/report/view.html:25 +msgid "" +"As a system administrator you are able to refresh this report on demand by " +"clicking the 'Refresh' button." +msgstr "" +"You can refresh this report on demand by clicking the 'Refresh' button." + +#: ckanext/sixodp/templates/report/view.html:31 +msgid "Options" +msgstr "" + +#: ckanext/sixodp/templates/report/view.html:52 +msgid "Results" +msgstr "Results" + +#: ckanext/sixodp/templates/report/view.html:54 +msgid "No results found." +msgstr "" + +#: ckanext/sixodp/templates/scheming/form_snippets/organization_ex.html:26 +msgid "No organization" +msgstr "No organisation" + +#: ckanext/sixodp/templates/scheming/form_snippets/private.html:5 +msgid "Public" +msgstr "" + +#: ckanext/sixodp/templates/scheming/form_snippets/state.html:6 +msgid "Active" +msgstr "" + +#: ckanext/sixodp/templates/scheming/form_snippets/ytp_multiple_checkbox.html:18 +#, python-format +msgid "" +"Categories can be edited from here." +msgstr "" + +#: ckanext/sixodp/templates/scheming/macros/form.html:37 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" + +#: ckanext/sixodp/templates/scheming/package/resource_read.html:5 +msgid "Additional Information" +msgstr "Additional information" + +#: ckanext/sixodp/templates/scheming/package/resource_read.html:16 +msgid "Field" +msgstr "" + +#: ckanext/sixodp/templates/scheming/package/resource_read.html:17 +msgid "Value" +msgstr "" + +#: ckanext/sixodp/templates/scheming/package/resource_read.html:28 +msgid "unknown" +msgstr "" + +#: ckanext/sixodp/templates/scheming/package/resource_read.html:38 +msgid "GB" +msgstr "" + +#: ckanext/sixodp/templates/scheming/package/resource_read.html:40 +msgid "MB" +msgstr "" + +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:183 +msgid "How to reference" +msgstr "" + +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:190 +msgid "" +"The maintainer of the dataset is {maintainer} and the original author is " +"{author}" +msgstr "" + +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:193 +msgid "The maintainer of the dataset is {maintainer}" +msgstr "" + +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:196 +msgid "The dataset has been downloaded from" +msgstr "" + +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:196 +msgid "service on {date}" +msgstr "" + +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:199 +msgid "using the license" +msgstr "under the license" + +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:201 +msgid "The license can be found on the maintainer's service" +msgstr "" + +#: ckanext/sixodp/templates/showcase/edit_base.html:17 +msgid "Create Showcase" +msgstr "Create showcase" + +#: ckanext/sixodp/templates/showcase/edit_base.html:30 +msgid "View showcase" +msgstr "" + +#: ckanext/sixodp/templates/showcase/edit_base.html:36 +msgid "Edit showcase" +msgstr "" + +#: ckanext/sixodp/templates/showcase/edit_base.html:37 +msgid "Manage datasets" +msgstr "" + +#: ckanext/sixodp/templates/showcase/manage_datasets.html:3 +msgid "Showcases - Manage datasets" +msgstr "" + +#: ckanext/sixodp/templates/showcase/manage_datasets.html:36 +msgid "Datasets available to add to this showcase" +msgstr "" + +#: ckanext/sixodp/templates/showcase/manage_datasets.html:51 +msgid "Add to Showcase" +msgstr "Add to showcase" + +#: ckanext/sixodp/templates/showcase/manage_datasets.html:88 +msgid "No datasets could be found" +msgstr "" + +#: ckanext/sixodp/templates/showcase/manage_datasets.html:96 +msgid "Datasets in this showcase" +msgstr "" + +#: ckanext/sixodp/templates/showcase/manage_datasets.html:109 +msgid "Remove from Showcase" +msgstr "Remove from showcase" + +#: ckanext/sixodp/templates/showcase/manage_datasets.html:140 +msgid "This showcase has no datasets associated to it" +msgstr "" + +#: ckanext/sixodp/templates/showcase/read.html:38 +msgid "Launch website" +msgstr "" + +#: ckanext/sixodp/templates/showcase/search.html:19 +msgid "Search showcases..." +msgstr "" + +#: ckanext/sixodp/templates/snippets/facet_list.html:43 +msgid "There are no {facet_type} that match this search" +msgstr "" + +#: ckanext/sixodp/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Frontpage" + +#: ckanext/sixodp/templates/snippets/horizontal_accordion.html:30 +msgid "Close preview" +msgstr "Hide" + +#: ckanext/sixodp/templates/snippets/horizontal_accordion.html:31 +msgid "Show preview" +msgstr "Show preview" + +#: ckanext/sixodp/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "No license provided" + +#: ckanext/sixodp/templates/snippets/license.html:33 +msgid "This dataset satisfies the Open Definition." +msgstr "" + +#: ckanext/sixodp/templates/snippets/package_item.html:88 +msgid "This dataset has no description" +msgstr "" + +#: ckanext/sixodp/templates/snippets/page_highlight_item.html:8 +msgid "View {showcase_title}" +msgstr "" + +#: ckanext/sixodp/templates/snippets/search_form.html:9 +msgid "Submit" +msgstr "" + +#: ckanext/sixodp/templates/snippets/search_form.html:19 +msgid "Sort" +msgstr "" + +#: ckanext/sixodp/templates/snippets/search_form.html:30 +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:43 +msgid "Go" +msgstr "" + +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:36 +msgid "Sort results" +msgstr "" + +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:82 +msgid "

Please try another search or change search facets.

" +msgstr "" + +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:88 +msgid "" +"

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

" +msgstr "" + +#: ckanext/sixodp/templates/snippets/sixodp_offcanvas-filter-button.html:2 +msgid "Filters" +msgstr "Filters" + +#: ckanext/sixodp/templates/snippets/sixodp_offcanvas-info-button.html:2 +msgid "About" +msgstr "" + +#: ckanext/sixodp/templates/user/dashboard.html:11 +#: ckanext/sixodp/templates/user/dashboard.html:29 +msgid "News feed" +msgstr "" + +#: ckanext/sixodp/templates/user/dashboard.html:12 +msgid "My Datasets" +msgstr "My datasets" + +#: ckanext/sixodp/templates/user/dashboard.html:13 +msgid "My Organizations" +msgstr "My organisations" + +#: ckanext/sixodp/templates/user/dashboard.html:14 +msgid "My Groups" +msgstr "My groups" + +#: ckanext/sixodp/templates/user/dashboard.html:31 +msgid "Activity from items that I'm following" +msgstr "" + +#: ckanext/sixodp/templates/user/login.html:6 +msgid "Login" +msgstr "" + +#: ckanext/sixodp/templates/user/snippets/followee_dropdown.html:14 +#: ckanext/sixodp/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "" + +#: ckanext/sixodp/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "" + +#: ckanext/sixodp/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "" diff --git a/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/en_GB/LC_MESSAGES/ckanext-sixodp_ui.mo b/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/en_GB/LC_MESSAGES/ckanext-sixodp_ui.mo deleted file mode 100644 index 70a298999..000000000 Binary files a/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/en_GB/LC_MESSAGES/ckanext-sixodp_ui.mo and /dev/null differ diff --git a/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/en_GB/LC_MESSAGES/ckanext-sixodp_ui.po b/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/en_GB/LC_MESSAGES/ckanext-sixodp_ui.po deleted file mode 100644 index 51b794ae9..000000000 --- a/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/en_GB/LC_MESSAGES/ckanext-sixodp_ui.po +++ /dev/null @@ -1,1252 +0,0 @@ -# Translations template for ckanext-sixodp_ui. -# Copyright (C) 2020 ORGANIZATION -# This file is distributed under the same license as the ckanext-sixodp_ui -# project. -# FIRST AUTHOR , 2020. -# -# Translators: -# Juha Härkönen , 2017 -# Zharktas , 2019 -# Joonas Dukpa, 2019 -# Hami Kekkonen , 2020 -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: ckanext-sixodp_ui 0.0.1\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2020-09-11 11:35+0000\n" -"PO-Revision-Date: 2017-01-23 14:12+0000\n" -"Last-Translator: Hami Kekkonen , 2020\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/6aika-dataportal/teams/68018/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" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ckanext/sixodp_ui/helpers.py:176 -msgid "Dataset not found" -msgstr "" - -#: ckanext/sixodp_ui/helpers.py:287 -msgid "Show submenu for " -msgstr "" - -#: ckanext/sixodp_ui/plugin.py:218 ckanext/sixodp_ui/plugin.py:229 -#: ckanext/sixodp_ui/plugin.py:239 -msgid "Formats" -msgstr "Formats" - -#: ckanext/sixodp_ui/plugin.py:219 ckanext/sixodp_ui/plugin.py:230 -#: ckanext/sixodp_ui/plugin.py:240 -msgid "Geographical Coverage" -msgstr "Area" - -#: ckanext/sixodp_ui/plugin.py:220 ckanext/sixodp_ui/plugin.py:231 -#: ckanext/sixodp_ui/plugin.py:241 -#: ckanext/sixodp_ui/templates/package/group_list.html:5 -#: ckanext/sixodp_ui/templates/package/read_base.html:41 -msgid "Groups" -msgstr "Categories" - -#: ckanext/sixodp_ui/plugin.py:221 ckanext/sixodp_ui/plugin.py:232 -#: ckanext/sixodp_ui/plugin.py:242 -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:44 -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:46 -msgid "Organizations" -msgstr "Organisations" - -#: ckanext/sixodp_ui/plugin.py:222 ckanext/sixodp_ui/plugin.py:233 -#: ckanext/sixodp_ui/plugin.py:243 -#: ckanext/sixodp_ui/templates/package/read_base.html:42 -msgid "Collections" -msgstr "Data collections" - -#: ckanext/sixodp_ui/translations.py:8 -msgid "Broken links" -msgstr "" - -#: ckanext/sixodp_ui/translations.py:9 -msgid "" -"Dataset resource URLs that are found to result in errors when resolved." -msgstr "" - -#: ckanext/sixodp_ui/translations.py:10 -msgid "Openness (Five Stars)" -msgstr "" - -#: ckanext/sixodp_ui/translations.py:11 -msgid "" -"Datasets graded on Tim Berners Lees' Five Stars of Openness - openly " -"licensed, openly accessible, structured, open format, URIs for entities, " -"linked." -msgstr "" - -#: ckanext/sixodp_ui/translations.py:13 -msgid "Most popular datasets" -msgstr "" - -#: ckanext/sixodp_ui/translations.py:14 -msgid "Google analytics showing top datasets with most views" -msgstr "" - -#: ckanext/sixodp_ui/translations.py:15 -msgid "Most popular resources" -msgstr "" - -#: ckanext/sixodp_ui/translations.py:16 -msgid "Google analytics showing most downloaded resources" -msgstr "" - -#: ckanext/sixodp_ui/translations.py:17 -msgid "Publisher activity" -msgstr "" - -#: ckanext/sixodp_ui/translations.py:18 -msgid "A quarterly list of datasets created and edited by a publisher." -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/activity-stream.js:20 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/activity-stream.min.js:1 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/popover-context.js:45 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/popover-context.min.js:1 -#: ckanext/sixodp_ui/templates/package/snippets/data_api_button.html:8 -#: ckanext/sixodp_ui/templates/package/snippets/resource_item.html:26 -msgid "Loading..." -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/api-info.js:20 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/api-info.min.js:1 -msgid "There is no API data to load for this resource" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/api-info.js:21 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/api-info.min.js:1 -msgid "Failed to load data API information" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/autocomplete.js:31 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/autocomplete.min.js:1 -msgid "No matches found" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/autocomplete.js:32 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/autocomplete.min.js:1 -msgid "Start typing…" -msgstr "Start typing…" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/autocomplete.js:34 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/autocomplete.min.js:1 -msgid "Input is too short, must be at least one character" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/basic-form.js:4 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/basic-form.min.js:1 -msgid "There are unsaved modifications to this form" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/confirm-action.js:7 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/confirm-action.min.js:1 -msgid "Please Confirm Action" -msgstr "Please confirm action" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/confirm-action.js:8 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/confirm-action.min.js:1 -msgid "Are you sure you want to perform this action?" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/confirm-action.js:9 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/confirm-action.min.js:1 -msgid "Confirm" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/confirm-action.js:10 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/confirm-action.min.js:1 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-reorder.js:11 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-reorder.min.js:1 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-view-reorder.js:11 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-view-reorder.min.js:1 -#: ckanext/sixodp_ui/templates/package/confirm_delete.html:15 -msgid "Cancel" -msgstr "Cancel" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/follow.js:23 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/follow.min.js:1 -msgid "Follow" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/follow.js:24 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/follow.min.js:1 -msgid "Unfollow" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.js:16 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.min.js:1 -msgid "Upload" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.js:17 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.min.js:1 -msgid "Link" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.js:18 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.min.js:1 -#: ckanext/sixodp_ui/templates/group/snippets/group_item.html:41 -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:71 -msgid "Remove" -msgstr "Remove" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.js:19 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.min.js:1 -msgid "Image" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.js:20 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/slug-preview.js:35 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/slug-preview.min.js:1 -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.js:22 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.min.js:1 -msgid "Upload a file on your computer" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.js:23 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.min.js:1 -msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/related-item.js:25 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/related-item.min.js:1 -msgid "show more" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/related-item.js:26 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/related-item.min.js:1 -msgid "show less" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-reorder.js:8 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-reorder.min.js:1 -msgid "Reorder resources" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-reorder.js:9 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-reorder.min.js:1 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-view-reorder.js:9 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-view-reorder.min.js:1 -msgid "Save order" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-reorder.js:10 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-reorder.min.js:1 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-view-reorder.js:10 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-view-reorder.min.js:1 -msgid "Saving..." -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.js:25 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.min.js:1 -msgid "Upload a file" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.js:26 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.min.js:1 -msgid "An Error Occurred" -msgstr "An error occurred" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.js:27 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.min.js:1 -msgid "Resource uploaded" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.js:28 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.min.js:1 -msgid "Unable to upload file" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.js:29 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.min.js:1 -msgid "Unable to authenticate upload" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.js:30 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.min.js:1 -msgid "Unable to get data for uploaded file" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.js:31 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.min.js:1 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-view-reorder.js:8 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-view-reorder.min.js:1 -msgid "Reorder resource view" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/slug-preview.js:36 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/slug-preview.min.js:1 -#: ckanext/sixodp_ui/templates/ckanext_pages/blog.html:12 -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:69 -#: ckanext/sixodp_ui/templates/showcase/edit_base.html:14 -msgid "Edit" -msgstr "Edit" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/table-toggle-more.js:9 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/table-toggle-more.min.js:1 -#: ckanext/sixodp_ui/templates/package/resource_read.html:130 -#: ckanext/sixodp_ui/templates/snippets/facet_list.html:36 -msgid "Show more" -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/table-toggle-more.js:10 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/table-toggle-more.min.js:1 -msgid "Hide" -msgstr "Hide" - -#: ckanext/sixodp_ui/templates/footer.html:9 -msgid "Data portal" -msgstr "" - -#: ckanext/sixodp_ui/templates/footer.html:12 -msgid "Content management" -msgstr "" - -#: ckanext/sixodp_ui/templates/footer.html:16 -msgid "Management" -msgstr "" - -#: ckanext/sixodp_ui/templates/footer.html:33 -msgid "Follow us" -msgstr "" - -#: ckanext/sixodp_ui/templates/sixodp_header.html:26 -msgid "Skip to content" -msgstr "Direct link to content" - -#: ckanext/sixodp_ui/templates/admin/config.html:7 -msgid "Service message" -msgstr "" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:21 -msgid "CKAN Data API" -msgstr "" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:25 -msgid "Access resource data via a web API with powerful query support" -msgstr "" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:26 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:36 -msgid "Endpoints" -msgstr "" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:41 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:46 -msgid "Query" -msgstr "" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:50 -msgid "Query (via SQL)" -msgstr "" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:62 -msgid "Querying" -msgstr "" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:67 -msgid "Query example (first 5 results)" -msgstr "" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:72 -msgid "Query example (results containing 'my_resource_query')" -msgstr "" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:77 -msgid "Query example (via SQL statement)" -msgstr "" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:89 -msgid "Example: Javascript" -msgstr "" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:94 -msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:116 -msgid "Example: Python" -msgstr "" - -#: ckanext/sixodp_ui/templates/ckanext_pages/blog.html:4 -#: ckanext/sixodp_ui/templates/ckanext_pages/blog_list.html:11 -msgid "Articles" -msgstr "Articles" - -#: ckanext/sixodp_ui/templates/ckanext_pages/blog.html:28 -#: ckanext/sixodp_ui/templates/ckanext_pages/snippets/pages_list.html:51 -#: ckanext/sixodp_ui/templates/ckanext_pages/snippets/pages_list.html:71 -msgid "This page currently has no content" -msgstr "" - -#: ckanext/sixodp_ui/templates/ckanext_pages/blog_list.html:5 -msgid "Add Article" -msgstr "Add article" - -#: ckanext/sixodp_ui/templates/ckanext_pages/blog_list.html:15 -msgid "Blog" -msgstr "" - -#: ckanext/sixodp_ui/templates/ckanext_pages/pages_edit.html:5 -msgid "Add page" -msgstr "" - -#: ckanext/sixodp_ui/templates/ckanext_pages/snippets/pages_list.html:80 -msgid "There are currently no blog articles here" -msgstr "There are currently no articles here" - -#: ckanext/sixodp_ui/templates/ckanext_pages/snippets/pages_list.html:82 -msgid "There are currently no pages here" -msgstr "" - -#: ckanext/sixodp_ui/templates/collection/index.html:7 -msgid "Search collections..." -msgstr "" - -#: ckanext/sixodp_ui/templates/group/index.html:7 -#: ckanext/sixodp_ui/templates/group/index.html:15 -msgid "Search groups..." -msgstr "Search categories..." - -#: ckanext/sixodp_ui/templates/group/index.html:15 -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:21 -#: ckanext/sixodp_ui/templates/organization/read.html:15 -#: ckanext/sixodp_ui/templates/package/search.html:38 -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:25 -#: ckanext/sixodp_ui/templates/showcase/search.html:13 -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:30 -msgid "Name Ascending" -msgstr "Names in ascending order" - -#: ckanext/sixodp_ui/templates/group/index.html:15 -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:22 -#: ckanext/sixodp_ui/templates/organization/read.html:16 -#: ckanext/sixodp_ui/templates/package/search.html:39 -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:26 -#: ckanext/sixodp_ui/templates/showcase/search.html:14 -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:30 -msgid "Name Descending" -msgstr "Names in descending order" - -#: ckanext/sixodp_ui/templates/group/read.html:6 -#: ckanext/sixodp_ui/templates/organization/read.html:30 -#: ckanext/sixodp_ui/templates/package/search.html:84 -msgid "Filter results" -msgstr "" - -#: ckanext/sixodp_ui/templates/group/read_base.html:4 -#: ckanext/sixodp_ui/templates/group/snippets/info.html:12 -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:14 -msgid "Datasets" -msgstr "Datasets" - -#: ckanext/sixodp_ui/templates/group/read_base.html:5 -#: ckanext/sixodp_ui/templates/package/activity.html:3 -#: ckanext/sixodp_ui/templates/package/read_base.html:39 -msgid "Activity Stream" -msgstr "Change history" - -#: ckanext/sixodp_ui/templates/group/snippets/group_item.html:29 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "{num} dataset" -msgstr[1] "{num} datasets" - -#: ckanext/sixodp_ui/templates/group/snippets/group_item.html:31 -msgid "0 Datasets" -msgstr "0 datasets" - -#: ckanext/sixodp_ui/templates/group/snippets/group_item.html:36 -#: ckanext/sixodp_ui/templates/group/snippets/group_item.html:37 -msgid "View {name}" -msgstr "" - -#: ckanext/sixodp_ui/templates/group/snippets/group_item.html:41 -msgid "Remove dataset from this group" -msgstr "Remove dataset from this category" - -#: ckanext/sixodp_ui/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "What are categories?" - -#: ckanext/sixodp_ui/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 "" -"Categories are used to group datasets into different themes. One dataset can" -" be a part of multiple categories." - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_language-changer.html:6 -msgid "In Finnish" -msgstr "" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_language-changer.html:12 -msgid "In English" -msgstr "" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_language-changer.html:18 -msgid "In Swedish" -msgstr "" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_navbar_search.html:4 -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_navbar_search.html:11 -#: ckanext/sixodp_ui/templates/snippets/search_form.html:5 -#: ckanext/sixodp_ui/templates/snippets/search_input.html:18 -msgid "Search" -msgstr "" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:12 -msgid "Sysadmin settings" -msgstr "" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:14 -msgid "Admin" -msgstr "Administrator" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:18 -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:20 -msgid "Dataset Editor" -msgstr "Multiedit" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:26 -msgid "View profile" -msgstr "" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:35 -#, python-format -msgid "Dashboard (%(num)d new item)" -msgid_plural "Dashboard (%(num)d new items)" -msgstr[0] "" -msgstr[1] "" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:38 -msgid "Dashboard" -msgstr "" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:56 -#: ckanext/sixodp_ui/templates/user/dashboard.html:8 -msgid "Edit settings" -msgstr "" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:58 -msgid "Settings" -msgstr "" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:65 -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:67 -msgid "Log out" -msgstr "" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:76 -msgid "Log in" -msgstr "" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:78 -msgid "Register" -msgstr "" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:5 -msgid "Edit datasets" -msgstr "" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:10 -msgid " found for \"{query}\"" -msgstr "" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:12 -msgid "Sorry no datasets found for \"{query}\"" -msgstr "" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:23 -#: ckanext/sixodp_ui/templates/organization/read.html:17 -#: ckanext/sixodp_ui/templates/package/search.html:40 -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:51 -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:27 -#: ckanext/sixodp_ui/templates/showcase/search.html:15 -msgid "Last Modified" -msgstr "Last modified" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:41 -msgid "Make public" -msgstr "" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:45 -msgid "Make private" -msgstr "" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:51 -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:65 -msgid "Delete" -msgstr "Delete" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:74 -#: ckanext/sixodp_ui/templates/package/read_base.html:15 -#: ckanext/sixodp_ui/templates/showcase/read.html:20 -#: ckanext/sixodp_ui/templates/snippets/package_item.html:68 -msgid "Draft" -msgstr "" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:76 -#: ckanext/sixodp_ui/templates/package/read_base.html:20 -#: ckanext/sixodp_ui/templates/snippets/package_item.html:70 -msgid "Deleted" -msgstr "" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:79 -#: ckanext/sixodp_ui/templates/package/read.html:11 -#: ckanext/sixodp_ui/templates/showcase/read.html:13 -#: ckanext/sixodp_ui/templates/snippets/package_item.html:61 -msgid "Private" -msgstr "" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:92 -msgid "This organization has no datasets associated to it" -msgstr "This organisation has no datasets associated to it" - -#: ckanext/sixodp_ui/templates/organization/index.html:7 -#: ckanext/sixodp_ui/templates/organization/index.html:15 -msgid "Search organizations..." -msgstr "Search for organisations..." - -#: ckanext/sixodp_ui/templates/organization/read.html:12 -msgid "Last Created" -msgstr "Last created" - -#: ckanext/sixodp_ui/templates/organization/read.html:13 -#: ckanext/sixodp_ui/templates/package/search.html:36 -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:28 -#: ckanext/sixodp_ui/templates/showcase/search.html:16 -#: ckanext/sixodp_ui/templates/snippets/package_item.html:80 -msgid "Popular" -msgstr "Popular" - -#: ckanext/sixodp_ui/templates/organization/read.html:14 -#: ckanext/sixodp_ui/templates/package/search.html:37 -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:24 -#: ckanext/sixodp_ui/templates/showcase/search.html:12 -msgid "Relevance" -msgstr "Relevance" - -#: ckanext/sixodp_ui/templates/organization/read.html:19 -#: ckanext/sixodp_ui/templates/package/search.html:7 -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:3 -msgid "Search datasets..." -msgstr "Search data..." - -#: ckanext/sixodp_ui/templates/package/confirm_delete.html:12 -msgid "Are you sure you want to delete dataset - {name}?" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/confirm_delete.html:16 -msgid "Confirm Delete" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "Associate this category with this dataset" - -#: ckanext/sixodp_ui/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "Add to category" - -#: ckanext/sixodp_ui/templates/package/group_list.html:24 -msgid "There are no groups associated with this dataset" -msgstr "No categories are associated with this dataset." - -#: ckanext/sixodp_ui/templates/package/new_view.html:3 -#: ckanext/sixodp_ui/templates/package/new_view.html:4 -#: ckanext/sixodp_ui/templates/package/new_view.html:8 -#: ckanext/sixodp_ui/templates/package/new_view.html:12 -msgid "Add view" -msgstr "" - -#: ckanext/sixodp_ui/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 "" - -#: ckanext/sixodp_ui/templates/package/new_view.html:28 -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:48 -msgid "Preview" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/new_view.html:29 -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:81 -msgid "Add" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/read.html:43 -#: ckanext/sixodp_ui/templates/package/read_base.html:75 -#: ckanext/sixodp_ui/templates/package/resource_read.html:185 -msgid "Subscribe for dataset updates" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/read_base.html:37 -msgid "Dataset" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/read_base.html:38 -#: ckanext/sixodp_ui/templates/showcase/edit_base.html:5 -#: ckanext/sixodp_ui/templates/showcase/edit_base.html:12 -#: ckanext/sixodp_ui/templates/showcase/edit_base.html:16 -msgid "Showcases" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:18 -#: ckanext/sixodp_ui/templates/showcase/read.html:6 -msgid "Manage" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:40 -msgid "View" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:42 -msgid "API Endpoint" -msgstr "API endpoint" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:44 -#: ckanext/sixodp_ui/templates/package/snippets/resource_item.html:36 -#: ckanext/sixodp_ui/templates/report/view.html:47 -msgid "Download" -msgstr "Download" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:88 -msgid "There are no views created for this resource yet." -msgstr "" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:91 -msgid "Not seeing the views you were expecting?" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:93 -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:18 -msgid "Click here for more information." -msgstr "" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:97 -msgid "Here are some reasons you may not be seeing expected views:" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:99 -msgid "No view has been created that is suitable for this resource" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:100 -msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:101 -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 "" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:122 -msgid "From the dataset abstract" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:124 -#, python-format -msgid "Source: %(dataset)s" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:131 -#: ckanext/sixodp_ui/templates/snippets/facet_list.html:39 -msgid "Show less" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:154 -msgid "Back to dataset" -msgstr "Back " - -#: ckanext/sixodp_ui/templates/package/search.html:21 -msgid "Add Dataset" -msgstr "Add dataset" - -#: ckanext/sixodp_ui/templates/package/search.html:34 -msgid "Newest first" -msgstr "Newest first" - -#: ckanext/sixodp_ui/templates/package/search.html:35 -msgid "Oldest first" -msgstr "Oldest first" - -#: ckanext/sixodp_ui/templates/package/search.html:63 -msgid "API" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/search.html:64 -msgid "API Docs" -msgstr "API docs" - -#: ckanext/sixodp_ui/templates/package/search.html:66 -msgid "full {format} dump" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/search.html:67 -#, 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 "" - -#: ckanext/sixodp_ui/templates/package/search.html:71 -#, python-format -msgid "" -" You can also access this registry using the %(api_link)s (see " -"%(api_doc_link)s). " -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:2 -msgid "Additional Info" -msgstr "Additional information" - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:7 -msgid "Metadata API" -msgstr "Metadata API" - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:18 -msgid "Source" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:29 -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:34 -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:63 -msgid "Author" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:41 -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:46 -msgid "Maintainer" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:53 -msgid "Version" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:60 -msgid "State" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:66 -msgid "Last Updated" -msgstr "Last updated" - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:72 -msgid "Created" -msgstr "Created" - -#: ckanext/sixodp_ui/templates/package/snippets/data_api_button.html:10 -#: ckanext/sixodp_ui/templates/package/snippets/resource_item.html:28 -msgid "Data API" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/package_form.html:5 -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 "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:24 -msgid "Data" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "e.g. Budget 2020" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:32 -#: ckanext/sixodp_ui/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Description" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "Short and concise description of a resource" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:37 -msgid "Format" -msgstr "Format" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "e.g. CSV, XML or JSON" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "e.g. 2018-06-05" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "File size" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "e.g. 1024" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:55 -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:55 -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "e.g. application/json" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:71 -msgid "Previous" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:74 -msgid "Save & add another" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:77 -msgid "Finish" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:88 -msgid "Estimated upload times with the selected resource file" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:16 -msgid "This resource view is not available at the moment." -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:25 -msgid "Download resource" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:49 -msgid "Your browser does not support iframes." -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:60 -msgid "Fullscreen" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:68 -msgid "Embed" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:80 -msgid "Embed resource view" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:83 -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." - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:86 -msgid "Width" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:89 -msgid "Height" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:92 -msgid "Code" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resources.html:4 -msgid "Resources" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/view_form.html:8 -msgid "Title" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "Name of the view" - -#: ckanext/sixodp_ui/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" -msgstr "A brief description of the view" - -#: ckanext/sixodp_ui/templates/package/snippets/view_help.html:2 -msgid "What's a view?" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/view_help.html:4 -msgid "A view is a representation of the data held against a resource" -msgstr "" - -#: ckanext/sixodp_ui/templates/report/index.html:5 -#: ckanext/sixodp_ui/templates/report/view.html:3 -#: ckanext/sixodp_ui/templates/report/view.html:6 -msgid "Reports" -msgstr "" - -#: ckanext/sixodp_ui/templates/report/index.html:24 -msgid "View Report" -msgstr "View report" - -#: ckanext/sixodp_ui/templates/report/view.html:16 -msgid "Generated" -msgstr "" - -#: ckanext/sixodp_ui/templates/report/view.html:20 -msgid "Refresh report" -msgstr "" - -#: ckanext/sixodp_ui/templates/report/view.html:23 -msgid "Refresh" -msgstr "" - -#: ckanext/sixodp_ui/templates/report/view.html:25 -msgid "" -"As a system administrator you are able to refresh this report on demand by " -"clicking the 'Refresh' button." -msgstr "" -"You can refresh this report on demand by clicking the 'Refresh' button." - -#: ckanext/sixodp_ui/templates/report/view.html:31 -msgid "Options" -msgstr "" - -#: ckanext/sixodp_ui/templates/report/view.html:52 -msgid "Results" -msgstr "Results" - -#: ckanext/sixodp_ui/templates/report/view.html:54 -msgid "No results found." -msgstr "" - -#: ckanext/sixodp_ui/templates/showcase/edit_base.html:17 -msgid "Create Showcase" -msgstr "Create showcase" - -#: ckanext/sixodp_ui/templates/showcase/edit_base.html:30 -msgid "View showcase" -msgstr "" - -#: ckanext/sixodp_ui/templates/showcase/edit_base.html:36 -msgid "Edit showcase" -msgstr "" - -#: ckanext/sixodp_ui/templates/showcase/edit_base.html:37 -msgid "Manage datasets" -msgstr "" - -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:3 -msgid "Showcases - Manage datasets" -msgstr "" - -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:36 -msgid "Datasets available to add to this showcase" -msgstr "" - -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:51 -msgid "Add to Showcase" -msgstr "Add to showcase" - -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:88 -msgid "No datasets could be found" -msgstr "" - -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:96 -msgid "Datasets in this showcase" -msgstr "" - -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:109 -msgid "Remove from Showcase" -msgstr "Remove from showcase" - -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:140 -msgid "This showcase has no datasets associated to it" -msgstr "" - -#: ckanext/sixodp_ui/templates/showcase/read.html:38 -msgid "Launch website" -msgstr "" - -#: ckanext/sixodp_ui/templates/showcase/search.html:19 -msgid "Search showcases..." -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/facet_list.html:43 -msgid "There are no {facet_type} that match this search" -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "Frontpage" - -#: ckanext/sixodp_ui/templates/snippets/horizontal_accordion.html:30 -msgid "Close preview" -msgstr "Hide" - -#: ckanext/sixodp_ui/templates/snippets/horizontal_accordion.html:31 -msgid "Show preview" -msgstr "Show preview" - -#: ckanext/sixodp_ui/templates/snippets/license.html:14 -msgid "No License Provided" -msgstr "No license provided" - -#: ckanext/sixodp_ui/templates/snippets/license.html:21 -msgid "License" -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/license.html:33 -msgid "This dataset satisfies the Open Definition." -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/package_item.html:87 -msgid "This dataset has no description" -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/page_highlight_item.html:8 -msgid "View {showcase_title}" -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/page_highlight_item.html:25 -msgid "This showcase has no description" -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/search_form.html:9 -msgid "Submit" -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/search_form.html:19 -msgid "Sort" -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/search_form.html:27 -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:43 -msgid "Go" -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:36 -msgid "Sort results" -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:61 -#: ckanext/sixodp_ui/templates/snippets/tag_list.html:4 -msgid "Tags" -msgstr "Tags" - -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:82 -msgid "" -"

Please try another search or change search facets.

" -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:88 -msgid "" -"

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

" -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/sixodp_offcanvas-filter-button.html:2 -msgid "Filters" -msgstr "Filters" - -#: ckanext/sixodp_ui/templates/snippets/sixodp_offcanvas-info-button.html:2 -msgid "About" -msgstr "" - -#: ckanext/sixodp_ui/templates/user/dashboard.html:11 -#: ckanext/sixodp_ui/templates/user/dashboard.html:29 -msgid "News feed" -msgstr "" - -#: ckanext/sixodp_ui/templates/user/dashboard.html:12 -msgid "My Datasets" -msgstr "My datasets" - -#: ckanext/sixodp_ui/templates/user/dashboard.html:13 -msgid "My Organizations" -msgstr "My organisations" - -#: ckanext/sixodp_ui/templates/user/dashboard.html:14 -msgid "My Groups" -msgstr "My groups" - -#: ckanext/sixodp_ui/templates/user/dashboard.html:31 -msgid "Activity from items that I'm following" -msgstr "" - -#: ckanext/sixodp_ui/templates/user/login.html:6 -msgid "Login" -msgstr "" - -#: ckanext/sixodp_ui/templates/user/snippets/followee_dropdown.html:14 -#: ckanext/sixodp_ui/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "" - -#: ckanext/sixodp_ui/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "" - -#: ckanext/sixodp_ui/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "" diff --git a/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/fi/LC_MESSAGES/ckanext-sixodp.mo b/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/fi/LC_MESSAGES/ckanext-sixodp.mo new file mode 100644 index 000000000..0c95dc021 Binary files /dev/null and b/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/fi/LC_MESSAGES/ckanext-sixodp.mo differ diff --git a/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/fi/LC_MESSAGES/ckanext-sixodp.po b/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/fi/LC_MESSAGES/ckanext-sixodp.po new file mode 100644 index 000000000..d4afbf404 --- /dev/null +++ b/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/fi/LC_MESSAGES/ckanext-sixodp.po @@ -0,0 +1,1802 @@ +# Translations template for ckanext-sixodp. +# Copyright (C) 2022 ORGANIZATION +# This file is distributed under the same license as the ckanext-sixodp project. +# FIRST AUTHOR , 2022. +# +# Translators: +# Zharktas , 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckanext-sixodp 0.0.1\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2022-12-19 08:02+0000\n" +"PO-Revision-Date: 2022-12-19 08:10+0000\n" +"Last-Translator: Zharktas , 2022\n" +"Language-Team: Finnish (https://www.transifex.com/6aika-dataportal/teams/68018/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ckanext/sixodp/helpers.py:177 ckanext/sixodp/helpers.py:383 +msgid "Dataset not found" +msgstr "Tietoaineistoa ei löytynyt" + +#: ckanext/sixodp/helpers.py:288 +msgid "Show submenu for " +msgstr "Näytä alavalikko" + +#: ckanext/sixodp/plugin.py:236 ckanext/sixodp/plugin.py:247 +#: ckanext/sixodp/plugin.py:257 +msgid "Formats" +msgstr "Formaatit" + +#: ckanext/sixodp/plugin.py:237 ckanext/sixodp/plugin.py:248 +#: ckanext/sixodp/plugin.py:258 ckanext/sixodp/translations.py:31 +msgid "Geographical Coverage" +msgstr "Alueet" + +#: ckanext/sixodp/plugin.py:238 ckanext/sixodp/plugin.py:249 +#: ckanext/sixodp/plugin.py:259 +#: ckanext/sixodp/templates/package/group_list.html:5 +#: ckanext/sixodp/templates/package/read_base.html:41 +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:114 +msgid "Groups" +msgstr "Kategoriat" + +#: ckanext/sixodp/plugin.py:239 ckanext/sixodp/plugin.py:250 +#: ckanext/sixodp/plugin.py:260 +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:44 +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:46 +msgid "Organizations" +msgstr "Organisaatiot" + +#: ckanext/sixodp/plugin.py:240 ckanext/sixodp/plugin.py:251 +#: ckanext/sixodp/plugin.py:261 +#: ckanext/sixodp/templates/package/read_base.html:42 +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:129 +msgid "Collections" +msgstr "Aineistokokonaisuudet" + +#: ckanext/sixodp/translations.py:8 +msgid "Broken links" +msgstr "Rikkinäiset linkit" + +#: ckanext/sixodp/translations.py:9 +msgid "" +"Dataset resource URLs that are found to result in errors when resolved." +msgstr "" +"Tietoaineistojen resurssilinkit, jotka palauttivat virheen " +"tarkistushetkellä." + +#: ckanext/sixodp/translations.py:10 +msgid "Openness (Five Stars)" +msgstr "Avoimuusaste (5-tähden asteikko)" + +#: ckanext/sixodp/translations.py:11 +msgid "" +"Datasets graded on Tim Berners Lees' Five Stars of Openness - openly " +"licensed, openly accessible, structured, open format, URIs for entities, " +"linked." +msgstr "" +"Datojen pisteytys ja luokittelu Tim Berners-Leen luoman 5-tähden " +"avoimuusasteikon perusteella." + +#: ckanext/sixodp/translations.py:13 +msgid "Most popular datasets" +msgstr "Katsotuimmat datat" + +#: ckanext/sixodp/translations.py:14 +msgid "Google analytics showing top datasets with most views" +msgstr "" +"Katsotuimmat datat analysoituna Google Analyticsin tuottaman datan " +"perusteella." + +#: ckanext/sixodp/translations.py:15 +msgid "Most popular resources" +msgstr "Ladatuimmat resurssit" + +#: ckanext/sixodp/translations.py:16 +msgid "Google analytics showing most downloaded resources" +msgstr "" +"Ladatuimmat resurssit analysoituna Google Analyticsin tuottaman datan " +"perusteella." + +#: ckanext/sixodp/translations.py:17 +msgid "Publisher activity" +msgstr "Organisaatioiden aktiviteetti" + +#: ckanext/sixodp/translations.py:18 +msgid "A quarterly list of datasets created and edited by a publisher." +msgstr "Organisaation luomat ja muokkaamat datat neljännesvuosittain" + +#: ckanext/sixodp/templates/package/snippets/view_form.html:8 +#: ckanext/sixodp/translations.py:20 +msgid "Title" +msgstr "Nimi" + +#: ckanext/sixodp/translations.py:21 +msgid "eg. A descriptive title for the dataset" +msgstr "Aineistoa kuvaava nimi" + +#: ckanext/sixodp/translations.py:22 +msgid "" +"A short and descriptive title for the dataset in multiple languages. Try not" +" to use dates when naming a dataset, since data from multiple years will " +"usually be published as multiple resources in one dataset." +msgstr "" +"Lyhyt ja ytimekäs nimi tietoaineistolle eri kielillä. Eri vuosien tiedot " +"julkaistaan yleensä erillisinä resursseina yhden tietoaineiston alla, joten " +"otsikossa ei useimmiten kannata käyttää vuosilukuja." + +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.js:20 +#: ckanext/sixodp/fanstatic/javascript/modules/slug-preview.js:35 +#: ckanext/sixodp/fanstatic/javascript/modules/slug-preview.min.js:1 +#: ckanext/sixodp/templates/package/snippets/resource_form.html:24 +#: ckanext/sixodp/translations.py:24 ckanext/sixodp/translations.py:96 +msgid "URL" +msgstr "URL" + +#: ckanext/sixodp/translations.py:25 +msgid "" +"An URL-address which refers to the dataset. The automatically filled option " +"derived from the title is the best option in most cases." +msgstr "" +"Datan uniikki nimi, joka tulee ko. datasivun URL-osoitteen loppuun. " +"Otsikosta johdettu oletusnimi on yleensä paras vaihtoehto." + +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:61 +#: ckanext/sixodp/templates/snippets/tag_list.html:4 +#: ckanext/sixodp/translations.py:27 +msgid "Tags" +msgstr "Avainsanat" + +#: ckanext/sixodp/translations.py:28 +msgid "E.g. transport, housing, buildings" +msgstr "Esim. liikenne, asuminen, rakennukset" + +#: ckanext/sixodp/translations.py:29 +msgid "" +"Descriptive keywords or tags through which users are able to find this " +"dataset easily through the search. The input will suggest existing keywords " +"in the portal. New keywords should utilize ontologies such as the generic " +"finnish ontology YSO: finto.fi/yso/fi." +msgstr "" +"Aineistoa kuvaavat avainsanat, joiden avulla datan hakijat löytävät " +"tietoaineiston helpommin. Kenttä hakee dataportaalin olemassa olevia " +"avainsanoja kun kenttään alkaa kirjoittamaan. Voit kuitenkin syöttää " +"tarvittaessa myös uuden avainsanan. Uusien avainsanojen olisi hyvä hyödyntää" +" ontologioita, kuten " +"yleinen suomalainen ontologia YSO. " + +#: ckanext/sixodp/translations.py:32 +msgid "eg. tampere" +msgstr "esim. kunnan nimi" + +#: ckanext/sixodp/translations.py:33 +msgid "Select the municipalities from which the dataset contains data." +msgstr "Valitse, mistä kunnista tai alueista tietoaineisto sisältää tietoa." + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:32 +#: ckanext/sixodp/templates/package/snippets/view_form.html:9 +#: ckanext/sixodp/translations.py:35 ckanext/sixodp/translations.py:105 +msgid "Description" +msgstr "Kuvaus" + +#: ckanext/sixodp/translations.py:36 +msgid "E.g. A diverse and detailed description" +msgstr "Monipuolinen ja kattava tietoaineiston kuvaus" + +#: ckanext/sixodp/translations.py:37 +msgid "eg. A detailed description" +msgstr "" +"Kattava kuvaus resurssista (voi jättää tyhjäksi, jos sama kuin " +"tietoaineiston kuvaus)" + +#: ckanext/sixodp/translations.py:38 +msgid "" +"An universal and easy to understand, but also diverse description of the " +"added dataset. Describe the dataset creation process, use case and possible " +"limitations and shortcomings as well as possible." +msgstr "" +"Yleiskielinen helposti ymmärrettävä, mutta samalla kattava tietoaineiston " +"kuvaus. Kuvaa mahdollisimman hyvin tietoaineiston luontiprosessi, " +"käyttötarkoitus sekä myös mahdolliset rajoitteet tai puutteet aineistossa." + +#: ckanext/sixodp/translations.py:40 +msgid "Links to additional information concerning the dataset" +msgstr "Lisätietoja" + +#: ckanext/sixodp/translations.py:41 +msgid "" +"You may attach external websites or other documentation which could assist " +"in interpreting the dataset." +msgstr "" +"Voit linkittää ulkoisia verkkosivuja tai muuta dokumentaatiota, joka auttaa " +"esimerkiksi aineiston tulkinnassa." + +#: ckanext/sixodp/translations.py:43 +msgid "Organization" +msgstr "Organisaatio" + +#: ckanext/sixodp/translations.py:44 +msgid "The organization which owns the dataset." +msgstr "Tietoaineiston omistava organisaatio." + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:18 +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:185 +#: ckanext/sixodp/translations.py:46 +msgid "Source" +msgstr "Lähde" + +#: ckanext/sixodp/translations.py:47 +msgid "http://example.com/dataset.json" +msgstr "Aineiston alkuperäisen tuottajan nimi" + +#: ckanext/sixodp/translations.py:48 +msgid "" +"The original author of the dataset. Can also be an external author such as " +"Statistics Finland. The field can e.g. be used to describe a situation where" +" the dataset is published by a single unit but it has multiple authors." +msgstr "" +"Aineiston tietosisällön alkuperäinen tuottaja. Voi olla myös ulkoinen lähde " +"kuten esim. Tilastokeskus. Käytetään esimerkiksi tilanteessa, jossa " +"aineiston julkaisee sen omistava yksikkö, mutta aineisto sisältää myös " +"muiden tahojen tuottamia tietoja." + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:41 +#: ckanext/sixodp/templates/package/snippets/additional_info.html:46 +#: ckanext/sixodp/translations.py:50 +msgid "Maintainer" +msgstr "Ylläpitäjä" + +#: ckanext/sixodp/translations.py:51 +msgid "Joe Bloggs" +msgstr "Ylläpitävän tahon nimi" + +#: ckanext/sixodp/translations.py:52 +msgid "" +"The technical maintainer for the dataset. Can in practice be the maintaining" +" unit, bureau or as an exception a single employee." +msgstr "" +"Tietoaineiston tekninen ylläpitäjä. Voi olla käytännössä aineistoa " +"ylläpitävä yksikkö, virasto tai poikkeustapauksissa yksittäinen työntekijä." + +#: ckanext/sixodp/translations.py:54 +msgid "Maintainer Email" +msgstr "Ylläpitäjän sähköposti" + +#: ckanext/sixodp/translations.py:55 +msgid "Maintainer email address" +msgstr "Ylläpitäjän sähköpostiosoite" + +#: ckanext/sixodp/translations.py:56 +msgid "" +"The email address for the maintaining party for the dataset. Use a mailing " +"list or other similar means to direct the message to multiple recipients." +msgstr "" +"Aineistoa ylläpitävän tahon sähköpostiosoite. Jos mahdollista, niin " +"käytetään yksikön jakelulistaa tai muuta yleistä sähköpostiosoitetta." + +#: ckanext/sixodp/translations.py:58 +msgid "Maintainer Website" +msgstr "Ylläpitäjän verkkosivusto" + +#: ckanext/sixodp/translations.py:59 +msgid "http://www.example.com" +msgstr "http://www.example.com" + +#: ckanext/sixodp/templates/scheming/form_snippets/private.html:2 +#: ckanext/sixodp/translations.py:61 +msgid "Visibility" +msgstr "Näkyvyys" + +#: ckanext/sixodp/translations.py:62 +msgid "" +"Private datasets will only be seen by the logged in users of the dataset's " +"organization. The private status is used when preparing a new dataset for " +"publication." +msgstr "" +"Yksityiset tietoaineistot näkyvät ainoastaan tietoaineiston organisaation " +"sisäänkirjautuneille käyttäjille. Yksityinen-tilaa käytetään esim. " +"tietoaineiston julkaisua valmisteltaessa." + +#: ckanext/sixodp/translations.py:64 +msgid "Published" +msgstr "Julkaistu" + +#: ckanext/sixodp/translations.py:65 +msgid "The resource publication date." +msgstr "Resurssin julkaisupäivämäärä. Manuaalisesti ylläpidettävä." + +#: ckanext/sixodp/translations.py:66 +msgid "The dataset publication date." +msgstr "Tietoaineiston julkaisupäivämäärä. Manuaalisesti ylläpidettävä." + +#: ckanext/sixodp/translations.py:68 +msgid "Updated" +msgstr "Päivitetty" + +#: ckanext/sixodp/translations.py:69 +msgid "The resource update date." +msgstr "Resurssin päivityspäivämäärä. Manuaalisesti ylläpidettävä." + +#: ckanext/sixodp/translations.py:70 +msgid "" +"A manually maintained date which can be used to notify when the dataset has " +"been updated." +msgstr "Tietoaineiston päivityspäivämäärä. Manuaalisesti ylläpidettävä." + +#: ckanext/sixodp/translations.py:72 +msgid "Update Frequency" +msgstr "Päivitystiheys" + +#: ckanext/sixodp/translations.py:73 +msgid "eg. every second week" +msgstr "esim. viikko, kuukausi, vuosi" + +#: ckanext/sixodp/translations.py:74 +msgid "" +"The supposed update frequency for the dataset. The field will suggest " +"similar values used in other datasets such as yearly, monthly or realtime. A" +" new value can also be created if required." +msgstr "" +"Tietoaineiston oletettu päivitystiheys. Kenttä ehdottaa dataportaalin " +"olemassa olevia päivitystiheyksiä kuten \"vuosi\", \"kuukausi\", " +"\"reaaliaikainen\" tai \"päättynyt\". Voit kuitenkin tarvittaessa lisätä " +"uudenlaisen päivitystiheyden." + +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:177 +#: ckanext/sixodp/templates/snippets/license.html:21 +#: ckanext/sixodp/translations.py:76 +msgid "License" +msgstr "Lisenssi" + +#: ckanext/sixodp/translations.py:78 +msgid "Reminder date" +msgstr "Muistutuspäivämäärä" + +#: ckanext/sixodp/translations.py:79 +msgid "" +"A date when a reminder email will be sent to the system administrator " +"reminding to check this dataset e.g. for a yearly update." +msgstr "" +"Päivämäärä, jolloin portaali lähettää automaattisen muistutussähköpostin " +"ylläpidolle. Voidaan hyödyntää muistuttamaan esim. tietoaineiston " +"vuosittaisesta päivittämisestä tai tietojen ajantasaisuuden tarkistuksesta." + +#: ckanext/sixodp/translations.py:81 +msgid "Global ID" +msgstr "Globaali ID" + +#: ckanext/sixodp/translations.py:82 +msgid "" +"A global id can be assigned to identify the dataset in external services." +msgstr "" +"Tietoaineistolle voidaan antaa globaali id, jolla tietoaineisto voidaan " +"yksilöidä ulkoisissa palveluissa kuten avoindata.fissä. Esimerkiksi " +"paikkatietoaineistoilla on usein käytössä Maanmittauslaitoksen myöntämä " +"yksilöivä tunniste. Tarvittaessa voidaan myös sopia esimerkiksi " +"dataportaalissa käytettävästä tunnisteesta jos tiedetään että sama " +"tietoaineisto on jaossa myös jonkun toisen dataportaalin kautta." + +#: ckanext/sixodp/translations.py:84 +msgid "Search Synonyms" +msgstr "Hakusanat" + +#: ckanext/sixodp/translations.py:85 +msgid "" +"Keywords can be provided here to improve the findability of the dataset. " +"E.g. words from spoken language can be provided to make the dataset " +"searchable by those words." +msgstr "" +"Kenttään voi täyttää aineiston löydettävyyttä parantavia synonyymisanoja. " +"Hakusanoihin voi lisätä esimerkiksi puhekielisiä termejä, kuten " +"joukkoliikenteen aineiston osalta hakusanan \"bussi\", jolloin haku löytää " +"aineiston myös kyseisestä sanaa haettaessa." + +#: ckanext/sixodp/templates/package/snippets/package_form.html:5 +#: ckanext/sixodp/translations.py:87 +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 "" +"Lomakkeella valittulisenssi koskee ainoastaan tähän tietoaineistoon " +"liittämääsi dataa. Lähettämällä tämän lomakkeen suostut julkaisemaan " +"täyttämäsi metatiedot Creative Commons 0 " +"-lisenssin mukaisesti." + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:28 +#: ckanext/sixodp/translations.py:93 +msgid "Name" +msgstr "Nimi" + +#: ckanext/sixodp/translations.py:94 +msgid "A short and descriptive name for the resource." +msgstr "" +"Lyhyt ja kuvaava nimi resurssille eri kielillä. Saman tietoaineiston alla on" +" yleensä useampi resurssi, joten pyri käyttämään nimeä joka erottelee " +"resurssit toisistaan eikä ole pelkkää toistoa tietoaineiston nimestä." + +#: ckanext/sixodp/translations.py:97 +msgid "" +"A file or url which describes the location of the desired resource file." +msgstr "Tiedosto tai sen verkko-osoite." + +#: ckanext/sixodp/templates/scheming/package/resource_read.html:34 +#: ckanext/sixodp/translations.py:99 +msgid "Size" +msgstr "Tiedoston koko" + +#: ckanext/sixodp/translations.py:100 +msgid "" +"Size of the added resouce file in bytes. Will be automatically filled when " +"the file is uploaded." +msgstr "Tiedoston koko tavuina." + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:37 +#: ckanext/sixodp/templates/scheming/package/resource_read.html:27 +#: ckanext/sixodp/translations.py:102 +msgid "Format" +msgstr "Tiedostomuoto" + +#: ckanext/sixodp/translations.py:103 +msgid "File format of the selected resource." +msgstr "Tiedostoformaatti" + +#: ckanext/sixodp/translations.py:106 +msgid "" +"An universal, compact and easy to understand description of the added " +"resource." +msgstr "" +"Yleiskielinen, kattava ja helposti ymmärrettävä kuvaus resurssista. " +"Resurssin kuvauksen voi tarvittaessa myös jättää tyhjäksi, jolloin siihen " +"kopioidaan tiivistelmä tietoaineiston kuvauksesta." + +#: ckanext/sixodp/translations.py:108 +msgid "Position coordinates" +msgstr "Koordinaatisto" + +#: ckanext/sixodp/translations.py:109 +msgid "" +"Coordinates which describe the area which the added resource is associated " +"with." +msgstr "" +"Paikkatietoaineistossa käytetyn koordinaatiston nimi. Esimerkiksi “ETRS-" +"GK25”." + +#: ckanext/sixodp/translations.py:111 +msgid "Time series start" +msgstr "Aikasarja alkaa" + +#: ckanext/sixodp/translations.py:112 +msgid "A moment in time after which the data is relevant." +msgstr "Aikasarjan alkamisajankohta esim. vuosiluku tai tarkka päivämäärä." + +#: ckanext/sixodp/translations.py:114 +msgid "Time series end" +msgstr "Aikasarja päättyy" + +#: ckanext/sixodp/translations.py:115 +msgid "A moment in time after which the data is no longer relevant." +msgstr "Aikasarjan päättymisajankohta esim. vuosiluku tai tarkka päivämäärä." + +#: ckanext/sixodp/translations.py:117 +msgid "Time Series Precision" +msgstr "Aikasarjan tarkkuus" + +#: ckanext/sixodp/translations.py:118 +msgid "eg. 2 weeks" +msgstr "esim. vuorokausi, viikko tai vuosi" + +#: ckanext/sixodp/translations.py:119 +msgid "A string which describes the precision of the entered time series." +msgstr "" +"Aikasarjan tarkkuutta kuvaava avainsana kuten \"vuorokausi\", \"viikko\" tai" +" \"vuosi\". Syöttökenttä hakee dataportaalissa jo käytössä olevia " +"avainsanoja. Voit tarvittaessa myös syöttää uuden." + +#: ckanext/sixodp/translations.py:122 +msgid "Creative Commons Attribution 4.0" +msgstr "Creative Commons Nimeä 4.0" + +#: ckanext/sixodp/translations.py:123 +msgid "https://creativecommons.org/licenses/by/4.0/" +msgstr "https://creativecommons.org/licenses/by/4.0/deed.fi" + +#: ckanext/sixodp/translations.py:125 +msgid "CC0 1.0" +msgstr "CC0 1.0" + +#: ckanext/sixodp/translations.py:126 +msgid "https://creativecommons.org/publicdomain/zero/1.0/" +msgstr "https://creativecommons.org/publicdomain/zero/1.0/deed.fi" + +#: ckanext/sixodp/translations.py:128 +msgid "Other (Open)" +msgstr "Muu (avoin)" + +#: ckanext/sixodp/translations.py:130 +msgid "Parent" +msgstr "Yläorganisaatio" + +#: ckanext/sixodp/translations.py:131 +msgid "None - top level" +msgstr "Ei mitään (ylin taso)" + +#: ckanext/sixodp/translations.py:132 +msgid "Icon URL" +msgstr "Kuvake" + +#: ckanext/sixodp/translations.py:133 +msgid "My Group" +msgstr "Kategorian nimi" + +#: ckanext/sixodp/validators.py:95 +msgid "Missing value" +msgstr "Puuttuva arvo" + +#: ckanext/sixodp/validators.py:190 +msgid "expecting list of strings" +msgstr "odotetaan listaa merkkijonoja" + +#: ckanext/sixodp/validators.py:196 +#, python-format +msgid "invalid type for repeating text: %r" +msgstr "virheellinen toistuvan merkkijonon tyyppi: %r" + +#: ckanext/sixodp/validators.py:203 +#, python-format +msgid "invalid encoding for \"%s\" value" +msgstr "virheellinen koodaus arvolle \"%s\"" + +#: ckanext/sixodp/validators.py:265 +msgid "Failed to decode JSON string" +msgstr "JSON-merkkijonon purku epäonnistui" + +#: ckanext/sixodp/validators.py:268 +msgid "Invalid encoding for JSON string" +msgstr "Virheellinen JSON-merkkijonon koodaus" + +#: ckanext/sixodp/validators.py:271 +msgid "expecting JSON object" +msgstr "odotetaan JSON-objektia" + +#: ckanext/sixodp/validators.py:277 ckanext/sixodp/validators.py:284 +#, python-format +msgid "Required language \"%s\" missing" +msgstr "Vaadittu kieli \"%s\" puuttuu" + +#: ckanext/sixodp/fanstatic/javascript/modules/activity-stream.js:20 +#: ckanext/sixodp/fanstatic/javascript/modules/activity-stream.min.js:1 +#: ckanext/sixodp/fanstatic/javascript/modules/popover-context.js:45 +#: ckanext/sixodp/fanstatic/javascript/modules/popover-context.min.js:1 +#: ckanext/sixodp/templates/package/snippets/data_api_button.html:8 +#: ckanext/sixodp/templates/package/snippets/resource_item.html:26 +msgid "Loading..." +msgstr "Ladataan..." + +#: ckanext/sixodp/fanstatic/javascript/modules/api-info.js:20 +#: ckanext/sixodp/fanstatic/javascript/modules/api-info.min.js:1 +msgid "There is no API data to load for this resource" +msgstr "API:n kautta ei ole ladattavissa dataa tälle resurssille" + +#: ckanext/sixodp/fanstatic/javascript/modules/api-info.js:21 +#: ckanext/sixodp/fanstatic/javascript/modules/api-info.min.js:1 +msgid "Failed to load data API information" +msgstr "Data-API:n tietojen lataaminen epäonnistui" + +#: ckanext/sixodp/fanstatic/javascript/modules/autocomplete.js:31 +#: ckanext/sixodp/fanstatic/javascript/modules/autocomplete.min.js:1 +msgid "No matches found" +msgstr "Osumia ei löytynyt" + +#: ckanext/sixodp/fanstatic/javascript/modules/autocomplete.js:32 +#: ckanext/sixodp/fanstatic/javascript/modules/autocomplete.min.js:1 +msgid "Start typing…" +msgstr "Ala kirjoittaa..." + +#: ckanext/sixodp/fanstatic/javascript/modules/autocomplete.js:34 +#: ckanext/sixodp/fanstatic/javascript/modules/autocomplete.min.js:1 +msgid "Input is too short, must be at least one character" +msgstr "Syötetty sisältö on liian lyhyt, syötä ainakin yksi merkki" + +#: ckanext/sixodp/fanstatic/javascript/modules/basic-form.js:4 +#: ckanext/sixodp/fanstatic/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "Lomakkeella on tallentamattomia tietoja" + +#: ckanext/sixodp/fanstatic/javascript/modules/confirm-action.js:7 +#: ckanext/sixodp/fanstatic/javascript/modules/confirm-action.min.js:1 +msgid "Please Confirm Action" +msgstr "Vahvista toiminto" + +#: ckanext/sixodp/fanstatic/javascript/modules/confirm-action.js:8 +#: ckanext/sixodp/fanstatic/javascript/modules/confirm-action.min.js:1 +msgid "Are you sure you want to perform this action?" +msgstr "Oletko varma, että haluat suorittaa tämän toiminnon?" + +#: ckanext/sixodp/fanstatic/javascript/modules/confirm-action.js:9 +#: ckanext/sixodp/fanstatic/javascript/modules/confirm-action.min.js:1 +msgid "Confirm" +msgstr "Vahvista" + +#: ckanext/sixodp/fanstatic/javascript/modules/confirm-action.js:10 +#: ckanext/sixodp/fanstatic/javascript/modules/confirm-action.min.js:1 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-reorder.js:11 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-reorder.min.js:1 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-view-reorder.js:11 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-view-reorder.min.js:1 +#: ckanext/sixodp/templates/package/confirm_delete.html:15 +msgid "Cancel" +msgstr "Peruuta" + +#: ckanext/sixodp/fanstatic/javascript/modules/follow.js:23 +#: ckanext/sixodp/fanstatic/javascript/modules/follow.min.js:1 +msgid "Follow" +msgstr "Seuraa" + +#: ckanext/sixodp/fanstatic/javascript/modules/follow.js:24 +#: ckanext/sixodp/fanstatic/javascript/modules/follow.min.js:1 +msgid "Unfollow" +msgstr "Lopeta seuraaminen" + +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.js:16 +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.min.js:1 +msgid "Upload" +msgstr "Lataa" + +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.js:17 +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.min.js:1 +msgid "Link" +msgstr "Linkki" + +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.js:18 +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.min.js:1 +#: ckanext/sixodp/templates/group/snippets/group_item.html:41 +#: ckanext/sixodp/templates/scheming/macros/form.html:10 +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:71 +msgid "Remove" +msgstr "Poista" + +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.js:19 +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.min.js:1 +msgid "Image" +msgstr "Kuva" + +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.js:21 +msgid "File" +msgstr "Tiedosto" + +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.js:22 +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.min.js:1 +msgid "Upload a file on your computer" +msgstr "Lataa tiedosto tietokoneelta" + +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.js:23 +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.min.js:1 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "URL-osoite (voit myös linkittää API:in)" + +#: ckanext/sixodp/fanstatic/javascript/modules/related-item.js:25 +#: ckanext/sixodp/fanstatic/javascript/modules/related-item.min.js:1 +msgid "show more" +msgstr "näytä lisää" + +#: ckanext/sixodp/fanstatic/javascript/modules/related-item.js:26 +#: ckanext/sixodp/fanstatic/javascript/modules/related-item.min.js:1 +msgid "show less" +msgstr "näytä vähemmän" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-reorder.js:8 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "Uudelleenjärjestä resurssit" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-reorder.js:9 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-reorder.min.js:1 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-view-reorder.js:9 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "Tallenna järjestys" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-reorder.js:10 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-reorder.min.js:1 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-view-reorder.js:10 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "Tallennetaan..." + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.js:25 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Lataa tiedosto" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.js:26 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "Tapahtui virhe" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.js:27 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.min.js:1 +msgid "Resource uploaded" +msgstr "Resurssi on ladattu" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.js:28 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.min.js:1 +msgid "Unable to upload file" +msgstr "Tiedoston lataaminen epäonnistui" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.js:29 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.min.js:1 +msgid "Unable to authenticate upload" +msgstr "Lataamisen autentikointi epäonnistui" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.js:30 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.min.js:1 +msgid "Unable to get data for uploaded file" +msgstr "Datan luku ladattavaan tiedostoon epäonnistui" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.js:31 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.min.js:1 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +msgstr "" +"Olet lataamassa tiedostoa palvelimelle. Oletko varma, että haluat poistua " +"sivulta ja keskeyttää lataamisen?" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-view-reorder.js:8 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-view-reorder.min.js:1 +msgid "Reorder resource view" +msgstr "Uudelleenjärjestä resurssinäyttö" + +#: ckanext/sixodp/fanstatic/javascript/modules/slug-preview.js:36 +#: ckanext/sixodp/fanstatic/javascript/modules/slug-preview.min.js:1 +#: ckanext/sixodp/templates/ckanext_pages/blog.html:12 +#: ckanext/sixodp/templates/organization/bulk_process.html:69 +#: ckanext/sixodp/templates/showcase/edit_base.html:14 +msgid "Edit" +msgstr "Muokkaa" + +#: ckanext/sixodp/fanstatic/javascript/modules/table-toggle-more.js:9 +#: ckanext/sixodp/fanstatic/javascript/modules/table-toggle-more.min.js:1 +#: ckanext/sixodp/templates/package/resource_read.html:131 +#: ckanext/sixodp/templates/scheming/package/read.html:18 +#: ckanext/sixodp/templates/snippets/facet_list.html:36 +msgid "Show more" +msgstr "Näytä lisää" + +#: ckanext/sixodp/fanstatic/javascript/modules/table-toggle-more.js:10 +#: ckanext/sixodp/fanstatic/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "Piilota" + +#: ckanext/sixodp/templates/footer.html:9 +msgid "Data portal" +msgstr "Dataportaali" + +#: ckanext/sixodp/templates/footer.html:12 +msgid "Content management" +msgstr "Sisällönhallinta" + +#: ckanext/sixodp/templates/footer.html:16 +msgid "Management" +msgstr "Ylläpito" + +#: ckanext/sixodp/templates/footer.html:33 +msgid "Follow us" +msgstr "Seuraa meitä" + +#: ckanext/sixodp/templates/sixodp_header.html:26 +msgid "Skip to content" +msgstr "Siirry sisältöön" + +#: ckanext/sixodp/templates/admin/config.html:7 +msgid "Service message" +msgstr "Huoltoilmoitus" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "CKAN Data API" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "Sisällöt on saatavilla myös rajapinnan (API) kautta" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" +"Lisäinformaatiota löydät CKAN Data API ja DataStore -dokumentaatiosta.

" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:36 +msgid "Endpoints" +msgstr "Päätepisteet" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:41 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" +"Data-API:a voidaan käyttää seuraavilla CKAN action API:n toiminnoilla." + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:46 +msgid "Query" +msgstr "Haku" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:50 +msgid "Query (via SQL)" +msgstr "SQL-haku" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:62 +msgid "Querying" +msgstr "Hakeminen" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:67 +msgid "Query example (first 5 results)" +msgstr "Hakuesimerkki (ensimmäiset 5 tulosta)" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:72 +msgid "Query example (results containing 'my_resource_query')" +msgstr "Kyselyesimerkki (tulokset sisältäen 'my_resource_query')" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:77 +msgid "Query example (via SQL statement)" +msgstr "Kyselyesimerkki (SQL-haun kautta)" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:89 +msgid "Example: Javascript" +msgstr "Esimerkki: Javascript" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:94 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" +"Yksinkertainen ajax (JSONP) -kysely data-API:in käyttäen jQuery-kutsua." + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "Esimerkki: Python" + +#: ckanext/sixodp/templates/ckanext_pages/blog.html:4 +#: ckanext/sixodp/templates/ckanext_pages/blog_list.html:11 +msgid "Articles" +msgstr "Artikkelit" + +#: ckanext/sixodp/templates/ckanext_pages/blog.html:28 +#: ckanext/sixodp/templates/ckanext_pages/snippets/pages_list.html:51 +#: ckanext/sixodp/templates/ckanext_pages/snippets/pages_list.html:71 +msgid "This page currently has no content" +msgstr "Sivulla ei ole sisältöä" + +#: ckanext/sixodp/templates/ckanext_pages/blog_list.html:5 +msgid "Add Article" +msgstr "Lisää artikkeli" + +#: ckanext/sixodp/templates/ckanext_pages/blog_list.html:15 +msgid "Blog" +msgstr "Blogi" + +#: ckanext/sixodp/templates/ckanext_pages/pages_edit.html:5 +msgid "Add page" +msgstr "Lisää sivu" + +#: ckanext/sixodp/templates/ckanext_pages/snippets/pages_list.html:80 +msgid "There are currently no blog articles here" +msgstr "Sivustolla ei ole yhtään artikkelia" + +#: ckanext/sixodp/templates/ckanext_pages/snippets/pages_list.html:82 +msgid "There are currently no pages here" +msgstr "Täällä ei tällä hetkellä ole sivuja" + +#: ckanext/sixodp/templates/collection/index.html:7 +msgid "Search collections..." +msgstr "Hae datakokoelmista..." + +#: ckanext/sixodp/templates/group/index.html:7 +#: ckanext/sixodp/templates/group/index.html:15 +msgid "Search groups..." +msgstr "Hae kategorioita..." + +#: ckanext/sixodp/templates/group/index.html:15 +#: ckanext/sixodp/templates/group/read.html:15 +#: ckanext/sixodp/templates/organization/bulk_process.html:21 +#: ckanext/sixodp/templates/organization/read.html:15 +#: ckanext/sixodp/templates/package/search.html:42 +#: ckanext/sixodp/templates/showcase/manage_datasets.html:25 +#: ckanext/sixodp/templates/showcase/search.html:13 +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:30 +msgid "Name Ascending" +msgstr "Nimen mukaan nousevasti" + +#: ckanext/sixodp/templates/group/index.html:15 +#: ckanext/sixodp/templates/group/read.html:16 +#: ckanext/sixodp/templates/organization/bulk_process.html:22 +#: ckanext/sixodp/templates/organization/read.html:16 +#: ckanext/sixodp/templates/package/search.html:43 +#: ckanext/sixodp/templates/showcase/manage_datasets.html:26 +#: ckanext/sixodp/templates/showcase/search.html:14 +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:30 +msgid "Name Descending" +msgstr "Nimen mukaan laskevasti" + +#: ckanext/sixodp/templates/group/read.html:12 +#: ckanext/sixodp/templates/organization/read.html:12 +msgid "Last Created" +msgstr "Viimeksi luotu" + +#: ckanext/sixodp/templates/group/read.html:13 +#: ckanext/sixodp/templates/organization/read.html:13 +#: ckanext/sixodp/templates/package/search.html:40 +#: ckanext/sixodp/templates/showcase/manage_datasets.html:28 +#: ckanext/sixodp/templates/showcase/search.html:16 +#: ckanext/sixodp/templates/snippets/package_item.html:81 +msgid "Popular" +msgstr "Suositut" + +#: ckanext/sixodp/templates/group/read.html:14 +#: ckanext/sixodp/templates/organization/read.html:14 +#: ckanext/sixodp/templates/package/search.html:41 +#: ckanext/sixodp/templates/showcase/manage_datasets.html:24 +#: ckanext/sixodp/templates/showcase/search.html:12 +msgid "Relevance" +msgstr "Relevanssi" + +#: ckanext/sixodp/templates/group/read.html:17 +#: ckanext/sixodp/templates/organization/bulk_process.html:23 +#: ckanext/sixodp/templates/organization/read.html:17 +#: ckanext/sixodp/templates/package/search.html:44 +#: ckanext/sixodp/templates/package/snippets/resource_form.html:51 +#: ckanext/sixodp/templates/showcase/manage_datasets.html:27 +#: ckanext/sixodp/templates/showcase/search.html:15 +msgid "Last Modified" +msgstr "Viimeksi muokattu" + +#: ckanext/sixodp/templates/group/read.html:19 +#: ckanext/sixodp/templates/organization/read.html:19 +#: ckanext/sixodp/templates/package/search.html:11 +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:3 +msgid "Search datasets..." +msgstr "Hae tietoaineistoista..." + +#: ckanext/sixodp/templates/group/read.html:25 +#: ckanext/sixodp/templates/organization/read.html:30 +#: ckanext/sixodp/templates/package/search.html:88 +msgid "Filter results" +msgstr "Suodata tuloksia" + +#: ckanext/sixodp/templates/group/read_base.html:4 +#: ckanext/sixodp/templates/group/snippets/info.html:12 +#: ckanext/sixodp/templates/organization/bulk_process.html:14 +msgid "Datasets" +msgstr "Tietoaineistot" + +#: ckanext/sixodp/templates/group/read_base.html:5 +#: ckanext/sixodp/templates/package/activity.html:3 +#: ckanext/sixodp/templates/package/read_base.html:39 +msgid "Activity Stream" +msgstr "Aktiivisuusvirta" + +#: ckanext/sixodp/templates/group/snippets/group_item.html:29 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} tietoaineisto" +msgstr[1] "{num} tietoaineistoa" + +#: ckanext/sixodp/templates/group/snippets/group_item.html:31 +msgid "0 Datasets" +msgstr "0 tietoaineistoa" + +#: ckanext/sixodp/templates/group/snippets/group_item.html:36 +#: ckanext/sixodp/templates/group/snippets/group_item.html:37 +msgid "View {name}" +msgstr "Näytä {name}" + +#: ckanext/sixodp/templates/group/snippets/group_item.html:41 +msgid "Remove dataset from this group" +msgstr "Poista tietoaineisto tästä kategoriasta" + +#: ckanext/sixodp/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Mitä kategoriat ovat?" + +#: ckanext/sixodp/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 "" +"Kategorioiden avulla datoja ryhmitellään eri teemojen mukaan. Yksi aineisto " +"voi kuulua useampaan kategoriaan." + +#: ckanext/sixodp/templates/home/snippets/sixodp_language-changer.html:6 +msgid "In Finnish" +msgstr "Suomeksi" + +#: ckanext/sixodp/templates/home/snippets/sixodp_language-changer.html:12 +msgid "In English" +msgstr "Englanniksi" + +#: ckanext/sixodp/templates/home/snippets/sixodp_language-changer.html:18 +msgid "In Swedish" +msgstr "Ruotsiksi" + +#: ckanext/sixodp/templates/home/snippets/sixodp_navbar_search.html:4 +#: ckanext/sixodp/templates/home/snippets/sixodp_navbar_search.html:11 +#: ckanext/sixodp/templates/snippets/search_form.html:5 +#: ckanext/sixodp/templates/snippets/search_input.html:18 +msgid "Search" +msgstr "Hae" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:12 +msgid "Sysadmin settings" +msgstr "Järjestelmän ylläpitäjän asetukset" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:14 +msgid "Admin" +msgstr "Ylläpitäjä - Admin" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:18 +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:20 +msgid "Dataset Editor" +msgstr "Massamuokkaus" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:26 +msgid "View profile" +msgstr "Näytä profiili" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:35 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "Dashboard (%(num)d uusi kohde)" +msgstr[1] "Dashboard (%(num)d uutta kohdetta)" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:38 +msgid "Dashboard" +msgstr "Dashboard" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:56 +#: ckanext/sixodp/templates/user/dashboard.html:8 +msgid "Edit settings" +msgstr "Muokkaa asetuksia" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:58 +msgid "Settings" +msgstr "Asetukset" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:65 +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:67 +msgid "Log out" +msgstr "Kirjaudu ulos" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:76 +msgid "Log in" +msgstr "Kirjaudu sisään" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:78 +msgid "Register" +msgstr "Rekisteröidy" + +#: ckanext/sixodp/templates/organization/bulk_process.html:5 +msgid "Edit datasets" +msgstr "Muokkaa tietoaineistoja" + +#: ckanext/sixodp/templates/organization/bulk_process.html:10 +msgid " found for \"{query}\"" +msgstr "löytyi haulla \"{query}\"" + +#: ckanext/sixodp/templates/organization/bulk_process.html:12 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Haulla \"{query}\" ei löytynyt dataa" + +#: ckanext/sixodp/templates/organization/bulk_process.html:41 +msgid "Make public" +msgstr "Muuta julkiseksi" + +#: ckanext/sixodp/templates/organization/bulk_process.html:45 +msgid "Make private" +msgstr "Muuta yksityiseksi" + +#: ckanext/sixodp/templates/organization/bulk_process.html:51 +#: ckanext/sixodp/templates/package/snippets/resource_form.html:65 +msgid "Delete" +msgstr "Poista" + +#: ckanext/sixodp/templates/organization/bulk_process.html:74 +#: ckanext/sixodp/templates/package/read_base.html:15 +#: ckanext/sixodp/templates/showcase/read.html:20 +#: ckanext/sixodp/templates/snippets/package_item.html:69 +msgid "Draft" +msgstr "Luonnos" + +#: ckanext/sixodp/templates/organization/bulk_process.html:76 +#: ckanext/sixodp/templates/package/read_base.html:20 +#: ckanext/sixodp/templates/scheming/form_snippets/state.html:7 +#: ckanext/sixodp/templates/snippets/package_item.html:71 +msgid "Deleted" +msgstr "Poistettu" + +#: ckanext/sixodp/templates/organization/bulk_process.html:79 +#: ckanext/sixodp/templates/package/read.html:11 +#: ckanext/sixodp/templates/scheming/form_snippets/private.html:5 +#: ckanext/sixodp/templates/showcase/read.html:13 +#: ckanext/sixodp/templates/snippets/package_item.html:62 +msgid "Private" +msgstr "Yksityinen" + +#: ckanext/sixodp/templates/organization/bulk_process.html:92 +msgid "This organization has no datasets associated to it" +msgstr "Tähän organisaatioon ei liity tietoaineistoja" + +#: ckanext/sixodp/templates/organization/index.html:7 +#: ckanext/sixodp/templates/organization/index.html:15 +msgid "Search organizations..." +msgstr "Hae organisaatioita..." + +#: ckanext/sixodp/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "Haluatko varmasti poistaa tietoaineiston - {name}?" + +#: ckanext/sixodp/templates/package/confirm_delete.html:16 +msgid "Confirm Delete" +msgstr "Vahvista poisto" + +#: ckanext/sixodp/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Liitä kategoria tähän dataan" + +#: ckanext/sixodp/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Lisää kategoriaan" + +#: ckanext/sixodp/templates/package/group_list.html:24 +msgid "There are no groups associated with this dataset" +msgstr "Data ei kuulu kategorioihin" + +#: ckanext/sixodp/templates/package/new_view.html:3 +#: ckanext/sixodp/templates/package/new_view.html:4 +#: ckanext/sixodp/templates/package/new_view.html:8 +#: ckanext/sixodp/templates/package/new_view.html:12 +msgid "Add view" +msgstr "Lisää näkymä" + +#: ckanext/sixodp/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. " + +#: ckanext/sixodp/templates/package/new_view.html:28 +#: ckanext/sixodp/templates/package/snippets/resource_view.html:48 +msgid "Preview" +msgstr "Esikatselu" + +#: ckanext/sixodp/templates/package/new_view.html:29 +#: ckanext/sixodp/templates/package/snippets/resource_form.html:81 +#: ckanext/sixodp/templates/scheming/macros/form.html:9 +msgid "Add" +msgstr "Lisää" + +#: ckanext/sixodp/templates/package/read.html:43 +#: ckanext/sixodp/templates/package/read_base.html:75 +#: ckanext/sixodp/templates/package/resource_read.html:186 +msgid "Subscribe for dataset updates" +msgstr "Tilaa ilmoitukset muutoksista" + +#: ckanext/sixodp/templates/package/read_base.html:37 +msgid "Dataset" +msgstr "Tietoaineisto" + +#: ckanext/sixodp/templates/package/read_base.html:38 +#: ckanext/sixodp/templates/showcase/edit_base.html:5 +#: ckanext/sixodp/templates/showcase/edit_base.html:12 +#: ckanext/sixodp/templates/showcase/edit_base.html:16 +msgid "Showcases" +msgstr "Sovellukset" + +#: ckanext/sixodp/templates/package/resource_read.html:18 +#: ckanext/sixodp/templates/showcase/read.html:6 +msgid "Manage" +msgstr "Hallitse" + +#: ckanext/sixodp/templates/package/resource_read.html:41 +msgid "View" +msgstr "Näkymä" + +#: ckanext/sixodp/templates/package/resource_read.html:43 +msgid "API Endpoint" +msgstr "API-osoite" + +#: ckanext/sixodp/templates/package/resource_read.html:45 +#: ckanext/sixodp/templates/package/snippets/resource_item.html:36 +#: ckanext/sixodp/templates/report/view.html:47 +msgid "Download" +msgstr "Lataa" + +#: ckanext/sixodp/templates/package/resource_read.html:89 +msgid "There are no views created for this resource yet." +msgstr "Resurssille ei ole luotu vielä yhtään näkymää." + +#: ckanext/sixodp/templates/package/resource_read.html:92 +msgid "Not seeing the views you were expecting?" +msgstr "Et näe odottamiasi näkymiä?" + +#: ckanext/sixodp/templates/package/resource_read.html:94 +#: ckanext/sixodp/templates/package/snippets/resource_view.html:18 +msgid "Click here for more information." +msgstr "Klikkaa tästä saadaksesi lisätietoa..." + +#: ckanext/sixodp/templates/package/resource_read.html:98 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "Tässä joitain syitä, jos et näe odottamiasi näkymiä:" + +#: ckanext/sixodp/templates/package/resource_read.html:100 +msgid "No view has been created that is suitable for this resource" +msgstr "Tälle resurssille ei ole luotu yhtään näkymää" + +#: ckanext/sixodp/templates/package/resource_read.html:101 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" +"Voi olla, ettei ylläpitäjä ole ottanut käyttöön tarvittavia liitännäisiä" + +#: ckanext/sixodp/templates/package/resource_read.html:102 +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." + +#: ckanext/sixodp/templates/package/resource_read.html:123 +msgid "From the dataset abstract" +msgstr "Datan kuvaus" + +#: ckanext/sixodp/templates/package/resource_read.html:125 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Lähde: %(dataset)s" + +#: ckanext/sixodp/templates/package/resource_read.html:132 +#: ckanext/sixodp/templates/scheming/package/read.html:19 +#: ckanext/sixodp/templates/snippets/facet_list.html:39 +msgid "Show less" +msgstr "Näytä vähemmän" + +#: ckanext/sixodp/templates/package/resource_read.html:155 +msgid "Back to dataset" +msgstr "Takaisin tietoaineistoon" + +#: ckanext/sixodp/templates/package/search.html:25 +msgid "Add Dataset" +msgstr "Lisää tietoaineisto" + +#: ckanext/sixodp/templates/package/search.html:38 +msgid "Newest first" +msgstr "Uusin ensin" + +#: ckanext/sixodp/templates/package/search.html:39 +msgid "Oldest first" +msgstr "Vanhin ensin" + +#: ckanext/sixodp/templates/package/search.html:67 +msgid "API" +msgstr "API" + +#: ckanext/sixodp/templates/package/search.html:68 +msgid "API Docs" +msgstr "API-dokumentaatio" + +#: ckanext/sixodp/templates/package/search.html:70 +msgid "full {format} dump" +msgstr "täysi {format} dumppi" + +#: ckanext/sixodp/templates/package/search.html:71 +#, 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. " + +#: ckanext/sixodp/templates/package/search.html:75 +#, 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). " + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:2 +msgid "Additional Info" +msgstr "Lisätiedot" + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:7 +#: ckanext/sixodp/templates/scheming/package/resource_read.html:9 +msgid "Metadata API" +msgstr "Metadata API" + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:29 +#: ckanext/sixodp/templates/package/snippets/additional_info.html:34 +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:63 +msgid "Author" +msgstr "Tekijä" + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:53 +msgid "Version" +msgstr "Versio" + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:60 +#: ckanext/sixodp/templates/scheming/form_snippets/state.html:3 +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:171 +msgid "State" +msgstr "Tila" + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:66 +msgid "Last Updated" +msgstr "Viimeksi päivitetty" + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:72 +msgid "Created" +msgstr "Luotu" + +#: ckanext/sixodp/templates/package/snippets/data_api_button.html:10 +#: ckanext/sixodp/templates/package/snippets/resource_item.html:28 +msgid "Data API" +msgstr "Data API" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:24 +msgid "Data" +msgstr "Data" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "http://example.com/external-data.csv" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "Resurssin nimi. Esim. vuosiluku tai tiedostoformaatti." + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "Datan sanallinen kuvaus" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "esim. CSV, XML tai JSON" + +#: ckanext/sixodp/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." + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "esim. 2012-06-05" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "Tiedoston koko tavuina" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "esim. 1024" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:55 +#: ckanext/sixodp/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "MIME-tyyppi" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:55 +#: ckanext/sixodp/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "esim. application/json" + +#: ckanext/sixodp/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?" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "Edellinen" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "Tallenna ja lisää toinen" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "Valmis" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:88 +msgid "Estimated upload times with the selected resource file" +msgstr "Arvioidut latausajat valitulle resurssitiedostolle" + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:16 +msgid "This resource view is not available at the moment." +msgstr "Resurssille ei ole esikatselua tällä hetkellä." + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:25 +msgid "Download resource" +msgstr "Lataa resurssi" + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:49 +msgid "Your browser does not support iframes." +msgstr "Selaimesi ei tue iframe-elementtejä." + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:60 +msgid "Fullscreen" +msgstr "Koko näyttö" + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:68 +msgid "Embed" +msgstr "Upota" + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:80 +msgid "Embed resource view" +msgstr "Upota resurssinäkymä" + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:83 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"Voit kopioida ja liittää upotuskoodin CMS:ään tai blogiin, joka tukee HTML-" +"koodia." + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:86 +msgid "Width" +msgstr "Leveys" + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:89 +msgid "Height" +msgstr "Korkeus" + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:92 +msgid "Code" +msgstr "Koodi" + +#: ckanext/sixodp/templates/package/snippets/resources.html:4 +msgid "Resources" +msgstr "Data ja resurssit" + +#: ckanext/sixodp/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "Data ja resurssit" + +#: ckanext/sixodp/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ä? " + +#: ckanext/sixodp/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +msgstr "Tässä tietojoukossa ei ole dataa" + +#: ckanext/sixodp/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "Näkymän nimi" + +#: ckanext/sixodp/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "Tiivis kuvaus näkymästä" + +#: ckanext/sixodp/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "Mikä on näkymä?" + +#: ckanext/sixodp/templates/package/snippets/view_help.html:4 +msgid "A view is a representation of the data held against a resource" +msgstr " Näkymässä voi mm. esikatsella resurssin sisältämää dataa." + +#: ckanext/sixodp/templates/report/index.html:5 +#: ckanext/sixodp/templates/report/view.html:3 +#: ckanext/sixodp/templates/report/view.html:6 +msgid "Reports" +msgstr "Raportit" + +#: ckanext/sixodp/templates/report/index.html:24 +msgid "View Report" +msgstr "Avaa raportti" + +#: ckanext/sixodp/templates/report/view.html:16 +msgid "Generated" +msgstr "Generoitu" + +#: ckanext/sixodp/templates/report/view.html:20 +msgid "Refresh report" +msgstr "Päivitä raportti" + +#: ckanext/sixodp/templates/report/view.html:23 +msgid "Refresh" +msgstr "Päivitä" + +#: ckanext/sixodp/templates/report/view.html:25 +msgid "" +"As a system administrator you are able to refresh this report on demand by " +"clicking the 'Refresh' button." +msgstr "Voit päivittää tämän raportin nyt painamalla 'Päivitä'." + +#: ckanext/sixodp/templates/report/view.html:31 +msgid "Options" +msgstr "Valinnat" + +#: ckanext/sixodp/templates/report/view.html:52 +msgid "Results" +msgstr "Tulokset" + +#: ckanext/sixodp/templates/report/view.html:54 +msgid "No results found." +msgstr "Tuloksia ei löytynyt" + +#: ckanext/sixodp/templates/scheming/form_snippets/organization_ex.html:26 +msgid "No organization" +msgstr "Ei organisaatiota" + +#: ckanext/sixodp/templates/scheming/form_snippets/private.html:5 +msgid "Public" +msgstr "Julkinen" + +#: ckanext/sixodp/templates/scheming/form_snippets/state.html:6 +msgid "Active" +msgstr "Aktiivinen" + +#: ckanext/sixodp/templates/scheming/form_snippets/ytp_multiple_checkbox.html:18 +#, python-format +msgid "" +"Categories can be edited from here." +msgstr "" +"Kategorioita voi muokata täällä." + +#: ckanext/sixodp/templates/scheming/macros/form.html:37 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Voit käyttää Markdown-muotoiluja." + +#: ckanext/sixodp/templates/scheming/package/resource_read.html:5 +msgid "Additional Information" +msgstr "Lisätietoja" + +#: ckanext/sixodp/templates/scheming/package/resource_read.html:16 +msgid "Field" +msgstr "Kenttä" + +#: ckanext/sixodp/templates/scheming/package/resource_read.html:17 +msgid "Value" +msgstr "Arvo" + +#: ckanext/sixodp/templates/scheming/package/resource_read.html:28 +msgid "unknown" +msgstr "tuntematon" + +#: ckanext/sixodp/templates/scheming/package/resource_read.html:38 +msgid "GB" +msgstr "Gt" + +#: ckanext/sixodp/templates/scheming/package/resource_read.html:40 +msgid "MB" +msgstr "Mt" + +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:183 +msgid "How to reference" +msgstr "Viittaustapa" + +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:190 +msgid "" +"The maintainer of the dataset is {maintainer} and the original author is " +"{author}" +msgstr "Aineiston ylläpitäjä on {maintainer} ja alkuperäinen tekijä {author}" + +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:193 +msgid "The maintainer of the dataset is {maintainer}" +msgstr "Aineiston ylläpitäjä on {maintainer}" + +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:196 +msgid "The dataset has been downloaded from" +msgstr "Aineisto on ladattu" + +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:196 +msgid "service on {date}" +msgstr "-palvelusta {date}" + +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:199 +msgid "using the license" +msgstr "lisenssillä" + +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:201 +msgid "The license can be found on the maintainer's service" +msgstr "Lisenssi ilmoitettu ylläpitäjän palvelussa" + +#: ckanext/sixodp/templates/showcase/edit_base.html:17 +msgid "Create Showcase" +msgstr "Tallenna sovellus" + +#: ckanext/sixodp/templates/showcase/edit_base.html:30 +msgid "View showcase" +msgstr "Näytä sovellus" + +#: ckanext/sixodp/templates/showcase/edit_base.html:36 +msgid "Edit showcase" +msgstr "Muokkaa sovellusta" + +#: ckanext/sixodp/templates/showcase/edit_base.html:37 +msgid "Manage datasets" +msgstr "Hallitse tietoaineistoja" + +#: ckanext/sixodp/templates/showcase/manage_datasets.html:3 +msgid "Showcases - Manage datasets" +msgstr "Sovellukset - Hallitse tietoaineistoja" + +#: ckanext/sixodp/templates/showcase/manage_datasets.html:36 +msgid "Datasets available to add to this showcase" +msgstr "Tietoaineistot, jotka voi liittää tähän sovellukseen" + +#: ckanext/sixodp/templates/showcase/manage_datasets.html:51 +msgid "Add to Showcase" +msgstr "Liitä sovellukseen" + +#: ckanext/sixodp/templates/showcase/manage_datasets.html:88 +msgid "No datasets could be found" +msgstr "Tietoaineistoja ei löytynyt" + +#: ckanext/sixodp/templates/showcase/manage_datasets.html:96 +msgid "Datasets in this showcase" +msgstr "Sovellukseen liittyvät tietoaineistot" + +#: ckanext/sixodp/templates/showcase/manage_datasets.html:109 +msgid "Remove from Showcase" +msgstr "Poista sovelluksesta" + +#: ckanext/sixodp/templates/showcase/manage_datasets.html:140 +msgid "This showcase has no datasets associated to it" +msgstr "Tähän sovellukseen ei liity tietoaineistoja" + +#: ckanext/sixodp/templates/showcase/read.html:38 +msgid "Launch website" +msgstr "Avaa sivu" + +#: ckanext/sixodp/templates/showcase/search.html:19 +msgid "Search showcases..." +msgstr "Hae sovelluksia..." + +#: ckanext/sixodp/templates/snippets/facet_list.html:43 +msgid "There are no {facet_type} that match this search" +msgstr "Hakuun ei liity {facet_type} -tyyppistä sisältöä" + +#: ckanext/sixodp/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Etusivu" + +#: ckanext/sixodp/templates/snippets/horizontal_accordion.html:30 +msgid "Close preview" +msgstr "Sulje esittely" + +#: ckanext/sixodp/templates/snippets/horizontal_accordion.html:31 +msgid "Show preview" +msgstr "Avaa esittely" + +#: ckanext/sixodp/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "Lisenssiä ei määritelty" + +#: ckanext/sixodp/templates/snippets/license.html:33 +msgid "This dataset satisfies the Open Definition." +msgstr "Tämä tietoaineisto täyttää avoimen datan määritelmän." + +#: ckanext/sixodp/templates/snippets/package_item.html:88 +msgid "This dataset has no description" +msgstr "Tietoaineistolla ei ole kuvausta" + +#: ckanext/sixodp/templates/snippets/page_highlight_item.html:8 +msgid "View {showcase_title}" +msgstr "Näytä {showcase_title}" + +#: ckanext/sixodp/templates/snippets/search_form.html:9 +msgid "Submit" +msgstr "Lähetä" + +#: ckanext/sixodp/templates/snippets/search_form.html:19 +msgid "Sort" +msgstr "Lajittele" + +#: ckanext/sixodp/templates/snippets/search_form.html:30 +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:43 +msgid "Go" +msgstr "Siirry" + +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:36 +msgid "Sort results" +msgstr "Järjestä tulokset" + +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:82 +msgid "

Please try another search or change search facets.

" +msgstr "" +"

Kokeile erilaista hakusanaa tai vaihda hakutermejä.

" + +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:88 +msgid "" +"

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

" +msgstr "

Haussa tapahtui virhe. Yritä uudelleen.

" + +#: ckanext/sixodp/templates/snippets/sixodp_offcanvas-filter-button.html:2 +msgid "Filters" +msgstr "Suodattimet" + +#: ckanext/sixodp/templates/snippets/sixodp_offcanvas-info-button.html:2 +msgid "About" +msgstr "Tiedot" + +#: ckanext/sixodp/templates/user/dashboard.html:11 +#: ckanext/sixodp/templates/user/dashboard.html:29 +msgid "News feed" +msgstr "Uutisvirta" + +#: ckanext/sixodp/templates/user/dashboard.html:12 +msgid "My Datasets" +msgstr "Minun tietoaineistoni" + +#: ckanext/sixodp/templates/user/dashboard.html:13 +msgid "My Organizations" +msgstr "Minun organisaationi" + +#: ckanext/sixodp/templates/user/dashboard.html:14 +msgid "My Groups" +msgstr "Minun kategoriani" + +#: ckanext/sixodp/templates/user/dashboard.html:31 +msgid "Activity from items that I'm following" +msgstr "Seuraamieni osioiden toiminta" + +#: ckanext/sixodp/templates/user/login.html:6 +msgid "Login" +msgstr "Kirjaudu" + +#: ckanext/sixodp/templates/user/snippets/followee_dropdown.html:14 +#: ckanext/sixodp/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "Tapahtumia kohteessa:" + +#: ckanext/sixodp/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Hae listalta..." + +#: ckanext/sixodp/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "Et seuraa mitään" diff --git a/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/fi/LC_MESSAGES/ckanext-sixodp_ui.mo b/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/fi/LC_MESSAGES/ckanext-sixodp_ui.mo deleted file mode 100644 index b3292bc3a..000000000 Binary files a/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/fi/LC_MESSAGES/ckanext-sixodp_ui.mo and /dev/null differ diff --git a/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/fi/LC_MESSAGES/ckanext-sixodp_ui.po b/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/fi/LC_MESSAGES/ckanext-sixodp_ui.po deleted file mode 100644 index b6da085cd..000000000 --- a/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/fi/LC_MESSAGES/ckanext-sixodp_ui.po +++ /dev/null @@ -1,1286 +0,0 @@ -# Translations template for ckanext-sixodp_ui. -# Copyright (C) 2020 ORGANIZATION -# This file is distributed under the same license as the ckanext-sixodp_ui -# project. -# FIRST AUTHOR , 2020. -# -# Translators: -# Mikko Nieminen , 2017 -# Joonas Dukpa, 2019 -# Zharktas , 2019 -# Heidi Lammi-Mihaljov , 2020 -# Hami Kekkonen , 2020 -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: ckanext-sixodp_ui 0.0.1\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2020-09-11 11:35+0000\n" -"PO-Revision-Date: 2017-01-23 14:12+0000\n" -"Last-Translator: Hami Kekkonen , 2020\n" -"Language-Team: Finnish (https://www.transifex.com/6aika-dataportal/teams/68018/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" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ckanext/sixodp_ui/helpers.py:176 -msgid "Dataset not found" -msgstr "Tietoaineistoa ei löytynyt" - -#: ckanext/sixodp_ui/helpers.py:287 -msgid "Show submenu for " -msgstr "Näytä alavalikko" - -#: ckanext/sixodp_ui/plugin.py:218 ckanext/sixodp_ui/plugin.py:229 -#: ckanext/sixodp_ui/plugin.py:239 -msgid "Formats" -msgstr "Formaatit" - -#: ckanext/sixodp_ui/plugin.py:219 ckanext/sixodp_ui/plugin.py:230 -#: ckanext/sixodp_ui/plugin.py:240 -msgid "Geographical Coverage" -msgstr "Alueet" - -#: ckanext/sixodp_ui/plugin.py:220 ckanext/sixodp_ui/plugin.py:231 -#: ckanext/sixodp_ui/plugin.py:241 -#: ckanext/sixodp_ui/templates/package/group_list.html:5 -#: ckanext/sixodp_ui/templates/package/read_base.html:41 -msgid "Groups" -msgstr "Kategoriat" - -#: ckanext/sixodp_ui/plugin.py:221 ckanext/sixodp_ui/plugin.py:232 -#: ckanext/sixodp_ui/plugin.py:242 -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:44 -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:46 -msgid "Organizations" -msgstr "Organisaatiot" - -#: ckanext/sixodp_ui/plugin.py:222 ckanext/sixodp_ui/plugin.py:233 -#: ckanext/sixodp_ui/plugin.py:243 -#: ckanext/sixodp_ui/templates/package/read_base.html:42 -msgid "Collections" -msgstr "Aineistokokonaisuudet" - -#: ckanext/sixodp_ui/translations.py:8 -msgid "Broken links" -msgstr "Rikkinäiset linkit" - -#: ckanext/sixodp_ui/translations.py:9 -msgid "" -"Dataset resource URLs that are found to result in errors when resolved." -msgstr "" -"Tietoaineistojen resurssilinkit, jotka palauttivat virheen " -"tarkistushetkellä." - -#: ckanext/sixodp_ui/translations.py:10 -msgid "Openness (Five Stars)" -msgstr "Avoimuusaste (5-tähden asteikko)" - -#: ckanext/sixodp_ui/translations.py:11 -msgid "" -"Datasets graded on Tim Berners Lees' Five Stars of Openness - openly " -"licensed, openly accessible, structured, open format, URIs for entities, " -"linked." -msgstr "" -"Datojen pisteytys ja luokittelu Tim Berners-Leen luoman 5-tähden " -"avoimuusasteikon perusteella." - -#: ckanext/sixodp_ui/translations.py:13 -msgid "Most popular datasets" -msgstr "Katsotuimmat datat" - -#: ckanext/sixodp_ui/translations.py:14 -msgid "Google analytics showing top datasets with most views" -msgstr "" -"Katsotuimmat datat analysoituna Google Analyticsin tuottaman datan " -"perusteella." - -#: ckanext/sixodp_ui/translations.py:15 -msgid "Most popular resources" -msgstr "Ladatuimmat resurssit" - -#: ckanext/sixodp_ui/translations.py:16 -msgid "Google analytics showing most downloaded resources" -msgstr "" -"Ladatuimmat resurssit analysoituna Google Analyticsin tuottaman datan " -"perusteella." - -#: ckanext/sixodp_ui/translations.py:17 -msgid "Publisher activity" -msgstr "Organisaatioiden aktiviteetti" - -#: ckanext/sixodp_ui/translations.py:18 -msgid "A quarterly list of datasets created and edited by a publisher." -msgstr "Organisaation luomat ja muokkaamat datat neljännesvuosittain" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/activity-stream.js:20 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/activity-stream.min.js:1 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/popover-context.js:45 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/popover-context.min.js:1 -#: ckanext/sixodp_ui/templates/package/snippets/data_api_button.html:8 -#: ckanext/sixodp_ui/templates/package/snippets/resource_item.html:26 -msgid "Loading..." -msgstr "Ladataan..." - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/api-info.js:20 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/api-info.min.js:1 -msgid "There is no API data to load for this resource" -msgstr "API:n kautta ei ole ladattavissa dataa tälle resurssille" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/api-info.js:21 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/api-info.min.js:1 -msgid "Failed to load data API information" -msgstr "Data-API:n tietojen lataaminen epäonnistui" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/autocomplete.js:31 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/autocomplete.min.js:1 -msgid "No matches found" -msgstr "Osumia ei löytynyt" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/autocomplete.js:32 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/autocomplete.min.js:1 -msgid "Start typing…" -msgstr "Ala kirjoittaa..." - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/autocomplete.js:34 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/autocomplete.min.js:1 -msgid "Input is too short, must be at least one character" -msgstr "Syötetty sisältö on liian lyhyt, syötä ainakin yksi merkki" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/basic-form.js:4 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/basic-form.min.js:1 -msgid "There are unsaved modifications to this form" -msgstr "Lomakkeella on tallentamattomia tietoja" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/confirm-action.js:7 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/confirm-action.min.js:1 -msgid "Please Confirm Action" -msgstr "Vahvista toiminto" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/confirm-action.js:8 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/confirm-action.min.js:1 -msgid "Are you sure you want to perform this action?" -msgstr "Oletko varma, että haluat suorittaa tämän toiminnon?" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/confirm-action.js:9 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/confirm-action.min.js:1 -msgid "Confirm" -msgstr "Vahvista" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/confirm-action.js:10 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/confirm-action.min.js:1 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-reorder.js:11 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-reorder.min.js:1 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-view-reorder.js:11 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-view-reorder.min.js:1 -#: ckanext/sixodp_ui/templates/package/confirm_delete.html:15 -msgid "Cancel" -msgstr "Peruuta" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/follow.js:23 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/follow.min.js:1 -msgid "Follow" -msgstr "Seuraa" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/follow.js:24 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/follow.min.js:1 -msgid "Unfollow" -msgstr "Lopeta seuraaminen" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.js:16 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.min.js:1 -msgid "Upload" -msgstr "Lataa" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.js:17 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.min.js:1 -msgid "Link" -msgstr "Linkki" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.js:18 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.min.js:1 -#: ckanext/sixodp_ui/templates/group/snippets/group_item.html:41 -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:71 -msgid "Remove" -msgstr "Poista" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.js:19 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.min.js:1 -msgid "Image" -msgstr "Kuva" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.js:20 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/slug-preview.js:35 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/slug-preview.min.js:1 -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "URL" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "Tiedosto" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.js:22 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.min.js:1 -msgid "Upload a file on your computer" -msgstr "Lataa tiedosto tietokoneelta" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.js:23 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.min.js:1 -msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "URL-osoite (voit myös linkittää API:in)" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/related-item.js:25 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/related-item.min.js:1 -msgid "show more" -msgstr "näytä lisää" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/related-item.js:26 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/related-item.min.js:1 -msgid "show less" -msgstr "näytä vähemmän" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-reorder.js:8 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-reorder.min.js:1 -msgid "Reorder resources" -msgstr "Uudelleenjärjestä resurssit" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-reorder.js:9 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-reorder.min.js:1 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-view-reorder.js:9 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-view-reorder.min.js:1 -msgid "Save order" -msgstr "Tallenna järjestys" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-reorder.js:10 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-reorder.min.js:1 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-view-reorder.js:10 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-view-reorder.min.js:1 -msgid "Saving..." -msgstr "Tallennetaan..." - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.js:25 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.min.js:1 -msgid "Upload a file" -msgstr "Lataa tiedosto" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.js:26 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.min.js:1 -msgid "An Error Occurred" -msgstr "Tapahtui virhe" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.js:27 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.min.js:1 -msgid "Resource uploaded" -msgstr "Resurssi on ladattu" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.js:28 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.min.js:1 -msgid "Unable to upload file" -msgstr "Tiedoston lataaminen epäonnistui" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.js:29 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.min.js:1 -msgid "Unable to authenticate upload" -msgstr "Lataamisen autentikointi epäonnistui" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.js:30 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.min.js:1 -msgid "Unable to get data for uploaded file" -msgstr "Datan luku ladattavaan tiedostoon epäonnistui" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.js:31 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.min.js:1 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" -"Olet lataamassa tiedostoa palvelimelle. Oletko varma, että haluat poistua " -"sivulta ja keskeyttää lataamisen?" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-view-reorder.js:8 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-view-reorder.min.js:1 -msgid "Reorder resource view" -msgstr "Uudelleenjärjestä resurssinäyttö" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/slug-preview.js:36 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/slug-preview.min.js:1 -#: ckanext/sixodp_ui/templates/ckanext_pages/blog.html:12 -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:69 -#: ckanext/sixodp_ui/templates/showcase/edit_base.html:14 -msgid "Edit" -msgstr "Muokkaa" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/table-toggle-more.js:9 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/table-toggle-more.min.js:1 -#: ckanext/sixodp_ui/templates/package/resource_read.html:130 -#: ckanext/sixodp_ui/templates/snippets/facet_list.html:36 -msgid "Show more" -msgstr "Näytä lisää" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/table-toggle-more.js:10 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/table-toggle-more.min.js:1 -msgid "Hide" -msgstr "Piilota" - -#: ckanext/sixodp_ui/templates/footer.html:9 -msgid "Data portal" -msgstr "Dataportaali" - -#: ckanext/sixodp_ui/templates/footer.html:12 -msgid "Content management" -msgstr "Sisällönhallinta" - -#: ckanext/sixodp_ui/templates/footer.html:16 -msgid "Management" -msgstr "Ylläpito" - -#: ckanext/sixodp_ui/templates/footer.html:33 -msgid "Follow us" -msgstr "Seuraa meitä" - -#: ckanext/sixodp_ui/templates/sixodp_header.html:26 -msgid "Skip to content" -msgstr "Siirry sisältöön" - -#: ckanext/sixodp_ui/templates/admin/config.html:7 -msgid "Service message" -msgstr "Huoltoilmoitus" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:21 -msgid "CKAN Data API" -msgstr "CKAN Data API" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:25 -msgid "Access resource data via a web API with powerful query support" -msgstr "Sisällöt on saatavilla myös rajapinnan (API) kautta" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:26 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" -"Lisäinformaatiota löydät CKAN Data API ja DataStore -dokumentaatiosta.

" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:36 -msgid "Endpoints" -msgstr "Päätepisteet" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:41 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "" -"Data-API:a voidaan käyttää seuraavilla CKAN action API:n toiminnoilla." - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:46 -msgid "Query" -msgstr "Haku" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:50 -msgid "Query (via SQL)" -msgstr "SQL-haku" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:62 -msgid "Querying" -msgstr "Hakeminen" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:67 -msgid "Query example (first 5 results)" -msgstr "Hakuesimerkki (ensimmäiset 5 tulosta)" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:72 -msgid "Query example (results containing 'my_resource_query')" -msgstr "Kyselyesimerkki (tulokset sisältäen 'my_resource_query')" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:77 -msgid "Query example (via SQL statement)" -msgstr "Kyselyesimerkki (SQL-haun kautta)" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:89 -msgid "Example: Javascript" -msgstr "Esimerkki: Javascript" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:94 -msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "" -"Yksinkertainen ajax (JSONP) -kysely data-API:in käyttäen jQuery-kutsua." - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:116 -msgid "Example: Python" -msgstr "Esimerkki: Python" - -#: ckanext/sixodp_ui/templates/ckanext_pages/blog.html:4 -#: ckanext/sixodp_ui/templates/ckanext_pages/blog_list.html:11 -msgid "Articles" -msgstr "Artikkelit" - -#: ckanext/sixodp_ui/templates/ckanext_pages/blog.html:28 -#: ckanext/sixodp_ui/templates/ckanext_pages/snippets/pages_list.html:51 -#: ckanext/sixodp_ui/templates/ckanext_pages/snippets/pages_list.html:71 -msgid "This page currently has no content" -msgstr "Sivulla ei ole sisältöä" - -#: ckanext/sixodp_ui/templates/ckanext_pages/blog_list.html:5 -msgid "Add Article" -msgstr "Lisää artikkeli" - -#: ckanext/sixodp_ui/templates/ckanext_pages/blog_list.html:15 -msgid "Blog" -msgstr "Blogi" - -#: ckanext/sixodp_ui/templates/ckanext_pages/pages_edit.html:5 -msgid "Add page" -msgstr "Lisää sivu" - -#: ckanext/sixodp_ui/templates/ckanext_pages/snippets/pages_list.html:80 -msgid "There are currently no blog articles here" -msgstr "Sivustolla ei ole yhtään artikkelia" - -#: ckanext/sixodp_ui/templates/ckanext_pages/snippets/pages_list.html:82 -msgid "There are currently no pages here" -msgstr "Täällä ei tällä hetkellä ole sivuja" - -#: ckanext/sixodp_ui/templates/collection/index.html:7 -msgid "Search collections..." -msgstr "Hae datakokoelmista..." - -#: ckanext/sixodp_ui/templates/group/index.html:7 -#: ckanext/sixodp_ui/templates/group/index.html:15 -msgid "Search groups..." -msgstr "Hae kategorioita..." - -#: ckanext/sixodp_ui/templates/group/index.html:15 -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:21 -#: ckanext/sixodp_ui/templates/organization/read.html:15 -#: ckanext/sixodp_ui/templates/package/search.html:38 -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:25 -#: ckanext/sixodp_ui/templates/showcase/search.html:13 -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:30 -msgid "Name Ascending" -msgstr "Nimen mukaan nousevasti" - -#: ckanext/sixodp_ui/templates/group/index.html:15 -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:22 -#: ckanext/sixodp_ui/templates/organization/read.html:16 -#: ckanext/sixodp_ui/templates/package/search.html:39 -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:26 -#: ckanext/sixodp_ui/templates/showcase/search.html:14 -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:30 -msgid "Name Descending" -msgstr "Nimen mukaan laskevasti" - -#: ckanext/sixodp_ui/templates/group/read.html:6 -#: ckanext/sixodp_ui/templates/organization/read.html:30 -#: ckanext/sixodp_ui/templates/package/search.html:84 -msgid "Filter results" -msgstr "Suodata tuloksia" - -#: ckanext/sixodp_ui/templates/group/read_base.html:4 -#: ckanext/sixodp_ui/templates/group/snippets/info.html:12 -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:14 -msgid "Datasets" -msgstr "Tietoaineistot" - -#: ckanext/sixodp_ui/templates/group/read_base.html:5 -#: ckanext/sixodp_ui/templates/package/activity.html:3 -#: ckanext/sixodp_ui/templates/package/read_base.html:39 -msgid "Activity Stream" -msgstr "Aktiivisuusvirta" - -#: ckanext/sixodp_ui/templates/group/snippets/group_item.html:29 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "{num} tietoaineisto" -msgstr[1] "{num} tietoaineistoa" - -#: ckanext/sixodp_ui/templates/group/snippets/group_item.html:31 -msgid "0 Datasets" -msgstr "0 tietoaineistoa" - -#: ckanext/sixodp_ui/templates/group/snippets/group_item.html:36 -#: ckanext/sixodp_ui/templates/group/snippets/group_item.html:37 -msgid "View {name}" -msgstr "Näytä {name}" - -#: ckanext/sixodp_ui/templates/group/snippets/group_item.html:41 -msgid "Remove dataset from this group" -msgstr "Poista tietoaineisto tästä kategoriasta" - -#: ckanext/sixodp_ui/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "Mitä kategoriat ovat?" - -#: ckanext/sixodp_ui/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 "" -"Kategorioiden avulla datoja ryhmitellään eri teemojen mukaan. Yksi aineisto " -"voi kuulua useampaan kategoriaan." - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_language-changer.html:6 -msgid "In Finnish" -msgstr "Suomeksi" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_language-changer.html:12 -msgid "In English" -msgstr "Englanniksi" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_language-changer.html:18 -msgid "In Swedish" -msgstr "Ruotsiksi" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_navbar_search.html:4 -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_navbar_search.html:11 -#: ckanext/sixodp_ui/templates/snippets/search_form.html:5 -#: ckanext/sixodp_ui/templates/snippets/search_input.html:18 -msgid "Search" -msgstr "Hae" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:12 -msgid "Sysadmin settings" -msgstr "Järjestelmän ylläpitäjän asetukset" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:14 -msgid "Admin" -msgstr "Ylläpitäjä - Admin" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:18 -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:20 -msgid "Dataset Editor" -msgstr "Massamuokkaus" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:26 -msgid "View profile" -msgstr "Näytä profiili" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:35 -#, python-format -msgid "Dashboard (%(num)d new item)" -msgid_plural "Dashboard (%(num)d new items)" -msgstr[0] "Dashboard (%(num)d uusi kohde)" -msgstr[1] "Dashboard (%(num)d uutta kohdetta)" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:38 -msgid "Dashboard" -msgstr "Dashboard" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:56 -#: ckanext/sixodp_ui/templates/user/dashboard.html:8 -msgid "Edit settings" -msgstr "Muokkaa asetuksia" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:58 -msgid "Settings" -msgstr "Asetukset" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:65 -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:67 -msgid "Log out" -msgstr "Kirjaudu ulos" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:76 -msgid "Log in" -msgstr "Kirjaudu sisään" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:78 -msgid "Register" -msgstr "Rekisteröidy" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:5 -msgid "Edit datasets" -msgstr "Muokkaa tietoaineistoja" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:10 -msgid " found for \"{query}\"" -msgstr "löytyi haulla \"{query}\"" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:12 -msgid "Sorry no datasets found for \"{query}\"" -msgstr "Haulla \"{query}\" ei löytynyt dataa" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:23 -#: ckanext/sixodp_ui/templates/organization/read.html:17 -#: ckanext/sixodp_ui/templates/package/search.html:40 -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:51 -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:27 -#: ckanext/sixodp_ui/templates/showcase/search.html:15 -msgid "Last Modified" -msgstr "Viimeksi muokattu" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:41 -msgid "Make public" -msgstr "Muuta julkiseksi" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:45 -msgid "Make private" -msgstr "Muuta yksityiseksi" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:51 -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:65 -msgid "Delete" -msgstr "Poista" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:74 -#: ckanext/sixodp_ui/templates/package/read_base.html:15 -#: ckanext/sixodp_ui/templates/showcase/read.html:20 -#: ckanext/sixodp_ui/templates/snippets/package_item.html:68 -msgid "Draft" -msgstr "Luonnos" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:76 -#: ckanext/sixodp_ui/templates/package/read_base.html:20 -#: ckanext/sixodp_ui/templates/snippets/package_item.html:70 -msgid "Deleted" -msgstr "Poistettu" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:79 -#: ckanext/sixodp_ui/templates/package/read.html:11 -#: ckanext/sixodp_ui/templates/showcase/read.html:13 -#: ckanext/sixodp_ui/templates/snippets/package_item.html:61 -msgid "Private" -msgstr "Yksityinen" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:92 -msgid "This organization has no datasets associated to it" -msgstr "Tähän organisaatioon ei liity tietoaineistoja" - -#: ckanext/sixodp_ui/templates/organization/index.html:7 -#: ckanext/sixodp_ui/templates/organization/index.html:15 -msgid "Search organizations..." -msgstr "Hae organisaatioita..." - -#: ckanext/sixodp_ui/templates/organization/read.html:12 -msgid "Last Created" -msgstr "Viimeksi luotu" - -#: ckanext/sixodp_ui/templates/organization/read.html:13 -#: ckanext/sixodp_ui/templates/package/search.html:36 -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:28 -#: ckanext/sixodp_ui/templates/showcase/search.html:16 -#: ckanext/sixodp_ui/templates/snippets/package_item.html:80 -msgid "Popular" -msgstr "Suositut" - -#: ckanext/sixodp_ui/templates/organization/read.html:14 -#: ckanext/sixodp_ui/templates/package/search.html:37 -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:24 -#: ckanext/sixodp_ui/templates/showcase/search.html:12 -msgid "Relevance" -msgstr "Relevanssi" - -#: ckanext/sixodp_ui/templates/organization/read.html:19 -#: ckanext/sixodp_ui/templates/package/search.html:7 -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:3 -msgid "Search datasets..." -msgstr "Hae tietoaineistoista..." - -#: ckanext/sixodp_ui/templates/package/confirm_delete.html:12 -msgid "Are you sure you want to delete dataset - {name}?" -msgstr "Haluatko varmasti poistaa tietoaineiston - {name}?" - -#: ckanext/sixodp_ui/templates/package/confirm_delete.html:16 -msgid "Confirm Delete" -msgstr "Vahvista poisto" - -#: ckanext/sixodp_ui/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "Liitä kategoria tähän dataan" - -#: ckanext/sixodp_ui/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "Lisää kategoriaan" - -#: ckanext/sixodp_ui/templates/package/group_list.html:24 -msgid "There are no groups associated with this dataset" -msgstr "Data ei kuulu kategorioihin" - -#: ckanext/sixodp_ui/templates/package/new_view.html:3 -#: ckanext/sixodp_ui/templates/package/new_view.html:4 -#: ckanext/sixodp_ui/templates/package/new_view.html:8 -#: ckanext/sixodp_ui/templates/package/new_view.html:12 -msgid "Add view" -msgstr "Lisää näkymä" - -#: ckanext/sixodp_ui/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. " - -#: ckanext/sixodp_ui/templates/package/new_view.html:28 -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:48 -msgid "Preview" -msgstr "Esikatselu" - -#: ckanext/sixodp_ui/templates/package/new_view.html:29 -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:81 -msgid "Add" -msgstr "Lisää" - -#: ckanext/sixodp_ui/templates/package/read.html:43 -#: ckanext/sixodp_ui/templates/package/read_base.html:75 -#: ckanext/sixodp_ui/templates/package/resource_read.html:185 -msgid "Subscribe for dataset updates" -msgstr "Tilaa ilmoitukset muutoksista" - -#: ckanext/sixodp_ui/templates/package/read_base.html:37 -msgid "Dataset" -msgstr "Tietoaineisto" - -#: ckanext/sixodp_ui/templates/package/read_base.html:38 -#: ckanext/sixodp_ui/templates/showcase/edit_base.html:5 -#: ckanext/sixodp_ui/templates/showcase/edit_base.html:12 -#: ckanext/sixodp_ui/templates/showcase/edit_base.html:16 -msgid "Showcases" -msgstr "Sovellukset" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:18 -#: ckanext/sixodp_ui/templates/showcase/read.html:6 -msgid "Manage" -msgstr "Hallitse" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:40 -msgid "View" -msgstr "Näkymä" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:42 -msgid "API Endpoint" -msgstr "API-osoite" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:44 -#: ckanext/sixodp_ui/templates/package/snippets/resource_item.html:36 -#: ckanext/sixodp_ui/templates/report/view.html:47 -msgid "Download" -msgstr "Lataa" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:88 -msgid "There are no views created for this resource yet." -msgstr "Resurssille ei ole luotu vielä yhtään näkymää." - -#: ckanext/sixodp_ui/templates/package/resource_read.html:91 -msgid "Not seeing the views you were expecting?" -msgstr "Et näe odottamiasi näkymiä?" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:93 -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:18 -msgid "Click here for more information." -msgstr "Klikkaa tästä saadaksesi lisätietoa..." - -#: ckanext/sixodp_ui/templates/package/resource_read.html:97 -msgid "Here are some reasons you may not be seeing expected views:" -msgstr "Tässä joitain syitä, jos et näe odottamiasi näkymiä:" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:99 -msgid "No view has been created that is suitable for this resource" -msgstr "Tälle resurssille ei ole luotu yhtään näkymää" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:100 -msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" -"Voi olla, ettei ylläpitäjä ole ottanut käyttöön tarvittavia liitännäisiä" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:101 -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." - -#: ckanext/sixodp_ui/templates/package/resource_read.html:122 -msgid "From the dataset abstract" -msgstr "Datan kuvaus" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:124 -#, python-format -msgid "Source: %(dataset)s" -msgstr "Lähde: %(dataset)s" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:131 -#: ckanext/sixodp_ui/templates/snippets/facet_list.html:39 -msgid "Show less" -msgstr "Näytä vähemmän" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:154 -msgid "Back to dataset" -msgstr "Takaisin tietoaineistoon" - -#: ckanext/sixodp_ui/templates/package/search.html:21 -msgid "Add Dataset" -msgstr "Lisää tietoaineisto" - -#: ckanext/sixodp_ui/templates/package/search.html:34 -msgid "Newest first" -msgstr "Uusin ensin" - -#: ckanext/sixodp_ui/templates/package/search.html:35 -msgid "Oldest first" -msgstr "Vanhin ensin" - -#: ckanext/sixodp_ui/templates/package/search.html:63 -msgid "API" -msgstr "API" - -#: ckanext/sixodp_ui/templates/package/search.html:64 -msgid "API Docs" -msgstr "API-dokumentaatio" - -#: ckanext/sixodp_ui/templates/package/search.html:66 -msgid "full {format} dump" -msgstr "täysi {format} dumppi" - -#: ckanext/sixodp_ui/templates/package/search.html:67 -#, 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. " - -#: ckanext/sixodp_ui/templates/package/search.html:71 -#, 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). " - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:2 -msgid "Additional Info" -msgstr "Lisätiedot" - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:7 -msgid "Metadata API" -msgstr "Metadata API" - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:18 -msgid "Source" -msgstr "Lähde" - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:29 -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:34 -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:63 -msgid "Author" -msgstr "Tekijä" - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:41 -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:46 -msgid "Maintainer" -msgstr "Ylläpitäjä" - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:53 -msgid "Version" -msgstr "Versio" - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:60 -msgid "State" -msgstr "Tila" - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:66 -msgid "Last Updated" -msgstr "Viimeksi päivitetty" - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:72 -msgid "Created" -msgstr "Luotu" - -#: ckanext/sixodp_ui/templates/package/snippets/data_api_button.html:10 -#: ckanext/sixodp_ui/templates/package/snippets/resource_item.html:28 -msgid "Data API" -msgstr "Data API" - -#: ckanext/sixodp_ui/templates/package/snippets/package_form.html:5 -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 "" -"Lomakkeella valittulisenssi koskee ainoastaan tähän tietoaineistoon " -"liittämääsi dataa. Lähettämällä tämän lomakkeen suostut julkaisemaan " -"täyttämäsi metatiedot Creative Commons 0 " -"-lisenssin mukaisesti." - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:24 -msgid "Data" -msgstr "Data" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" -msgstr "http://example.com/external-data.csv" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "Nimi" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "Resurssin nimi. Esim. vuosiluku tai tiedostoformaatti." - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:32 -#: ckanext/sixodp_ui/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Kuvaus" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "Datan sanallinen kuvaus" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:37 -msgid "Format" -msgstr "Tiedostomuoto" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "esim. CSV, XML tai JSON" - -#: ckanext/sixodp_ui/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." - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "esim. 2012-06-05" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "Tiedoston koko tavuina" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "esim. 1024" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:55 -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "MIME-tyyppi" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:55 -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "esim. application/json" - -#: ckanext/sixodp_ui/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?" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:71 -msgid "Previous" -msgstr "Edellinen" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:74 -msgid "Save & add another" -msgstr "Tallenna ja lisää toinen" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:77 -msgid "Finish" -msgstr "Valmis" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:88 -msgid "Estimated upload times with the selected resource file" -msgstr "Arvioidut latausajat valitulle resurssitiedostolle" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:16 -msgid "This resource view is not available at the moment." -msgstr "Resurssille ei ole esikatselua tällä hetkellä." - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:25 -msgid "Download resource" -msgstr "Lataa resurssi" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:49 -msgid "Your browser does not support iframes." -msgstr "Selaimesi ei tue iframe-elementtejä." - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:60 -msgid "Fullscreen" -msgstr "Koko näyttö" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:68 -msgid "Embed" -msgstr "Upota" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:80 -msgid "Embed resource view" -msgstr "Upota resurssinäkymä" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:83 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" -msgstr "" -"Voit kopioida ja liittää upotuskoodin CMS:ään tai blogiin, joka tukee HTML-" -"koodia." - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:86 -msgid "Width" -msgstr "Leveys" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:89 -msgid "Height" -msgstr "Korkeus" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:92 -msgid "Code" -msgstr "Koodi" - -#: ckanext/sixodp_ui/templates/package/snippets/resources.html:4 -msgid "Resources" -msgstr "Data ja resurssit" - -#: ckanext/sixodp_ui/templates/package/snippets/view_form.html:8 -msgid "Title" -msgstr "Nimi" - -#: ckanext/sixodp_ui/templates/package/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "Näkymän nimi" - -#: ckanext/sixodp_ui/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" -msgstr "Tiivis kuvaus näkymästä" - -#: ckanext/sixodp_ui/templates/package/snippets/view_help.html:2 -msgid "What's a view?" -msgstr "Mikä on näkymä?" - -#: ckanext/sixodp_ui/templates/package/snippets/view_help.html:4 -msgid "A view is a representation of the data held against a resource" -msgstr " Näkymässä voi mm. esikatsella resurssin sisältämää dataa." - -#: ckanext/sixodp_ui/templates/report/index.html:5 -#: ckanext/sixodp_ui/templates/report/view.html:3 -#: ckanext/sixodp_ui/templates/report/view.html:6 -msgid "Reports" -msgstr "Raportit" - -#: ckanext/sixodp_ui/templates/report/index.html:24 -msgid "View Report" -msgstr "Avaa raportti" - -#: ckanext/sixodp_ui/templates/report/view.html:16 -msgid "Generated" -msgstr "Generoitu" - -#: ckanext/sixodp_ui/templates/report/view.html:20 -msgid "Refresh report" -msgstr "Päivitä raportti" - -#: ckanext/sixodp_ui/templates/report/view.html:23 -msgid "Refresh" -msgstr "Päivitä" - -#: ckanext/sixodp_ui/templates/report/view.html:25 -msgid "" -"As a system administrator you are able to refresh this report on demand by " -"clicking the 'Refresh' button." -msgstr "Voit päivittää tämän raportin nyt painamalla 'Päivitä'." - -#: ckanext/sixodp_ui/templates/report/view.html:31 -msgid "Options" -msgstr "Valinnat" - -#: ckanext/sixodp_ui/templates/report/view.html:52 -msgid "Results" -msgstr "Tulokset" - -#: ckanext/sixodp_ui/templates/report/view.html:54 -msgid "No results found." -msgstr "Tuloksia ei löytynyt" - -#: ckanext/sixodp_ui/templates/showcase/edit_base.html:17 -msgid "Create Showcase" -msgstr "Tallenna sovellus" - -#: ckanext/sixodp_ui/templates/showcase/edit_base.html:30 -msgid "View showcase" -msgstr "Näytä sovellus" - -#: ckanext/sixodp_ui/templates/showcase/edit_base.html:36 -msgid "Edit showcase" -msgstr "Muokkaa sovellusta" - -#: ckanext/sixodp_ui/templates/showcase/edit_base.html:37 -msgid "Manage datasets" -msgstr "Hallitse tietoaineistoja" - -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:3 -msgid "Showcases - Manage datasets" -msgstr "Sovellukset - Hallitse tietoaineistoja" - -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:36 -msgid "Datasets available to add to this showcase" -msgstr "Tietoaineistot, jotka voi liittää tähän sovellukseen" - -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:51 -msgid "Add to Showcase" -msgstr "Liitä sovellukseen" - -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:88 -msgid "No datasets could be found" -msgstr "Tietoaineistoja ei löytynyt" - -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:96 -msgid "Datasets in this showcase" -msgstr "Sovellukseen liittyvät tietoaineistot" - -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:109 -msgid "Remove from Showcase" -msgstr "Poista sovelluksesta" - -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:140 -msgid "This showcase has no datasets associated to it" -msgstr "Tähän sovellukseen ei liity tietoaineistoja" - -#: ckanext/sixodp_ui/templates/showcase/read.html:38 -msgid "Launch website" -msgstr "Avaa sivu" - -#: ckanext/sixodp_ui/templates/showcase/search.html:19 -msgid "Search showcases..." -msgstr "Hae sovelluksia..." - -#: ckanext/sixodp_ui/templates/snippets/facet_list.html:43 -msgid "There are no {facet_type} that match this search" -msgstr "Hakuun ei liity {facet_type} -tyyppistä sisältöä" - -#: ckanext/sixodp_ui/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "Etusivu" - -#: ckanext/sixodp_ui/templates/snippets/horizontal_accordion.html:30 -msgid "Close preview" -msgstr "Sulje esittely" - -#: ckanext/sixodp_ui/templates/snippets/horizontal_accordion.html:31 -msgid "Show preview" -msgstr "Avaa esittely" - -#: ckanext/sixodp_ui/templates/snippets/license.html:14 -msgid "No License Provided" -msgstr "Lisenssiä ei määritelty" - -#: ckanext/sixodp_ui/templates/snippets/license.html:21 -msgid "License" -msgstr "Lisenssi" - -#: ckanext/sixodp_ui/templates/snippets/license.html:33 -msgid "This dataset satisfies the Open Definition." -msgstr "Tämä tietoaineisto täyttää avoimen datan määritelmän." - -#: ckanext/sixodp_ui/templates/snippets/package_item.html:87 -msgid "This dataset has no description" -msgstr "Tietoaineistolla ei ole kuvausta" - -#: ckanext/sixodp_ui/templates/snippets/page_highlight_item.html:8 -msgid "View {showcase_title}" -msgstr "Näytä {showcase_title}" - -#: ckanext/sixodp_ui/templates/snippets/page_highlight_item.html:25 -msgid "This showcase has no description" -msgstr "Sovelluksella ei ole kuvausta" - -#: ckanext/sixodp_ui/templates/snippets/search_form.html:9 -msgid "Submit" -msgstr "Lähetä" - -#: ckanext/sixodp_ui/templates/snippets/search_form.html:19 -msgid "Sort" -msgstr "Lajittele" - -#: ckanext/sixodp_ui/templates/snippets/search_form.html:27 -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:43 -msgid "Go" -msgstr "Siirry" - -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:36 -msgid "Sort results" -msgstr "Järjestä tulokset" - -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:61 -#: ckanext/sixodp_ui/templates/snippets/tag_list.html:4 -msgid "Tags" -msgstr "Avainsanat" - -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:82 -msgid "" -"

Please try another search or change search facets.

" -msgstr "" -"

Kokeile erilaista hakusanaa tai vaihda hakutermejä.

" - -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:88 -msgid "" -"

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

" -msgstr "

Haussa tapahtui virhe. Yritä uudelleen.

" - -#: ckanext/sixodp_ui/templates/snippets/sixodp_offcanvas-filter-button.html:2 -msgid "Filters" -msgstr "Suodattimet" - -#: ckanext/sixodp_ui/templates/snippets/sixodp_offcanvas-info-button.html:2 -msgid "About" -msgstr "Tiedot" - -#: ckanext/sixodp_ui/templates/user/dashboard.html:11 -#: ckanext/sixodp_ui/templates/user/dashboard.html:29 -msgid "News feed" -msgstr "Uutisvirta" - -#: ckanext/sixodp_ui/templates/user/dashboard.html:12 -msgid "My Datasets" -msgstr "Minun tietoaineistoni" - -#: ckanext/sixodp_ui/templates/user/dashboard.html:13 -msgid "My Organizations" -msgstr "Minun organisaationi" - -#: ckanext/sixodp_ui/templates/user/dashboard.html:14 -msgid "My Groups" -msgstr "Minun kategoriani" - -#: ckanext/sixodp_ui/templates/user/dashboard.html:31 -msgid "Activity from items that I'm following" -msgstr "Seuraamieni osioiden toiminta" - -#: ckanext/sixodp_ui/templates/user/login.html:6 -msgid "Login" -msgstr "Kirjaudu" - -#: ckanext/sixodp_ui/templates/user/snippets/followee_dropdown.html:14 -#: ckanext/sixodp_ui/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "Tapahtumia kohteessa:" - -#: ckanext/sixodp_ui/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "Hae listalta..." - -#: ckanext/sixodp_ui/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "Et seuraa mitään" diff --git a/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/sv/LC_MESSAGES/ckanext-sixodp.mo b/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/sv/LC_MESSAGES/ckanext-sixodp.mo new file mode 100644 index 000000000..ba6235e48 Binary files /dev/null and b/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/sv/LC_MESSAGES/ckanext-sixodp.mo differ diff --git a/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/sv/LC_MESSAGES/ckanext-sixodp.po b/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/sv/LC_MESSAGES/ckanext-sixodp.po new file mode 100644 index 000000000..ccd6ef72d --- /dev/null +++ b/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/sv/LC_MESSAGES/ckanext-sixodp.po @@ -0,0 +1,1741 @@ +# Translations template for ckanext-sixodp. +# Copyright (C) 2022 ORGANIZATION +# This file is distributed under the same license as the ckanext-sixodp project. +# FIRST AUTHOR , 2022. +# +# Translators: +# Zharktas , 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckanext-sixodp 0.0.1\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2022-12-19 08:02+0000\n" +"PO-Revision-Date: 2022-12-19 08:10+0000\n" +"Last-Translator: Zharktas , 2022\n" +"Language-Team: Swedish (https://www.transifex.com/6aika-dataportal/teams/68018/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ckanext/sixodp/helpers.py:177 ckanext/sixodp/helpers.py:383 +msgid "Dataset not found" +msgstr "Dataset hittades inte" + +#: ckanext/sixodp/helpers.py:288 +msgid "Show submenu for " +msgstr "" + +#: ckanext/sixodp/plugin.py:236 ckanext/sixodp/plugin.py:247 +#: ckanext/sixodp/plugin.py:257 +msgid "Formats" +msgstr "Format" + +#: ckanext/sixodp/plugin.py:237 ckanext/sixodp/plugin.py:248 +#: ckanext/sixodp/plugin.py:258 ckanext/sixodp/translations.py:31 +msgid "Geographical Coverage" +msgstr "Områden" + +#: ckanext/sixodp/plugin.py:238 ckanext/sixodp/plugin.py:249 +#: ckanext/sixodp/plugin.py:259 +#: ckanext/sixodp/templates/package/group_list.html:5 +#: ckanext/sixodp/templates/package/read_base.html:41 +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:114 +msgid "Groups" +msgstr "Grupper" + +#: ckanext/sixodp/plugin.py:239 ckanext/sixodp/plugin.py:250 +#: ckanext/sixodp/plugin.py:260 +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:44 +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:46 +msgid "Organizations" +msgstr "Organisationer" + +#: ckanext/sixodp/plugin.py:240 ckanext/sixodp/plugin.py:251 +#: ckanext/sixodp/plugin.py:261 +#: ckanext/sixodp/templates/package/read_base.html:42 +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:129 +msgid "Collections" +msgstr "Datainsamlingar" + +#: ckanext/sixodp/translations.py:8 +msgid "Broken links" +msgstr "" + +#: ckanext/sixodp/translations.py:9 +msgid "" +"Dataset resource URLs that are found to result in errors when resolved." +msgstr "" + +#: ckanext/sixodp/translations.py:10 +msgid "Openness (Five Stars)" +msgstr "" + +#: ckanext/sixodp/translations.py:11 +msgid "" +"Datasets graded on Tim Berners Lees' Five Stars of Openness - openly " +"licensed, openly accessible, structured, open format, URIs for entities, " +"linked." +msgstr "" + +#: ckanext/sixodp/translations.py:13 +msgid "Most popular datasets" +msgstr "" + +#: ckanext/sixodp/translations.py:14 +msgid "Google analytics showing top datasets with most views" +msgstr "" + +#: ckanext/sixodp/translations.py:15 +msgid "Most popular resources" +msgstr "" + +#: ckanext/sixodp/translations.py:16 +msgid "Google analytics showing most downloaded resources" +msgstr "" + +#: ckanext/sixodp/translations.py:17 +msgid "Publisher activity" +msgstr "" + +#: ckanext/sixodp/translations.py:18 +msgid "A quarterly list of datasets created and edited by a publisher." +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/view_form.html:8 +#: ckanext/sixodp/translations.py:20 +msgid "Title" +msgstr "Titel" + +#: ckanext/sixodp/translations.py:21 +msgid "eg. A descriptive title for the dataset" +msgstr "" + +#: ckanext/sixodp/translations.py:22 +msgid "" +"A short and descriptive title for the dataset in multiple languages. Try not" +" to use dates when naming a dataset, since data from multiple years will " +"usually be published as multiple resources in one dataset." +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.js:20 +#: ckanext/sixodp/fanstatic/javascript/modules/slug-preview.js:35 +#: ckanext/sixodp/fanstatic/javascript/modules/slug-preview.min.js:1 +#: ckanext/sixodp/templates/package/snippets/resource_form.html:24 +#: ckanext/sixodp/translations.py:24 ckanext/sixodp/translations.py:96 +msgid "URL" +msgstr "URL" + +#: ckanext/sixodp/translations.py:25 +msgid "" +"An URL-address which refers to the dataset. The automatically filled option " +"derived from the title is the best option in most cases." +msgstr "" + +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:61 +#: ckanext/sixodp/templates/snippets/tag_list.html:4 +#: ckanext/sixodp/translations.py:27 +msgid "Tags" +msgstr "Taggar" + +#: ckanext/sixodp/translations.py:28 +msgid "E.g. transport, housing, buildings" +msgstr "" + +#: ckanext/sixodp/translations.py:29 +msgid "" +"Descriptive keywords or tags through which users are able to find this " +"dataset easily through the search. The input will suggest existing keywords " +"in the portal. New keywords should utilize ontologies such as the generic " +"finnish ontology YSO: finto.fi/yso/fi." +msgstr "" + +#: ckanext/sixodp/translations.py:32 +msgid "eg. tampere" +msgstr "t.ex. Tampere" + +#: ckanext/sixodp/translations.py:33 +msgid "Select the municipalities from which the dataset contains data." +msgstr "Välj från vilka områden materialet innehåller information." + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:32 +#: ckanext/sixodp/templates/package/snippets/view_form.html:9 +#: ckanext/sixodp/translations.py:35 ckanext/sixodp/translations.py:105 +msgid "Description" +msgstr "Beskrivning" + +#: ckanext/sixodp/translations.py:36 +msgid "E.g. A diverse and detailed description" +msgstr "" +"En allmän, kompakt och lättförståelig beskrivning av data. Se exempel på " +"andra dataposter." + +#: ckanext/sixodp/translations.py:37 +msgid "eg. A detailed description" +msgstr "" + +#: ckanext/sixodp/translations.py:38 +msgid "" +"An universal and easy to understand, but also diverse description of the " +"added dataset. Describe the dataset creation process, use case and possible " +"limitations and shortcomings as well as possible." +msgstr "" +"En allmän, kompakt och lättförståelig beskrivning av data. T.ex. vad " +"materialet innehåller och hur det har beretts. Utifrån detta kan användaren " +"tolka materialet rätt." + +#: ckanext/sixodp/translations.py:40 +msgid "Links to additional information concerning the dataset" +msgstr "Länkar med ytterligare information" + +#: ckanext/sixodp/translations.py:41 +msgid "" +"You may attach external websites or other documentation which could assist " +"in interpreting the dataset." +msgstr "" + +#: ckanext/sixodp/translations.py:43 +msgid "Organization" +msgstr "Organisation" + +#: ckanext/sixodp/translations.py:44 +msgid "The organization which owns the dataset." +msgstr "Organisation som äger data och upprätthåller dess innehåll." + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:18 +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:185 +#: ckanext/sixodp/translations.py:46 +msgid "Source" +msgstr "Källa" + +#: ckanext/sixodp/translations.py:47 +msgid "http://example.com/dataset.json" +msgstr "" + +#: ckanext/sixodp/translations.py:48 +msgid "" +"The original author of the dataset. Can also be an external author such as " +"Statistics Finland. The field can e.g. be used to describe a situation where" +" the dataset is published by a single unit but it has multiple authors." +msgstr "" +"Den ursprungliga producenten av material som utgör databasen eller " +"materialet som används i datasetet.Det kan också vara en extern källa till " +"en stadsorganisation, t.ex. Statistikcentralen." + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:41 +#: ckanext/sixodp/templates/package/snippets/additional_info.html:46 +#: ckanext/sixodp/translations.py:50 +msgid "Maintainer" +msgstr "Förvaltare" + +#: ckanext/sixodp/translations.py:51 +msgid "Joe Bloggs" +msgstr "t.ex. Kaupunkimittaus" + +#: ckanext/sixodp/translations.py:52 +msgid "" +"The technical maintainer for the dataset. Can in practice be the maintaining" +" unit, bureau or as an exception a single employee." +msgstr "Teknisk dataadministratör. Oftast densamma som organisationen." + +#: ckanext/sixodp/translations.py:54 +msgid "Maintainer Email" +msgstr "Administratörens e-post" + +#: ckanext/sixodp/translations.py:55 +msgid "Maintainer email address" +msgstr "Administratörens e-postadress" + +#: ckanext/sixodp/translations.py:56 +msgid "" +"The email address for the maintaining party for the dataset. Use a mailing " +"list or other similar means to direct the message to multiple recipients." +msgstr "" +"Administratörens e-postadress. Använd organisationens allmänna e-postadress " +"om den finns." + +#: ckanext/sixodp/translations.py:58 +msgid "Maintainer Website" +msgstr "Administratörens webbplats" + +#: ckanext/sixodp/translations.py:59 +msgid "http://www.example.com" +msgstr "" + +#: ckanext/sixodp/templates/scheming/form_snippets/private.html:2 +#: ckanext/sixodp/translations.py:61 +msgid "Visibility" +msgstr "Synlighet" + +#: ckanext/sixodp/translations.py:62 +msgid "" +"Private datasets will only be seen by the logged in users of the dataset's " +"organization. The private status is used when preparing a new dataset for " +"publication." +msgstr "" +"Privata dataset kommer endast att vara tillgängliga för inloggade användare " +"av datasetorganisationen. Offentliga dataset kommer att vara tillgängliga " +"för alla användare." + +#: ckanext/sixodp/translations.py:64 +msgid "Published" +msgstr "Publicerad" + +#: ckanext/sixodp/translations.py:65 +msgid "The resource publication date." +msgstr "" + +#: ckanext/sixodp/translations.py:66 +msgid "The dataset publication date." +msgstr "Datum för utgivning av material" + +#: ckanext/sixodp/translations.py:68 +msgid "Updated" +msgstr "Uppdaterad" + +#: ckanext/sixodp/translations.py:69 +msgid "The resource update date." +msgstr "" + +#: ckanext/sixodp/translations.py:70 +msgid "" +"A manually maintained date which can be used to notify when the dataset has " +"been updated." +msgstr "" + +#: ckanext/sixodp/translations.py:72 +msgid "Update Frequency" +msgstr "Uppdateringsfrekvens" + +#: ckanext/sixodp/translations.py:73 +msgid "eg. every second week" +msgstr "t.ex. månad" + +#: ckanext/sixodp/translations.py:74 +msgid "" +"The supposed update frequency for the dataset. The field will suggest " +"similar values used in other datasets such as yearly, monthly or realtime. A" +" new value can also be created if required." +msgstr "" +"En kort beskrivning av datauppdateringsintervallet. T.ex. dag / vecka / " +"månad / år." + +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:177 +#: ckanext/sixodp/templates/snippets/license.html:21 +#: ckanext/sixodp/translations.py:76 +msgid "License" +msgstr "Licens" + +#: ckanext/sixodp/translations.py:78 +msgid "Reminder date" +msgstr "Påminnelsedatum för uppdatering" + +#: ckanext/sixodp/translations.py:79 +msgid "" +"A date when a reminder email will be sent to the system administrator " +"reminding to check this dataset e.g. for a yearly update." +msgstr "" +"Datum då ett påminnelsemeddelande skickas till dataportaladministratören. " +"Det är möjligt att ändra administratörens e-postadress från CKAN-" +"administratörens inställningar." + +#: ckanext/sixodp/translations.py:81 +msgid "Global ID" +msgstr "Global ID" + +#: ckanext/sixodp/translations.py:82 +msgid "" +"A global id can be assigned to identify the dataset in external services." +msgstr "" +"En unik identifierare av dataset. Det behövs särskilt när data kopieras till" +" andra dataportaler (t ex avoindata.fi)." + +#: ckanext/sixodp/translations.py:84 +msgid "Search Synonyms" +msgstr "Sökord" + +#: ckanext/sixodp/translations.py:85 +msgid "" +"Keywords can be provided here to improve the findability of the dataset. " +"E.g. words from spoken language can be provided to make the dataset " +"searchable by those words." +msgstr "" +"Synonymer för att göra sökningen effektivare (t.ex. förskola -> dagvård)" + +#: ckanext/sixodp/templates/package/snippets/package_form.html:5 +#: ckanext/sixodp/translations.py:87 +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." + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:28 +#: ckanext/sixodp/translations.py:93 +msgid "Name" +msgstr "Namn" + +#: ckanext/sixodp/translations.py:94 +msgid "A short and descriptive name for the resource." +msgstr "Ett kort och beskrivande namn på resursen" + +#: ckanext/sixodp/translations.py:97 +msgid "" +"A file or url which describes the location of the desired resource file." +msgstr "" + +#: ckanext/sixodp/templates/scheming/package/resource_read.html:34 +#: ckanext/sixodp/translations.py:99 +msgid "Size" +msgstr "Filstorlek" + +#: ckanext/sixodp/translations.py:100 +msgid "" +"Size of the added resouce file in bytes. Will be automatically filled when " +"the file is uploaded." +msgstr "" +"Filstorlek i byte. Uppdateras automatiskt när en fil laddas upp till en " +"server." + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:37 +#: ckanext/sixodp/templates/scheming/package/resource_read.html:27 +#: ckanext/sixodp/translations.py:102 +msgid "Format" +msgstr "Format" + +#: ckanext/sixodp/translations.py:103 +msgid "File format of the selected resource." +msgstr "Resursens filformat" + +#: ckanext/sixodp/translations.py:106 +msgid "" +"An universal, compact and easy to understand description of the added " +"resource." +msgstr "En kort och beskrivande beskrivning av resursen." + +#: ckanext/sixodp/translations.py:108 +msgid "Position coordinates" +msgstr "Koordinatsystem" + +#: ckanext/sixodp/translations.py:109 +msgid "" +"Coordinates which describe the area which the added resource is associated " +"with." +msgstr "" +"Koordinatsystem som använts i dataset. Gäller endast GIS dataset. T.ex. " +"ETRS-GK24." + +#: ckanext/sixodp/translations.py:111 +msgid "Time series start" +msgstr "Tidsserien börjar" + +#: ckanext/sixodp/translations.py:112 +msgid "A moment in time after which the data is relevant." +msgstr "Datum för början av tidsserien" + +#: ckanext/sixodp/translations.py:114 +msgid "Time series end" +msgstr "Tidsserien slutar" + +#: ckanext/sixodp/translations.py:115 +msgid "A moment in time after which the data is no longer relevant." +msgstr "Slutdatum för tidsserien" + +#: ckanext/sixodp/translations.py:117 +msgid "Time Series Precision" +msgstr "Tidsseriens korrekthet" + +#: ckanext/sixodp/translations.py:118 +msgid "eg. 2 weeks" +msgstr "t.ex. månad / år" + +#: ckanext/sixodp/translations.py:119 +msgid "A string which describes the precision of the entered time series." +msgstr "Uppdateringsintevall för en tidsserie" + +#: ckanext/sixodp/translations.py:122 +msgid "Creative Commons Attribution 4.0" +msgstr "Creative Commons Erkännande 4.0" + +#: ckanext/sixodp/translations.py:123 +msgid "https://creativecommons.org/licenses/by/4.0/" +msgstr "https://creativecommons.org/licenses/by/4.0/deed.sv" + +#: ckanext/sixodp/translations.py:125 +msgid "CC0 1.0" +msgstr "CC0 1.0" + +#: ckanext/sixodp/translations.py:126 +msgid "https://creativecommons.org/publicdomain/zero/1.0/" +msgstr "https://creativecommons.org/publicdomain/zero/1.0/deed.sv" + +#: ckanext/sixodp/translations.py:128 +msgid "Other (Open)" +msgstr "Annat (öppna)" + +#: ckanext/sixodp/translations.py:130 +msgid "Parent" +msgstr "" + +#: ckanext/sixodp/translations.py:131 +msgid "None - top level" +msgstr "" + +#: ckanext/sixodp/translations.py:132 +msgid "Icon URL" +msgstr "" + +#: ckanext/sixodp/translations.py:133 +msgid "My Group" +msgstr "" + +#: ckanext/sixodp/validators.py:95 +msgid "Missing value" +msgstr "Värde saknas" + +#: ckanext/sixodp/validators.py:190 +msgid "expecting list of strings" +msgstr "" + +#: ckanext/sixodp/validators.py:196 +#, python-format +msgid "invalid type for repeating text: %r" +msgstr "" + +#: ckanext/sixodp/validators.py:203 +#, python-format +msgid "invalid encoding for \"%s\" value" +msgstr "" + +#: ckanext/sixodp/validators.py:265 +msgid "Failed to decode JSON string" +msgstr "" + +#: ckanext/sixodp/validators.py:268 +msgid "Invalid encoding for JSON string" +msgstr "" + +#: ckanext/sixodp/validators.py:271 +msgid "expecting JSON object" +msgstr "" + +#: ckanext/sixodp/validators.py:277 ckanext/sixodp/validators.py:284 +#, python-format +msgid "Required language \"%s\" missing" +msgstr "" + +#: ckanext/sixodp/fanstatic/javascript/modules/activity-stream.js:20 +#: ckanext/sixodp/fanstatic/javascript/modules/activity-stream.min.js:1 +#: ckanext/sixodp/fanstatic/javascript/modules/popover-context.js:45 +#: ckanext/sixodp/fanstatic/javascript/modules/popover-context.min.js:1 +#: ckanext/sixodp/templates/package/snippets/data_api_button.html:8 +#: ckanext/sixodp/templates/package/snippets/resource_item.html:26 +msgid "Loading..." +msgstr "Laddar..." + +#: ckanext/sixodp/fanstatic/javascript/modules/api-info.js:20 +#: ckanext/sixodp/fanstatic/javascript/modules/api-info.min.js:1 +msgid "There is no API data to load for this resource" +msgstr "Det finns inga API-data att ladda för denna resurs" + +#: ckanext/sixodp/fanstatic/javascript/modules/api-info.js:21 +#: ckanext/sixodp/fanstatic/javascript/modules/api-info.min.js:1 +msgid "Failed to load data API information" +msgstr "Misslyckades med att ladda API-information" + +#: ckanext/sixodp/fanstatic/javascript/modules/autocomplete.js:31 +#: ckanext/sixodp/fanstatic/javascript/modules/autocomplete.min.js:1 +msgid "No matches found" +msgstr "Hittades inte" + +#: ckanext/sixodp/fanstatic/javascript/modules/autocomplete.js:32 +#: ckanext/sixodp/fanstatic/javascript/modules/autocomplete.min.js:1 +msgid "Start typing…" +msgstr "Börja skriv..." + +#: ckanext/sixodp/fanstatic/javascript/modules/autocomplete.js:34 +#: ckanext/sixodp/fanstatic/javascript/modules/autocomplete.min.js:1 +msgid "Input is too short, must be at least one character" +msgstr "För kort inmatning. Det måste vara åtminstone ett tecken" + +#: ckanext/sixodp/fanstatic/javascript/modules/basic-form.js:4 +#: ckanext/sixodp/fanstatic/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "Det finns ändringar i detta formulär som inte sparats" + +#: ckanext/sixodp/fanstatic/javascript/modules/confirm-action.js:7 +#: ckanext/sixodp/fanstatic/javascript/modules/confirm-action.min.js:1 +msgid "Please Confirm Action" +msgstr "Vänligen Bekräfta Åtgärd" + +#: ckanext/sixodp/fanstatic/javascript/modules/confirm-action.js:8 +#: ckanext/sixodp/fanstatic/javascript/modules/confirm-action.min.js:1 +msgid "Are you sure you want to perform this action?" +msgstr "Vill du verkligen genomföra denna åtgärd?" + +#: ckanext/sixodp/fanstatic/javascript/modules/confirm-action.js:9 +#: ckanext/sixodp/fanstatic/javascript/modules/confirm-action.min.js:1 +msgid "Confirm" +msgstr "Bekräfta" + +#: ckanext/sixodp/fanstatic/javascript/modules/confirm-action.js:10 +#: ckanext/sixodp/fanstatic/javascript/modules/confirm-action.min.js:1 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-reorder.js:11 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-reorder.min.js:1 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-view-reorder.js:11 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-view-reorder.min.js:1 +#: ckanext/sixodp/templates/package/confirm_delete.html:15 +msgid "Cancel" +msgstr "Avbryt" + +#: ckanext/sixodp/fanstatic/javascript/modules/follow.js:23 +#: ckanext/sixodp/fanstatic/javascript/modules/follow.min.js:1 +msgid "Follow" +msgstr "Följ" + +#: ckanext/sixodp/fanstatic/javascript/modules/follow.js:24 +#: ckanext/sixodp/fanstatic/javascript/modules/follow.min.js:1 +msgid "Unfollow" +msgstr "Sluta följa" + +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.js:16 +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.min.js:1 +msgid "Upload" +msgstr "Ladda upp" + +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.js:17 +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.min.js:1 +msgid "Link" +msgstr "Länk" + +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.js:18 +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.min.js:1 +#: ckanext/sixodp/templates/group/snippets/group_item.html:41 +#: ckanext/sixodp/templates/scheming/macros/form.html:10 +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:71 +msgid "Remove" +msgstr "Ta bort" + +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.js:19 +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.min.js:1 +msgid "Image" +msgstr "Bild" + +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.js:21 +msgid "File" +msgstr "Fil" + +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.js:22 +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.min.js:1 +msgid "Upload a file on your computer" +msgstr "Ladda upp en fil från din dator" + +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.js:23 +#: ckanext/sixodp/fanstatic/javascript/modules/image-upload.min.js:1 +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)" + +#: ckanext/sixodp/fanstatic/javascript/modules/related-item.js:25 +#: ckanext/sixodp/fanstatic/javascript/modules/related-item.min.js:1 +msgid "show more" +msgstr "visa mer" + +#: ckanext/sixodp/fanstatic/javascript/modules/related-item.js:26 +#: ckanext/sixodp/fanstatic/javascript/modules/related-item.min.js:1 +msgid "show less" +msgstr "visa mindre" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-reorder.js:8 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "Ändra ordning på resurser" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-reorder.js:9 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-reorder.min.js:1 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-view-reorder.js:9 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "Spara ordning" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-reorder.js:10 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-reorder.min.js:1 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-view-reorder.js:10 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "Sparar..." + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.js:25 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Ladda upp en fil" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.js:26 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "Ett fel uppstod" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.js:27 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.min.js:1 +msgid "Resource uploaded" +msgstr "Resursen laddades upp" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.js:28 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.min.js:1 +msgid "Unable to upload file" +msgstr "Kunde inte ladda upp filen" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.js:29 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.min.js:1 +msgid "Unable to authenticate upload" +msgstr "Kunde inte verifiera behörighet för uppladdningen" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.js:30 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.min.js:1 +msgid "Unable to get data for uploaded file" +msgstr "Kunde inte läsa data i den uppladdade filen" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.js:31 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-upload-field.min.js:1 +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?" + +#: ckanext/sixodp/fanstatic/javascript/modules/resource-view-reorder.js:8 +#: ckanext/sixodp/fanstatic/javascript/modules/resource-view-reorder.min.js:1 +msgid "Reorder resource view" +msgstr "Sortera om resursvyn" + +#: ckanext/sixodp/fanstatic/javascript/modules/slug-preview.js:36 +#: ckanext/sixodp/fanstatic/javascript/modules/slug-preview.min.js:1 +#: ckanext/sixodp/templates/ckanext_pages/blog.html:12 +#: ckanext/sixodp/templates/organization/bulk_process.html:69 +#: ckanext/sixodp/templates/showcase/edit_base.html:14 +msgid "Edit" +msgstr "Redigera" + +#: ckanext/sixodp/fanstatic/javascript/modules/table-toggle-more.js:9 +#: ckanext/sixodp/fanstatic/javascript/modules/table-toggle-more.min.js:1 +#: ckanext/sixodp/templates/package/resource_read.html:131 +#: ckanext/sixodp/templates/scheming/package/read.html:18 +#: ckanext/sixodp/templates/snippets/facet_list.html:36 +msgid "Show more" +msgstr "Visa mer" + +#: ckanext/sixodp/fanstatic/javascript/modules/table-toggle-more.js:10 +#: ckanext/sixodp/fanstatic/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "Dölj" + +#: ckanext/sixodp/templates/footer.html:9 +msgid "Data portal" +msgstr "Dataportalen " + +#: ckanext/sixodp/templates/footer.html:12 +msgid "Content management" +msgstr "" + +#: ckanext/sixodp/templates/footer.html:16 +msgid "Management" +msgstr "" + +#: ckanext/sixodp/templates/footer.html:33 +msgid "Follow us" +msgstr "" + +#: ckanext/sixodp/templates/sixodp_header.html:26 +msgid "Skip to content" +msgstr "Direkt till innehållet" + +#: ckanext/sixodp/templates/admin/config.html:7 +msgid "Service message" +msgstr "" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "CKAN Data API" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "" +"Få tillgång till resursens data via ett webb-API med kraftfullt frågestöd." + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:36 +msgid "Endpoints" +msgstr "Adresser" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:41 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "Data-API:et kan anropas via följande åtgärder från CKAN:s \"action API\"." + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:46 +msgid "Query" +msgstr "Fråga" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:50 +msgid "Query (via SQL)" +msgstr "Fråga (via SQL)" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:62 +msgid "Querying" +msgstr "Frågar" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:67 +msgid "Query example (first 5 results)" +msgstr "Exempelfråga (första 5 svaren)" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:72 +msgid "Query example (results containing 'my_resource_query')" +msgstr "Exempelfråga (svar som innehåller 'my_resource_query')" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:77 +msgid "Query example (via SQL statement)" +msgstr "Exempelfråga (via SQL-sats)" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:89 +msgid "Example: Javascript" +msgstr "Exempel: Javascript" + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:94 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "Ett enkelt anrop via ajax (JSONP) till data-API:et via jQuery." + +#: ckanext/sixodp/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "Exempel: Python" + +#: ckanext/sixodp/templates/ckanext_pages/blog.html:4 +#: ckanext/sixodp/templates/ckanext_pages/blog_list.html:11 +msgid "Articles" +msgstr "" + +#: ckanext/sixodp/templates/ckanext_pages/blog.html:28 +#: ckanext/sixodp/templates/ckanext_pages/snippets/pages_list.html:51 +#: ckanext/sixodp/templates/ckanext_pages/snippets/pages_list.html:71 +msgid "This page currently has no content" +msgstr "" + +#: ckanext/sixodp/templates/ckanext_pages/blog_list.html:5 +msgid "Add Article" +msgstr "Lägg till artikeln" + +#: ckanext/sixodp/templates/ckanext_pages/blog_list.html:15 +msgid "Blog" +msgstr "" + +#: ckanext/sixodp/templates/ckanext_pages/pages_edit.html:5 +msgid "Add page" +msgstr "Lägg till sida" + +#: ckanext/sixodp/templates/ckanext_pages/snippets/pages_list.html:80 +msgid "There are currently no blog articles here" +msgstr "" + +#: ckanext/sixodp/templates/ckanext_pages/snippets/pages_list.html:82 +msgid "There are currently no pages here" +msgstr "" + +#: ckanext/sixodp/templates/collection/index.html:7 +msgid "Search collections..." +msgstr "Sök datainsamlingar..." + +#: ckanext/sixodp/templates/group/index.html:7 +#: ckanext/sixodp/templates/group/index.html:15 +msgid "Search groups..." +msgstr "Sök grupper..." + +#: ckanext/sixodp/templates/group/index.html:15 +#: ckanext/sixodp/templates/group/read.html:15 +#: ckanext/sixodp/templates/organization/bulk_process.html:21 +#: ckanext/sixodp/templates/organization/read.html:15 +#: ckanext/sixodp/templates/package/search.html:42 +#: ckanext/sixodp/templates/showcase/manage_datasets.html:25 +#: ckanext/sixodp/templates/showcase/search.html:13 +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:30 +msgid "Name Ascending" +msgstr "Namn, stigande" + +#: ckanext/sixodp/templates/group/index.html:15 +#: ckanext/sixodp/templates/group/read.html:16 +#: ckanext/sixodp/templates/organization/bulk_process.html:22 +#: ckanext/sixodp/templates/organization/read.html:16 +#: ckanext/sixodp/templates/package/search.html:43 +#: ckanext/sixodp/templates/showcase/manage_datasets.html:26 +#: ckanext/sixodp/templates/showcase/search.html:14 +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:30 +msgid "Name Descending" +msgstr "Namn, fallande" + +#: ckanext/sixodp/templates/group/read.html:12 +#: ckanext/sixodp/templates/organization/read.html:12 +msgid "Last Created" +msgstr "Senast uppdaterad" + +#: ckanext/sixodp/templates/group/read.html:13 +#: ckanext/sixodp/templates/organization/read.html:13 +#: ckanext/sixodp/templates/package/search.html:40 +#: ckanext/sixodp/templates/showcase/manage_datasets.html:28 +#: ckanext/sixodp/templates/showcase/search.html:16 +#: ckanext/sixodp/templates/snippets/package_item.html:81 +msgid "Popular" +msgstr "Populära" + +#: ckanext/sixodp/templates/group/read.html:14 +#: ckanext/sixodp/templates/organization/read.html:14 +#: ckanext/sixodp/templates/package/search.html:41 +#: ckanext/sixodp/templates/showcase/manage_datasets.html:24 +#: ckanext/sixodp/templates/showcase/search.html:12 +msgid "Relevance" +msgstr "Relevans" + +#: ckanext/sixodp/templates/group/read.html:17 +#: ckanext/sixodp/templates/organization/bulk_process.html:23 +#: ckanext/sixodp/templates/organization/read.html:17 +#: ckanext/sixodp/templates/package/search.html:44 +#: ckanext/sixodp/templates/package/snippets/resource_form.html:51 +#: ckanext/sixodp/templates/showcase/manage_datasets.html:27 +#: ckanext/sixodp/templates/showcase/search.html:15 +msgid "Last Modified" +msgstr "Senast ändrad" + +#: ckanext/sixodp/templates/group/read.html:19 +#: ckanext/sixodp/templates/organization/read.html:19 +#: ckanext/sixodp/templates/package/search.html:11 +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:3 +msgid "Search datasets..." +msgstr "Sök dataset..." + +#: ckanext/sixodp/templates/group/read.html:25 +#: ckanext/sixodp/templates/organization/read.html:30 +#: ckanext/sixodp/templates/package/search.html:88 +msgid "Filter results" +msgstr "" + +#: ckanext/sixodp/templates/group/read_base.html:4 +#: ckanext/sixodp/templates/group/snippets/info.html:12 +#: ckanext/sixodp/templates/organization/bulk_process.html:14 +msgid "Datasets" +msgstr "Dataset" + +#: ckanext/sixodp/templates/group/read_base.html:5 +#: ckanext/sixodp/templates/package/activity.html:3 +#: ckanext/sixodp/templates/package/read_base.html:39 +msgid "Activity Stream" +msgstr "Aktivitetsflöde" + +#: ckanext/sixodp/templates/group/snippets/group_item.html:29 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} dataset" +msgstr[1] "{num} datasets" + +#: ckanext/sixodp/templates/group/snippets/group_item.html:31 +msgid "0 Datasets" +msgstr "0 dataset" + +#: ckanext/sixodp/templates/group/snippets/group_item.html:36 +#: ckanext/sixodp/templates/group/snippets/group_item.html:37 +msgid "View {name}" +msgstr "Visa {name}" + +#: ckanext/sixodp/templates/group/snippets/group_item.html:41 +msgid "Remove dataset from this group" +msgstr "Ta bort dataset från denna grupp" + +#: ckanext/sixodp/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "" + +#: ckanext/sixodp/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 "" + +#: ckanext/sixodp/templates/home/snippets/sixodp_language-changer.html:6 +msgid "In Finnish" +msgstr "På finska" + +#: ckanext/sixodp/templates/home/snippets/sixodp_language-changer.html:12 +msgid "In English" +msgstr "På engelska" + +#: ckanext/sixodp/templates/home/snippets/sixodp_language-changer.html:18 +msgid "In Swedish" +msgstr "På svenska" + +#: ckanext/sixodp/templates/home/snippets/sixodp_navbar_search.html:4 +#: ckanext/sixodp/templates/home/snippets/sixodp_navbar_search.html:11 +#: ckanext/sixodp/templates/snippets/search_form.html:5 +#: ckanext/sixodp/templates/snippets/search_input.html:18 +msgid "Search" +msgstr "Sök" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:12 +msgid "Sysadmin settings" +msgstr "Inställningar för sysadmin" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:14 +msgid "Admin" +msgstr "Admin" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:18 +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:20 +msgid "Dataset Editor" +msgstr "" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:26 +msgid "View profile" +msgstr "Visa profil" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:35 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "Panel (%(num)d ny objekt)" +msgstr[1] "Panel (%(num)d nya objekten)" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:38 +msgid "Dashboard" +msgstr "Panel" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:56 +#: ckanext/sixodp/templates/user/dashboard.html:8 +msgid "Edit settings" +msgstr "Redigera inställningar" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:58 +msgid "Settings" +msgstr "Inställningar" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:65 +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:67 +msgid "Log out" +msgstr "Logga ut" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:76 +msgid "Log in" +msgstr "Logga in" + +#: ckanext/sixodp/templates/home/snippets/sixodp_profile.html:78 +msgid "Register" +msgstr "Registrera" + +#: ckanext/sixodp/templates/organization/bulk_process.html:5 +msgid "Edit datasets" +msgstr "" + +#: ckanext/sixodp/templates/organization/bulk_process.html:10 +msgid " found for \"{query}\"" +msgstr "resultat för \"{query}\"" + +#: ckanext/sixodp/templates/organization/bulk_process.html:12 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Tyvärr hittades inga dataset som matchar \"{query}\"" + +#: ckanext/sixodp/templates/organization/bulk_process.html:41 +msgid "Make public" +msgstr "Gör publik" + +#: ckanext/sixodp/templates/organization/bulk_process.html:45 +msgid "Make private" +msgstr "Gör privat" + +#: ckanext/sixodp/templates/organization/bulk_process.html:51 +#: ckanext/sixodp/templates/package/snippets/resource_form.html:65 +msgid "Delete" +msgstr "Radera" + +#: ckanext/sixodp/templates/organization/bulk_process.html:74 +#: ckanext/sixodp/templates/package/read_base.html:15 +#: ckanext/sixodp/templates/showcase/read.html:20 +#: ckanext/sixodp/templates/snippets/package_item.html:69 +msgid "Draft" +msgstr "Utkast" + +#: ckanext/sixodp/templates/organization/bulk_process.html:76 +#: ckanext/sixodp/templates/package/read_base.html:20 +#: ckanext/sixodp/templates/scheming/form_snippets/state.html:7 +#: ckanext/sixodp/templates/snippets/package_item.html:71 +msgid "Deleted" +msgstr "Raderad" + +#: ckanext/sixodp/templates/organization/bulk_process.html:79 +#: ckanext/sixodp/templates/package/read.html:11 +#: ckanext/sixodp/templates/scheming/form_snippets/private.html:5 +#: ckanext/sixodp/templates/showcase/read.html:13 +#: ckanext/sixodp/templates/snippets/package_item.html:62 +msgid "Private" +msgstr "Privat" + +#: ckanext/sixodp/templates/organization/bulk_process.html:92 +msgid "This organization has no datasets associated to it" +msgstr "Denna organisation har inga dataset kopplade till sig" + +#: ckanext/sixodp/templates/organization/index.html:7 +#: ckanext/sixodp/templates/organization/index.html:15 +msgid "Search organizations..." +msgstr "Sök organisationer..." + +#: ckanext/sixodp/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "" + +#: ckanext/sixodp/templates/package/confirm_delete.html:16 +msgid "Confirm Delete" +msgstr "" + +#: ckanext/sixodp/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Koppla denna grupp till detta dataset" + +#: ckanext/sixodp/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Lägg till gruppen" + +#: ckanext/sixodp/templates/package/group_list.html:24 +msgid "There are no groups associated with this dataset" +msgstr "Det finns inga grupper kopplade till detta dataset" + +#: ckanext/sixodp/templates/package/new_view.html:3 +#: ckanext/sixodp/templates/package/new_view.html:4 +#: ckanext/sixodp/templates/package/new_view.html:8 +#: ckanext/sixodp/templates/package/new_view.html:12 +msgid "Add view" +msgstr "Lägg till vy" + +#: ckanext/sixodp/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 "" + +#: ckanext/sixodp/templates/package/new_view.html:28 +#: ckanext/sixodp/templates/package/snippets/resource_view.html:48 +msgid "Preview" +msgstr "Förhandsvisa" + +#: ckanext/sixodp/templates/package/new_view.html:29 +#: ckanext/sixodp/templates/package/snippets/resource_form.html:81 +#: ckanext/sixodp/templates/scheming/macros/form.html:9 +msgid "Add" +msgstr "Lägg till" + +#: ckanext/sixodp/templates/package/read.html:43 +#: ckanext/sixodp/templates/package/read_base.html:75 +#: ckanext/sixodp/templates/package/resource_read.html:186 +msgid "Subscribe for dataset updates" +msgstr "" + +#: ckanext/sixodp/templates/package/read_base.html:37 +msgid "Dataset" +msgstr "Dataset" + +#: ckanext/sixodp/templates/package/read_base.html:38 +#: ckanext/sixodp/templates/showcase/edit_base.html:5 +#: ckanext/sixodp/templates/showcase/edit_base.html:12 +#: ckanext/sixodp/templates/showcase/edit_base.html:16 +msgid "Showcases" +msgstr "Applikationer" + +#: ckanext/sixodp/templates/package/resource_read.html:18 +#: ckanext/sixodp/templates/showcase/read.html:6 +msgid "Manage" +msgstr "Hantera" + +#: ckanext/sixodp/templates/package/resource_read.html:41 +msgid "View" +msgstr "Visa" + +#: ckanext/sixodp/templates/package/resource_read.html:43 +msgid "API Endpoint" +msgstr "API-adress" + +#: ckanext/sixodp/templates/package/resource_read.html:45 +#: ckanext/sixodp/templates/package/snippets/resource_item.html:36 +#: ckanext/sixodp/templates/report/view.html:47 +msgid "Download" +msgstr "Hämta" + +#: ckanext/sixodp/templates/package/resource_read.html:89 +msgid "There are no views created for this resource yet." +msgstr "Inga vyer har skapats för resursen." + +#: ckanext/sixodp/templates/package/resource_read.html:92 +msgid "Not seeing the views you were expecting?" +msgstr "Hittar du inte vyerna du förväntade dig?" + +#: ckanext/sixodp/templates/package/resource_read.html:94 +#: ckanext/sixodp/templates/package/snippets/resource_view.html:18 +msgid "Click here for more information." +msgstr "Klicka här för att läsa mer..." + +#: ckanext/sixodp/templates/package/resource_read.html:98 +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:" + +#: ckanext/sixodp/templates/package/resource_read.html:100 +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." + +#: ckanext/sixodp/templates/package/resource_read.html:101 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "Administratörerna har inte aktiverat rätt plugin för vyerna" + +#: ckanext/sixodp/templates/package/resource_read.html:102 +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" + +#: ckanext/sixodp/templates/package/resource_read.html:123 +msgid "From the dataset abstract" +msgstr "Från sammanfattningen av detta dataset" + +#: ckanext/sixodp/templates/package/resource_read.html:125 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Källa: %(dataset)s" + +#: ckanext/sixodp/templates/package/resource_read.html:132 +#: ckanext/sixodp/templates/scheming/package/read.html:19 +#: ckanext/sixodp/templates/snippets/facet_list.html:39 +msgid "Show less" +msgstr "Visa mindre" + +#: ckanext/sixodp/templates/package/resource_read.html:155 +msgid "Back to dataset" +msgstr "" + +#: ckanext/sixodp/templates/package/search.html:25 +msgid "Add Dataset" +msgstr "Lägg till dataset" + +#: ckanext/sixodp/templates/package/search.html:38 +msgid "Newest first" +msgstr "Nyaste först" + +#: ckanext/sixodp/templates/package/search.html:39 +msgid "Oldest first" +msgstr "Äldsta först" + +#: ckanext/sixodp/templates/package/search.html:67 +msgid "API" +msgstr "API" + +#: ckanext/sixodp/templates/package/search.html:68 +msgid "API Docs" +msgstr "API-dokumentation" + +#: ckanext/sixodp/templates/package/search.html:70 +msgid "full {format} dump" +msgstr "fullständig dump i {format}-format" + +#: ckanext/sixodp/templates/package/search.html:71 +#, 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 "" + +#: ckanext/sixodp/templates/package/search.html:75 +#, python-format +msgid "" +"You can also access this registry using the %(api_link)s (see " +"%(api_doc_link)s)." +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:2 +msgid "Additional Info" +msgstr "Mer information" + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:7 +#: ckanext/sixodp/templates/scheming/package/resource_read.html:9 +msgid "Metadata API" +msgstr "Metadata API" + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:29 +#: ckanext/sixodp/templates/package/snippets/additional_info.html:34 +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:63 +msgid "Author" +msgstr "Författare" + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:53 +msgid "Version" +msgstr "Version" + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:60 +#: ckanext/sixodp/templates/scheming/form_snippets/state.html:3 +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:171 +msgid "State" +msgstr "Status" + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:66 +msgid "Last Updated" +msgstr "Senast uppdaterad" + +#: ckanext/sixodp/templates/package/snippets/additional_info.html:72 +msgid "Created" +msgstr "Skapad" + +#: ckanext/sixodp/templates/package/snippets/data_api_button.html:10 +#: ckanext/sixodp/templates/package/snippets/resource_item.html:28 +msgid "Data API" +msgstr "Data API" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:24 +msgid "Data" +msgstr "Data" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "http://example.com/external-data.csv" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "t.ex. Guldpriser januari 2011" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "Beskrivande information om datasetet" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "t.ex. CSV, XML or JSON" + +#: ckanext/sixodp/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" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "t.ex. 2012-06-05" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "Filstorlek" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "t.ex. 1024" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:55 +#: ckanext/sixodp/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "MIME-typ" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:55 +#: ckanext/sixodp/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "t.ex. application/json" + +#: ckanext/sixodp/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?" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "Föregående" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "Spara och lägg till nästa" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "Slutför" + +#: ckanext/sixodp/templates/package/snippets/resource_form.html:88 +msgid "Estimated upload times with the selected resource file" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:16 +msgid "This resource view is not available at the moment." +msgstr "Resursvyn är inte tillgänglig just nu." + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:25 +msgid "Download resource" +msgstr "Ladda ner resurs" + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:49 +msgid "Your browser does not support iframes." +msgstr "Din webbläsare stödjer inte iframes." + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:60 +msgid "Fullscreen" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:68 +msgid "Embed" +msgstr "Bädda in" + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:80 +msgid "Embed resource view" +msgstr "Infoga resursvy" + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:83 +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" + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:86 +msgid "Width" +msgstr "Bredd" + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:89 +msgid "Height" +msgstr "Höjd" + +#: ckanext/sixodp/templates/package/snippets/resource_view.html:92 +msgid "Code" +msgstr "Kod" + +#: ckanext/sixodp/templates/package/snippets/resources.html:4 +msgid "Resources" +msgstr "Data och resurser" + +#: ckanext/sixodp/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "" + +#: ckanext/sixodp/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?

" + +#: ckanext/sixodp/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +msgstr "" + +#: ckanext/sixodp/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "t.ex. Min vy" + +#: ckanext/sixodp/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "Lite information om visan" + +#: ckanext/sixodp/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "Vad är en vy?" + +#: ckanext/sixodp/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" + +#: ckanext/sixodp/templates/report/index.html:5 +#: ckanext/sixodp/templates/report/view.html:3 +#: ckanext/sixodp/templates/report/view.html:6 +msgid "Reports" +msgstr "" + +#: ckanext/sixodp/templates/report/index.html:24 +msgid "View Report" +msgstr "Visa resurser" + +#: ckanext/sixodp/templates/report/view.html:16 +msgid "Generated" +msgstr "" + +#: ckanext/sixodp/templates/report/view.html:20 +msgid "Refresh report" +msgstr "" + +#: ckanext/sixodp/templates/report/view.html:23 +msgid "Refresh" +msgstr "" + +#: ckanext/sixodp/templates/report/view.html:25 +msgid "" +"As a system administrator you are able to refresh this report on demand by " +"clicking the 'Refresh' button." +msgstr "" + +#: ckanext/sixodp/templates/report/view.html:31 +msgid "Options" +msgstr "" + +#: ckanext/sixodp/templates/report/view.html:52 +msgid "Results" +msgstr "Resultat" + +#: ckanext/sixodp/templates/report/view.html:54 +msgid "No results found." +msgstr "Inga resultat hittades" + +#: ckanext/sixodp/templates/scheming/form_snippets/organization_ex.html:26 +msgid "No organization" +msgstr "Ingen organisation" + +#: ckanext/sixodp/templates/scheming/form_snippets/private.html:5 +msgid "Public" +msgstr "Offentlig" + +#: ckanext/sixodp/templates/scheming/form_snippets/state.html:6 +msgid "Active" +msgstr "Aktiv" + +#: ckanext/sixodp/templates/scheming/form_snippets/ytp_multiple_checkbox.html:18 +#, python-format +msgid "" +"Categories can be edited from here." +msgstr "" + +#: ckanext/sixodp/templates/scheming/macros/form.html:37 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" + +#: ckanext/sixodp/templates/scheming/package/resource_read.html:5 +msgid "Additional Information" +msgstr "Mer information" + +#: ckanext/sixodp/templates/scheming/package/resource_read.html:16 +msgid "Field" +msgstr "Fält" + +#: ckanext/sixodp/templates/scheming/package/resource_read.html:17 +msgid "Value" +msgstr "Värde" + +#: ckanext/sixodp/templates/scheming/package/resource_read.html:28 +msgid "unknown" +msgstr "okänd" + +#: ckanext/sixodp/templates/scheming/package/resource_read.html:38 +msgid "GB" +msgstr "GB" + +#: ckanext/sixodp/templates/scheming/package/resource_read.html:40 +msgid "MB" +msgstr "MB" + +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:183 +msgid "How to reference" +msgstr "" + +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:190 +msgid "" +"The maintainer of the dataset is {maintainer} and the original author is " +"{author}" +msgstr "" + +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:193 +msgid "The maintainer of the dataset is {maintainer}" +msgstr "" + +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:196 +msgid "The dataset has been downloaded from" +msgstr "" + +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:196 +msgid "service on {date}" +msgstr "" + +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:199 +msgid "using the license" +msgstr "under the license" + +#: ckanext/sixodp/templates/scheming/package/snippets/additional_info.html:201 +msgid "The license can be found on the maintainer's service" +msgstr "" + +#: ckanext/sixodp/templates/showcase/edit_base.html:17 +msgid "Create Showcase" +msgstr "Skapa applikationer" + +#: ckanext/sixodp/templates/showcase/edit_base.html:30 +msgid "View showcase" +msgstr "Visa applikationer" + +#: ckanext/sixodp/templates/showcase/edit_base.html:36 +msgid "Edit showcase" +msgstr "Redigera applikationer" + +#: ckanext/sixodp/templates/showcase/edit_base.html:37 +msgid "Manage datasets" +msgstr "" + +#: ckanext/sixodp/templates/showcase/manage_datasets.html:3 +msgid "Showcases - Manage datasets" +msgstr "" + +#: ckanext/sixodp/templates/showcase/manage_datasets.html:36 +msgid "Datasets available to add to this showcase" +msgstr "" + +#: ckanext/sixodp/templates/showcase/manage_datasets.html:51 +msgid "Add to Showcase" +msgstr "Lägg till applikationer" + +#: ckanext/sixodp/templates/showcase/manage_datasets.html:88 +msgid "No datasets could be found" +msgstr "Inga dataset hittades" + +#: ckanext/sixodp/templates/showcase/manage_datasets.html:96 +msgid "Datasets in this showcase" +msgstr "" + +#: ckanext/sixodp/templates/showcase/manage_datasets.html:109 +msgid "Remove from Showcase" +msgstr "" + +#: ckanext/sixodp/templates/showcase/manage_datasets.html:140 +msgid "This showcase has no datasets associated to it" +msgstr "Denna applikationer har inga dataset kopplade till sig" + +#: ckanext/sixodp/templates/showcase/read.html:38 +msgid "Launch website" +msgstr "" + +#: ckanext/sixodp/templates/showcase/search.html:19 +msgid "Search showcases..." +msgstr "Sök applikationer..." + +#: ckanext/sixodp/templates/snippets/facet_list.html:43 +msgid "There are no {facet_type} that match this search" +msgstr "Det finns ingen {facet_type} som matchar sökningen" + +#: ckanext/sixodp/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Framsida" + +#: ckanext/sixodp/templates/snippets/horizontal_accordion.html:30 +msgid "Close preview" +msgstr "Göm" + +#: ckanext/sixodp/templates/snippets/horizontal_accordion.html:31 +msgid "Show preview" +msgstr "Visa" + +#: ckanext/sixodp/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "Licens ej angiven" + +#: ckanext/sixodp/templates/snippets/license.html:33 +msgid "This dataset satisfies the Open Definition." +msgstr "Detta dataset uppfyller kraven i Open Definition." + +#: ckanext/sixodp/templates/snippets/package_item.html:88 +msgid "This dataset has no description" +msgstr "Detta dataset saknar beskrivning" + +#: ckanext/sixodp/templates/snippets/page_highlight_item.html:8 +msgid "View {showcase_title}" +msgstr "" + +#: ckanext/sixodp/templates/snippets/search_form.html:9 +msgid "Submit" +msgstr "Skicka" + +#: ckanext/sixodp/templates/snippets/search_form.html:19 +msgid "Sort" +msgstr "" + +#: ckanext/sixodp/templates/snippets/search_form.html:30 +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:43 +msgid "Go" +msgstr "Kör" + +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:36 +msgid "Sort results" +msgstr "" + +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:82 +msgid "

Please try another search or change search facets.

" +msgstr "" + +#: ckanext/sixodp/templates/snippets/search_form_without_input.html:88 +msgid "" +"

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

" +msgstr "" + +#: ckanext/sixodp/templates/snippets/sixodp_offcanvas-filter-button.html:2 +msgid "Filters" +msgstr "Filter" + +#: ckanext/sixodp/templates/snippets/sixodp_offcanvas-info-button.html:2 +msgid "About" +msgstr "Om" + +#: ckanext/sixodp/templates/user/dashboard.html:11 +#: ckanext/sixodp/templates/user/dashboard.html:29 +msgid "News feed" +msgstr "Nyhetsfeed" + +#: ckanext/sixodp/templates/user/dashboard.html:12 +msgid "My Datasets" +msgstr "Mina datasets" + +#: ckanext/sixodp/templates/user/dashboard.html:13 +msgid "My Organizations" +msgstr "Mina organisationer" + +#: ckanext/sixodp/templates/user/dashboard.html:14 +msgid "My Groups" +msgstr "Mina grupper" + +#: ckanext/sixodp/templates/user/dashboard.html:31 +msgid "Activity from items that I'm following" +msgstr "Aktivitet från poster som jag följer" + +#: ckanext/sixodp/templates/user/login.html:6 +msgid "Login" +msgstr "Logga in" + +#: ckanext/sixodp/templates/user/snippets/followee_dropdown.html:14 +#: ckanext/sixodp/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "Aktivitet från:" + +#: ckanext/sixodp/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Sök lista..." + +#: ckanext/sixodp/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "Du följer ingenting." diff --git a/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/sv/LC_MESSAGES/ckanext-sixodp_ui.mo b/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/sv/LC_MESSAGES/ckanext-sixodp_ui.mo deleted file mode 100644 index 05e329335..000000000 Binary files a/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/sv/LC_MESSAGES/ckanext-sixodp_ui.mo and /dev/null differ diff --git a/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/sv/LC_MESSAGES/ckanext-sixodp_ui.po b/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/sv/LC_MESSAGES/ckanext-sixodp_ui.po deleted file mode 100644 index efc26c0a1..000000000 --- a/ckanext/ckanext-sixodp/ckanext/sixodp/i18n/sv/LC_MESSAGES/ckanext-sixodp_ui.po +++ /dev/null @@ -1,1267 +0,0 @@ -# Translations template for ckanext-sixodp_ui. -# Copyright (C) 2020 ORGANIZATION -# This file is distributed under the same license as the ckanext-sixodp_ui -# project. -# FIRST AUTHOR , 2020. -# -# Translators: -# Mikko Nieminen , 2017 -# Joonas Dukpa, 2019 -# Zharktas , 2019 -# Hami Kekkonen , 2020 -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: ckanext-sixodp_ui 0.0.1\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2020-09-11 11:35+0000\n" -"PO-Revision-Date: 2017-01-23 14:12+0000\n" -"Last-Translator: Hami Kekkonen , 2020\n" -"Language-Team: Swedish (https://www.transifex.com/6aika-dataportal/teams/68018/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" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ckanext/sixodp_ui/helpers.py:176 -msgid "Dataset not found" -msgstr "Dataset hittades inte" - -#: ckanext/sixodp_ui/helpers.py:287 -msgid "Show submenu for " -msgstr "" - -#: ckanext/sixodp_ui/plugin.py:218 ckanext/sixodp_ui/plugin.py:229 -#: ckanext/sixodp_ui/plugin.py:239 -msgid "Formats" -msgstr "Format" - -#: ckanext/sixodp_ui/plugin.py:219 ckanext/sixodp_ui/plugin.py:230 -#: ckanext/sixodp_ui/plugin.py:240 -msgid "Geographical Coverage" -msgstr "Områden" - -#: ckanext/sixodp_ui/plugin.py:220 ckanext/sixodp_ui/plugin.py:231 -#: ckanext/sixodp_ui/plugin.py:241 -#: ckanext/sixodp_ui/templates/package/group_list.html:5 -#: ckanext/sixodp_ui/templates/package/read_base.html:41 -msgid "Groups" -msgstr "Grupper" - -#: ckanext/sixodp_ui/plugin.py:221 ckanext/sixodp_ui/plugin.py:232 -#: ckanext/sixodp_ui/plugin.py:242 -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:44 -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:46 -msgid "Organizations" -msgstr "Organisationer" - -#: ckanext/sixodp_ui/plugin.py:222 ckanext/sixodp_ui/plugin.py:233 -#: ckanext/sixodp_ui/plugin.py:243 -#: ckanext/sixodp_ui/templates/package/read_base.html:42 -msgid "Collections" -msgstr "Datainsamlingar" - -#: ckanext/sixodp_ui/translations.py:8 -msgid "Broken links" -msgstr "" - -#: ckanext/sixodp_ui/translations.py:9 -msgid "" -"Dataset resource URLs that are found to result in errors when resolved." -msgstr "" - -#: ckanext/sixodp_ui/translations.py:10 -msgid "Openness (Five Stars)" -msgstr "" - -#: ckanext/sixodp_ui/translations.py:11 -msgid "" -"Datasets graded on Tim Berners Lees' Five Stars of Openness - openly " -"licensed, openly accessible, structured, open format, URIs for entities, " -"linked." -msgstr "" - -#: ckanext/sixodp_ui/translations.py:13 -msgid "Most popular datasets" -msgstr "" - -#: ckanext/sixodp_ui/translations.py:14 -msgid "Google analytics showing top datasets with most views" -msgstr "" - -#: ckanext/sixodp_ui/translations.py:15 -msgid "Most popular resources" -msgstr "" - -#: ckanext/sixodp_ui/translations.py:16 -msgid "Google analytics showing most downloaded resources" -msgstr "" - -#: ckanext/sixodp_ui/translations.py:17 -msgid "Publisher activity" -msgstr "" - -#: ckanext/sixodp_ui/translations.py:18 -msgid "A quarterly list of datasets created and edited by a publisher." -msgstr "" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/activity-stream.js:20 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/activity-stream.min.js:1 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/popover-context.js:45 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/popover-context.min.js:1 -#: ckanext/sixodp_ui/templates/package/snippets/data_api_button.html:8 -#: ckanext/sixodp_ui/templates/package/snippets/resource_item.html:26 -msgid "Loading..." -msgstr "Laddar..." - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/api-info.js:20 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/api-info.min.js:1 -msgid "There is no API data to load for this resource" -msgstr "Det finns inga API-data att ladda för denna resurs" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/api-info.js:21 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/api-info.min.js:1 -msgid "Failed to load data API information" -msgstr "Misslyckades med att ladda API-information" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/autocomplete.js:31 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/autocomplete.min.js:1 -msgid "No matches found" -msgstr "Hittades inte" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/autocomplete.js:32 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/autocomplete.min.js:1 -msgid "Start typing…" -msgstr "Börja skriv..." - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/autocomplete.js:34 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/autocomplete.min.js:1 -msgid "Input is too short, must be at least one character" -msgstr "För kort inmatning. Det måste vara åtminstone ett tecken" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/basic-form.js:4 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/basic-form.min.js:1 -msgid "There are unsaved modifications to this form" -msgstr "Det finns ändringar i detta formulär som inte sparats" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/confirm-action.js:7 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/confirm-action.min.js:1 -msgid "Please Confirm Action" -msgstr "Vänligen Bekräfta Åtgärd" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/confirm-action.js:8 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/confirm-action.min.js:1 -msgid "Are you sure you want to perform this action?" -msgstr "Vill du verkligen genomföra denna åtgärd?" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/confirm-action.js:9 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/confirm-action.min.js:1 -msgid "Confirm" -msgstr "Bekräfta" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/confirm-action.js:10 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/confirm-action.min.js:1 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-reorder.js:11 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-reorder.min.js:1 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-view-reorder.js:11 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-view-reorder.min.js:1 -#: ckanext/sixodp_ui/templates/package/confirm_delete.html:15 -msgid "Cancel" -msgstr "Avbryt" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/follow.js:23 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/follow.min.js:1 -msgid "Follow" -msgstr "Följ" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/follow.js:24 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/follow.min.js:1 -msgid "Unfollow" -msgstr "Sluta följa" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.js:16 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.min.js:1 -msgid "Upload" -msgstr "Ladda upp" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.js:17 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.min.js:1 -msgid "Link" -msgstr "Länk" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.js:18 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.min.js:1 -#: ckanext/sixodp_ui/templates/group/snippets/group_item.html:41 -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:71 -msgid "Remove" -msgstr "Ta bort" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.js:19 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.min.js:1 -msgid "Image" -msgstr "Bild" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.js:20 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/slug-preview.js:35 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/slug-preview.min.js:1 -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "URL" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "Fil" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.js:22 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.min.js:1 -msgid "Upload a file on your computer" -msgstr "Ladda upp en fil från din dator" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.js:23 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/image-upload.min.js:1 -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)" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/related-item.js:25 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/related-item.min.js:1 -msgid "show more" -msgstr "visa mer" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/related-item.js:26 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/related-item.min.js:1 -msgid "show less" -msgstr "visa mindre" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-reorder.js:8 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-reorder.min.js:1 -msgid "Reorder resources" -msgstr "Ändra ordning på resurser" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-reorder.js:9 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-reorder.min.js:1 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-view-reorder.js:9 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-view-reorder.min.js:1 -msgid "Save order" -msgstr "Spara ordning" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-reorder.js:10 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-reorder.min.js:1 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-view-reorder.js:10 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-view-reorder.min.js:1 -msgid "Saving..." -msgstr "Sparar..." - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.js:25 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.min.js:1 -msgid "Upload a file" -msgstr "Ladda upp en fil" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.js:26 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.min.js:1 -msgid "An Error Occurred" -msgstr "Ett fel uppstod" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.js:27 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.min.js:1 -msgid "Resource uploaded" -msgstr "Resursen laddades upp" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.js:28 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.min.js:1 -msgid "Unable to upload file" -msgstr "Kunde inte ladda upp filen" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.js:29 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.min.js:1 -msgid "Unable to authenticate upload" -msgstr "Kunde inte verifiera behörighet för uppladdningen" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.js:30 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.min.js:1 -msgid "Unable to get data for uploaded file" -msgstr "Kunde inte läsa data i den uppladdade filen" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.js:31 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-upload-field.min.js:1 -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?" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-view-reorder.js:8 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/resource-view-reorder.min.js:1 -msgid "Reorder resource view" -msgstr "Sortera om resursvyn" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/slug-preview.js:36 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/slug-preview.min.js:1 -#: ckanext/sixodp_ui/templates/ckanext_pages/blog.html:12 -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:69 -#: ckanext/sixodp_ui/templates/showcase/edit_base.html:14 -msgid "Edit" -msgstr "Redigera" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/table-toggle-more.js:9 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/table-toggle-more.min.js:1 -#: ckanext/sixodp_ui/templates/package/resource_read.html:130 -#: ckanext/sixodp_ui/templates/snippets/facet_list.html:36 -msgid "Show more" -msgstr "Visa mer" - -#: ckanext/sixodp_ui/fanstatic/javascript/modules/table-toggle-more.js:10 -#: ckanext/sixodp_ui/fanstatic/javascript/modules/table-toggle-more.min.js:1 -msgid "Hide" -msgstr "Dölj" - -#: ckanext/sixodp_ui/templates/footer.html:9 -msgid "Data portal" -msgstr "Dataportalen " - -#: ckanext/sixodp_ui/templates/footer.html:12 -msgid "Content management" -msgstr "" - -#: ckanext/sixodp_ui/templates/footer.html:16 -msgid "Management" -msgstr "" - -#: ckanext/sixodp_ui/templates/footer.html:33 -msgid "Follow us" -msgstr "" - -#: ckanext/sixodp_ui/templates/sixodp_header.html:26 -msgid "Skip to content" -msgstr "Direkt till innehållet" - -#: ckanext/sixodp_ui/templates/admin/config.html:7 -msgid "Service message" -msgstr "" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:21 -msgid "CKAN Data API" -msgstr "CKAN Data API" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:25 -msgid "Access resource data via a web API with powerful query support" -msgstr "" -"Få tillgång till resursens data via ett webb-API med kraftfullt frågestöd." - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:26 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" -" Mer information finns i main CKAN Data API and DataStore documentation.

" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:36 -msgid "Endpoints" -msgstr "Adresser" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:41 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "Data-API:et kan anropas via följande åtgärder från CKAN:s \"action API\"." - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:46 -msgid "Query" -msgstr "Fråga" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:50 -msgid "Query (via SQL)" -msgstr "Fråga (via SQL)" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:62 -msgid "Querying" -msgstr "Frågar" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:67 -msgid "Query example (first 5 results)" -msgstr "Exempelfråga (första 5 svaren)" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:72 -msgid "Query example (results containing 'my_resource_query')" -msgstr "Exempelfråga (svar som innehåller 'my_resource_query')" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:77 -msgid "Query example (via SQL statement)" -msgstr "Exempelfråga (via SQL-sats)" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:89 -msgid "Example: Javascript" -msgstr "Exempel: Javascript" - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:94 -msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "Ett enkelt anrop via ajax (JSONP) till data-API:et via jQuery." - -#: ckanext/sixodp_ui/templates/ajax_snippets/api_info.html:116 -msgid "Example: Python" -msgstr "Exempel: Python" - -#: ckanext/sixodp_ui/templates/ckanext_pages/blog.html:4 -#: ckanext/sixodp_ui/templates/ckanext_pages/blog_list.html:11 -msgid "Articles" -msgstr "" - -#: ckanext/sixodp_ui/templates/ckanext_pages/blog.html:28 -#: ckanext/sixodp_ui/templates/ckanext_pages/snippets/pages_list.html:51 -#: ckanext/sixodp_ui/templates/ckanext_pages/snippets/pages_list.html:71 -msgid "This page currently has no content" -msgstr "" - -#: ckanext/sixodp_ui/templates/ckanext_pages/blog_list.html:5 -msgid "Add Article" -msgstr "Lägg till artikeln" - -#: ckanext/sixodp_ui/templates/ckanext_pages/blog_list.html:15 -msgid "Blog" -msgstr "" - -#: ckanext/sixodp_ui/templates/ckanext_pages/pages_edit.html:5 -msgid "Add page" -msgstr "Lägg till sida" - -#: ckanext/sixodp_ui/templates/ckanext_pages/snippets/pages_list.html:80 -msgid "There are currently no blog articles here" -msgstr "" - -#: ckanext/sixodp_ui/templates/ckanext_pages/snippets/pages_list.html:82 -msgid "There are currently no pages here" -msgstr "" - -#: ckanext/sixodp_ui/templates/collection/index.html:7 -msgid "Search collections..." -msgstr "Sök datainsamlingar..." - -#: ckanext/sixodp_ui/templates/group/index.html:7 -#: ckanext/sixodp_ui/templates/group/index.html:15 -msgid "Search groups..." -msgstr "Sök grupper..." - -#: ckanext/sixodp_ui/templates/group/index.html:15 -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:21 -#: ckanext/sixodp_ui/templates/organization/read.html:15 -#: ckanext/sixodp_ui/templates/package/search.html:38 -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:25 -#: ckanext/sixodp_ui/templates/showcase/search.html:13 -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:30 -msgid "Name Ascending" -msgstr "Namn, stigande" - -#: ckanext/sixodp_ui/templates/group/index.html:15 -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:22 -#: ckanext/sixodp_ui/templates/organization/read.html:16 -#: ckanext/sixodp_ui/templates/package/search.html:39 -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:26 -#: ckanext/sixodp_ui/templates/showcase/search.html:14 -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:30 -msgid "Name Descending" -msgstr "Namn, fallande" - -#: ckanext/sixodp_ui/templates/group/read.html:6 -#: ckanext/sixodp_ui/templates/organization/read.html:30 -#: ckanext/sixodp_ui/templates/package/search.html:84 -msgid "Filter results" -msgstr "" - -#: ckanext/sixodp_ui/templates/group/read_base.html:4 -#: ckanext/sixodp_ui/templates/group/snippets/info.html:12 -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:14 -msgid "Datasets" -msgstr "Dataset" - -#: ckanext/sixodp_ui/templates/group/read_base.html:5 -#: ckanext/sixodp_ui/templates/package/activity.html:3 -#: ckanext/sixodp_ui/templates/package/read_base.html:39 -msgid "Activity Stream" -msgstr "Aktivitetsflöde" - -#: ckanext/sixodp_ui/templates/group/snippets/group_item.html:29 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "{num} dataset" -msgstr[1] "{num} datasets" - -#: ckanext/sixodp_ui/templates/group/snippets/group_item.html:31 -msgid "0 Datasets" -msgstr "0 dataset" - -#: ckanext/sixodp_ui/templates/group/snippets/group_item.html:36 -#: ckanext/sixodp_ui/templates/group/snippets/group_item.html:37 -msgid "View {name}" -msgstr "Visa {name}" - -#: ckanext/sixodp_ui/templates/group/snippets/group_item.html:41 -msgid "Remove dataset from this group" -msgstr "Ta bort dataset från denna grupp" - -#: ckanext/sixodp_ui/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "" - -#: ckanext/sixodp_ui/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 "" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_language-changer.html:6 -msgid "In Finnish" -msgstr "På finska" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_language-changer.html:12 -msgid "In English" -msgstr "På engelska" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_language-changer.html:18 -msgid "In Swedish" -msgstr "På svenska" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_navbar_search.html:4 -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_navbar_search.html:11 -#: ckanext/sixodp_ui/templates/snippets/search_form.html:5 -#: ckanext/sixodp_ui/templates/snippets/search_input.html:18 -msgid "Search" -msgstr "Sök" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:12 -msgid "Sysadmin settings" -msgstr "Inställningar för sysadmin" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:14 -msgid "Admin" -msgstr "Admin" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:18 -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:20 -msgid "Dataset Editor" -msgstr "" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:26 -msgid "View profile" -msgstr "Visa profil" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:35 -#, python-format -msgid "Dashboard (%(num)d new item)" -msgid_plural "Dashboard (%(num)d new items)" -msgstr[0] "Panel (%(num)d ny objekt)" -msgstr[1] "Panel (%(num)d nya objekten)" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:38 -msgid "Dashboard" -msgstr "Panel" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:56 -#: ckanext/sixodp_ui/templates/user/dashboard.html:8 -msgid "Edit settings" -msgstr "Redigera inställningar" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:58 -msgid "Settings" -msgstr "Inställningar" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:65 -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:67 -msgid "Log out" -msgstr "Logga ut" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:76 -msgid "Log in" -msgstr "Logga in" - -#: ckanext/sixodp_ui/templates/home/snippets/sixodp_profile.html:78 -msgid "Register" -msgstr "Registrera" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:5 -msgid "Edit datasets" -msgstr "" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:10 -msgid " found for \"{query}\"" -msgstr "resultat för \"{query}\"" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:12 -msgid "Sorry no datasets found for \"{query}\"" -msgstr "Tyvärr hittades inga dataset som matchar \"{query}\"" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:23 -#: ckanext/sixodp_ui/templates/organization/read.html:17 -#: ckanext/sixodp_ui/templates/package/search.html:40 -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:51 -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:27 -#: ckanext/sixodp_ui/templates/showcase/search.html:15 -msgid "Last Modified" -msgstr "Senast ändrad" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:41 -msgid "Make public" -msgstr "Gör publik" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:45 -msgid "Make private" -msgstr "Gör privat" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:51 -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:65 -msgid "Delete" -msgstr "Radera" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:74 -#: ckanext/sixodp_ui/templates/package/read_base.html:15 -#: ckanext/sixodp_ui/templates/showcase/read.html:20 -#: ckanext/sixodp_ui/templates/snippets/package_item.html:68 -msgid "Draft" -msgstr "Utkast" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:76 -#: ckanext/sixodp_ui/templates/package/read_base.html:20 -#: ckanext/sixodp_ui/templates/snippets/package_item.html:70 -msgid "Deleted" -msgstr "Raderad" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:79 -#: ckanext/sixodp_ui/templates/package/read.html:11 -#: ckanext/sixodp_ui/templates/showcase/read.html:13 -#: ckanext/sixodp_ui/templates/snippets/package_item.html:61 -msgid "Private" -msgstr "Privat" - -#: ckanext/sixodp_ui/templates/organization/bulk_process.html:92 -msgid "This organization has no datasets associated to it" -msgstr "Denna organisation har inga dataset kopplade till sig" - -#: ckanext/sixodp_ui/templates/organization/index.html:7 -#: ckanext/sixodp_ui/templates/organization/index.html:15 -msgid "Search organizations..." -msgstr "Sök organisationer..." - -#: ckanext/sixodp_ui/templates/organization/read.html:12 -msgid "Last Created" -msgstr "Senast uppdaterad" - -#: ckanext/sixodp_ui/templates/organization/read.html:13 -#: ckanext/sixodp_ui/templates/package/search.html:36 -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:28 -#: ckanext/sixodp_ui/templates/showcase/search.html:16 -#: ckanext/sixodp_ui/templates/snippets/package_item.html:80 -msgid "Popular" -msgstr "Populära" - -#: ckanext/sixodp_ui/templates/organization/read.html:14 -#: ckanext/sixodp_ui/templates/package/search.html:37 -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:24 -#: ckanext/sixodp_ui/templates/showcase/search.html:12 -msgid "Relevance" -msgstr "Relevans" - -#: ckanext/sixodp_ui/templates/organization/read.html:19 -#: ckanext/sixodp_ui/templates/package/search.html:7 -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:3 -msgid "Search datasets..." -msgstr "Sök dataset..." - -#: ckanext/sixodp_ui/templates/package/confirm_delete.html:12 -msgid "Are you sure you want to delete dataset - {name}?" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/confirm_delete.html:16 -msgid "Confirm Delete" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "Koppla denna grupp till detta dataset" - -#: ckanext/sixodp_ui/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "Lägg till gruppen" - -#: ckanext/sixodp_ui/templates/package/group_list.html:24 -msgid "There are no groups associated with this dataset" -msgstr "Det finns inga grupper kopplade till detta dataset" - -#: ckanext/sixodp_ui/templates/package/new_view.html:3 -#: ckanext/sixodp_ui/templates/package/new_view.html:4 -#: ckanext/sixodp_ui/templates/package/new_view.html:8 -#: ckanext/sixodp_ui/templates/package/new_view.html:12 -msgid "Add view" -msgstr "Lägg till vy" - -#: ckanext/sixodp_ui/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 "" - -#: ckanext/sixodp_ui/templates/package/new_view.html:28 -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:48 -msgid "Preview" -msgstr "Förhandsvisa" - -#: ckanext/sixodp_ui/templates/package/new_view.html:29 -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:81 -msgid "Add" -msgstr "Lägg till" - -#: ckanext/sixodp_ui/templates/package/read.html:43 -#: ckanext/sixodp_ui/templates/package/read_base.html:75 -#: ckanext/sixodp_ui/templates/package/resource_read.html:185 -msgid "Subscribe for dataset updates" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/read_base.html:37 -msgid "Dataset" -msgstr "Dataset" - -#: ckanext/sixodp_ui/templates/package/read_base.html:38 -#: ckanext/sixodp_ui/templates/showcase/edit_base.html:5 -#: ckanext/sixodp_ui/templates/showcase/edit_base.html:12 -#: ckanext/sixodp_ui/templates/showcase/edit_base.html:16 -msgid "Showcases" -msgstr "Applikationer" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:18 -#: ckanext/sixodp_ui/templates/showcase/read.html:6 -msgid "Manage" -msgstr "Hantera" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:40 -msgid "View" -msgstr "Visa" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:42 -msgid "API Endpoint" -msgstr "API-adress" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:44 -#: ckanext/sixodp_ui/templates/package/snippets/resource_item.html:36 -#: ckanext/sixodp_ui/templates/report/view.html:47 -msgid "Download" -msgstr "Hämta" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:88 -msgid "There are no views created for this resource yet." -msgstr "Inga vyer har skapats för resursen." - -#: ckanext/sixodp_ui/templates/package/resource_read.html:91 -msgid "Not seeing the views you were expecting?" -msgstr "Hittar du inte vyerna du förväntade dig?" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:93 -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:18 -msgid "Click here for more information." -msgstr "Klicka här för att läsa mer..." - -#: ckanext/sixodp_ui/templates/package/resource_read.html:97 -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:" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:99 -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." - -#: ckanext/sixodp_ui/templates/package/resource_read.html:100 -msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "Administratörerna har inte aktiverat rätt plugin för vyerna" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:101 -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" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:122 -msgid "From the dataset abstract" -msgstr "Från sammanfattningen av detta dataset" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:124 -#, python-format -msgid "Source: %(dataset)s" -msgstr "Källa: %(dataset)s" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:131 -#: ckanext/sixodp_ui/templates/snippets/facet_list.html:39 -msgid "Show less" -msgstr "Visa mindre" - -#: ckanext/sixodp_ui/templates/package/resource_read.html:154 -msgid "Back to dataset" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/search.html:21 -msgid "Add Dataset" -msgstr "Lägg till dataset" - -#: ckanext/sixodp_ui/templates/package/search.html:34 -msgid "Newest first" -msgstr "Nyaste först" - -#: ckanext/sixodp_ui/templates/package/search.html:35 -msgid "Oldest first" -msgstr "Äldsta först" - -#: ckanext/sixodp_ui/templates/package/search.html:63 -msgid "API" -msgstr "API" - -#: ckanext/sixodp_ui/templates/package/search.html:64 -msgid "API Docs" -msgstr "API-dokumentation" - -#: ckanext/sixodp_ui/templates/package/search.html:66 -msgid "full {format} dump" -msgstr "fullständig dump i {format}-format" - -#: ckanext/sixodp_ui/templates/package/search.html:67 -#, 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. " - -#: ckanext/sixodp_ui/templates/package/search.html:71 -#, 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). " - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:2 -msgid "Additional Info" -msgstr "Mer information" - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:7 -msgid "Metadata API" -msgstr "Metadata API" - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:18 -msgid "Source" -msgstr "Källa" - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:29 -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:34 -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:63 -msgid "Author" -msgstr "Författare" - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:41 -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:46 -msgid "Maintainer" -msgstr "Förvaltare" - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:53 -msgid "Version" -msgstr "Version" - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:60 -msgid "State" -msgstr "Status" - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:66 -msgid "Last Updated" -msgstr "Senast uppdaterad" - -#: ckanext/sixodp_ui/templates/package/snippets/additional_info.html:72 -msgid "Created" -msgstr "Skapad" - -#: ckanext/sixodp_ui/templates/package/snippets/data_api_button.html:10 -#: ckanext/sixodp_ui/templates/package/snippets/resource_item.html:28 -msgid "Data API" -msgstr "Data API" - -#: ckanext/sixodp_ui/templates/package/snippets/package_form.html:5 -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." - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:24 -msgid "Data" -msgstr "Data" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" -msgstr "http://example.com/external-data.csv" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "Namn" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "t.ex. Guldpriser januari 2011" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:32 -#: ckanext/sixodp_ui/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Beskrivning" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "Beskrivande information om datasetet" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:37 -msgid "Format" -msgstr "Format" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "t.ex. CSV, XML or JSON" - -#: ckanext/sixodp_ui/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" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "t.ex. 2012-06-05" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "Filstorlek" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "t.ex. 1024" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:55 -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "MIME-typ" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:55 -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "t.ex. application/json" - -#: ckanext/sixodp_ui/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?" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:71 -msgid "Previous" -msgstr "Föregående" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:74 -msgid "Save & add another" -msgstr "Spara och lägg till nästa" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:77 -msgid "Finish" -msgstr "Slutför" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_form.html:88 -msgid "Estimated upload times with the selected resource file" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:16 -msgid "This resource view is not available at the moment." -msgstr "Resursvyn är inte tillgänglig just nu." - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:25 -msgid "Download resource" -msgstr "Ladda ner resurs" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:49 -msgid "Your browser does not support iframes." -msgstr "Din webbläsare stödjer inte iframes." - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:60 -msgid "Fullscreen" -msgstr "" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:68 -msgid "Embed" -msgstr "Bädda in" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:80 -msgid "Embed resource view" -msgstr "Infoga resursvy" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:83 -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" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:86 -msgid "Width" -msgstr "Bredd" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:89 -msgid "Height" -msgstr "Höjd" - -#: ckanext/sixodp_ui/templates/package/snippets/resource_view.html:92 -msgid "Code" -msgstr "Kod" - -#: ckanext/sixodp_ui/templates/package/snippets/resources.html:4 -msgid "Resources" -msgstr "Data och resurser" - -#: ckanext/sixodp_ui/templates/package/snippets/view_form.html:8 -msgid "Title" -msgstr "Titel" - -#: ckanext/sixodp_ui/templates/package/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "t.ex. Min vy" - -#: ckanext/sixodp_ui/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" -msgstr "Lite information om visan" - -#: ckanext/sixodp_ui/templates/package/snippets/view_help.html:2 -msgid "What's a view?" -msgstr "Vad är en vy?" - -#: ckanext/sixodp_ui/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" - -#: ckanext/sixodp_ui/templates/report/index.html:5 -#: ckanext/sixodp_ui/templates/report/view.html:3 -#: ckanext/sixodp_ui/templates/report/view.html:6 -msgid "Reports" -msgstr "" - -#: ckanext/sixodp_ui/templates/report/index.html:24 -msgid "View Report" -msgstr "Visa resurser" - -#: ckanext/sixodp_ui/templates/report/view.html:16 -msgid "Generated" -msgstr "" - -#: ckanext/sixodp_ui/templates/report/view.html:20 -msgid "Refresh report" -msgstr "" - -#: ckanext/sixodp_ui/templates/report/view.html:23 -msgid "Refresh" -msgstr "" - -#: ckanext/sixodp_ui/templates/report/view.html:25 -msgid "" -"As a system administrator you are able to refresh this report on demand by " -"clicking the 'Refresh' button." -msgstr "" - -#: ckanext/sixodp_ui/templates/report/view.html:31 -msgid "Options" -msgstr "" - -#: ckanext/sixodp_ui/templates/report/view.html:52 -msgid "Results" -msgstr "Resultat" - -#: ckanext/sixodp_ui/templates/report/view.html:54 -msgid "No results found." -msgstr "Inga resultat hittades" - -#: ckanext/sixodp_ui/templates/showcase/edit_base.html:17 -msgid "Create Showcase" -msgstr "Skapa applikationer" - -#: ckanext/sixodp_ui/templates/showcase/edit_base.html:30 -msgid "View showcase" -msgstr "Visa applikationer" - -#: ckanext/sixodp_ui/templates/showcase/edit_base.html:36 -msgid "Edit showcase" -msgstr "Redigera applikationer" - -#: ckanext/sixodp_ui/templates/showcase/edit_base.html:37 -msgid "Manage datasets" -msgstr "" - -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:3 -msgid "Showcases - Manage datasets" -msgstr "" - -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:36 -msgid "Datasets available to add to this showcase" -msgstr "" - -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:51 -msgid "Add to Showcase" -msgstr "Lägg till applikationer" - -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:88 -msgid "No datasets could be found" -msgstr "Inga dataset hittades" - -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:96 -msgid "Datasets in this showcase" -msgstr "" - -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:109 -msgid "Remove from Showcase" -msgstr "" - -#: ckanext/sixodp_ui/templates/showcase/manage_datasets.html:140 -msgid "This showcase has no datasets associated to it" -msgstr "Denna applikationer har inga dataset kopplade till sig" - -#: ckanext/sixodp_ui/templates/showcase/read.html:38 -msgid "Launch website" -msgstr "" - -#: ckanext/sixodp_ui/templates/showcase/search.html:19 -msgid "Search showcases..." -msgstr "Sök applikationer..." - -#: ckanext/sixodp_ui/templates/snippets/facet_list.html:43 -msgid "There are no {facet_type} that match this search" -msgstr "Det finns ingen {facet_type} som matchar sökningen" - -#: ckanext/sixodp_ui/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "Framsida" - -#: ckanext/sixodp_ui/templates/snippets/horizontal_accordion.html:30 -msgid "Close preview" -msgstr "Göm" - -#: ckanext/sixodp_ui/templates/snippets/horizontal_accordion.html:31 -msgid "Show preview" -msgstr "Visa" - -#: ckanext/sixodp_ui/templates/snippets/license.html:14 -msgid "No License Provided" -msgstr "Licens ej angiven" - -#: ckanext/sixodp_ui/templates/snippets/license.html:21 -msgid "License" -msgstr "Licens" - -#: ckanext/sixodp_ui/templates/snippets/license.html:33 -msgid "This dataset satisfies the Open Definition." -msgstr "Detta dataset uppfyller kraven i Open Definition." - -#: ckanext/sixodp_ui/templates/snippets/package_item.html:87 -msgid "This dataset has no description" -msgstr "Detta dataset saknar beskrivning" - -#: ckanext/sixodp_ui/templates/snippets/page_highlight_item.html:8 -msgid "View {showcase_title}" -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/page_highlight_item.html:25 -msgid "This showcase has no description" -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/search_form.html:9 -msgid "Submit" -msgstr "Skicka" - -#: ckanext/sixodp_ui/templates/snippets/search_form.html:19 -msgid "Sort" -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/search_form.html:27 -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:43 -msgid "Go" -msgstr "Kör" - -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:36 -msgid "Sort results" -msgstr "" - -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:61 -#: ckanext/sixodp_ui/templates/snippets/tag_list.html:4 -msgid "Tags" -msgstr "Taggar" - -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:82 -msgid "" -"

Please try another search or change search facets.

" -msgstr "

Försök med en ny sökfråga.

" - -#: ckanext/sixodp_ui/templates/snippets/search_form_without_input.html:88 -msgid "" -"

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

" -msgstr "

Fel vid sökning. Försök igen.

" - -#: ckanext/sixodp_ui/templates/snippets/sixodp_offcanvas-filter-button.html:2 -msgid "Filters" -msgstr "Filter" - -#: ckanext/sixodp_ui/templates/snippets/sixodp_offcanvas-info-button.html:2 -msgid "About" -msgstr "Om" - -#: ckanext/sixodp_ui/templates/user/dashboard.html:11 -#: ckanext/sixodp_ui/templates/user/dashboard.html:29 -msgid "News feed" -msgstr "Nyhetsfeed" - -#: ckanext/sixodp_ui/templates/user/dashboard.html:12 -msgid "My Datasets" -msgstr "Mina datasets" - -#: ckanext/sixodp_ui/templates/user/dashboard.html:13 -msgid "My Organizations" -msgstr "Mina organisationer" - -#: ckanext/sixodp_ui/templates/user/dashboard.html:14 -msgid "My Groups" -msgstr "Mina grupper" - -#: ckanext/sixodp_ui/templates/user/dashboard.html:31 -msgid "Activity from items that I'm following" -msgstr "Aktivitet från poster som jag följer" - -#: ckanext/sixodp_ui/templates/user/login.html:6 -msgid "Login" -msgstr "Logga in" - -#: ckanext/sixodp_ui/templates/user/snippets/followee_dropdown.html:14 -#: ckanext/sixodp_ui/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "Aktivitet från:" - -#: ckanext/sixodp_ui/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "Sök lista..." - -#: ckanext/sixodp_ui/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "Du följer ingenting." diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/licenses/licenses.json b/ckanext/ckanext-sixodp/ckanext/sixodp/licenses/licenses.json similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/licenses/licenses.json rename to ckanext/ckanext-sixodp/ckanext/sixodp/licenses/licenses.json diff --git a/ckanext/ckanext-sixodp/ckanext/sixodp/logic/action.py b/ckanext/ckanext-sixodp/ckanext/sixodp/logic/action.py index bd712234d..65bfacc49 100644 --- a/ckanext/ckanext-sixodp/ckanext/sixodp/logic/action.py +++ b/ckanext/ckanext-sixodp/ckanext/sixodp/logic/action.py @@ -1,3 +1,5 @@ +import sys + import ckan.logic as logic _check_access = logic.check_access @@ -46,3 +48,42 @@ def package_autocomplete(context, data_dict): pkg_list.append(result_dict) return pkg_list + + +# Can be replaced with @chained_action once ckan supports chaining core actions https://github.com/ckan/ckan/pull/4509 +def resource_create(context, datadict): + context['keep_deletable_attributes_in_api'] = True + + return get_original_method('ckan.logic.action.create', 'resource_create')(context, datadict) + +def resource_update(context, datadict): + context['keep_deletable_attributes_in_api'] = True + + return get_original_method('ckan.logic.action.update', 'resource_update')(context, datadict) + +def resource_delete(context, datadict): + context['keep_deletable_attributes_in_api'] = True + + return get_original_method('ckan.logic.action.delete', 'resource_delete')(context, datadict) + + +def package_resource_reorder(context, datadict): + context['keep_deletable_attributes_in_api'] = True + + return get_original_method('ckan.logic.action.update', 'package_resource_reorder')(context, datadict) + +def package_patch(context, datadict): + context['keep_deletable_attributes_in_api'] = True + + return get_original_method('ckan.logic.action.patch', 'package_patch')(context, datadict) + +def get_original_method(module_name, method_name): + """ In CKAN you cannot call original action when you override it. + This method fixes the problem. + Example get_original_method('ckan.logic.action.create', 'user_create') + """ + __import__(module_name) + imported_module = sys.modules[module_name] + reimport_module = imp.load_compiled('%s.reimport' % module_name, imported_module.__file__) + + return getattr(reimport_module, method_name) \ No newline at end of file diff --git a/ckanext/ckanext-sixodp/ckanext/sixodp/plugin.py b/ckanext/ckanext-sixodp/ckanext/sixodp/plugin.py index 6d58b494c..b1c85132e 100644 --- a/ckanext/ckanext-sixodp/ckanext/sixodp/plugin.py +++ b/ckanext/ckanext-sixodp/ckanext/sixodp/plugin.py @@ -1,3 +1,6 @@ +import json +from datetime import datetime + import ckan.plugins as plugins import ckan.plugins.toolkit as toolkit @@ -14,6 +17,10 @@ from ckan.lib.plugins import DefaultTranslation from .views import sixodp +from .validators import convert_to_list, tag_string_or_tags_required, set_private_if_not_admin, \ + create_fluent_tags, create_tags, lower_if_exists, upper_if_exists, save_to_groups, \ + list_to_string, tag_list_output, repeating_text, repeating_text_output, only_default_lang_required + get_action = logic.get_action config = toolkit.config @@ -184,6 +191,7 @@ class SixodpPlugin(plugins.SingletonPlugin, DefaultTranslation): plugins.implements(plugins.IActions, inherit=True) plugins.implements(plugins.IAuthFunctions) plugins.implements(plugins.IBlueprint) + plugins.implements(plugins.IValidators) # IConfigurer @@ -279,7 +287,19 @@ def get_helpers(self): 'get_all_groups': helpers.get_all_groups, 'get_single_group': helpers.get_single_group, 'get_created_or_updated': helpers.get_created_or_updated, - 'get_cookiehub_domain_code': helpers.get_cookiehub_domain_code + 'get_cookiehub_domain_code': helpers.get_cookiehub_domain_code, + 'call_toolkit_function': helpers.call_toolkit_function, + 'add_locale_to_source': helpers.add_locale_to_source, + 'get_lang': helpers.get_current_lang, + 'get_lang_prefix': helpers.get_lang_prefix, + 'scheming_field_only_default_required': helpers.scheming_field_only_default_required, + 'get_current_date': helpers.get_current_date, + 'get_package_groups_by_type': helpers.get_package_groups_by_type, + 'get_translated_or_default_locale': helpers.get_translated_or_default_locale, + 'show_qa': helpers.show_qa, + 'scheming_category_list': helpers.scheming_category_list, + 'check_group_selected': helpers.check_group_selected, + 'get_field_from_schema': helpers.get_field_from_schema } def before_search(self, search_params): @@ -310,11 +330,78 @@ def after_search(self, search_results, search_params): search_results['search_facets']['groups']['items'][i]['title_translated'] = group.get('title_translated') return search_results + def before_index(self, data_dict): + + if data_dict.get('date_released', None) is None: + data_dict['date_released'] = data_dict['metadata_created'] + else: + date_str = data_dict['date_released'] + try: + datetime.strptime(date_str, "%Y-%m-%dT%H:%M:%SZ") + except ValueError: + d = datetime.strptime(date_str, "%Y-%m-%d") + d = datetime.combine(d, datetime.min.time()).replace(tzinfo=None).isoformat() + 'Z' + data_dict['date_released'] = d + #d = datetime.strptime(date_str,) + + if data_dict.get('date_updated', None) is None: + data_dict['date_updated'] = data_dict['date_released'] + else: + date_str = data_dict['date_updated'] + try: + datetime.strptime(date_str, "%Y-%m-%dT%H:%M:%SZ") + except ValueError: + d = datetime.strptime(date_str, "%Y-%m-%d") + d = datetime.combine(d, datetime.min.time()).replace(tzinfo=None).isoformat() + 'Z' + data_dict['date_updated'] = d + + + if data_dict.get('geographical_coverage'): + data_dict['vocab_geographical_coverage'] = [tag for tag in json.loads(data_dict['geographical_coverage'])] + + keywords = data_dict.get('keywords') + if keywords: + keywords_json = json.loads(keywords) + if keywords_json.get('fi'): + data_dict['vocab_keywords_fi'] = [tag for tag in keywords_json['fi']] + if keywords_json.get('sv'): + data_dict['vocab_keywords_sv'] = [tag for tag in keywords_json['sv']] + if keywords_json.get('en'): + data_dict['vocab_keywords_en'] = [tag for tag in keywords_json['en']] + + update_frequency = data_dict.get('update_frequency') + if update_frequency: + update_frequency_json = json.loads(update_frequency) + if update_frequency_json.get('fi'): + data_dict['vocab_update_frequency_fi'] = [tag for tag in update_frequency_json['fi']] + if update_frequency_json.get('sv'): + data_dict['vocab_update_frequency_sv'] = [tag for tag in update_frequency_json['sv']] + if update_frequency_json.get('en'): + data_dict['vocab_update_frequency_en'] = [tag for tag in update_frequency_json['en']] + + return data_dict + + # This function requires overriding resource_create and resource_update by adding keep_deletable_attributes_in_api to context + def after_show(self, context, data_dict): + + keep_deletable_attributes_in_api = config.get('ckanext.sixodp.keep_deletable_attributes_in_api', + context.get('keep_deletable_attributes_in_api', False)) + + if keep_deletable_attributes_in_api is False and context.get('for_edit') is not True: + if data_dict.get('search_synonyms', None) is not None: + data_dict.pop('search_synonyms') + + return data_dict # IActions def get_actions(self): return { 'package_autocomplete': action.package_autocomplete, + 'resource_create': action.resource_create, + 'resource_update': action.resource_update, + 'resource_delete': action.resource_delete, + 'package_resource_reorder': action.package_resource_reorder, + 'package_patch': action.package_patch } # IAuthFunctions @@ -330,6 +417,24 @@ def get_auth_functions(self): def get_blueprints(self): return [sixodp] + # IValidators + def get_validators(self): + return { + 'lower_if_exists': lower_if_exists, + 'upper_if_exists': upper_if_exists, + 'tag_string_or_tags_required': tag_string_or_tags_required, + 'create_tags': create_tags, + 'create_fluent_tags': create_fluent_tags, + 'set_private_if_not_admin': set_private_if_not_admin, + 'list_to_string': list_to_string, + 'convert_to_list': convert_to_list, + 'tag_list_output': tag_list_output, + 'repeating_text': repeating_text, + 'repeating_text_output': repeating_text_output, + 'only_default_lang_required': only_default_lang_required, + 'save_to_groups': save_to_groups + } + #TODO: add sorting # if q and not sort_by: diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/presets.json b/ckanext/ckanext-sixodp/ckanext/sixodp/presets.json similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/presets.json rename to ckanext/ckanext-sixodp/ckanext/sixodp/presets.json diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/schemas/__init__.py b/ckanext/ckanext-sixodp/ckanext/sixodp/schemas/__init__.py similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/schemas/__init__.py rename to ckanext/ckanext-sixodp/ckanext/sixodp/schemas/__init__.py diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/schemas/dataset.json b/ckanext/ckanext-sixodp/ckanext/sixodp/schemas/dataset.json similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/schemas/dataset.json rename to ckanext/ckanext-sixodp/ckanext/sixodp/schemas/dataset.json diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/schemas/group.json b/ckanext/ckanext-sixodp/ckanext/sixodp/schemas/group.json similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/schemas/group.json rename to ckanext/ckanext-sixodp/ckanext/sixodp/schemas/group.json diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/display_snippets/date.html b/ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/display_snippets/date.html similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/display_snippets/date.html rename to ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/display_snippets/date.html diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/display_snippets/fluent_tag_list.html b/ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/display_snippets/fluent_tag_list.html similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/display_snippets/fluent_tag_list.html rename to ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/display_snippets/fluent_tag_list.html diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/display_snippets/license.html b/ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/display_snippets/license.html similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/display_snippets/license.html rename to ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/display_snippets/license.html diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/display_snippets/maintainer_email.html b/ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/display_snippets/maintainer_email.html similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/display_snippets/maintainer_email.html rename to ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/display_snippets/maintainer_email.html diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/display_snippets/repeating_link.html b/ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/display_snippets/repeating_link.html similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/display_snippets/repeating_link.html rename to ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/display_snippets/repeating_link.html diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/display_snippets/repeating_text.html b/ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/display_snippets/repeating_text.html similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/display_snippets/repeating_text.html rename to ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/display_snippets/repeating_text.html diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/display_snippets/tag_list.html b/ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/display_snippets/tag_list.html similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/display_snippets/tag_list.html rename to ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/display_snippets/tag_list.html diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/date.html b/ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/date.html similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/date.html rename to ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/date.html diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/fluent_markdown_ex.html b/ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/fluent_markdown_ex.html similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/fluent_markdown_ex.html rename to ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/fluent_markdown_ex.html diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/fluent_tags_with_autocomplete.html b/ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/fluent_tags_with_autocomplete.html similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/fluent_tags_with_autocomplete.html rename to ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/fluent_tags_with_autocomplete.html diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/fluent_text_ex.html b/ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/fluent_text_ex.html similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/fluent_text_ex.html rename to ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/fluent_text_ex.html diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/fluent_title.html b/ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/fluent_title.html similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/fluent_title.html rename to ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/fluent_title.html diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/hidden.html b/ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/hidden.html similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/hidden.html rename to ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/hidden.html diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/large_text_ex.html b/ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/large_text_ex.html similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/large_text_ex.html rename to ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/large_text_ex.html diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/license.html b/ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/license.html similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/license.html rename to ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/license.html diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/organization_ex.html b/ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/organization_ex.html similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/organization_ex.html rename to ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/organization_ex.html diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/private.html b/ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/private.html similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/private.html rename to ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/private.html diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/repeating.html b/ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/repeating.html similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/repeating.html rename to ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/repeating.html diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/repeating_text.html b/ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/repeating_text.html similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/repeating_text.html rename to ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/repeating_text.html diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/slug_ex.html b/ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/slug_ex.html similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/slug_ex.html rename to ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/slug_ex.html diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/state.html b/ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/state.html similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/state.html rename to ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/state.html diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/tag_list.html b/ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/tag_list.html similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/tag_list.html rename to ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/tag_list.html diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/text.html b/ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/text.html similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/text.html rename to ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/text.html diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/text_ex.html b/ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/text_ex.html similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/text_ex.html rename to ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/text_ex.html diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/textarea.html b/ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/textarea.html similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/textarea.html rename to ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/textarea.html diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/ytp_multiple_checkbox.html b/ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/ytp_multiple_checkbox.html similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/form_snippets/ytp_multiple_checkbox.html rename to ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/form_snippets/ytp_multiple_checkbox.html diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/group/about.html b/ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/group/about.html similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/group/about.html rename to ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/group/about.html diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/macros/form.html b/ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/macros/form.html similarity index 97% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/macros/form.html rename to ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/macros/form.html index 10aa246e7..429a259bb 100644 --- a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/macros/form.html +++ b/ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/macros/form.html @@ -1,7 +1,7 @@ {% import 'macros/form.html' as form %} {% macro input_multiple(name, id='', label='', value='', placeholder='', type='text', error="", classes=[], attrs={}, is_required=false) %} - {% resource 'sixodp_scheming/javascript/form.js' %} + {% asset 'sixodp/sixodp_js' %} {% do classes.append('control-medium') %} {%- set extra_html = caller() if caller -%} {% call form.input_block(id or name, label or name, error, classes, control_classes=["editor"], extra_html=extra_html, is_required=is_required) %} diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/package/read.html b/ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/package/read.html similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/package/read.html rename to ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/package/read.html diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/package/resource_read.html b/ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/package/resource_read.html similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/package/resource_read.html rename to ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/package/resource_read.html diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html b/ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/package/snippets/additional_info.html similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html rename to ckanext/ckanext-sixodp/ckanext/sixodp/templates/scheming/package/snippets/additional_info.html diff --git a/ckanext/ckanext-sixodp/ckanext/sixodp/translations.py b/ckanext/ckanext-sixodp/ckanext/sixodp/translations.py index 53654d2ed..1b2b77d26 100644 --- a/ckanext/ckanext-sixodp/ckanext/sixodp/translations.py +++ b/ckanext/ckanext-sixodp/ckanext/sixodp/translations.py @@ -16,3 +16,118 @@ def _translations(): _('Google analytics showing most downloaded resources') _('Publisher activity') _('A quarterly list of datasets created and edited by a publisher.') + + _('Title') + _('eg. A descriptive title for the dataset') + _('A short and descriptive title for the dataset in multiple languages. Try not to use dates when naming a dataset, since data from multiple years will usually be published as multiple resources in one dataset.') + + _('URL') + _('An URL-address which refers to the dataset. The automatically filled option derived from the title is the best option in most cases.') + + _('Tags') + _('E.g. transport, housing, buildings') + _('Descriptive keywords or tags through which users are able to find this dataset easily through the search. The input will suggest existing keywords in the portal. New keywords should utilize ontologies such as the generic finnish ontology YSO: finto.fi/yso/fi.') + + _('Geographical Coverage') + _('eg. tampere') + _('Select the municipalities from which the dataset contains data.') + + _('Description') + _('E.g. A diverse and detailed description') + _('eg. A detailed description') + _('An universal and easy to understand, but also diverse description of the added dataset. Describe the dataset creation process, use case and possible limitations and shortcomings as well as possible.') + + _('Links to additional information concerning the dataset') + _('You may attach external websites or other documentation which could assist in interpreting the dataset.') + + _('Organization') + _('The organization which owns the dataset.') + + _('Source') + _('http://example.com/dataset.json') + _('The original author of the dataset. Can also be an external author such as Statistics Finland. The field can e.g. be used to describe a situation where the dataset is published by a single unit but it has multiple authors.') + + _('Maintainer') + _('Joe Bloggs') + _('The technical maintainer for the dataset. Can in practice be the maintaining unit, bureau or as an exception a single employee.') + + _('Maintainer Email') + _('Maintainer email address') + _('The email address for the maintaining party for the dataset. Use a mailing list or other similar means to direct the message to multiple recipients.') + + _('Maintainer Website') + _('http://www.example.com') + + _('Visibility') + _('Private datasets will only be seen by the logged in users of the dataset\'s organization. The private status is used when preparing a new dataset for publication.') + + _('Published') + _('The resource publication date.') + _('The dataset publication date.') + + _('Updated') + _('The resource update date.') + _('A manually maintained date which can be used to notify when the dataset has been updated.') + + _('Update Frequency') + _('eg. every second week') + _('The supposed update frequency for the dataset. The field will suggest similar values used in other datasets such as yearly, monthly or realtime. A new value can also be created if required.') + + _('License') + + _('Reminder date') + _('A date when a reminder email will be sent to the system administrator reminding to check this dataset e.g. for a yearly update.') + + _('Global ID') + _('A global id can be assigned to identify the dataset in external services.') + + _('Search Synonyms') + _('Keywords can be provided here to improve the findability of the dataset. E.g. words from spoken language can be provided to make the dataset searchable by those words.') + + _("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.") + + _('Name') + _('A short and descriptive name for the resource.') + + _('URL') + _('A file or url which describes the location of the desired resource file.') + + _('Size') + _('Size of the added resouce file in bytes. Will be automatically filled when the file is uploaded.') + + _('Format') + _('File format of the selected resource.') + + _('Description') + _('An universal, compact and easy to understand description of the added resource.') + + _('Position coordinates') + _('Coordinates which describe the area which the added resource is associated with.') + + _('Time series start') + _('A moment in time after which the data is relevant.') + + _('Time series end') + _('A moment in time after which the data is no longer relevant.') + + _('Time Series Precision') + _('eg. 2 weeks') + _('A string which describes the precision of the entered time series.') + + # Licenses from licenses.json + _('Creative Commons Attribution 4.0') + _('https://creativecommons.org/licenses/by/4.0/') + + _('CC0 1.0') + _('https://creativecommons.org/publicdomain/zero/1.0/') + + _('Other (Open)') + + _('Parent') + _('None - top level') + _('Icon URL') + _('My Group') diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/validators.py b/ckanext/ckanext-sixodp/ckanext/sixodp/validators.py similarity index 100% rename from ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/validators.py rename to ckanext/ckanext-sixodp/ckanext/sixodp/validators.py diff --git a/ckanext/ckanext-sixodp/ckanext/sixodp/views.py b/ckanext/ckanext-sixodp/ckanext/sixodp/views.py index 43d8aebba..1fbf2bcf0 100644 --- a/ckanext/ckanext-sixodp/ckanext/sixodp/views.py +++ b/ckanext/ckanext-sixodp/ckanext/sixodp/views.py @@ -3,7 +3,7 @@ import ckan.model as model from ckan.plugins.toolkit import g, request, get_action from ckan.views.api import _finish_ok -from ckanext.sixodp_scheming.plugin import create_vocabulary +from .validators import create_vocabulary def tag_autocomplete(): diff --git a/ckanext/ckanext-sixodp_scheming/.coveragerc b/ckanext/ckanext-sixodp_scheming/.coveragerc deleted file mode 100644 index 3138593c5..000000000 --- a/ckanext/ckanext-sixodp_scheming/.coveragerc +++ /dev/null @@ -1,5 +0,0 @@ -[report] -omit = - */site-packages/* - */python?.?/* - ckan/* \ No newline at end of file diff --git a/ckanext/ckanext-sixodp_scheming/.gitignore b/ckanext/ckanext-sixodp_scheming/.gitignore deleted file mode 100644 index e9876d100..000000000 --- a/ckanext/ckanext-sixodp_scheming/.gitignore +++ /dev/null @@ -1,42 +0,0 @@ -.ropeproject -node_modules -bower_components - -# Byte-compiled / optimized / DLL files -__pycache__/ -*.py[cod] - -# C extensions -*.so - -# Distribution / packaging -.Python -env/ -build/ -develop-eggs/ -dist/ -sdist/ -*.egg-info/ -.installed.cfg -*.egg - -# PyInstaller -# Usually these files are written by a python script from a template -# before PyInstaller builds the exe, so as to inject date/other infos into it. -*.manifest -*.spec - -# Installer logs -pip-log.txt -pip-delete-this-directory.txt - -# Unit test / coverage reports -htmlcov/ -.tox/ -.coverage -.cache -nosetests.xml -coverage.xml - -# Sphinx documentation -docs/_build/ \ No newline at end of file diff --git a/ckanext/ckanext-sixodp_scheming/.travis.yml b/ckanext/ckanext-sixodp_scheming/.travis.yml deleted file mode 100644 index 6e52d425a..000000000 --- a/ckanext/ckanext-sixodp_scheming/.travis.yml +++ /dev/null @@ -1,11 +0,0 @@ -language: python -python: - - "2.6" - - "2.7" -env: PGVERSION=9.1 -install: - - bash bin/travis-build.bash - - pip install coveralls -script: sh bin/travis-run.sh -after_success: - - coveralls diff --git a/ckanext/ckanext-sixodp_scheming/.tx/config b/ckanext/ckanext-sixodp_scheming/.tx/config deleted file mode 100644 index 85f0c2c34..000000000 --- a/ckanext/ckanext-sixodp_scheming/.tx/config +++ /dev/null @@ -1,8 +0,0 @@ -[main] -host = https://www.transifex.com - -[sixodp.ckanext-sixodp_scheming] -file_filter = ckanext/sixodp_scheming/i18n//LC_MESSAGES/ckanext-sixodp_scheming.po -source_file = ckanext/sixodp_scheming/i18n/ckanext-sixodp_scheming.pot -source_lang = en -type = PO \ No newline at end of file diff --git a/ckanext/ckanext-sixodp_scheming/LICENSE b/ckanext/ckanext-sixodp_scheming/LICENSE deleted file mode 100644 index 3ffc56789..000000000 --- a/ckanext/ckanext-sixodp_scheming/LICENSE +++ /dev/null @@ -1,661 +0,0 @@ -GNU AFFERO GENERAL PUBLIC LICENSE - Version 3, 19 November 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU Affero General Public License is a free, copyleft license for -software and other kinds of works, specifically designed to ensure -cooperation with the community in the case of network server software. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -our General Public Licenses are intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - Developers that use our General Public Licenses protect your rights -with two steps: (1) assert copyright on the software, and (2) offer -you this License which gives you legal permission to copy, distribute -and/or modify the software. - - A secondary benefit of defending all users' freedom is that -improvements made in alternate versions of the program, if they -receive widespread use, become available for other developers to -incorporate. Many developers of free software are heartened and -encouraged by the resulting cooperation. However, in the case of -software used on network servers, this result may fail to come about. -The GNU General Public License permits making a modified version and -letting the public access it on a server without ever releasing its -source code to the public. - - The GNU Affero General Public License is designed specifically to -ensure that, in such cases, the modified source code becomes available -to the community. It requires the operator of a network server to -provide the source code of the modified version running there to the -users of that server. Therefore, public use of a modified version, on -a publicly accessible server, gives the public access to the source -code of the modified version. - - An older license, called the Affero General Public License and -published by Affero, was designed to accomplish similar goals. This is -a different license, not a version of the Affero GPL, but Affero has -released a new version of the Affero GPL which permits relicensing under -this license. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU Affero General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Remote Network Interaction; Use with the GNU General Public License. - - Notwithstanding any other provision of this License, if you modify the -Program, your modified version must prominently offer all users -interacting with it remotely through a computer network (if your version -supports such interaction) an opportunity to receive the Corresponding -Source of your version by providing access to the Corresponding Source -from a network server at no charge, through some standard or customary -means of facilitating copying of software. This Corresponding Source -shall include the Corresponding Source for any work covered by version 3 -of the GNU General Public License that is incorporated pursuant to the -following paragraph. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the work with which it is combined will remain governed by version -3 of the GNU General Public License. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU Affero General Public License from time to time. Such new versions -will be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU Affero General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU Affero General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU Affero General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License as published - by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Affero General Public License for more details. - - You should have received a copy of the GNU Affero General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - - If your software can interact with users remotely through a computer -network, you should also make sure that it provides a way for users to -get its source. For example, if your program is a web application, its -interface could display a "Source" link that leads users to an archive -of the code. There are many ways you could offer source, and different -solutions will be better for different programs; see section 13 for the -specific requirements. - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU AGPL, see -. \ No newline at end of file diff --git a/ckanext/ckanext-sixodp_scheming/MANIFEST.in b/ckanext/ckanext-sixodp_scheming/MANIFEST.in deleted file mode 100644 index 7a32fac04..000000000 --- a/ckanext/ckanext-sixodp_scheming/MANIFEST.in +++ /dev/null @@ -1,4 +0,0 @@ -include README.rst -include ckanext/sixodp_scheming/presets.json -recursive-include ckanext/sixodp_scheming/schemas *.json -recursive-include ckanext/sixodp_scheming/licenses *.json diff --git a/ckanext/ckanext-sixodp_scheming/README.rst b/ckanext/ckanext-sixodp_scheming/README.rst deleted file mode 100644 index 424adffd7..000000000 --- a/ckanext/ckanext-sixodp_scheming/README.rst +++ /dev/null @@ -1,3 +0,0 @@ -============= -ckanext-sixodp_scheming -============= diff --git a/ckanext/ckanext-sixodp_scheming/bin/travis-build.bash b/ckanext/ckanext-sixodp_scheming/bin/travis-build.bash deleted file mode 100644 index aaa9f57fd..000000000 --- a/ckanext/ckanext-sixodp_scheming/bin/travis-build.bash +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/bash -set -e - -echo "This is travis-build.bash..." - -echo "Installing the packages that CKAN requires..." -sudo apt-get update -qq -sudo apt-get install postgresql-$PGVERSION solr-jetty libcommons-fileupload-java:amd64=1.2.2-1 - -echo "Installing CKAN and its Python dependencies..." -git clone https://github.com/ckan/ckan -cd ckan -git checkout release-v2.2 -python setup.py develop -pip install -r requirements.txt --allow-all-external -pip install -r dev-requirements.txt --allow-all-external -cd - - -echo "Creating the PostgreSQL user and database..." -sudo -u postgres psql -c "CREATE USER ckan_default WITH PASSWORD 'pass';" -sudo -u postgres psql -c 'CREATE DATABASE ckan_test WITH OWNER ckan_default;' - -echo "Initialising the database..." -cd ckan -paster db init -c test-core.ini -cd - - -echo "Installing ckanext-sixodp_scheming and its requirements..." -python setup.py develop -pip install -r dev-requirements.txt - -echo "Moving test.ini into a subdir..." -mkdir subdir -mv test.ini subdir - -echo "travis-build.bash is done." \ No newline at end of file diff --git a/ckanext/ckanext-sixodp_scheming/bin/travis-run.sh b/ckanext/ckanext-sixodp_scheming/bin/travis-run.sh deleted file mode 100644 index 9f9f16040..000000000 --- a/ckanext/ckanext-sixodp_scheming/bin/travis-run.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh -e - -echo "NO_START=0\nJETTY_HOST=127.0.0.1\nJETTY_PORT=8983\nJAVA_HOME=$JAVA_HOME" | sudo tee /etc/default/jetty -sudo cp ckan/ckan/config/solr/schema.xml /etc/solr/conf/schema.xml -sudo service jetty restart -nosetests --nologcapture --with-pylons=subdir/test.ini --with-coverage --cover-package=ckanext.sixodp_scheming --cover-inclusive --cover-erase --cover-tests \ No newline at end of file diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/__init__.py b/ckanext/ckanext-sixodp_scheming/ckanext/__init__.py deleted file mode 100644 index 2e2033b3c..000000000 --- a/ckanext/ckanext-sixodp_scheming/ckanext/__init__.py +++ /dev/null @@ -1,7 +0,0 @@ -# this is a namespace package -try: - import pkg_resources - pkg_resources.declare_namespace(__name__) -except ImportError: - import pkgutil - __path__ = pkgutil.extend_path(__path__, __name__) diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/__init__.py b/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/fanstatic/.gitignore b/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/fanstatic/.gitignore deleted file mode 100644 index e69de29bb..000000000 diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/fanstatic/javascript/form.js b/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/fanstatic/javascript/form.js deleted file mode 100644 index 619e2c7de..000000000 --- a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/fanstatic/javascript/form.js +++ /dev/null @@ -1,49 +0,0 @@ -$(document).ready(function(){ - /* Create an add link for all the multiple-values child div elements. The add link clones the input container. */ - $('.multiple-values').each(function() { - var listContainer = $(this); - // Loop through all the children divs inside multiple-values - listContainer.children('div').each(function(valueIndex) { - if (valueIndex == 0) { - // We are adding the 'add link' only to the first child - var addLink = $(''); - var inputContainer = $(this); - inputContainer.append(addLink); - - addLink.click(function() { - // Clone the input container div which contains the input field - var clonedInputContainer = inputContainer.clone(); - // Clear the input field's value and remove the id - clonedInputContainer.find('> input').val("").removeAttr('id'); - // Remove the 'add link' button from the input container - clonedInputContainer.find('> a').remove(); - // Append the cloned input container after the last element - listContainer.append(clonedInputContainer); - // Add the 'remove link' to the cloned input container - createRemoveLink(clonedInputContainer); - return false; - }); - } else { - // We are adding the remove link to all the other children - createRemoveLink($(this)); - } - }); - }); - -}); - -function createRemoveLink(inputContainer) { - // The remove link with the icon - var removeLink = $(''); - // Add an event listener for removing the input field container - removeLink.click(function() { - // Remove the value inside the container's input field - inputContainer.find('> input').val(""); - // Remove the container - inputContainer.remove(); - return false; - }); - // Append the remove link to the input container - inputContainer.append(removeLink); - return removeLink; -} \ No newline at end of file diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/fanstatic/styles/form.css b/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/fanstatic/styles/form.css deleted file mode 100644 index becd7fae7..000000000 --- a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/fanstatic/styles/form.css +++ /dev/null @@ -1,22 +0,0 @@ -.multiple-values > div { - overflow: hidden; - margin-bottom: 15px; -} - -.multiple-values > div input{ - float: left; -} -.multiple-values > div a{ - margin-top: 3px; - margin-left: 3px; - float: left; -} - -.multiple-values > diva:hover, .multiple-values > div a:focus { - text-decoration: none; -} - - -.ytp-multiple-values > div:last-child { - margin-bottom: 0; -} diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/helpers.py b/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/helpers.py deleted file mode 100644 index 799c75fdf..000000000 --- a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/helpers.py +++ /dev/null @@ -1,152 +0,0 @@ -from ckan.plugins import toolkit -from ckan.lib.i18n import get_lang -import ckan.lib.i18n as i18n -from ckan.common import config, c -import ckan.logic as logic -import ckan.lib.base as base -import ckan.model as model -from ckan.model.package import Package -from ckan.lib.dictization.model_dictize import group_list_dictize - -import logging -get_action = toolkit.get_action -NotFound = logic.NotFound -abort = base.abort - -log = logging.getLogger(__name__) - -def call_toolkit_function(fn, args, kwargs): - return getattr(toolkit,fn)(*args, **kwargs) - - -def add_locale_to_source(kwargs, locale): - copy = kwargs.copy() - source = copy.get('data-module-source', None) - if source: - copy.update({'data-module-source': source + '_' + locale}) - return copy - return copy - -def get_current_lang(): - return get_lang() - - -def scheming_field_only_default_required(field, lang): - - if field and field.get('only_default_lang_required') and lang == config.get('ckan.locale_default', 'en'): - return True - - return False - -def get_current_date(): - import datetime - return datetime.date.today().strftime("%d.%m.%Y") - -def get_package_groups_by_type(package_id, group_type): - context = {'model': model, 'session': model.Session, - 'for_view': True, 'use_cache': False} - - group_list = [] - - data_dict = { - 'all_fields': True, - 'include_extras': True, - 'type': group_type - } - - groups = logic.get_action('group_list')(context, data_dict) - - try: - pkg_obj = Package.get(package_id) - pkg_group_ids = set(group['id'] for group in group_list_dictize(pkg_obj.get_groups(group_type, None), context)) - group_list = [group - for group in groups if - group['id'] in pkg_group_ids] - except (NotFound): - abort(404, _('Dataset not found')) - - return group_list - -_LOCALE_ALIASES = {'en_GB': 'en'} - -def get_lang_prefix(): - language = i18n.get_lang() - if language in _LOCALE_ALIASES: - language = _LOCALE_ALIASES[language] - - return language - -def get_translated_or_default_locale(data_dict, field): - language = i18n.get_lang() - if language in _LOCALE_ALIASES: - language = _LOCALE_ALIASES[language] - - try: - value = data_dict[field+'_translated'][language] - if value: - return value - else: - return data_dict[field+'_translated'][config.get('ckan.locale_default', 'en')] - except KeyError: - return data_dict.get(field, '') - - -def show_qa(): - - from ckan.plugins import plugin_loaded - - if plugin_loaded('qa'): - return True - - return False - - -def scheming_category_list(args): - from ckan.logic import NotFound - # FIXME: sometimes this might return 0 categories if in development - - try: - context = {'model': model, 'session': model.Session, 'ignore_auth': True} - group_ids = get_action('group_list')(context, {}) - except NotFound: - return None - else: - category_list = [] - - # filter groups to those user is allowed to edit - group_authz = get_action('group_list_authz')({ - 'model': model, 'session': model.Session, 'user': c.user - }, {}) - - user_group_ids = set(group[u'name'] for group in group_authz) - group_ids = [group for group in group_ids if group in user_group_ids] - - for group in group_ids: - try: - context = {'model': model, 'session': model.Session, 'ignore_auth': True} - group_details = get_action('group_show')(context, {'id': group}) - except Exception as e: - log.error(e) - return None - - category_list.append({ - "value": group, - "label": group_details.get('title') - }) - - return category_list - - -def check_group_selected(val, data): - log.info(val) - log.info(data) - - if filter(lambda x: x['name'] == val, data): - return True - return False - - -def get_field_from_schema(schema, field_name): - - field = next(field for field in schema.get('dataset_fields', []) if field.get('field_name') == field_name) - return field diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/i18n/ckanext-sixodp_scheming.pot b/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/i18n/ckanext-sixodp_scheming.pot deleted file mode 100644 index d6faa67e3..000000000 --- a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/i18n/ckanext-sixodp_scheming.pot +++ /dev/null @@ -1,526 +0,0 @@ -# Translations template for ckanext-sixodp_scheming. -# Copyright (C) 2020 ORGANIZATION -# This file is distributed under the same license as the ckanext-sixodp_scheming -# project. -# FIRST AUTHOR , 2020. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: ckanext-sixodp_scheming 0.0.1\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2020-09-11 11:34+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.3.4\n" - -#: ckanext/sixodp_scheming/helpers.py:66 -msgid "Dataset not found" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:4 -msgid "Title" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:5 -msgid "eg. A descriptive title for the dataset" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:6 -msgid "" -"A short and descriptive title for the dataset in multiple languages. Try not " -"to use dates when naming a dataset, since data from multiple years will " -"usually be published as multiple resources in one dataset." -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:8 -#: ckanext/sixodp_scheming/translations.py:80 -msgid "URL" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:9 -msgid "" -"An URL-address which refers to the dataset. The automatically filled option " -"derived from the title is the best option in most cases." -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:11 -msgid "Tags" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:12 -msgid "E.g. transport, housing, buildings" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:13 -msgid "" -"Descriptive keywords or tags through which users are able to find this " -"dataset easily through the search. The input will suggest existing keywords " -"in the portal. New keywords should utilize ontologies such as the generic " -"finnish ontology YSO: finto.fi/yso/fi." -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:15 -msgid "Geographical Coverage" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:16 -msgid "eg. tampere" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:17 -msgid "Select the municipalities from which the dataset contains data." -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:19 -#: ckanext/sixodp_scheming/translations.py:89 -msgid "Description" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:20 -msgid "E.g. A diverse and detailed description" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:21 -msgid "eg. A detailed description" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:22 -msgid "" -"An universal and easy to understand, but also diverse description of the " -"added dataset. Describe the dataset creation process, use case and possible " -"limitations and shortcomings as well as possible." -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:24 -msgid "Links to additional information concerning the dataset" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:25 -msgid "" -"You may attach external websites or other documentation which could assist in" -" interpreting the dataset." -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:27 -msgid "Organization" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:28 -msgid "The organization which owns the dataset." -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:185 -#: ckanext/sixodp_scheming/translations.py:30 -msgid "Source" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:31 -msgid "http://example.com/dataset.json" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:32 -msgid "" -"The original author of the dataset. Can also be an external author such as " -"Statistics Finland. The field can e.g. be used to describe a situation where " -"the dataset is published by a single unit but it has multiple authors." -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:34 -msgid "Maintainer" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:35 -msgid "Joe Bloggs" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:36 -msgid "" -"The technical maintainer for the dataset. Can in practice be the maintaining " -"unit, bureau or as an exception a single employee." -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:38 -msgid "Maintainer Email" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:39 -msgid "Maintainer email address" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:40 -msgid "" -"The email address for the maintaining party for the dataset. Use a mailing " -"list or other similar means to direct the message to multiple recipients." -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:42 -msgid "Maintainer Website" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:43 -msgid "http://www.example.com" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/form_snippets/private.html:2 -#: ckanext/sixodp_scheming/translations.py:45 -msgid "Visibility" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:46 -msgid "" -"Private datasets will only be seen by the logged in users of the dataset's " -"organization. The private status is used when preparing a new dataset for " -"publication." -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:48 -msgid "Published" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:49 -msgid "The resource publication date." -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:50 -msgid "The dataset publication date." -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:52 -msgid "Updated" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:53 -msgid "The resource update date." -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:54 -msgid "" -"A manually maintained date which can be used to notify when the dataset has " -"been updated." -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:56 -msgid "Update Frequency" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:57 -msgid "eg. every second week" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:58 -msgid "" -"The supposed update frequency for the dataset. The field will suggest similar" -" values used in other datasets such as yearly, monthly or realtime. A new " -"value can also be created if required." -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:177 -#: ckanext/sixodp_scheming/translations.py:60 -msgid "License" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:62 -msgid "Reminder date" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:63 -msgid "" -"A date when a reminder email will be sent to the system administrator " -"reminding to check this dataset e.g. for a yearly update." -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:65 -msgid "Global ID" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:66 -msgid "A global id can be assigned to identify the dataset in external services." -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:68 -msgid "Search Synonyms" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:69 -msgid "" -"Keywords can be provided here to improve the findability of the dataset. E.g." -" words from spoken language can be provided to make the dataset searchable by" -" those words." -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:71 -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 "" - -#: ckanext/sixodp_scheming/translations.py:77 -msgid "Name" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:78 -msgid "A short and descriptive name for the resource." -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:81 -msgid "A file or url which describes the location of the desired resource file." -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:34 -#: ckanext/sixodp_scheming/translations.py:83 -msgid "Size" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:84 -msgid "" -"Size of the added resouce file in bytes. Will be automatically filled when " -"the file is uploaded." -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:27 -#: ckanext/sixodp_scheming/translations.py:86 -msgid "Format" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:87 -msgid "File format of the selected resource." -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:90 -msgid "" -"An universal, compact and easy to understand description of the added " -"resource." -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:92 -msgid "Position coordinates" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:93 -msgid "" -"Coordinates which describe the area which the added resource is associated " -"with." -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:95 -msgid "Time series start" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:96 -msgid "A moment in time after which the data is relevant." -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:98 -msgid "Time series end" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:99 -msgid "A moment in time after which the data is no longer relevant." -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:101 -msgid "Time Series Precision" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:102 -msgid "eg. 2 weeks" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:103 -msgid "A string which describes the precision of the entered time series." -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:106 -msgid "Creative Commons Attribution 4.0" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:107 -msgid "https://creativecommons.org/licenses/by/4.0/" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:109 -msgid "CC0 1.0" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:110 -msgid "https://creativecommons.org/publicdomain/zero/1.0/" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:112 -msgid "Other (Open)" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:114 -msgid "Parent" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:115 -msgid "None - top level" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:116 -msgid "Icon URL" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:117 -msgid "My Group" -msgstr "" - -#: ckanext/sixodp_scheming/validators.py:59 -msgid "Missing value" -msgstr "" - -#: ckanext/sixodp_scheming/validators.py:154 -msgid "expecting list of strings" -msgstr "" - -#: ckanext/sixodp_scheming/validators.py:160 -#, python-format -msgid "invalid type for repeating text: %r" -msgstr "" - -#: ckanext/sixodp_scheming/validators.py:167 -#, python-format -msgid "invalid encoding for \"%s\" value" -msgstr "" - -#: ckanext/sixodp_scheming/validators.py:229 -msgid "Failed to decode JSON string" -msgstr "" - -#: ckanext/sixodp_scheming/validators.py:232 -msgid "Invalid encoding for JSON string" -msgstr "" - -#: ckanext/sixodp_scheming/validators.py:235 -msgid "expecting JSON object" -msgstr "" - -#: ckanext/sixodp_scheming/validators.py:241 -#: ckanext/sixodp_scheming/validators.py:248 -#, python-format -msgid "Required language \"%s\" missing" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/form_snippets/organization_ex.html:26 -msgid "No organization" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/form_snippets/private.html:5 -msgid "Private" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/form_snippets/private.html:5 -msgid "Public" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/form_snippets/state.html:3 -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:171 -msgid "State" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/form_snippets/state.html:6 -msgid "Active" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/form_snippets/state.html:7 -msgid "Deleted" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/form_snippets/ytp_multiple_checkbox.html:18 -#, python-format -msgid "" -" Categories can be edited from here. " -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/macros/form.html:35 -#, python-format -msgid "" -"You can use Markdown formatting here" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/read.html:18 -msgid "Show more" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/read.html:19 -msgid "Show less" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:5 -msgid "Additional Information" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:9 -msgid "Metadata API" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:16 -msgid "Field" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:17 -msgid "Value" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:28 -msgid "unknown" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:38 -msgid "GB" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:40 -msgid "MB" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:114 -msgid "Groups" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:129 -msgid "Collections" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:183 -msgid "How to reference" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:190 -msgid "" -"The maintainer of the dataset is {maintainer} and the original author is " -"{author}" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:193 -msgid "The maintainer of the dataset is {maintainer}" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:196 -msgid "The dataset has been downloaded from" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:196 -msgid "service on {date}" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:199 -msgid "using the license" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:201 -msgid "The license can be found on the maintainer's service" -msgstr "" - diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/i18n/en_GB/LC_MESSAGES/ckanext-sixodp_scheming.mo b/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/i18n/en_GB/LC_MESSAGES/ckanext-sixodp_scheming.mo deleted file mode 100644 index ffb6dd87c..000000000 Binary files a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/i18n/en_GB/LC_MESSAGES/ckanext-sixodp_scheming.mo and /dev/null differ diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/i18n/en_GB/LC_MESSAGES/ckanext-sixodp_scheming.po b/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/i18n/en_GB/LC_MESSAGES/ckanext-sixodp_scheming.po deleted file mode 100644 index 809a06615..000000000 --- a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/i18n/en_GB/LC_MESSAGES/ckanext-sixodp_scheming.po +++ /dev/null @@ -1,573 +0,0 @@ -# Translations template for ckanext-sixodp_scheming. -# Copyright (C) 2019 ORGANIZATION -# This file is distributed under the same license as the ckanext-sixodp_scheming -# project. -# FIRST AUTHOR , 2019. -# -# Translators: -# Juha Härkönen , 2017 -# Hami Kekkonen , 2019 -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: ckanext-sixodp_scheming 0.0.1\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-11-26 11:41+0000\n" -"PO-Revision-Date: 2017-02-23 10:24+0000\n" -"Last-Translator: Hami Kekkonen , 2019\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/6aika-dataportal/teams/68018/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" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ckanext/sixodp_scheming/helpers.py:66 -msgid "Dataset not found" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:4 -msgid "Title" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:5 -msgid "eg. A descriptive title for the dataset" -msgstr "A descriptive title for the dataset" - -#: ckanext/sixodp_scheming/translations.py:6 -msgid "" -"A short and descriptive title for the dataset in multiple languages. Try not" -" to use dates when naming a dataset, since data from multiple years will " -"usually be published as multiple resources in one dataset." -msgstr "" -"A short and concise name for the data. Do not use years, but publish the " -"data of different years in the same dataset as separate resources. Also " -"mention the city / region that the material refers to in the name as the " -"information is transferred e.g. in the national data portal." - -#: ckanext/sixodp_scheming/translations.py:8 -#: ckanext/sixodp_scheming/translations.py:80 -msgid "URL" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:9 -msgid "" -"An URL-address which refers to the dataset. The automatically filled option " -"derived from the title is the best option in most cases." -msgstr "" -"An URL address which refers to the dataset. The automatically filled option " -"derived from the title is the best option in most cases." - -#: ckanext/sixodp_scheming/translations.py:11 -msgid "Tags" -msgstr "Tags" - -#: ckanext/sixodp_scheming/translations.py:12 -msgid "E.g. transport, housing, buildings" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:13 -msgid "" -"Descriptive keywords or tags through which users are able to find this " -"dataset easily through the search. The input will suggest existing keywords " -"in the portal. New keywords should utilize ontologies such as the generic " -"finnish ontology YSO: finto.fi/yso/fi." -msgstr "" -"Keywords or tags that help users find data from the search page and through " -"material with the same keywords. In the keywords, you might want to use the " -"Finto YSO vocabulary . The computable words are in" -" plural (e.g. schools); others in singular (e.g. training)." - -#: ckanext/sixodp_scheming/translations.py:15 -msgid "Geographical Coverage" -msgstr "Geographical coverage" - -#: ckanext/sixodp_scheming/translations.py:16 -msgid "eg. tampere" -msgstr "e.g. a city's name" - -#: ckanext/sixodp_scheming/translations.py:17 -msgid "Select the municipalities from which the dataset contains data." -msgstr "" -"Select the municipalities or other areas from which the dataset contains " -"data." - -#: ckanext/sixodp_scheming/translations.py:19 -#: ckanext/sixodp_scheming/translations.py:89 -msgid "Description" -msgstr "Description" - -#: ckanext/sixodp_scheming/translations.py:20 -msgid "E.g. A diverse and detailed description" -msgstr "A diverse and detailed description" - -#: ckanext/sixodp_scheming/translations.py:21 -msgid "eg. A detailed description" -msgstr "A detailed description of the resource" - -#: ckanext/sixodp_scheming/translations.py:22 -msgid "" -"An universal and easy to understand, but also diverse description of the " -"added dataset. Describe the dataset creation process, use case and possible " -"limitations and shortcomings as well as possible." -msgstr "" -"An universal and easy to understand, but also diverse description of the " -"dataset. Describe the dataset creation process, use case and possible " -"limitations and shortcomings as well as possible." - -#: ckanext/sixodp_scheming/translations.py:24 -msgid "Links to additional information concerning the dataset" -msgstr "More information" - -#: ckanext/sixodp_scheming/translations.py:25 -msgid "" -"You may attach external websites or other documentation which could assist " -"in interpreting the dataset." -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:27 -msgid "Organization" -msgstr "Organisation" - -#: ckanext/sixodp_scheming/translations.py:28 -msgid "The organization which owns the dataset." -msgstr "The organisation which owns the dataset." - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:185 -#: ckanext/sixodp_scheming/translations.py:30 -msgid "Source" -msgstr "Source" - -#: ckanext/sixodp_scheming/translations.py:31 -msgid "http://example.com/dataset.json" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:32 -msgid "" -"The original author of the dataset. Can also be an external author such as " -"Statistics Finland. The field can e.g. be used to describe a situation where" -" the dataset is published by a single unit but it has multiple authors." -msgstr "" -"The original producer of the material forming the data basis or material " -"used in the dataset. It can also be an external source to a city " -"organisation, such as Statistics Finland." - -#: ckanext/sixodp_scheming/translations.py:34 -msgid "Maintainer" -msgstr "Administrator" - -#: ckanext/sixodp_scheming/translations.py:35 -msgid "Joe Bloggs" -msgstr "Administrator's name" - -#: ckanext/sixodp_scheming/translations.py:36 -msgid "" -"The technical maintainer for the dataset. Can in practice be the maintaining" -" unit, bureau or as an exception a single employee." -msgstr "" -"Technical data administrator. Most often the same as the organisation. " - -#: ckanext/sixodp_scheming/translations.py:38 -msgid "Maintainer Email" -msgstr "Administrator's email" - -#: ckanext/sixodp_scheming/translations.py:39 -msgid "Maintainer email address" -msgstr "Administrator's email address" - -#: ckanext/sixodp_scheming/translations.py:40 -msgid "" -"The email address for the maintaining party for the dataset. Use a mailing " -"list or other similar means to direct the message to multiple recipients." -msgstr "" -"The administrator's email. Please use the organisation's general email " -"address, if it is available." - -#: ckanext/sixodp_scheming/translations.py:42 -msgid "Maintainer Website" -msgstr "Administrator's webpage" - -#: ckanext/sixodp_scheming/translations.py:43 -msgid "http://www.example.com" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/form_snippets/private.html:2 -#: ckanext/sixodp_scheming/translations.py:45 -msgid "Visibility" -msgstr "Visibility" - -#: ckanext/sixodp_scheming/translations.py:46 -msgid "" -"Private datasets will only be seen by the logged in users of the dataset's " -"organization. The private status is used when preparing a new dataset for " -"publication." -msgstr "" -"Private datasets will only be available to logged in users of the dataset " -"organisation. Public datasets will be available to all users." - -#: ckanext/sixodp_scheming/translations.py:48 -msgid "Published" -msgstr "Published" - -#: ckanext/sixodp_scheming/translations.py:49 -msgid "The resource publication date." -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:50 -msgid "The dataset publication date." -msgstr "The dataset publication date." - -#: ckanext/sixodp_scheming/translations.py:52 -msgid "Updated" -msgstr "Updated" - -#: ckanext/sixodp_scheming/translations.py:53 -msgid "The resource update date." -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:54 -msgid "" -"A manually maintained date which can be used to notify when the dataset has " -"been updated." -msgstr "The dataset update date" - -#: ckanext/sixodp_scheming/translations.py:56 -msgid "Update Frequency" -msgstr "Update frequency" - -#: ckanext/sixodp_scheming/translations.py:57 -msgid "eg. every second week" -msgstr "e.g. month" - -#: ckanext/sixodp_scheming/translations.py:58 -msgid "" -"The supposed update frequency for the dataset. The field will suggest " -"similar values used in other datasets such as yearly, monthly or realtime. A" -" new value can also be created if required." -msgstr "" -"A brief description of the data update interval. E.g. day / week / month / " -"year. " - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:177 -#: ckanext/sixodp_scheming/translations.py:60 -msgid "License" -msgstr "Licence" - -#: ckanext/sixodp_scheming/translations.py:62 -msgid "Reminder date" -msgstr "Update reminder date" - -#: ckanext/sixodp_scheming/translations.py:63 -msgid "" -"A date when a reminder email will be sent to the system administrator " -"reminding to check this dataset e.g. for a yearly update." -msgstr "" -"The date when a reminder message is sent to the dataportal admin. It is " -"possible to change the administrator's e-mail address from the CKAN " -"administrator's settings." - -#: ckanext/sixodp_scheming/translations.py:65 -msgid "Global ID" -msgstr "Global ID" - -#: ckanext/sixodp_scheming/translations.py:66 -msgid "" -"A global id can be assigned to identify the dataset in external services." -msgstr "" -"An unique identifyier of dataset. It is especially needed when the data is " -"copied to other data portals (e.g. avoindata.fi)." - -#: ckanext/sixodp_scheming/translations.py:68 -msgid "Search Synonyms" -msgstr "" -"Synonyms to make the search more effective (e.g. preschool -> day care, " -"kindergarten)." - -#: ckanext/sixodp_scheming/translations.py:69 -msgid "" -"Keywords can be provided here to improve the findability of the dataset. " -"E.g. words from spoken language can be provided to make the dataset " -"searchable by those words." -msgstr "" -"Search synonyms can be provided here to improve the findability of the " -"dataset. E.g. words from spoken language can be provided to make the dataset" -" searchable by those words." - -#: ckanext/sixodp_scheming/translations.py:71 -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 license you have chosen only applies to the data (resources) you add to " -"this dataset." - -#: ckanext/sixodp_scheming/translations.py:77 -msgid "Name" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:78 -msgid "A short and descriptive name for the resource." -msgstr "Short and descriptive name for a resource" - -#: ckanext/sixodp_scheming/translations.py:81 -msgid "" -"A file or url which describes the location of the desired resource file." -msgstr "A file or url to resource file." - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:34 -#: ckanext/sixodp_scheming/translations.py:83 -msgid "Size" -msgstr "Size" - -#: ckanext/sixodp_scheming/translations.py:84 -msgid "" -"Size of the added resouce file in bytes. Will be automatically filled when " -"the file is uploaded." -msgstr "File size in bytes." - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:27 -#: ckanext/sixodp_scheming/translations.py:86 -msgid "Format" -msgstr "Format" - -#: ckanext/sixodp_scheming/translations.py:87 -msgid "File format of the selected resource." -msgstr "Resource file format" - -#: ckanext/sixodp_scheming/translations.py:90 -msgid "" -"An universal, compact and easy to understand description of the added " -"resource." -msgstr "A generic, concise and easy-to-understand description of a resource." - -#: ckanext/sixodp_scheming/translations.py:92 -msgid "Position coordinates" -msgstr "Coordinate system" - -#: ckanext/sixodp_scheming/translations.py:93 -msgid "" -"Coordinates which describe the area which the added resource is associated " -"with." -msgstr "" -"Coordinate system used in dataset. Only for GIS datasets. E.g. ETRS-GK25." - -#: ckanext/sixodp_scheming/translations.py:95 -msgid "Time series start" -msgstr "Time series starts" - -#: ckanext/sixodp_scheming/translations.py:96 -msgid "A moment in time after which the data is relevant." -msgstr "Starting date for a time series " - -#: ckanext/sixodp_scheming/translations.py:98 -msgid "Time series end" -msgstr "Time series ends" - -#: ckanext/sixodp_scheming/translations.py:99 -msgid "A moment in time after which the data is no longer relevant." -msgstr "Ending date for a time series" - -#: ckanext/sixodp_scheming/translations.py:101 -msgid "Time Series Precision" -msgstr "Time series accuracy " - -#: ckanext/sixodp_scheming/translations.py:102 -msgid "eg. 2 weeks" -msgstr "e.g. month / year" - -#: ckanext/sixodp_scheming/translations.py:103 -msgid "A string which describes the precision of the entered time series." -msgstr "Update interval for a time series" - -#: ckanext/sixodp_scheming/translations.py:106 -msgid "Creative Commons Attribution 4.0" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:107 -msgid "https://creativecommons.org/licenses/by/4.0/" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:109 -msgid "CC0 1.0" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:110 -msgid "https://creativecommons.org/publicdomain/zero/1.0/" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:112 -msgid "Other (Open)" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:114 -msgid "Parent" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:115 -msgid "None - top level" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:116 -msgid "Icon URL" -msgstr "Icon" - -#: ckanext/sixodp_scheming/translations.py:117 -msgid "My Group" -msgstr "Name of category" - -#: ckanext/sixodp_scheming/validators.py:59 -msgid "Missing value" -msgstr "" - -#: ckanext/sixodp_scheming/validators.py:154 -msgid "expecting list of strings" -msgstr "" - -#: ckanext/sixodp_scheming/validators.py:160 -#, python-format -msgid "invalid type for repeating text: %r" -msgstr "" - -#: ckanext/sixodp_scheming/validators.py:167 -#, python-format -msgid "invalid encoding for \"%s\" value" -msgstr "" - -#: ckanext/sixodp_scheming/validators.py:229 -msgid "Failed to decode JSON string" -msgstr "" - -#: ckanext/sixodp_scheming/validators.py:232 -msgid "Invalid encoding for JSON string" -msgstr "" - -#: ckanext/sixodp_scheming/validators.py:235 -msgid "expecting JSON object" -msgstr "" - -#: ckanext/sixodp_scheming/validators.py:241 -#: ckanext/sixodp_scheming/validators.py:248 -#, python-format -msgid "Required language \"%s\" missing" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/form_snippets/organization_ex.html:26 -msgid "No organization" -msgstr "No organisation" - -#: ckanext/sixodp_scheming/templates/scheming/form_snippets/private.html:5 -msgid "Private" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/form_snippets/private.html:5 -msgid "Public" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/form_snippets/state.html:3 -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:171 -msgid "State" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/form_snippets/state.html:6 -msgid "Active" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/form_snippets/state.html:7 -msgid "Deleted" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/form_snippets/ytp_multiple_checkbox.html:18 -#, python-format -msgid "" -" Categories can be edited from here. " -msgstr "" -"Categories can be edited here." - -#: ckanext/sixodp_scheming/templates/scheming/macros/form.html:35 -#, python-format -msgid "" -"You can use Markdown formatting here" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/read.html:18 -msgid "Show more" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/read.html:19 -msgid "Show less" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:5 -msgid "Additional Information" -msgstr "Additional information" - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:9 -msgid "Metadata API" -msgstr "Metadata API" - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:16 -msgid "Field" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:17 -msgid "Value" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:28 -msgid "unknown" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:38 -msgid "GB" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:40 -msgid "MB" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:114 -msgid "Groups" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:129 -msgid "Collections" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:183 -msgid "How to reference" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:190 -msgid "" -"The maintainer of the dataset is {maintainer} and the original author is " -"{author}" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:193 -msgid "The maintainer of the dataset is {maintainer}" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:196 -msgid "The dataset has been downloaded from" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:196 -msgid "service on {date}" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:199 -msgid "using the license" -msgstr "under the license" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:201 -msgid "The license can be found on the maintainer's service" -msgstr "" diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/i18n/fi/LC_MESSAGES/ckanext-sixodp_scheming.mo b/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/i18n/fi/LC_MESSAGES/ckanext-sixodp_scheming.mo deleted file mode 100644 index bca3e92d2..000000000 Binary files a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/i18n/fi/LC_MESSAGES/ckanext-sixodp_scheming.mo and /dev/null differ diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/i18n/fi/LC_MESSAGES/ckanext-sixodp_scheming.po b/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/i18n/fi/LC_MESSAGES/ckanext-sixodp_scheming.po deleted file mode 100644 index 7a61ee6d2..000000000 --- a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/i18n/fi/LC_MESSAGES/ckanext-sixodp_scheming.po +++ /dev/null @@ -1,602 +0,0 @@ -# Translations template for ckanext-sixodp_scheming. -# Copyright (C) 2019 ORGANIZATION -# This file is distributed under the same license as the ckanext-sixodp_scheming -# project. -# FIRST AUTHOR , 2019. -# -# Translators: -# Mikko Nieminen , 2018 -# Zharktas , 2019 -# Hami Kekkonen , 2019 -# Joonas Dukpa, 2019 -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: ckanext-sixodp_scheming 0.0.1\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-11-26 11:41+0000\n" -"PO-Revision-Date: 2017-02-23 10:24+0000\n" -"Last-Translator: Joonas Dukpa, 2019\n" -"Language-Team: Finnish (https://www.transifex.com/6aika-dataportal/teams/68018/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" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ckanext/sixodp_scheming/helpers.py:66 -msgid "Dataset not found" -msgstr "Tietoaineistoa ei löytynyt" - -#: ckanext/sixodp_scheming/translations.py:4 -msgid "Title" -msgstr "Nimi" - -#: ckanext/sixodp_scheming/translations.py:5 -msgid "eg. A descriptive title for the dataset" -msgstr "Aineistoa kuvaava nimi" - -#: ckanext/sixodp_scheming/translations.py:6 -msgid "" -"A short and descriptive title for the dataset in multiple languages. Try not" -" to use dates when naming a dataset, since data from multiple years will " -"usually be published as multiple resources in one dataset." -msgstr "" -"Lyhyt ja ytimekäs nimi tietoaineistolle eri kielillä. Eri vuosien tiedot " -"julkaistaan yleensä erillisinä resursseina yhden tietoaineiston alla, joten " -"otsikossa ei useimmiten kannata käyttää vuosilukuja." - -#: ckanext/sixodp_scheming/translations.py:8 -#: ckanext/sixodp_scheming/translations.py:80 -msgid "URL" -msgstr "URL" - -#: ckanext/sixodp_scheming/translations.py:9 -msgid "" -"An URL-address which refers to the dataset. The automatically filled option " -"derived from the title is the best option in most cases." -msgstr "" -"Datan uniikki nimi, joka tulee ko. datasivun URL-osoitteen loppuun. " -"Otsikosta johdettu oletusnimi on yleensä paras vaihtoehto." - -#: ckanext/sixodp_scheming/translations.py:11 -msgid "Tags" -msgstr "Avainsanat" - -#: ckanext/sixodp_scheming/translations.py:12 -msgid "E.g. transport, housing, buildings" -msgstr "Esim. liikenne, asuminen, rakennukset" - -#: ckanext/sixodp_scheming/translations.py:13 -msgid "" -"Descriptive keywords or tags through which users are able to find this " -"dataset easily through the search. The input will suggest existing keywords " -"in the portal. New keywords should utilize ontologies such as the generic " -"finnish ontology YSO: finto.fi/yso/fi." -msgstr "" -"Aineistoa kuvaavat avainsanat, joiden avulla datan hakijat löytävät " -"tietoaineiston helpommin. Kenttä hakee dataportaalin olemassa olevia " -"avainsanoja kun kenttään alkaa kirjoittamaan. Voit kuitenkin syöttää " -"tarvittaessa myös uuden avainsanan. Uusien avainsanojen olisi hyvä hyödyntää" -" ontologioita, kuten " -"yleinen suomalainen ontologia YSO. " - -#: ckanext/sixodp_scheming/translations.py:15 -msgid "Geographical Coverage" -msgstr "Alueet" - -#: ckanext/sixodp_scheming/translations.py:16 -msgid "eg. tampere" -msgstr "esim. kunnan nimi" - -#: ckanext/sixodp_scheming/translations.py:17 -msgid "Select the municipalities from which the dataset contains data." -msgstr "Valitse, mistä kunnista tai alueista tietoaineisto sisältää tietoa." - -#: ckanext/sixodp_scheming/translations.py:19 -#: ckanext/sixodp_scheming/translations.py:89 -msgid "Description" -msgstr "Kuvaus" - -#: ckanext/sixodp_scheming/translations.py:20 -msgid "E.g. A diverse and detailed description" -msgstr "Monipuolinen ja kattava tietoaineiston kuvaus" - -#: ckanext/sixodp_scheming/translations.py:21 -msgid "eg. A detailed description" -msgstr "" -"Kattava kuvaus resurssista (voi jättää tyhjäksi, jos sama kuin " -"tietoaineiston kuvaus)" - -#: ckanext/sixodp_scheming/translations.py:22 -msgid "" -"An universal and easy to understand, but also diverse description of the " -"added dataset. Describe the dataset creation process, use case and possible " -"limitations and shortcomings as well as possible." -msgstr "" -"Yleiskielinen helposti ymmärrettävä, mutta samalla kattava tietoaineiston " -"kuvaus. Kuvaa mahdollisimman hyvin tietoaineiston luontiprosessi, " -"käyttötarkoitus sekä myös mahdolliset rajoitteet tai puutteet aineistossa." - -#: ckanext/sixodp_scheming/translations.py:24 -msgid "Links to additional information concerning the dataset" -msgstr "Lisätietoja" - -#: ckanext/sixodp_scheming/translations.py:25 -msgid "" -"You may attach external websites or other documentation which could assist " -"in interpreting the dataset." -msgstr "" -"Voit linkittää ulkoisia verkkosivuja tai muuta dokumentaatiota, joka auttaa " -"esimerkiksi aineiston tulkinnassa." - -#: ckanext/sixodp_scheming/translations.py:27 -msgid "Organization" -msgstr "Organisaatio" - -#: ckanext/sixodp_scheming/translations.py:28 -msgid "The organization which owns the dataset." -msgstr "Tietoaineiston omistava organisaatio." - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:185 -#: ckanext/sixodp_scheming/translations.py:30 -msgid "Source" -msgstr "Lähde" - -#: ckanext/sixodp_scheming/translations.py:31 -msgid "http://example.com/dataset.json" -msgstr "Aineiston alkuperäisen tuottajan nimi" - -#: ckanext/sixodp_scheming/translations.py:32 -msgid "" -"The original author of the dataset. Can also be an external author such as " -"Statistics Finland. The field can e.g. be used to describe a situation where" -" the dataset is published by a single unit but it has multiple authors." -msgstr "" -"Aineiston tietosisällön alkuperäinen tuottaja. Voi olla myös ulkoinen lähde " -"kuten esim. Tilastokeskus. Käytetään esimerkiksi tilanteessa, jossa " -"aineiston julkaisee sen omistava yksikkö, mutta aineisto sisältää myös " -"muiden tahojen tuottamia tietoja." - -#: ckanext/sixodp_scheming/translations.py:34 -msgid "Maintainer" -msgstr "Ylläpitäjä" - -#: ckanext/sixodp_scheming/translations.py:35 -msgid "Joe Bloggs" -msgstr "Ylläpitävän tahon nimi" - -#: ckanext/sixodp_scheming/translations.py:36 -msgid "" -"The technical maintainer for the dataset. Can in practice be the maintaining" -" unit, bureau or as an exception a single employee." -msgstr "" -"Tietoaineiston tekninen ylläpitäjä. Voi olla käytännössä aineistoa " -"ylläpitävä yksikkö, virasto tai poikkeustapauksissa yksittäinen työntekijä." - -#: ckanext/sixodp_scheming/translations.py:38 -msgid "Maintainer Email" -msgstr "Ylläpitäjän sähköposti" - -#: ckanext/sixodp_scheming/translations.py:39 -msgid "Maintainer email address" -msgstr "Ylläpitäjän sähköpostiosoite" - -#: ckanext/sixodp_scheming/translations.py:40 -msgid "" -"The email address for the maintaining party for the dataset. Use a mailing " -"list or other similar means to direct the message to multiple recipients." -msgstr "" -"Aineistoa ylläpitävän tahon sähköpostiosoite. Jos mahdollista, niin " -"käytetään yksikön jakelulistaa tai muuta yleistä sähköpostiosoitetta." - -#: ckanext/sixodp_scheming/translations.py:42 -msgid "Maintainer Website" -msgstr "Ylläpitäjän verkkosivusto" - -#: ckanext/sixodp_scheming/translations.py:43 -msgid "http://www.example.com" -msgstr "http://www.example.com" - -#: ckanext/sixodp_scheming/templates/scheming/form_snippets/private.html:2 -#: ckanext/sixodp_scheming/translations.py:45 -msgid "Visibility" -msgstr "Näkyvyys" - -#: ckanext/sixodp_scheming/translations.py:46 -msgid "" -"Private datasets will only be seen by the logged in users of the dataset's " -"organization. The private status is used when preparing a new dataset for " -"publication." -msgstr "" -"Yksityiset tietoaineistot näkyvät ainoastaan tietoaineiston organisaation " -"sisäänkirjautuneille käyttäjille. Yksityinen-tilaa käytetään esim. " -"tietoaineiston julkaisua valmisteltaessa." - -#: ckanext/sixodp_scheming/translations.py:48 -msgid "Published" -msgstr "Julkaistu" - -#: ckanext/sixodp_scheming/translations.py:49 -msgid "The resource publication date." -msgstr "Resurssin julkaisupäivämäärä. Manuaalisesti ylläpidettävä." - -#: ckanext/sixodp_scheming/translations.py:50 -msgid "The dataset publication date." -msgstr "Tietoaineiston julkaisupäivämäärä. Manuaalisesti ylläpidettävä." - -#: ckanext/sixodp_scheming/translations.py:52 -msgid "Updated" -msgstr "Päivitetty" - -#: ckanext/sixodp_scheming/translations.py:53 -msgid "The resource update date." -msgstr "Resurssin päivityspäivämäärä. Manuaalisesti ylläpidettävä." - -#: ckanext/sixodp_scheming/translations.py:54 -msgid "" -"A manually maintained date which can be used to notify when the dataset has " -"been updated." -msgstr "Tietoaineiston päivityspäivämäärä. Manuaalisesti ylläpidettävä." - -#: ckanext/sixodp_scheming/translations.py:56 -msgid "Update Frequency" -msgstr "Päivitystiheys" - -#: ckanext/sixodp_scheming/translations.py:57 -msgid "eg. every second week" -msgstr "esim. viikko, kuukausi, vuosi" - -#: ckanext/sixodp_scheming/translations.py:58 -msgid "" -"The supposed update frequency for the dataset. The field will suggest " -"similar values used in other datasets such as yearly, monthly or realtime. A" -" new value can also be created if required." -msgstr "" -"Tietoaineiston oletettu päivitystiheys. Kenttä ehdottaa dataportaalin " -"olemassa olevia päivitystiheyksiä kuten \"vuosi\", \"kuukausi\", " -"\"reaaliaikainen\" tai \"päättynyt\". Voit kuitenkin tarvittaessa lisätä " -"uudenlaisen päivitystiheyden." - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:177 -#: ckanext/sixodp_scheming/translations.py:60 -msgid "License" -msgstr "Lisenssi" - -#: ckanext/sixodp_scheming/translations.py:62 -msgid "Reminder date" -msgstr "Muistutuspäivämäärä" - -#: ckanext/sixodp_scheming/translations.py:63 -msgid "" -"A date when a reminder email will be sent to the system administrator " -"reminding to check this dataset e.g. for a yearly update." -msgstr "" -"Päivämäärä, jolloin portaali lähettää automaattisen muistutussähköpostin " -"ylläpidolle. Voidaan hyödyntää muistuttamaan esim. tietoaineiston " -"vuosittaisesta päivittämisestä tai tietojen ajantasaisuuden tarkistuksesta." - -#: ckanext/sixodp_scheming/translations.py:65 -msgid "Global ID" -msgstr "Globaali ID" - -#: ckanext/sixodp_scheming/translations.py:66 -msgid "" -"A global id can be assigned to identify the dataset in external services." -msgstr "" -"Tietoaineistolle voidaan antaa globaali id, jolla tietoaineisto voidaan " -"yksilöidä ulkoisissa palveluissa kuten avoindata.fissä. Esimerkiksi " -"paikkatietoaineistoilla on usein käytössä Maanmittauslaitoksen myöntämä " -"yksilöivä tunniste. Tarvittaessa voidaan myös sopia esimerkiksi " -"dataportaalissa käytettävästä tunnisteesta jos tiedetään että sama " -"tietoaineisto on jaossa myös jonkun toisen dataportaalin kautta." - -#: ckanext/sixodp_scheming/translations.py:68 -msgid "Search Synonyms" -msgstr "Hakusanat" - -#: ckanext/sixodp_scheming/translations.py:69 -msgid "" -"Keywords can be provided here to improve the findability of the dataset. " -"E.g. words from spoken language can be provided to make the dataset " -"searchable by those words." -msgstr "" -"Kenttään voi täyttää aineiston löydettävyyttä parantavia synonyymisanoja. " -"Hakusanoihin voi lisätä esimerkiksi puhekielisiä termejä, kuten " -"joukkoliikenteen aineiston osalta hakusanan \"bussi\", jolloin haku löytää " -"aineiston myös kyseisestä sanaa haettaessa." - -#: ckanext/sixodp_scheming/translations.py:71 -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ämääsi dataa. Lähettämällä tämän lomakkeen " -"suostut julkaisemaan täyttämäsi metatiedot Creative Commons 0 " -"-lisenssin mukaisesti." - -#: ckanext/sixodp_scheming/translations.py:77 -msgid "Name" -msgstr "Nimi" - -#: ckanext/sixodp_scheming/translations.py:78 -msgid "A short and descriptive name for the resource." -msgstr "" -"Lyhyt ja kuvaava nimi resurssille eri kielillä. Saman tietoaineiston alla on" -" yleensä useampi resurssi, joten pyri käyttämään nimeä joka erottelee " -"resurssit toisistaan eikä ole pelkkää toistoa tietoaineiston nimestä." - -#: ckanext/sixodp_scheming/translations.py:81 -msgid "" -"A file or url which describes the location of the desired resource file." -msgstr "Tiedosto tai sen verkko-osoite." - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:34 -#: ckanext/sixodp_scheming/translations.py:83 -msgid "Size" -msgstr "Tiedoston koko" - -#: ckanext/sixodp_scheming/translations.py:84 -msgid "" -"Size of the added resouce file in bytes. Will be automatically filled when " -"the file is uploaded." -msgstr "Tiedoston koko tavuina." - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:27 -#: ckanext/sixodp_scheming/translations.py:86 -msgid "Format" -msgstr "Formaatti" - -#: ckanext/sixodp_scheming/translations.py:87 -msgid "File format of the selected resource." -msgstr "Tiedostoformaatti" - -#: ckanext/sixodp_scheming/translations.py:90 -msgid "" -"An universal, compact and easy to understand description of the added " -"resource." -msgstr "" -"Yleiskielinen, kattava ja helposti ymmärrettävä kuvaus resurssista. " -"Resurssin kuvauksen voi tarvittaessa myös jättää tyhjäksi, jolloin siihen " -"kopioidaan tiivistelmä tietoaineiston kuvauksesta." - -#: ckanext/sixodp_scheming/translations.py:92 -msgid "Position coordinates" -msgstr "Koordinaatisto" - -#: ckanext/sixodp_scheming/translations.py:93 -msgid "" -"Coordinates which describe the area which the added resource is associated " -"with." -msgstr "" -"Paikkatietoaineistossa käytetyn koordinaatiston nimi. Esimerkiksi “ETRS-" -"GK25”." - -#: ckanext/sixodp_scheming/translations.py:95 -msgid "Time series start" -msgstr "Aikasarja alkaa" - -#: ckanext/sixodp_scheming/translations.py:96 -msgid "A moment in time after which the data is relevant." -msgstr "Aikasarjan alkamisajankohta esim. vuosiluku tai tarkka päivämäärä." - -#: ckanext/sixodp_scheming/translations.py:98 -msgid "Time series end" -msgstr "Aikasarja päättyy" - -#: ckanext/sixodp_scheming/translations.py:99 -msgid "A moment in time after which the data is no longer relevant." -msgstr "Aikasarjan päättymisajankohta esim. vuosiluku tai tarkka päivämäärä." - -#: ckanext/sixodp_scheming/translations.py:101 -msgid "Time Series Precision" -msgstr "Aikasarjan tarkkuus" - -#: ckanext/sixodp_scheming/translations.py:102 -msgid "eg. 2 weeks" -msgstr "esim. vuorokausi, viikko tai vuosi" - -#: ckanext/sixodp_scheming/translations.py:103 -msgid "A string which describes the precision of the entered time series." -msgstr "" -"Aikasarjan tarkkuutta kuvaava avainsana kuten \"vuorokausi\", \"viikko\" tai" -" \"vuosi\". Syöttökenttä hakee dataportaalissa jo käytössä olevia " -"avainsanoja. Voit tarvittaessa myös syöttää uuden." - -#: ckanext/sixodp_scheming/translations.py:106 -msgid "Creative Commons Attribution 4.0" -msgstr "Creative Commons Nimeä 4.0" - -#: ckanext/sixodp_scheming/translations.py:107 -msgid "https://creativecommons.org/licenses/by/4.0/" -msgstr "https://creativecommons.org/licenses/by/4.0/deed.fi" - -#: ckanext/sixodp_scheming/translations.py:109 -msgid "CC0 1.0" -msgstr "CC0 1.0" - -#: ckanext/sixodp_scheming/translations.py:110 -msgid "https://creativecommons.org/publicdomain/zero/1.0/" -msgstr "https://creativecommons.org/publicdomain/zero/1.0/deed.fi" - -#: ckanext/sixodp_scheming/translations.py:112 -msgid "Other (Open)" -msgstr "Muu (avoin)" - -#: ckanext/sixodp_scheming/translations.py:114 -msgid "Parent" -msgstr "Yläorganisaatio" - -#: ckanext/sixodp_scheming/translations.py:115 -msgid "None - top level" -msgstr "Ei mitään (ylin taso)" - -#: ckanext/sixodp_scheming/translations.py:116 -msgid "Icon URL" -msgstr "Kuvake" - -#: ckanext/sixodp_scheming/translations.py:117 -msgid "My Group" -msgstr "Kategorian nimi" - -#: ckanext/sixodp_scheming/validators.py:59 -msgid "Missing value" -msgstr "Puuttuva arvo" - -#: ckanext/sixodp_scheming/validators.py:154 -msgid "expecting list of strings" -msgstr "odotetaan listaa merkkijonoja" - -#: ckanext/sixodp_scheming/validators.py:160 -#, python-format -msgid "invalid type for repeating text: %r" -msgstr "virheellinen toistuvan merkkijonon tyyppi: %r" - -#: ckanext/sixodp_scheming/validators.py:167 -#, python-format -msgid "invalid encoding for \"%s\" value" -msgstr "virheellinen koodaus arvolle \"%s\"" - -#: ckanext/sixodp_scheming/validators.py:229 -msgid "Failed to decode JSON string" -msgstr "JSON-merkkijonon purku epäonnistui" - -#: ckanext/sixodp_scheming/validators.py:232 -msgid "Invalid encoding for JSON string" -msgstr "Virheellinen JSON-merkkijonon koodaus" - -#: ckanext/sixodp_scheming/validators.py:235 -msgid "expecting JSON object" -msgstr "odotetaan JSON-objektia" - -#: ckanext/sixodp_scheming/validators.py:241 -#: ckanext/sixodp_scheming/validators.py:248 -#, python-format -msgid "Required language \"%s\" missing" -msgstr "Vaadittu kieli \"%s\" puuttuu" - -#: ckanext/sixodp_scheming/templates/scheming/form_snippets/organization_ex.html:26 -msgid "No organization" -msgstr "Ei organisaatiota" - -#: ckanext/sixodp_scheming/templates/scheming/form_snippets/private.html:5 -msgid "Private" -msgstr "Yksityinen" - -#: ckanext/sixodp_scheming/templates/scheming/form_snippets/private.html:5 -msgid "Public" -msgstr "Julkinen" - -#: ckanext/sixodp_scheming/templates/scheming/form_snippets/state.html:3 -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:171 -msgid "State" -msgstr "Tila" - -#: ckanext/sixodp_scheming/templates/scheming/form_snippets/state.html:6 -msgid "Active" -msgstr "Aktiivinen" - -#: ckanext/sixodp_scheming/templates/scheming/form_snippets/state.html:7 -msgid "Deleted" -msgstr "Poistettu" - -#: ckanext/sixodp_scheming/templates/scheming/form_snippets/ytp_multiple_checkbox.html:18 -#, python-format -msgid "" -" Categories can be edited from here. " -msgstr "" -"Kategorioita voi muokata täällä." - -#: ckanext/sixodp_scheming/templates/scheming/macros/form.html:35 -#, python-format -msgid "" -"You can use Markdown formatting here" -msgstr "" -"Voit käyttää Markdown-muotoiluja." - -#: ckanext/sixodp_scheming/templates/scheming/package/read.html:18 -msgid "Show more" -msgstr "Näytä lisää" - -#: ckanext/sixodp_scheming/templates/scheming/package/read.html:19 -msgid "Show less" -msgstr "Näytä vähemmän" - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:5 -msgid "Additional Information" -msgstr "Lisätietoja" - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:9 -msgid "Metadata API" -msgstr "Metadata API" - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:16 -msgid "Field" -msgstr "Kenttä" - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:17 -msgid "Value" -msgstr "Arvo" - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:28 -msgid "unknown" -msgstr "tuntematon" - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:38 -msgid "GB" -msgstr "Gt" - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:40 -msgid "MB" -msgstr "Mt" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:114 -msgid "Groups" -msgstr "Kategoriat" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:129 -msgid "Collections" -msgstr "Datakokoelmat" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:183 -msgid "How to reference" -msgstr "Viittaustapa" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:190 -msgid "" -"The maintainer of the dataset is {maintainer} and the original author is " -"{author}" -msgstr "Aineiston ylläpitäjä on {maintainer} ja alkuperäinen tekijä {author}" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:193 -msgid "The maintainer of the dataset is {maintainer}" -msgstr "Aineiston ylläpitäjä on {maintainer}" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:196 -msgid "The dataset has been downloaded from" -msgstr "Aineisto on ladattu" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:196 -msgid "service on {date}" -msgstr "-palvelusta {date}" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:199 -msgid "using the license" -msgstr "lisenssillä" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:201 -msgid "The license can be found on the maintainer's service" -msgstr "Lisenssi ilmoitettu ylläpitäjän palvelussa" diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/i18n/sv/LC_MESSAGES/ckanext-sixodp_scheming.mo b/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/i18n/sv/LC_MESSAGES/ckanext-sixodp_scheming.mo deleted file mode 100644 index 26999cc98..000000000 Binary files a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/i18n/sv/LC_MESSAGES/ckanext-sixodp_scheming.mo and /dev/null differ diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/i18n/sv/LC_MESSAGES/ckanext-sixodp_scheming.po b/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/i18n/sv/LC_MESSAGES/ckanext-sixodp_scheming.po deleted file mode 100644 index 08ab6ee3f..000000000 --- a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/i18n/sv/LC_MESSAGES/ckanext-sixodp_scheming.po +++ /dev/null @@ -1,564 +0,0 @@ -# Translations template for ckanext-sixodp_scheming. -# Copyright (C) 2019 ORGANIZATION -# This file is distributed under the same license as the ckanext-sixodp_scheming -# project. -# FIRST AUTHOR , 2019. -# -# Translators: -# Mikko Nieminen , 2017 -# Joonas Dukpa, 2018 -# Hami Kekkonen , 2019 -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: ckanext-sixodp_scheming 0.0.1\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-11-26 11:41+0000\n" -"PO-Revision-Date: 2017-02-23 10:24+0000\n" -"Last-Translator: Hami Kekkonen , 2019\n" -"Language-Team: Swedish (https://www.transifex.com/6aika-dataportal/teams/68018/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" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ckanext/sixodp_scheming/helpers.py:66 -msgid "Dataset not found" -msgstr "Dataset hittades inte" - -#: ckanext/sixodp_scheming/translations.py:4 -msgid "Title" -msgstr "Titel" - -#: ckanext/sixodp_scheming/translations.py:5 -msgid "eg. A descriptive title for the dataset" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:6 -msgid "" -"A short and descriptive title for the dataset in multiple languages. Try not" -" to use dates when naming a dataset, since data from multiple years will " -"usually be published as multiple resources in one dataset." -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:8 -#: ckanext/sixodp_scheming/translations.py:80 -msgid "URL" -msgstr "URL" - -#: ckanext/sixodp_scheming/translations.py:9 -msgid "" -"An URL-address which refers to the dataset. The automatically filled option " -"derived from the title is the best option in most cases." -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:11 -msgid "Tags" -msgstr "Taggar" - -#: ckanext/sixodp_scheming/translations.py:12 -msgid "E.g. transport, housing, buildings" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:13 -msgid "" -"Descriptive keywords or tags through which users are able to find this " -"dataset easily through the search. The input will suggest existing keywords " -"in the portal. New keywords should utilize ontologies such as the generic " -"finnish ontology YSO: finto.fi/yso/fi." -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:15 -msgid "Geographical Coverage" -msgstr "Områden" - -#: ckanext/sixodp_scheming/translations.py:16 -msgid "eg. tampere" -msgstr "t.ex. Tampere" - -#: ckanext/sixodp_scheming/translations.py:17 -msgid "Select the municipalities from which the dataset contains data." -msgstr "Välj från vilka områden materialet innehåller information." - -#: ckanext/sixodp_scheming/translations.py:19 -#: ckanext/sixodp_scheming/translations.py:89 -msgid "Description" -msgstr "Beskrivning" - -#: ckanext/sixodp_scheming/translations.py:20 -msgid "E.g. A diverse and detailed description" -msgstr "" -"En allmän, kompakt och lättförståelig beskrivning av data. Se exempel på " -"andra dataposter." - -#: ckanext/sixodp_scheming/translations.py:21 -msgid "eg. A detailed description" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:22 -msgid "" -"An universal and easy to understand, but also diverse description of the " -"added dataset. Describe the dataset creation process, use case and possible " -"limitations and shortcomings as well as possible." -msgstr "" -"En allmän, kompakt och lättförståelig beskrivning av data. T.ex. vad " -"materialet innehåller och hur det har beretts. Utifrån detta kan användaren " -"tolka materialet rätt." - -#: ckanext/sixodp_scheming/translations.py:24 -msgid "Links to additional information concerning the dataset" -msgstr "Länkar med ytterligare information" - -#: ckanext/sixodp_scheming/translations.py:25 -msgid "" -"You may attach external websites or other documentation which could assist " -"in interpreting the dataset." -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:27 -msgid "Organization" -msgstr "Organisation" - -#: ckanext/sixodp_scheming/translations.py:28 -msgid "The organization which owns the dataset." -msgstr "Organisation som äger data och upprätthåller dess innehåll." - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:185 -#: ckanext/sixodp_scheming/translations.py:30 -msgid "Source" -msgstr "Källa" - -#: ckanext/sixodp_scheming/translations.py:31 -msgid "http://example.com/dataset.json" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:32 -msgid "" -"The original author of the dataset. Can also be an external author such as " -"Statistics Finland. The field can e.g. be used to describe a situation where" -" the dataset is published by a single unit but it has multiple authors." -msgstr "" -"Den ursprungliga producenten av material som utgör databasen eller " -"materialet som används i datasetet.Det kan också vara en extern källa till " -"en stadsorganisation, t.ex. Statistikcentralen." - -#: ckanext/sixodp_scheming/translations.py:34 -msgid "Maintainer" -msgstr "Administratör" - -#: ckanext/sixodp_scheming/translations.py:35 -msgid "Joe Bloggs" -msgstr "t.ex. Kaupunkimittaus" - -#: ckanext/sixodp_scheming/translations.py:36 -msgid "" -"The technical maintainer for the dataset. Can in practice be the maintaining" -" unit, bureau or as an exception a single employee." -msgstr "Teknisk dataadministratör. Oftast densamma som organisationen." - -#: ckanext/sixodp_scheming/translations.py:38 -msgid "Maintainer Email" -msgstr "Administratörens e-post" - -#: ckanext/sixodp_scheming/translations.py:39 -msgid "Maintainer email address" -msgstr "Administratörens e-postadress" - -#: ckanext/sixodp_scheming/translations.py:40 -msgid "" -"The email address for the maintaining party for the dataset. Use a mailing " -"list or other similar means to direct the message to multiple recipients." -msgstr "" -"Administratörens e-postadress. Använd organisationens allmänna e-postadress " -"om den finns." - -#: ckanext/sixodp_scheming/translations.py:42 -msgid "Maintainer Website" -msgstr "Administratörens webbplats" - -#: ckanext/sixodp_scheming/translations.py:43 -msgid "http://www.example.com" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/form_snippets/private.html:2 -#: ckanext/sixodp_scheming/translations.py:45 -msgid "Visibility" -msgstr "Synlighet" - -#: ckanext/sixodp_scheming/translations.py:46 -msgid "" -"Private datasets will only be seen by the logged in users of the dataset's " -"organization. The private status is used when preparing a new dataset for " -"publication." -msgstr "" -"Privata dataset kommer endast att vara tillgängliga för inloggade användare " -"av datasetorganisationen. Offentliga dataset kommer att vara tillgängliga " -"för alla användare." - -#: ckanext/sixodp_scheming/translations.py:48 -msgid "Published" -msgstr "Publicerad" - -#: ckanext/sixodp_scheming/translations.py:49 -msgid "The resource publication date." -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:50 -msgid "The dataset publication date." -msgstr "Datum för utgivning av material" - -#: ckanext/sixodp_scheming/translations.py:52 -msgid "Updated" -msgstr "Uppdaterad" - -#: ckanext/sixodp_scheming/translations.py:53 -msgid "The resource update date." -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:54 -msgid "" -"A manually maintained date which can be used to notify when the dataset has " -"been updated." -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:56 -msgid "Update Frequency" -msgstr "Uppdateringsfrekvens" - -#: ckanext/sixodp_scheming/translations.py:57 -msgid "eg. every second week" -msgstr "t.ex. månad" - -#: ckanext/sixodp_scheming/translations.py:58 -msgid "" -"The supposed update frequency for the dataset. The field will suggest " -"similar values used in other datasets such as yearly, monthly or realtime. A" -" new value can also be created if required." -msgstr "" -"En kort beskrivning av datauppdateringsintervallet. T.ex. dag / vecka / " -"månad / år." - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:177 -#: ckanext/sixodp_scheming/translations.py:60 -msgid "License" -msgstr "Licens" - -#: ckanext/sixodp_scheming/translations.py:62 -msgid "Reminder date" -msgstr "Påminnelsedatum för uppdatering" - -#: ckanext/sixodp_scheming/translations.py:63 -msgid "" -"A date when a reminder email will be sent to the system administrator " -"reminding to check this dataset e.g. for a yearly update." -msgstr "" -"Datum då ett påminnelsemeddelande skickas till dataportaladministratören. " -"Det är möjligt att ändra administratörens e-postadress från CKAN-" -"administratörens inställningar." - -#: ckanext/sixodp_scheming/translations.py:65 -msgid "Global ID" -msgstr "Global ID" - -#: ckanext/sixodp_scheming/translations.py:66 -msgid "" -"A global id can be assigned to identify the dataset in external services." -msgstr "" -"En unik identifierare av dataset. Det behövs särskilt när data kopieras till" -" andra dataportaler (t ex avoindata.fi)." - -#: ckanext/sixodp_scheming/translations.py:68 -msgid "Search Synonyms" -msgstr "Sökord" - -#: ckanext/sixodp_scheming/translations.py:69 -msgid "" -"Keywords can be provided here to improve the findability of the dataset. " -"E.g. words from spoken language can be provided to make the dataset " -"searchable by those words." -msgstr "" -"Synonymer för att göra sökningen effektivare (t.ex. förskola -> dagvård)" - -#: ckanext/sixodp_scheming/translations.py:71 -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." - -#: ckanext/sixodp_scheming/translations.py:77 -msgid "Name" -msgstr "* Namn" - -#: ckanext/sixodp_scheming/translations.py:78 -msgid "A short and descriptive name for the resource." -msgstr "Ett kort och beskrivande namn på resursen" - -#: ckanext/sixodp_scheming/translations.py:81 -msgid "" -"A file or url which describes the location of the desired resource file." -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:34 -#: ckanext/sixodp_scheming/translations.py:83 -msgid "Size" -msgstr "Filstorlek" - -#: ckanext/sixodp_scheming/translations.py:84 -msgid "" -"Size of the added resouce file in bytes. Will be automatically filled when " -"the file is uploaded." -msgstr "" -"Filstorlek i byte. Uppdateras automatiskt när en fil laddas upp till en " -"server." - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:27 -#: ckanext/sixodp_scheming/translations.py:86 -msgid "Format" -msgstr "Format" - -#: ckanext/sixodp_scheming/translations.py:87 -msgid "File format of the selected resource." -msgstr "Resursens filformat" - -#: ckanext/sixodp_scheming/translations.py:90 -msgid "" -"An universal, compact and easy to understand description of the added " -"resource." -msgstr "En kort och beskrivande beskrivning av resursen." - -#: ckanext/sixodp_scheming/translations.py:92 -msgid "Position coordinates" -msgstr "Koordinatsystem" - -#: ckanext/sixodp_scheming/translations.py:93 -msgid "" -"Coordinates which describe the area which the added resource is associated " -"with." -msgstr "" -"Koordinatsystem som använts i dataset. Gäller endast GIS dataset. T.ex. " -"ETRS-GK24." - -#: ckanext/sixodp_scheming/translations.py:95 -msgid "Time series start" -msgstr "Tidsserien börjar" - -#: ckanext/sixodp_scheming/translations.py:96 -msgid "A moment in time after which the data is relevant." -msgstr "Datum för början av tidsserien" - -#: ckanext/sixodp_scheming/translations.py:98 -msgid "Time series end" -msgstr "Tidsserien slutar" - -#: ckanext/sixodp_scheming/translations.py:99 -msgid "A moment in time after which the data is no longer relevant." -msgstr "Slutdatum för tidsserien" - -#: ckanext/sixodp_scheming/translations.py:101 -msgid "Time Series Precision" -msgstr "Tidsseriens korrekthet" - -#: ckanext/sixodp_scheming/translations.py:102 -msgid "eg. 2 weeks" -msgstr "t.ex. månad / år" - -#: ckanext/sixodp_scheming/translations.py:103 -msgid "A string which describes the precision of the entered time series." -msgstr "Uppdateringsintevall för en tidsserie" - -#: ckanext/sixodp_scheming/translations.py:106 -msgid "Creative Commons Attribution 4.0" -msgstr "Creative Commons Erkännande 4.0" - -#: ckanext/sixodp_scheming/translations.py:107 -msgid "https://creativecommons.org/licenses/by/4.0/" -msgstr "https://creativecommons.org/licenses/by/4.0/deed.sv" - -#: ckanext/sixodp_scheming/translations.py:109 -msgid "CC0 1.0" -msgstr "CC0 1.0" - -#: ckanext/sixodp_scheming/translations.py:110 -msgid "https://creativecommons.org/publicdomain/zero/1.0/" -msgstr "https://creativecommons.org/publicdomain/zero/1.0/deed.sv" - -#: ckanext/sixodp_scheming/translations.py:112 -msgid "Other (Open)" -msgstr "Annat (öppna)" - -#: ckanext/sixodp_scheming/translations.py:114 -msgid "Parent" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:115 -msgid "None - top level" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:116 -msgid "Icon URL" -msgstr "" - -#: ckanext/sixodp_scheming/translations.py:117 -msgid "My Group" -msgstr "" - -#: ckanext/sixodp_scheming/validators.py:59 -msgid "Missing value" -msgstr "Värde saknas" - -#: ckanext/sixodp_scheming/validators.py:154 -msgid "expecting list of strings" -msgstr "" - -#: ckanext/sixodp_scheming/validators.py:160 -#, python-format -msgid "invalid type for repeating text: %r" -msgstr "" - -#: ckanext/sixodp_scheming/validators.py:167 -#, python-format -msgid "invalid encoding for \"%s\" value" -msgstr "" - -#: ckanext/sixodp_scheming/validators.py:229 -msgid "Failed to decode JSON string" -msgstr "" - -#: ckanext/sixodp_scheming/validators.py:232 -msgid "Invalid encoding for JSON string" -msgstr "" - -#: ckanext/sixodp_scheming/validators.py:235 -msgid "expecting JSON object" -msgstr "" - -#: ckanext/sixodp_scheming/validators.py:241 -#: ckanext/sixodp_scheming/validators.py:248 -#, python-format -msgid "Required language \"%s\" missing" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/form_snippets/organization_ex.html:26 -msgid "No organization" -msgstr "Ingen organisation" - -#: ckanext/sixodp_scheming/templates/scheming/form_snippets/private.html:5 -msgid "Private" -msgstr "Privat" - -#: ckanext/sixodp_scheming/templates/scheming/form_snippets/private.html:5 -msgid "Public" -msgstr "Offentlig" - -#: ckanext/sixodp_scheming/templates/scheming/form_snippets/state.html:3 -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:171 -msgid "State" -msgstr "Status" - -#: ckanext/sixodp_scheming/templates/scheming/form_snippets/state.html:6 -msgid "Active" -msgstr "Aktiv" - -#: ckanext/sixodp_scheming/templates/scheming/form_snippets/state.html:7 -msgid "Deleted" -msgstr "Raderad" - -#: ckanext/sixodp_scheming/templates/scheming/form_snippets/ytp_multiple_checkbox.html:18 -#, python-format -msgid "" -" Categories can be edited from here. " -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/macros/form.html:35 -#, python-format -msgid "" -"You can use Markdown formatting here" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/read.html:18 -msgid "Show more" -msgstr "Visa mer" - -#: ckanext/sixodp_scheming/templates/scheming/package/read.html:19 -msgid "Show less" -msgstr "Visa mindre" - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:5 -msgid "Additional Information" -msgstr "Mer information" - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:9 -msgid "Metadata API" -msgstr "Metadata API" - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:16 -msgid "Field" -msgstr "Fält" - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:17 -msgid "Value" -msgstr "Värde" - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:28 -msgid "unknown" -msgstr "okänd" - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:38 -msgid "GB" -msgstr "GB" - -#: ckanext/sixodp_scheming/templates/scheming/package/resource_read.html:40 -msgid "MB" -msgstr "MB" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:114 -msgid "Groups" -msgstr "Grupper" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:129 -msgid "Collections" -msgstr "Datainsamlingar" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:183 -msgid "How to reference" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:190 -msgid "" -"The maintainer of the dataset is {maintainer} and the original author is " -"{author}" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:193 -msgid "The maintainer of the dataset is {maintainer}" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:196 -msgid "The dataset has been downloaded from" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:196 -msgid "service on {date}" -msgstr "" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:199 -msgid "using the license" -msgstr "under the license" - -#: ckanext/sixodp_scheming/templates/scheming/package/snippets/additional_info.html:201 -msgid "The license can be found on the maintainer's service" -msgstr "" diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/logic/__init__.py b/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/logic/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/logic/action.py b/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/logic/action.py deleted file mode 100644 index 6ced9b7c5..000000000 --- a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/logic/action.py +++ /dev/null @@ -1,40 +0,0 @@ -import sys -import imp - -# Can be replaced with @chained_action once ckan supports chaining core actions https://github.com/ckan/ckan/pull/4509 -def resource_create(context, datadict): - context['keep_deletable_attributes_in_api'] = True - - return get_original_method('ckan.logic.action.create', 'resource_create')(context, datadict) - -def resource_update(context, datadict): - context['keep_deletable_attributes_in_api'] = True - - return get_original_method('ckan.logic.action.update', 'resource_update')(context, datadict) - -def resource_delete(context, datadict): - context['keep_deletable_attributes_in_api'] = True - - return get_original_method('ckan.logic.action.delete', 'resource_delete')(context, datadict) - - -def package_resource_reorder(context, datadict): - context['keep_deletable_attributes_in_api'] = True - - return get_original_method('ckan.logic.action.update', 'package_resource_reorder')(context, datadict) - -def package_patch(context, datadict): - context['keep_deletable_attributes_in_api'] = True - - return get_original_method('ckan.logic.action.patch', 'package_patch')(context, datadict) - -def get_original_method(module_name, method_name): - """ In CKAN you cannot call original action when you override it. - This method fixes the problem. - Example get_original_method('ckan.logic.action.create', 'user_create') - """ - __import__(module_name) - imported_module = sys.modules[module_name] - reimport_module = imp.load_compiled('%s.reimport' % module_name, imported_module.__file__) - - return getattr(reimport_module, method_name) \ No newline at end of file diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/plugin.py b/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/plugin.py deleted file mode 100644 index 1205a0926..000000000 --- a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/plugin.py +++ /dev/null @@ -1,139 +0,0 @@ -import ckan.plugins as plugins -import ckan.plugins.toolkit as toolkit -from .validators import * -from datetime import datetime -import json -from .helpers import * - -from ckan.lib.plugins import DefaultTranslation -from .logic import action -import logging - -config = toolkit.config - -log = logging.getLogger(__name__ ) - - -class Sixodp_SchemingPlugin(plugins.SingletonPlugin, DefaultTranslation): - plugins.implements(plugins.IConfigurer) - plugins.implements(plugins.IValidators) - plugins.implements(plugins.IPackageController, inherit=True) - plugins.implements(plugins.ITemplateHelpers) - plugins.implements(plugins.IActions) - if toolkit.check_ckan_version(min_version='2.5.0'): - plugins.implements(plugins.ITranslation, inherit=True) - - # IConfigurer - - def update_config(self, config_): - toolkit.add_template_directory(config_, 'templates') - toolkit.add_public_directory(config_, 'public') - toolkit.add_resource('fanstatic', 'sixodp_scheming') - - def get_validators(self): - return { - 'lower_if_exists': lower_if_exists, - 'upper_if_exists': upper_if_exists, - 'tag_string_or_tags_required': tag_string_or_tags_required, - 'create_tags': create_tags, - 'create_fluent_tags': create_fluent_tags, - 'set_private_if_not_admin': set_private_if_not_admin, - 'list_to_string': list_to_string, - 'convert_to_list': convert_to_list, - 'tag_list_output': tag_list_output, - 'repeating_text': repeating_text, - 'repeating_text_output': repeating_text_output, - 'only_default_lang_required': only_default_lang_required, - 'save_to_groups': save_to_groups - } - - # IActions - def get_actions(self): - return { - 'resource_create': action.resource_create, - 'resource_update': action.resource_update, - 'resource_delete': action.resource_delete, - 'package_resource_reorder': action.package_resource_reorder, - 'package_patch': action.package_patch - } - - # IPackageController - - def before_index(self, data_dict): - - if data_dict.get('date_released', None) is None: - data_dict['date_released'] = data_dict['metadata_created'] - else: - date_str = data_dict['date_released'] - try: - datetime.strptime(date_str, "%Y-%m-%dT%H:%M:%SZ") - except ValueError: - d = datetime.strptime(date_str, "%Y-%m-%d") - d = datetime.combine(d, datetime.min.time()).replace(tzinfo=None).isoformat() + 'Z' - data_dict['date_released'] = d - #d = datetime.strptime(date_str,) - - if data_dict.get('date_updated', None) is None: - data_dict['date_updated'] = data_dict['date_released'] - else: - date_str = data_dict['date_updated'] - try: - datetime.strptime(date_str, "%Y-%m-%dT%H:%M:%SZ") - except ValueError: - d = datetime.strptime(date_str, "%Y-%m-%d") - d = datetime.combine(d, datetime.min.time()).replace(tzinfo=None).isoformat() + 'Z' - data_dict['date_updated'] = d - - - if data_dict.get('geographical_coverage'): - data_dict['vocab_geographical_coverage'] = [tag for tag in json.loads(data_dict['geographical_coverage'])] - - keywords = data_dict.get('keywords') - if keywords: - keywords_json = json.loads(keywords) - if keywords_json.get('fi'): - data_dict['vocab_keywords_fi'] = [tag for tag in keywords_json['fi']] - if keywords_json.get('sv'): - data_dict['vocab_keywords_sv'] = [tag for tag in keywords_json['sv']] - if keywords_json.get('en'): - data_dict['vocab_keywords_en'] = [tag for tag in keywords_json['en']] - - update_frequency = data_dict.get('update_frequency') - if update_frequency: - update_frequency_json = json.loads(update_frequency) - if update_frequency_json.get('fi'): - data_dict['vocab_update_frequency_fi'] = [tag for tag in update_frequency_json['fi']] - if update_frequency_json.get('sv'): - data_dict['vocab_update_frequency_sv'] = [tag for tag in update_frequency_json['sv']] - if update_frequency_json.get('en'): - data_dict['vocab_update_frequency_en'] = [tag for tag in update_frequency_json['en']] - - return data_dict - - - # This function requires overriding resource_create and resource_update by adding keep_deletable_attributes_in_api to context - def after_show(self, context, data_dict): - - keep_deletable_attributes_in_api = config.get('ckanext.sixodp.keep_deletable_attributes_in_api', - context.get('keep_deletable_attributes_in_api', False)) - - if keep_deletable_attributes_in_api is False and context.get('for_edit') is not True: - if data_dict.get('search_synonyms', None) is not None: - data_dict.pop('search_synonyms') - - return data_dict - - def get_helpers(self): - return {'call_toolkit_function': call_toolkit_function, - 'add_locale_to_source': add_locale_to_source, - 'get_lang': get_current_lang, - 'get_lang_prefix': get_lang_prefix, - 'scheming_field_only_default_required': scheming_field_only_default_required, - 'get_current_date': get_current_date, - 'get_package_groups_by_type': get_package_groups_by_type, - 'get_translated_or_default_locale': get_translated_or_default_locale, - 'show_qa': show_qa, - 'scheming_category_list': scheming_category_list, - 'check_group_selected': check_group_selected, - 'get_field_from_schema': get_field_from_schema - } diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/public/.gitignore b/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/public/.gitignore deleted file mode 100644 index e69de29bb..000000000 diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/.gitignore b/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/.gitignore deleted file mode 100644 index e69de29bb..000000000 diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/base.html b/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/base.html deleted file mode 100644 index 5e09bd0ee..000000000 --- a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/templates/base.html +++ /dev/null @@ -1,6 +0,0 @@ -{% ckan_extends %} - -{% block styles %} - {{ super () }} - {% resource 'sixodp_scheming/styles/form.css' %} -{% endblock %} \ No newline at end of file diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/tests/__init__.py b/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/tests/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/tests/test_plugin.py b/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/tests/test_plugin.py deleted file mode 100644 index 3802cd66d..000000000 --- a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/tests/test_plugin.py +++ /dev/null @@ -1,5 +0,0 @@ -"""Tests for plugin.py.""" -import ckanext.sixodp_scheming.plugin as plugin - -def test_plugin(): - pass \ No newline at end of file diff --git a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/translations.py b/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/translations.py deleted file mode 100644 index 891bbb73d..000000000 --- a/ckanext/ckanext-sixodp_scheming/ckanext/sixodp_scheming/translations.py +++ /dev/null @@ -1,117 +0,0 @@ -def _translations(): - """ Does nothing but hints message extractor to extract missing strings. """ - - _('Title') - _('eg. A descriptive title for the dataset') - _('A short and descriptive title for the dataset in multiple languages. Try not to use dates when naming a dataset, since data from multiple years will usually be published as multiple resources in one dataset.') - - _('URL') - _('An URL-address which refers to the dataset. The automatically filled option derived from the title is the best option in most cases.') - - _('Tags') - _('E.g. transport, housing, buildings') - _('Descriptive keywords or tags through which users are able to find this dataset easily through the search. The input will suggest existing keywords in the portal. New keywords should utilize ontologies such as the generic finnish ontology YSO: finto.fi/yso/fi.') - - _('Geographical Coverage') - _('eg. tampere') - _('Select the municipalities from which the dataset contains data.') - - _('Description') - _('E.g. A diverse and detailed description') - _('eg. A detailed description') - _('An universal and easy to understand, but also diverse description of the added dataset. Describe the dataset creation process, use case and possible limitations and shortcomings as well as possible.') - - _('Links to additional information concerning the dataset') - _('You may attach external websites or other documentation which could assist in interpreting the dataset.') - - _('Organization') - _('The organization which owns the dataset.') - - _('Source') - _('http://example.com/dataset.json') - _('The original author of the dataset. Can also be an external author such as Statistics Finland. The field can e.g. be used to describe a situation where the dataset is published by a single unit but it has multiple authors.') - - _('Maintainer') - _('Joe Bloggs') - _('The technical maintainer for the dataset. Can in practice be the maintaining unit, bureau or as an exception a single employee.') - - _('Maintainer Email') - _('Maintainer email address') - _('The email address for the maintaining party for the dataset. Use a mailing list or other similar means to direct the message to multiple recipients.') - - _('Maintainer Website') - _('http://www.example.com') - - _('Visibility') - _('Private datasets will only be seen by the logged in users of the dataset\'s organization. The private status is used when preparing a new dataset for publication.') - - _('Published') - _('The resource publication date.') - _('The dataset publication date.') - - _('Updated') - _('The resource update date.') - _('A manually maintained date which can be used to notify when the dataset has been updated.') - - _('Update Frequency') - _('eg. every second week') - _('The supposed update frequency for the dataset. The field will suggest similar values used in other datasets such as yearly, monthly or realtime. A new value can also be created if required.') - - _('License') - - _('Reminder date') - _('A date when a reminder email will be sent to the system administrator reminding to check this dataset e.g. for a yearly update.') - - _('Global ID') - _('A global id can be assigned to identify the dataset in external services.') - - _('Search Synonyms') - _('Keywords can be provided here to improve the findability of the dataset. E.g. words from spoken language can be provided to make the dataset searchable by those words.') - - _("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.") - - _('Name') - _('A short and descriptive name for the resource.') - - _('URL') - _('A file or url which describes the location of the desired resource file.') - - _('Size') - _('Size of the added resouce file in bytes. Will be automatically filled when the file is uploaded.') - - _('Format') - _('File format of the selected resource.') - - _('Description') - _('An universal, compact and easy to understand description of the added resource.') - - _('Position coordinates') - _('Coordinates which describe the area which the added resource is associated with.') - - _('Time series start') - _('A moment in time after which the data is relevant.') - - _('Time series end') - _('A moment in time after which the data is no longer relevant.') - - _('Time Series Precision') - _('eg. 2 weeks') - _('A string which describes the precision of the entered time series.') - - # Licenses from licenses.json - _('Creative Commons Attribution 4.0') - _('https://creativecommons.org/licenses/by/4.0/') - - _('CC0 1.0') - _('https://creativecommons.org/publicdomain/zero/1.0/') - - _('Other (Open)') - - _('Parent') - _('None - top level') - _('Icon URL') - _('My Group') \ No newline at end of file diff --git a/ckanext/ckanext-sixodp_scheming/dev-requirements.txt b/ckanext/ckanext-sixodp_scheming/dev-requirements.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/ckanext/ckanext-sixodp_scheming/setup.cfg b/ckanext/ckanext-sixodp_scheming/setup.cfg deleted file mode 100644 index 1ef233d39..000000000 --- a/ckanext/ckanext-sixodp_scheming/setup.cfg +++ /dev/null @@ -1,21 +0,0 @@ -[extract_messages] -keywords = translate isPlural -add_comments = TRANSLATORS: -output_file = ckanext/sixodp_scheming/i18n/ckanext-sixodp_scheming.pot -width = 80 - -[init_catalog] -domain = ckanext-sixodp_scheming -input_file = ckanext/sixodp_scheming/i18n/ckanext-sixodp_scheming.pot -output_dir = ckanext/sixodp_scheming/i18n - -[update_catalog] -domain = ckanext-sixodp_scheming -input_file = ckanext/sixodp_scheming/i18n/ckanext-sixodp_scheming.pot -output_dir = ckanext/sixodp_scheming/i18n -previous = true - -[compile_catalog] -domain = ckanext-sixodp_scheming -directory = ckanext/sixodp_scheming/i18n -statistics = true \ No newline at end of file diff --git a/ckanext/ckanext-sixodp_scheming/setup.py b/ckanext/ckanext-sixodp_scheming/setup.py deleted file mode 100644 index 077bda1bb..000000000 --- a/ckanext/ckanext-sixodp_scheming/setup.py +++ /dev/null @@ -1,93 +0,0 @@ -from setuptools import setup, find_packages # Always prefer setuptools over distutils -from codecs import open # To use a consistent encoding -from os import path - -here = path.abspath(path.dirname(__file__)) - -# Get the long description from the relevant file -with open(path.join(here, 'README.rst'), encoding='utf-8') as f: - long_description = f.read() - -setup( - name='''ckanext-sixodp_scheming''', - - # Versions should comply with PEP440. For a discussion on single-sourcing - # the version across setup.py and the project code, see - # http://packaging.python.org/en/latest/tutorial.html#version - version='0.0.1', - - description='''Scheming schemas for sixodp''', - long_description=long_description, - - # The project's main homepage. - url='https://github.com/6aika/sixodp', - - # Author details - author='''Teemu Erkkola''', - author_email='''teemu.erkkola@gofore.com''', - - # Choose your license - license='AGPL', - - # See https://pypi.python.org/pypi?%3Aaction=list_classifiers - classifiers=[ - # How mature is this project? Common values are - # 3 - Alpha - # 4 - Beta - # 5 - Production/Stable - 'Development Status :: 4 - Beta', - - # Pick your license as you wish (should match "license" above) - 'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', - - # Specify the Python versions you support here. In particular, ensure - # that you indicate whether you support Python 2, Python 3 or both. - 'Programming Language :: Python :: 2.6', - 'Programming Language :: Python :: 2.7', - ], - - - # What does your project relate to? - keywords='''CKAN scheming sixodp''', - - # You can just specify the packages manually here if your project is - # simple. Or you can use find_packages(). - packages=find_packages(exclude=['contrib', 'docs', 'tests*']), - - # List run-time dependencies here. These will be installed by pip when your - # project is installed. For an analysis of "install_requires" vs pip's - # requirements files see: - # https://packaging.python.org/en/latest/technical.html#install-requires-vs-requirements-files - install_requires=[], - - # If there are data files included in your packages that need to be - # installed, specify them here. If using Python 2.6 or less, then these - # have to be included in MANIFEST.in as well. - include_package_data=True, - package_data={ - }, - - # Although 'package_data' is the preferred approach, in some case you may - # need to place data files outside of your packages. - # see http://docs.python.org/3.4/distutils/setupscript.html#installing-additional-files - # In this case, 'data_file' will be installed into '/my_data' - data_files=[], - - # To provide executable scripts, use entry points in preference to the - # "scripts" keyword. Entry points provide cross-platform support and allow - # pip to create the appropriate form of executable for the target platform. - entry_points=''' - [ckan.plugins] - sixodp_scheming=ckanext.sixodp_scheming.plugin:Sixodp_SchemingPlugin - - [babel.extractors] - ckan = ckan.lib.extract:extract_ckan - ''', - message_extractors={ - 'ckanext': [ - ('**.py', 'python', None), - ('**.js', 'javascript', None), - ('**/templates/**.html', 'ckan', None), - ], - } -) diff --git a/ckanext/ckanext-sixodp_scheming/test.ini b/ckanext/ckanext-sixodp_scheming/test.ini deleted file mode 100644 index c7c70e785..000000000 --- a/ckanext/ckanext-sixodp_scheming/test.ini +++ /dev/null @@ -1,49 +0,0 @@ -[DEFAULT] -debug = false -smtp_server = localhost -error_email_from = paste@localhost - -[server:main] -use = egg:Paste#http -host = 0.0.0.0 -port = 5000 - -[app:main] -use = config:../ckan/test-core.ini - -# Insert any custom config settings to be used when running your extension's -# tests here. - - -# Logging configuration -[loggers] -keys = root, ckan, sqlalchemy - -[handlers] -keys = console - -[formatters] -keys = generic - -[logger_root] -level = WARN -handlers = console - -[logger_ckan] -qualname = ckan -handlers = -level = INFO - -[logger_sqlalchemy] -handlers = -qualname = sqlalchemy.engine -level = WARN - -[handler_console] -class = StreamHandler -args = (sys.stdout,) -level = NOTSET -formatter = generic - -[formatter_generic] -format = %(asctime)s %(levelname)-5.5s [%(name)s] %(message)s \ No newline at end of file diff --git a/shared/js/ckan.js b/shared/js/ckan.js index d063f90bc..a548cada7 100644 --- a/shared/js/ckan.js +++ b/shared/js/ckan.js @@ -10,3 +10,4 @@ require('./components/ckan/datepicker'); require('./components/ckan/form-action-loading-indicator'); require('./components/ckan/horizontal-accordion'); require('./components/ckan/show-more'); +require('./components/ckan/form') \ No newline at end of file diff --git a/shared/js/components/ckan/form.js b/shared/js/components/ckan/form.js new file mode 100644 index 000000000..c02507138 --- /dev/null +++ b/shared/js/components/ckan/form.js @@ -0,0 +1,51 @@ +$(function() { + $(document).ready(function () { + /* Create an add link for all the multiple-values child div elements. The add link clones the input container. */ + $('.multiple-values').each(function () { + var listContainer = $(this); + // Loop through all the children divs inside multiple-values + listContainer.children('div').each(function (valueIndex) { + if (valueIndex == 0) { + // We are adding the 'add link' only to the first child + var addLink = $(''); + var inputContainer = $(this); + inputContainer.append(addLink); + + addLink.click(function () { + // Clone the input container div which contains the input field + var clonedInputContainer = inputContainer.clone(); + // Clear the input field's value and remove the id + clonedInputContainer.find('> input').val("").removeAttr('id'); + // Remove the 'add link' button from the input container + clonedInputContainer.find('> a').remove(); + // Append the cloned input container after the last element + listContainer.append(clonedInputContainer); + // Add the 'remove link' to the cloned input container + createRemoveLink(clonedInputContainer); + return false; + }); + } else { + // We are adding the remove link to all the other children + createRemoveLink($(this)); + } + }); + }); + + }); + + function createRemoveLink(inputContainer) { + // The remove link with the icon + var removeLink = $(''); + // Add an event listener for removing the input field container + removeLink.click(function () { + // Remove the value inside the container's input field + inputContainer.find('> input').val(""); + // Remove the container + inputContainer.remove(); + return false; + }); + // Append the remove link to the input container + inputContainer.append(removeLink); + return removeLink; + } +}); \ No newline at end of file diff --git a/shared/scss/components/ckan/form.scss b/shared/scss/components/ckan/form.scss index 3df6b9890..e45c4e1c5 100644 --- a/shared/scss/components/ckan/form.scss +++ b/shared/scss/components/ckan/form.scss @@ -62,4 +62,27 @@ form { margin: $margin-large-vertical*2 0; } } +} + +.multiple-values > div { + overflow: hidden; + margin-bottom: 15px; +} + +.multiple-values > div input{ + float: left; +} +.multiple-values > div a{ + margin-top: 3px; + margin-left: 3px; + float: left; +} + +.multiple-values > diva:hover, .multiple-values > div a:focus { + text-decoration: none; +} + + +.ytp-multiple-values > div:last-child { + margin-bottom: 0; } \ No newline at end of file