From 08118aeb7dcadd4110f63d9c5ad0dfb167cd414a Mon Sep 17 00:00:00 2001 From: Konstantin Sivakov Date: Wed, 25 Jul 2018 13:17:57 +0200 Subject: [PATCH 01/36] Fix links in the CHANGELOG --- CHANGELOG.rst | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9c50ada8eee..95c2e43997b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -38,20 +38,20 @@ General notes: Fixes: - * "Add Filter" Performance Issue (`#4162 `) + * "Add Filter" Performance Issue (`#4162 `_) * Error handler update (`#4257 `) - * "New view" button does not work (`#4260 `) - * Upload logo is not working (`#4262 `) - * Unable to pip install ckan (`#4271 `) - * The "License" Icon in 2.8 is wrong (`#4272 `) - * Search - input- border color is overly specific in CSS (`#4273 `) - * Site logo image does not scale down when very large (`#4283 `) - * Validation Error on datastore_search when sorting timestamp fields (`#4288 `) - * Undocumented changes breaking error_document_template (`#4303 `) - * Internal server error when viewing /dashboard when logged out (`#4305 `) - * Missing c.action attribute in 2.8.0 templates (`#4310 `) - * [multilingual] AttributeError: '_Globals' object has no attribute 'fields' (`#4338 `) - * `search` legacy route missing (`#4346 `) + * "New view" button does not work (`#4260 `_) + * Upload logo is not working (`#4262 `_) + * Unable to pip install ckan (`#4271 `_) + * The "License" Icon in 2.8 is wrong (`#4272 `_) + * Search - input- border color is overly specific in CSS (`#4273 `_) + * Site logo image does not scale down when very large (`#4283 `_) + * Validation Error on datastore_search when sorting timestamp fields (`#4288 _`) + * Undocumented changes breaking error_document_template (`#4303 `_) + * Internal server error when viewing /dashboard when logged out (`#4305 `_) + * Missing c.action attribute in 2.8.0 templates (`#4310 `_) + * [multilingual] AttributeError: '_Globals' object has no attribute 'fields' (`#4338 `_) + * `search` legacy route missing (`#4346 `_) v.2.8.0 2018-05-09 ================== From 8438404bda863cee21916993838420b7f6b7e8bb Mon Sep 17 00:00:00 2001 From: Konstantin Sivakov Date: Mon, 30 Jul 2018 13:12:48 +0200 Subject: [PATCH 02/36] Fix broken links --- CHANGELOG.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 95c2e43997b..d361c7796c0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -39,14 +39,14 @@ General notes: Fixes: * "Add Filter" Performance Issue (`#4162 `_) - * Error handler update (`#4257 `) + * Error handler update (`#4257 `_) * "New view" button does not work (`#4260 `_) * Upload logo is not working (`#4262 `_) * Unable to pip install ckan (`#4271 `_) * The "License" Icon in 2.8 is wrong (`#4272 `_) * Search - input- border color is overly specific in CSS (`#4273 `_) * Site logo image does not scale down when very large (`#4283 `_) - * Validation Error on datastore_search when sorting timestamp fields (`#4288 _`) + * Validation Error on datastore_search when sorting timestamp fields (`#4288 `_) * Undocumented changes breaking error_document_template (`#4303 `_) * Internal server error when viewing /dashboard when logged out (`#4305 `_) * Missing c.action attribute in 2.8.0 templates (`#4310 `_) From a83b665a10ad1eadff51e636e85659d512a10665 Mon Sep 17 00:00:00 2001 From: Konstantin Sivakov Date: Tue, 27 Nov 2018 10:20:58 +0100 Subject: [PATCH 03/36] Update version number for 2.8.2b --- ckan/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ckan/__init__.py b/ckan/__init__.py index ab1bdf93502..393cc931ed2 100644 --- a/ckan/__init__.py +++ b/ckan/__init__.py @@ -1,6 +1,6 @@ # encoding: utf-8 -__version__ = '2.8.1' +__version__ = '2.8.2b' __description__ = 'CKAN Software' __long_description__ = \ From 966fcb0699245b321f26fa146f7bf6d5f84eb55d Mon Sep 17 00:00:00 2001 From: Sergey Motornyuk Date: Wed, 21 Nov 2018 18:06:58 +0200 Subject: [PATCH 04/36] group_patch does not reset packages --- ckan/logic/action/update.py | 8 +++++-- ckan/tests/logic/action/test_patch.py | 31 +++++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 2 deletions(-) diff --git a/ckan/logic/action/update.py b/ckan/logic/action/update.py index 7e6fdd0d203..bcbec5f994e 100644 --- a/ckan/logic/action/update.py +++ b/ckan/logic/action/update.py @@ -525,8 +525,12 @@ def _group_or_org_update(context, data_dict, is_org=False): else: rev.message = _(u'REST API: Update object %s') % data.get("name") - group = model_save.group_dict_save(data, context, - prevent_packages_update=is_org) + contains_packages = 'packages' in data_dict + + group = model_save.group_dict_save( + data, context, + prevent_packages_update=is_org or not contains_packages + ) if is_org: plugin_type = plugins.IOrganizationController diff --git a/ckan/tests/logic/action/test_patch.py b/ckan/tests/logic/action/test_patch.py index 4de8a8765c5..0ab5ce6ca80 100644 --- a/ckan/tests/logic/action/test_patch.py +++ b/ckan/tests/logic/action/test_patch.py @@ -75,6 +75,37 @@ def test_group_patch_updating_single_field(self): assert_equals(group2['name'], 'economy') assert_equals(group2['description'], 'somethingnew') + def test_group_patch_preserve_datasets(self): + user = factories.User() + group = factories.Group( + name='economy', + description='some test now', + user=user) + factories.Dataset(groups=[{'name': group['name']}]) + + group2 = helpers.call_action('group_show', id=group['id']) + assert_equals(1, group2['package_count']) + + group = helpers.call_action( + 'group_patch', + id=group['id'], + context={'user': user['name']}) + + group3 = helpers.call_action('group_show', id=group['id']) + assert_equals(1, group3['package_count']) + + group = helpers.call_action( + 'group_patch', + id=group['id'], + packages=[], + context={'user': user['name']}) + + group4 = helpers.call_action( + 'group_show', id=group['id'], include_datasets=True + ) + assert_equals(0, group4['package_count']) + + def test_organization_patch_updating_single_field(self): user = factories.User() organization = factories.Organization( From 8e6d5b76f625ec2853caec30014d6d8d4051fc9a Mon Sep 17 00:00:00 2001 From: Sergey Motornyuk Date: Wed, 21 Nov 2018 20:11:39 +0200 Subject: [PATCH 05/36] update activity tests --- .../legacy/functional/api/test_activity.py | 46 +++++++++++++------ 1 file changed, 31 insertions(+), 15 deletions(-) diff --git a/ckan/tests/legacy/functional/api/test_activity.py b/ckan/tests/legacy/functional/api/test_activity.py index d31a986016c..6ea0f1cab5e 100644 --- a/ckan/tests/legacy/functional/api/test_activity.py +++ b/ckan/tests/legacy/functional/api/test_activity.py @@ -235,7 +235,7 @@ def group_activity_stream(self, group_id, apikey=None): extra_environ = {'Authorization': str(apikey)} else: extra_environ = None - params = {'id': group_id} + params = {'id': group_id, 'limit': 100} response = self.app.get("/api/action/group_activity_list", params=params, extra_environ=extra_environ) assert response.json['success'] is True @@ -981,7 +981,10 @@ def _update_package(self, package, user): user_id = 'not logged in' apikey = None - before = self.record_details(user_id, package['id'], apikey=apikey) + group_ids = [group['name'] for group in package['groups']] + before = self.record_details( + user_id, package['id'], apikey=apikey, group_ids=group_ids + ) # Update the package. if package['title'] != 'edited': @@ -991,7 +994,9 @@ def _update_package(self, package, user): package['title'] = 'edited again' package_update(self.app, package, user) - after = self.record_details(user_id, package['id'], apikey=apikey) + after = self.record_details( + user_id, package['id'], apikey=apikey, group_ids=group_ids + ) # Find the new activity in the user's activity stream. user_new_activities = (find_new_activities( @@ -1132,9 +1137,11 @@ def _delete_package(self, package): item and detail are emitted. """ - before = self.record_details(self.sysadmin_user['id'], package['id'], - apikey=self.sysadmin_user['apikey']) - + group_ids = [group['name'] for group in package['groups']] + before = self.record_details( + self.sysadmin_user['id'], package['id'], + apikey=self.sysadmin_user['apikey'], group_ids=group_ids + ) # Delete the package. package_dict = {'id': package['id']} response = self.app.post('/api/action/package_delete', @@ -1143,8 +1150,10 @@ def _delete_package(self, package): response_dict = json.loads(response.body) assert response_dict['success'] is True - after = self.record_details(self.sysadmin_user['id'], package['id'], - apikey=self.sysadmin_user['apikey']) + after = self.record_details( + self.sysadmin_user['id'], package['id'], + apikey=self.sysadmin_user['apikey'], group_ids=group_ids + ) # Find the new activity in the user's activity stream. user_new_activities = (find_new_activities( @@ -1167,13 +1176,14 @@ def _delete_package(self, package): after['recently changed datasets stream']) \ == user_new_activities - # If the package has any groups, the same new activity should appear - # in the activity stream of each group. + # If the package has any groups, there should be no new activities + # because package has been deleted == removed from group lifecycle + for group_dict in package['groups']: grp_new_activities = find_new_activities( before['group activity streams'][group_dict['name']], after['group activity streams'][group_dict['name']]) - assert grp_new_activities == [activity] + assert grp_new_activities == [] # Check that the new activity has the right attributes. assert activity['object_id'] == package['id'], ( @@ -1522,15 +1532,21 @@ def test_add_tag(self): pkg_dict = package_show(self.app, {'id': pkg_name}) # Add one new tag to the package. - before = self.record_details(user['id'], pkg_dict['id'], - apikey=user['apikey']) + group_ids = [group['name'] for group in pkg_dict['groups']] + + before = self.record_details( + user['id'], pkg_dict['id'], + apikey=user['apikey'], group_ids=group_ids + ) new_tag_name = 'test tag' assert new_tag_name not in [tag['name'] for tag in pkg_dict['tags']] pkg_dict['tags'].append({'name': new_tag_name}) package_update(self.app, pkg_dict, user) - after = self.record_details(user['id'], pkg_dict['id'], - apikey=user['apikey']) + after = self.record_details( + user['id'], pkg_dict['id'], + apikey=user['apikey'], group_ids=group_ids + ) # Find the new activity in the user's activity stream. user_new_activities = (find_new_activities( From 9a2d09980d42abef20e3eb2e95da20d210a50a6d Mon Sep 17 00:00:00 2001 From: Sergey Motornyuk Date: Wed, 21 Nov 2018 20:13:39 +0200 Subject: [PATCH 06/36] pep8 fix --- ckan/tests/logic/action/test_patch.py | 1 - 1 file changed, 1 deletion(-) diff --git a/ckan/tests/logic/action/test_patch.py b/ckan/tests/logic/action/test_patch.py index 0ab5ce6ca80..4f597988171 100644 --- a/ckan/tests/logic/action/test_patch.py +++ b/ckan/tests/logic/action/test_patch.py @@ -105,7 +105,6 @@ def test_group_patch_preserve_datasets(self): ) assert_equals(0, group4['package_count']) - def test_organization_patch_updating_single_field(self): user = factories.User() organization = factories.Organization( From 27f2ab37214f525242ed75c8cbf69118a0153dc1 Mon Sep 17 00:00:00 2001 From: Guillaume Troupel Date: Fri, 26 Oct 2018 09:28:46 +0200 Subject: [PATCH 07/36] Fixes ckan#4247 credits @ashleysommer --- ckan/views/__init__.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/ckan/views/__init__.py b/ckan/views/__init__.py index 8799118c352..7bb743ae5f4 100644 --- a/ckan/views/__init__.py +++ b/ckan/views/__init__.py @@ -98,8 +98,12 @@ def identify_user(): if authenticators: for item in authenticators: item.identify() - if g.user: - break + try: + if g.user: + break + except AttributeError: + continue + # We haven't identified the user so try the default methods if not getattr(g, u'user', None): From 02ea503cb8bad0b653e3d11057700218f7d8b91a Mon Sep 17 00:00:00 2001 From: Guillaume Troupel Date: Fri, 26 Oct 2018 10:51:44 +0200 Subject: [PATCH 08/36] pep8 --- ckan/views/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/ckan/views/__init__.py b/ckan/views/__init__.py index 7bb743ae5f4..83dfd7012d9 100644 --- a/ckan/views/__init__.py +++ b/ckan/views/__init__.py @@ -103,7 +103,6 @@ def identify_user(): break except AttributeError: continue - # We haven't identified the user so try the default methods if not getattr(g, u'user', None): From 25afedf96de59c3530d7163ede2781182fc679a2 Mon Sep 17 00:00:00 2001 From: amercader Date: Thu, 25 Oct 2018 13:36:59 +0200 Subject: [PATCH 09/36] Allow to defined legacy route mappings as a dict in config The current code only updates the core default list if the `ckan.legacy_route_mappings` is a string (which is probably how it comes from the ini file). But this setting can also be set by extensions directly on the config object, and it makes more sense to do it as a dict. --- ckan/lib/helpers.py | 10 ++++++---- ckan/tests/controllers/test_home.py | 13 +++++++++++++ 2 files changed, 19 insertions(+), 4 deletions(-) diff --git a/ckan/lib/helpers.py b/ckan/lib/helpers.py index c5fc20fbce5..7da7e237f6f 100644 --- a/ckan/lib/helpers.py +++ b/ckan/lib/helpers.py @@ -893,10 +893,12 @@ def build_nav(menu_item, title, **kw): def map_pylons_to_flask_route_name(menu_item): '''returns flask routes for old fashioned route names''' # Pylons to Flask legacy route names mappings - if config.get('ckan.legacy_route_mappings'): - if isinstance(config.get('ckan.legacy_route_mappings'), string_types): - LEGACY_ROUTE_NAMES.update(json.loads(config.get( - 'ckan.legacy_route_mappings'))) + mappings = config.get('ckan.legacy_route_mappings') + if mappings: + if isinstance(mappings, string_types): + LEGACY_ROUTE_NAMES.update(json.loads(mappings)) + elif isinstance(mappings, dict): + LEGACY_ROUTE_NAMES.update(mappings) if menu_item in LEGACY_ROUTE_NAMES: log.info('Route name "{}" is deprecated and will be removed.\ diff --git a/ckan/tests/controllers/test_home.py b/ckan/tests/controllers/test_home.py index 495fc9c627c..038aa926f11 100644 --- a/ckan/tests/controllers/test_home.py +++ b/ckan/tests/controllers/test_home.py @@ -63,6 +63,19 @@ def test_map_pylons_to_flask_route(self): response = app.get(url_for('my_home_route')) assert 'Welcome to CKAN' in response.body + response = app.get(url_for('home')) + assert 'Welcome to CKAN' in response.body + + @helpers.change_config('ckan.legacy_route_mappings', + {'my_home_route': 'home.index'}) + def test_map_pylons_to_flask_route_using_dict(self): + app = self._get_test_app() + response = app.get(url_for('my_home_route')) + assert 'Welcome to CKAN' in response.body + + response = app.get(url_for('home')) + assert 'Welcome to CKAN' in response.body + class TestI18nURLs(helpers.FunctionalTestBase): From 6e89c00c6afaaeccf12f2ab92ca6bc2ad175aa65 Mon Sep 17 00:00:00 2001 From: Teemu Erkkola Date: Wed, 17 Oct 2018 12:07:31 +0300 Subject: [PATCH 10/36] Fix i18n API encoding - Make `i18n_js_translations` call `_finish_ok` with an object response data like all the others - Fix `_finish` and `_finish_ok` documentation to reflect the expected `response_data` type for "json" `content_type` --- ckan/views/api.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ckan/views/api.py b/ckan/views/api.py index 767566954e4..3b462a413ae 100644 --- a/ckan/views/api.py +++ b/ckan/views/api.py @@ -44,7 +44,7 @@ def _finish(status_int, response_data=None, :param status_int: The HTTP status code to return :type status_int: int :param response_data: The body of the response - :type response_data: object if content_type is `text`, a string otherwise + :type response_data: object if content_type is `text` or `json`, a string otherwise :param content_type: One of `text`, `html` or `json`. Defaults to `text` :type content_type: string :param headers: Extra headers to serve with the response @@ -82,7 +82,7 @@ def _finish_ok(response_data=None, calling this method will prepare the response. :param response_data: The body of the response - :type response_data: object if content_type is `text`, a string otherwise + :type response_data: object if content_type is `text` or `json`, a string otherwise :param content_type: One of `text`, `html` or `json`. Defaults to `json` :type content_type: string :param resource_location: Specify this if a new resource has just been @@ -470,7 +470,7 @@ def i18n_js_translations(lang, ver=API_REST_DEFAULT_VERSION): u'base', u'i18n', u'{0}.js'.format(lang))) if not os.path.exists(source): return u'{}' - translations = open(source, u'r').read() + translations = json.load(open(source, u'r')) return _finish_ok(translations) From 6f3ee78d132d773dfbc698fe1f96651c2f21fbbf Mon Sep 17 00:00:00 2001 From: Teemu Erkkola Date: Wed, 17 Oct 2018 13:26:36 +0300 Subject: [PATCH 11/36] Fix documentation style Split long documentation lines --- ckan/views/api.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ckan/views/api.py b/ckan/views/api.py index 3b462a413ae..63240460964 100644 --- a/ckan/views/api.py +++ b/ckan/views/api.py @@ -44,7 +44,8 @@ def _finish(status_int, response_data=None, :param status_int: The HTTP status code to return :type status_int: int :param response_data: The body of the response - :type response_data: object if content_type is `text` or `json`, a string otherwise + :type response_data: object if content_type is `text` or `json`, + a string otherwise :param content_type: One of `text`, `html` or `json`. Defaults to `text` :type content_type: string :param headers: Extra headers to serve with the response @@ -82,7 +83,8 @@ def _finish_ok(response_data=None, calling this method will prepare the response. :param response_data: The body of the response - :type response_data: object if content_type is `text` or `json`, a string otherwise + :type response_data: object if content_type is `text` or `json`, + a string otherwise :param content_type: One of `text`, `html` or `json`. Defaults to `json` :type content_type: string :param resource_location: Specify this if a new resource has just been From 9f1d0dde9b1ae5fea5a88e5b79d6cb9b203602ba Mon Sep 17 00:00:00 2001 From: Alice Butcher Date: Thu, 11 Oct 2018 18:04:35 +0100 Subject: [PATCH 12/36] Allow plugins to define multiple blueprints If `IBlueprint.get_blueprint()` returns a list, register the `Blueprint` objects in a loop. Backwards compatible; will still work if the method only returns a single `Blueprint`. --- ckan/config/middleware/flask_app.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ckan/config/middleware/flask_app.py b/ckan/config/middleware/flask_app.py index 2ecbb981287..2a6d8ce86b3 100644 --- a/ckan/config/middleware/flask_app.py +++ b/ckan/config/middleware/flask_app.py @@ -178,7 +178,11 @@ def hello_world_post(): # Set up each IBlueprint extension as a Flask Blueprint for plugin in PluginImplementations(IBlueprint): if hasattr(plugin, 'get_blueprint'): - app.register_extension_blueprint(plugin.get_blueprint()) + plugin_blueprints = plugin.get_blueprint() + if not isinstance(plugin_blueprints, list): + plugin_blueprints = [plugin_blueprints] + for blueprint in plugin_blueprints: + app.register_extension_blueprint(blueprint) # Set flask routes in named_routes for rule in app.url_map.iter_rules(): From c5439af1a393b5c61a3d9c1447648750a4024981 Mon Sep 17 00:00:00 2001 From: David Read Date: Fri, 24 Aug 2018 11:39:49 +0100 Subject: [PATCH 13/36] Flask patch update --- requirements.in | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.in b/requirements.in index 934686f928a..4d45a9859f4 100644 --- a/requirements.in +++ b/requirements.in @@ -4,7 +4,7 @@ Babel==2.3.4 bleach==2.1.3 click==6.7 fanstatic==0.12 -Flask==0.12.2 +Flask==0.12.4 Flask-Babel==0.11.2 Jinja2==2.8 Markdown==2.6.7 diff --git a/requirements.txt b/requirements.txt index bbedbd8e940..066c867e117 100644 --- a/requirements.txt +++ b/requirements.txt @@ -12,7 +12,7 @@ click==6.7 decorator==4.2.1 # via pylons, sqlalchemy-migrate fanstatic==0.12 Flask-Babel==0.11.2 -Flask==0.12.2 # via flask-babel +Flask==0.12.4 # via flask-babel FormEncode==1.3.1 # via pylons funcsigs==1.0.2 # via beaker html5lib==1.0.1 # via bleach From 38b9638fc0ab5188de29084cf4bcb71ce96353a7 Mon Sep 17 00:00:00 2001 From: Ori Hoch Date: Thu, 23 Aug 2018 22:18:45 +0300 Subject: [PATCH 14/36] autocomplete.js: fix handling of comma key codes --- .../base/javascript/modules/autocomplete.js | 2 +- .../base/test/spec/modules/autocomplete.spec.js | 16 ++++++++++++++-- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/ckan/public/base/javascript/modules/autocomplete.js b/ckan/public/base/javascript/modules/autocomplete.js index 8a8f5e9d69c..769f06e61a8 100644 --- a/ckan/public/base/javascript/modules/autocomplete.js +++ b/ckan/public/base/javascript/modules/autocomplete.js @@ -263,7 +263,7 @@ this.ckan.module('autocomplete', function (jQuery) { * Returns nothing. */ _onKeydown: function (event) { - if (event.which === 188) { + if (typeof event.key !== 'undefined' ? event.key === ',' : event.which === 188) { event.preventDefault(); setTimeout(function () { var e = jQuery.Event("keydown", { which: 13 }); diff --git a/ckan/public/base/test/spec/modules/autocomplete.spec.js b/ckan/public/base/test/spec/modules/autocomplete.spec.js index 93a8fb57a54..a0cadd874ab 100644 --- a/ckan/public/base/test/spec/modules/autocomplete.spec.js +++ b/ckan/public/base/test/spec/modules/autocomplete.spec.js @@ -276,7 +276,7 @@ describe('ckan.modules.AutocompleteModule()', function () { describe('._onKeydown(event)', function () { beforeEach(function () { - this.keyDownEvent = jQuery.Event("keydown", { which: 188 }); + this.keyDownEvent = jQuery.Event("keydown", { key: ',', which: 188 }); this.fakeEvent = {}; this.clock = sinon.useFakeTimers(); this.jQuery = sinon.stub(jQuery.fn, 'init', jQuery.fn.init); @@ -290,7 +290,7 @@ describe('ckan.modules.AutocompleteModule()', function () { this.Event.restore(); this.trigger.restore(); }); - + it('should trigger fake "return" keypress if a comma is pressed', function () { this.module._onKeydown(this.keyDownEvent); @@ -303,6 +303,7 @@ describe('ckan.modules.AutocompleteModule()', function () { }); it('should do nothing if another key is pressed', function () { + this.keyDownEvent.key = '╚'; this.keyDownEvent.which = 200; this.module._onKeydown(this.keyDownEvent); @@ -311,5 +312,16 @@ describe('ckan.modules.AutocompleteModule()', function () { assert.notCalled(this.Event); }); + + it('should do nothing if key is pressed which has the comma key-code but is not a comma', function () { + this.keyDownEvent.key = 'ת'; + this.keyDownEvent.which = 188; + + this.module._onKeydown(this.keyDownEvent); + + this.clock.tick(100); + + assert.notCalled(this.Event); + }); }); }); From c7c06d1afbf63e1a230d68a72ffa3aeb6f431c74 Mon Sep 17 00:00:00 2001 From: Yan Date: Wed, 22 Aug 2018 09:58:00 +1000 Subject: [PATCH 15/36] [4416] Fix for Resouce View Re-order --- ckan/logic/auth/update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ckan/logic/auth/update.py b/ckan/logic/auth/update.py index 1518ba11e44..6ab3502e927 100644 --- a/ckan/logic/auth/update.py +++ b/ckan/logic/auth/update.py @@ -78,7 +78,7 @@ def resource_view_update(context, data_dict): return authz.is_authorized('resource_update', context, {'id': data_dict['resource_id']}) def resource_view_reorder(context, data_dict): - return authz.is_authorized('resource_update', context, {'id': data_dict['resource_id']}) + return authz.is_authorized('resource_update', context, {'id': data_dict['id']}) def package_relationship_update(context, data_dict): return authz.is_authorized('package_relationship_create', From c49433ee0b814cff53f7d1d258f7d37688c0c501 Mon Sep 17 00:00:00 2001 From: amercader Date: Tue, 21 Aug 2018 11:37:09 +0200 Subject: [PATCH 16/36] Don't re-register plugin helpers on flask_app, as it has been done on load_environment --- ckan/config/middleware/flask_app.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ckan/config/middleware/flask_app.py b/ckan/config/middleware/flask_app.py index 2a6d8ce86b3..0d49826809b 100644 --- a/ckan/config/middleware/flask_app.py +++ b/ckan/config/middleware/flask_app.py @@ -307,7 +307,8 @@ def ckan_after_request(response): def helper_functions(): u'''Make helper functions (`h`) available to Flask templates''' - helpers.load_plugin_helpers() + if not helpers.helper_functions: + helpers.load_plugin_helpers() return dict(h=helpers.helper_functions) From f37017f59ebf19264246b8f8efc043a99d28f9e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Van=20Der=20Biest?= Date: Tue, 14 Aug 2018 15:04:08 +0200 Subject: [PATCH 17/36] Obvious doc fix related with #3991 --- doc/maintaining/installing/install-from-docker-compose.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/maintaining/installing/install-from-docker-compose.rst b/doc/maintaining/installing/install-from-docker-compose.rst index dfdbbe4893a..fe7b6790953 100644 --- a/doc/maintaining/installing/install-from-docker-compose.rst +++ b/doc/maintaining/installing/install-from-docker-compose.rst @@ -173,7 +173,11 @@ a. Create and configure datastore database With running CKAN containers, execute the built-in setup scripts against the ``db`` container:: +<<<<<<< HEAD docker exec -it db psql -U ckan -f 00_create_datastore.sql +======= + docker exec -it db sh /docker-entrypoint-initdb.d/00_create_datastore.sh +>>>>>>> 46eaff845... Obvious doc fix related with #3991 docker exec ckan /usr/local/bin/ckan-paster --plugin=ckan datastore set-permissions -c /etc/ckan/production.ini | docker exec -i db psql -U ckan The first script will create the datastore database and the datastore readonly user in the ``db`` From 102b7104a2ec6549984aca53140ccb62f8c80e9e Mon Sep 17 00:00:00 2001 From: Sol Lee Date: Wed, 1 Aug 2018 12:05:19 +0800 Subject: [PATCH 18/36] [#4379] Fix edit slug button --- ckan/public/base/javascript/plugins/jquery.slug-preview.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ckan/public/base/javascript/plugins/jquery.slug-preview.js b/ckan/public/base/javascript/plugins/jquery.slug-preview.js index 37fa88c016b..4a4f78fe25c 100644 --- a/ckan/public/base/javascript/plugins/jquery.slug-preview.js +++ b/ckan/public/base/javascript/plugins/jquery.slug-preview.js @@ -70,7 +70,7 @@ '
', '', '', - '', + '', '
' ].join('\n') }; From dd4af37a0ab24b41f7313959fd999212138dabe7 Mon Sep 17 00:00:00 2001 From: Ian Ward Date: Sun, 6 May 2018 20:41:04 -0400 Subject: [PATCH 19/36] [#4236] datastore_search: distinct=true total fix --- ckanext/datastore/backend/postgres.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ckanext/datastore/backend/postgres.py b/ckanext/datastore/backend/postgres.py index ccb179ce39a..2d65a006f87 100644 --- a/ckanext/datastore/backend/postgres.py +++ b/ckanext/datastore/backend/postgres.py @@ -1287,9 +1287,11 @@ def search_data(context, data_dict): _insert_links(data_dict, limit, offset) if data_dict.get('include_total', True): - count_sql_string = u'''SELECT {distinct} count(*) - FROM "{resource}" {ts_query} {where};'''.format( + count_sql_string = u'''SELECT count(*) FROM ( + SELECT {distinct} {select} + FROM "{resource}" {ts_query} {where}) as t;'''.format( distinct=distinct, + select=select_columns, resource=resource_id, ts_query=ts_query, where=where_clause) From 625945bafd1c655ea74b44dc9beb70205ca23dbf Mon Sep 17 00:00:00 2001 From: Ian Ward Date: Sun, 6 May 2018 20:58:55 -0400 Subject: [PATCH 20/36] [#4236] datastore_search: distinct=true total fix test --- ckanext/datastore/tests/test_search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ckanext/datastore/tests/test_search.py b/ckanext/datastore/tests/test_search.py index 7b96a97e054..d1ca715cc0c 100644 --- a/ckanext/datastore/tests/test_search.py +++ b/ckanext/datastore/tests/test_search.py @@ -284,7 +284,7 @@ def test_search_distinct(self): res_dict = json.loads(res.body) assert res_dict['success'] is True result = res_dict['result'] - assert result['total'] == 2 + assert result['total'] == 1 assert result['records'] == [{u'author': 'tolstoy'}], result['records'] def test_search_filters(self): From 2fa861a0aee6df8e3239dc908fa71425a2b8bdec Mon Sep 17 00:00:00 2001 From: Ian Ward Date: Sun, 6 May 2018 21:25:23 -0400 Subject: [PATCH 21/36] [#4236] datastore_search: distinct=true records_format=lists fix --- ckanext/datastore/backend/postgres.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ckanext/datastore/backend/postgres.py b/ckanext/datastore/backend/postgres.py index 2d65a006f87..fd4c333751a 100644 --- a/ckanext/datastore/backend/postgres.py +++ b/ckanext/datastore/backend/postgres.py @@ -1230,9 +1230,9 @@ def search_data(context, data_dict): ).replace('%', '%%') sql_fmt = u''' SELECT '[' || array_to_string(array_agg(j.v), ',') || ']' FROM ( - SELECT '[' || {select} || ']' v + SELECT {distinct} '[' || {select} || ']' v FROM ( - SELECT {distinct} * FROM "{resource}" {ts_query} + SELECT * FROM "{resource}" {ts_query} {where} {sort} LIMIT {limit} OFFSET {offset}) as z ) AS j''' elif records_format == u'csv': From 9a024d6fb3146d111ca2a967d5e2aa835eaabeb8 Mon Sep 17 00:00:00 2001 From: Cody Boyko Date: Mon, 24 Sep 2018 13:23:15 -0400 Subject: [PATCH 22/36] [#4336] Remove html5 shim from stats extension. html5.js was removed in commit #3705 but still referenced in the stats extension. Currently this causes an error when the page loads in CKAN 2.8 installs. Removing this will remove support for older IE versions which will only cause some issues for CKAN 2.8 users with the old bootstrap 2 theme being used. --- ckanext/stats/templates/ckanext/stats/index.html | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/ckanext/stats/templates/ckanext/stats/index.html b/ckanext/stats/templates/ckanext/stats/index.html index 0f9373faaed..49136195ecd 100644 --- a/ckanext/stats/templates/ckanext/stats/index.html +++ b/ckanext/stats/templates/ckanext/stats/index.html @@ -189,11 +189,5 @@

{{ _('Sta {% block scripts %} {{ super() }} -{# -Hellish hack to get excanvas to work in IE8. We disable html5shiv from -overriding the createElement() method on this page. -See: http://stackoverflow.com/questions/10208062/using-flot-with-bootstrap-ie8-incompatibility -#} -{% resource "vendor/block_html5_shim" %} -{% resource "ckanext_stats/stats" %} + {% resource "ckanext_stats/stats" %} {% endblock %} From efcdf4c2ff358478fc8adea0e0246dd1616fbf9b Mon Sep 17 00:00:00 2001 From: Francesco Frassinelli Date: Tue, 4 Dec 2018 13:32:03 +0100 Subject: [PATCH 23/36] c.user not defined fix --- ckan/lib/helpers.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ckan/lib/helpers.py b/ckan/lib/helpers.py index 7da7e237f6f..2593ee2f6a8 100644 --- a/ckan/lib/helpers.py +++ b/ckan/lib/helpers.py @@ -1133,6 +1133,8 @@ def sorted_extras(package_extras, auto_clean=False, subs=None, exclude=None): @core_helper def check_access(action, data_dict=None): + if not getattr(c, u'user', None): + c.user = None context = {'model': model, 'user': c.user} if not data_dict: From 2d1cf4dbe6a5cc77ba871d511458e11027ff7f04 Mon Sep 17 00:00:00 2001 From: Francesco Frassinelli Date: Thu, 6 Dec 2018 15:43:20 +0100 Subject: [PATCH 24/36] Fix user not defined --- ckan/lib/helpers.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ckan/lib/helpers.py b/ckan/lib/helpers.py index 2593ee2f6a8..8f50ef7cddd 100644 --- a/ckan/lib/helpers.py +++ b/ckan/lib/helpers.py @@ -48,7 +48,7 @@ import ckan.plugins as p import ckan -from ckan.common import _, ungettext, c, request, session, json +from ckan.common import _, ungettext, c, g, request, session, json from markupsafe import Markup, escape @@ -1133,10 +1133,10 @@ def sorted_extras(package_extras, auto_clean=False, subs=None, exclude=None): @core_helper def check_access(action, data_dict=None): - if not getattr(c, u'user', None): - c.user = None + if not getattr(g, u'user', None): + g.user = '' context = {'model': model, - 'user': c.user} + 'user': g.user} if not data_dict: data_dict = {} try: From cd6658597dc002c71a7de556c69741fe0c328895 Mon Sep 17 00:00:00 2001 From: Konstantin Sivakov Date: Fri, 3 Aug 2018 19:54:48 +0200 Subject: [PATCH 25/36] [#4382] strip full URL before saving to DB --- ckan/lib/dictization/model_save.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ckan/lib/dictization/model_save.py b/ckan/lib/dictization/model_save.py index b0abf1abcea..d9670030fa4 100644 --- a/ckan/lib/dictization/model_save.py +++ b/ckan/lib/dictization/model_save.py @@ -13,7 +13,9 @@ log = logging.getLogger(__name__) + def resource_dict_save(res_dict, context): + model = context["model"] session = context["session"] @@ -30,6 +32,11 @@ def resource_dict_save(res_dict, context): table = class_mapper(model.Resource).mapped_table fields = [field.name for field in table.c] + # Strip the full url for resources of type 'upload' + if res_dict.get('url_type') == u'upload': + url = res_dict.get('url') + res_dict[u'url'] = url[url.rfind(u"/")+1:] + # Resource extras not submitted will be removed from the existing extras # dict new_extras = {} From a4368453d58fbf4d2cce98d2074f3c6ef788d196 Mon Sep 17 00:00:00 2001 From: Konstantin Sivakov Date: Mon, 6 Aug 2018 10:23:43 +0200 Subject: [PATCH 26/36] Changes according revieew --- ckan/lib/dictization/model_save.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ckan/lib/dictization/model_save.py b/ckan/lib/dictization/model_save.py index d9670030fa4..454159f41df 100644 --- a/ckan/lib/dictization/model_save.py +++ b/ckan/lib/dictization/model_save.py @@ -33,9 +33,8 @@ def resource_dict_save(res_dict, context): fields = [field.name for field in table.c] # Strip the full url for resources of type 'upload' - if res_dict.get('url_type') == u'upload': - url = res_dict.get('url') - res_dict[u'url'] = url[url.rfind(u"/")+1:] + if res_dict.get('url') and res_dict.get('url_type') == u'upload': + res_dict['url'] = res_dict['url'].rsplit('/')[-1] # Resource extras not submitted will be removed from the existing extras # dict From 201d51d068d1c96f044e92f2810e6bd04b4f1062 Mon Sep 17 00:00:00 2001 From: Konstantin Sivakov Date: Mon, 6 Aug 2018 14:32:47 +0200 Subject: [PATCH 27/36] Add tests --- .../lib/dictization/test_model_dictize.py | 39 +++++++++++++++++-- 1 file changed, 36 insertions(+), 3 deletions(-) diff --git a/ckan/tests/lib/dictization/test_model_dictize.py b/ckan/tests/lib/dictization/test_model_dictize.py index 43de44788c1..01d8623c7ce 100644 --- a/ckan/tests/lib/dictization/test_model_dictize.py +++ b/ckan/tests/lib/dictization/test_model_dictize.py @@ -5,7 +5,7 @@ from nose.tools import assert_equal -from ckan.lib.dictization import model_dictize +from ckan.lib.dictization import model_dictize, model_save from ckan import model from ckan.lib import search @@ -401,8 +401,7 @@ def test_package_dictize_resource(self): result = model_dictize.package_dictize(dataset_obj, context) - assert_equal_for_keys(result['resources'][0], resource, - 'name', 'url') + assert_equal_for_keys(result['resources'][0], resource, 'name', 'url') expected_dict = { u'cache_last_updated': None, u'cache_url': None, @@ -422,6 +421,40 @@ def test_package_dictize_resource(self): } self.assert_equals_expected(expected_dict, result['resources'][0]) + def test_package_dictize_resource_upload_and_striped(self): + dataset = factories.Dataset() + resource = factories.Resource(package=dataset['id'], + name='test_pkg_dictize', + url_type='upload', + url='some_filename.csv') + + context = {'model': model, 'session': model.Session} + + result = model_save.resource_dict_save(resource, context) + + expected_dict = { + u'url': u'some_filename.csv', + u'url_type': u'upload' + } + assert expected_dict['url'] == result.url + + def test_package_dictize_resource_upload_with_url_and_striped(self): + dataset = factories.Dataset() + resource = factories.Resource(package=dataset['id'], + name='test_pkg_dictize', + url_type='upload', + url='http://some_filename.csv') + + context = {'model': model, 'session': model.Session} + + result = model_save.resource_dict_save(resource, context) + + expected_dict = { + u'url': u'some_filename.csv', + u'url_type': u'upload' + } + assert expected_dict['url'] == result.url + def test_package_dictize_tags(self): dataset = factories.Dataset(tags=[{'name': 'fish'}]) dataset_obj = model.Package.get(dataset['id']) From 525fb1172d600c64f30b32d96a3181bc8b31596d Mon Sep 17 00:00:00 2001 From: Konstantin Sivakov Date: Thu, 22 Nov 2018 20:25:43 +0100 Subject: [PATCH 28/36] Remove 'for_edit' and fix url strip --- ckan/lib/dictization/model_dictize.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ckan/lib/dictization/model_dictize.py b/ckan/lib/dictization/model_dictize.py index f39c9c3057a..03da7deccf8 100644 --- a/ckan/lib/dictization/model_dictize.py +++ b/ckan/lib/dictization/model_dictize.py @@ -115,8 +115,8 @@ def resource_dictize(res, context): resource_id=res.id, filename=cleaned_name, qualified=True) - elif resource['url'] and not urlparse.urlsplit(url).scheme and not context.get('for_edit'): - resource['url'] = u'http://' + url.lstrip('/') + elif resource['url'] and not urlparse.urlsplit(url).scheme: + res_dict['url'] = res_dict['url'].rsplit('/')[-1] return resource From bae0801a5a41f1afbe7544b80ca25c16ec8f28db Mon Sep 17 00:00:00 2001 From: Konstantin Sivakov Date: Wed, 28 Nov 2018 13:04:11 +0100 Subject: [PATCH 29/36] Revert last commit, add the striping logic in the resource dictize --- ckan/lib/dictization/model_dictize.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ckan/lib/dictization/model_dictize.py b/ckan/lib/dictization/model_dictize.py index 03da7deccf8..9acb15095ab 100644 --- a/ckan/lib/dictization/model_dictize.py +++ b/ckan/lib/dictization/model_dictize.py @@ -108,6 +108,7 @@ def resource_dictize(res, context): ## for_edit is only called at the times when the dataset is to be edited ## in the frontend. Without for_edit the whole qualified url is returned. if resource.get('url_type') == 'upload' and not context.get('for_edit'): + url = url.rsplit('/')[-1] cleaned_name = munge.munge_filename(url) resource['url'] = h.url_for(controller='package', action='resource_download', @@ -115,8 +116,8 @@ def resource_dictize(res, context): resource_id=res.id, filename=cleaned_name, qualified=True) - elif resource['url'] and not urlparse.urlsplit(url).scheme: - res_dict['url'] = res_dict['url'].rsplit('/')[-1] + elif resource['url'] and not urlparse.urlsplit(url).scheme and not context.get('for_edit'): + resource['url'] = u'http://' + url.lstrip('/') return resource From 0d80c97150510aa09a9716877775b94c40578eb9 Mon Sep 17 00:00:00 2001 From: Konstantin Sivakov Date: Tue, 11 Dec 2018 14:07:49 +0100 Subject: [PATCH 30/36] Update po files --- ckan/i18n/ar/LC_MESSAGES/ckan.po | 364 +++++++++--------- ckan/i18n/bg/LC_MESSAGES/ckan.po | 389 +++++++++---------- ckan/i18n/ca/LC_MESSAGES/ckan.po | 462 +++++++++++------------ ckan/i18n/cs_CZ/LC_MESSAGES/ckan.po | 414 ++++++++++---------- ckan/i18n/da_DK/LC_MESSAGES/ckan.po | 324 ++++++++-------- ckan/i18n/de/LC_MESSAGES/ckan.po | 437 +++++++++++----------- ckan/i18n/el/LC_MESSAGES/ckan.po | 508 +++++++++++++------------ ckan/i18n/en_AU/LC_MESSAGES/ckan.po | 359 +++++++++--------- ckan/i18n/en_GB/LC_MESSAGES/ckan.po | 363 +++++++++--------- ckan/i18n/es/LC_MESSAGES/ckan.po | 482 ++++++++++++------------ ckan/i18n/es_AR/LC_MESSAGES/ckan.po | 478 ++++++++++++------------ ckan/i18n/fa_IR/LC_MESSAGES/ckan.po | 204 +++++----- ckan/i18n/fi/LC_MESSAGES/ckan.po | 375 ++++++++++--------- ckan/i18n/fr/LC_MESSAGES/ckan.po | 518 +++++++++++++------------- ckan/i18n/gl/LC_MESSAGES/ckan.po | 212 ++++++----- ckan/i18n/he/LC_MESSAGES/ckan.po | 310 +++++++-------- ckan/i18n/hr/LC_MESSAGES/ckan.po | 342 ++++++++--------- ckan/i18n/hu/LC_MESSAGES/ckan.po | 207 +++++----- ckan/i18n/id/LC_MESSAGES/ckan.po | 226 +++++------ ckan/i18n/is/LC_MESSAGES/ckan.po | 349 ++++++++--------- ckan/i18n/it/LC_MESSAGES/ckan.po | 439 +++++++++++----------- ckan/i18n/ja/LC_MESSAGES/ckan.po | 219 +++++------ ckan/i18n/km/LC_MESSAGES/ckan.po | 216 +++++------ ckan/i18n/ko_KR/LC_MESSAGES/ckan.po | 292 ++++++++------- ckan/i18n/lt/LC_MESSAGES/ckan.po | 277 +++++++------- ckan/i18n/lv/LC_MESSAGES/ckan.po | 378 ++++++++++--------- ckan/i18n/mk/LC_MESSAGES/ckan.po | 453 +++++++++++----------- ckan/i18n/mn_MN/LC_MESSAGES/ckan.po | 408 ++++++++++---------- ckan/i18n/ne/LC_MESSAGES/ckan.po | 12 +- ckan/i18n/nl/LC_MESSAGES/ckan.po | 374 ++++++++++--------- ckan/i18n/no/LC_MESSAGES/ckan.po | 383 ++++++++++--------- ckan/i18n/pl/LC_MESSAGES/ckan.po | 304 +++++++-------- ckan/i18n/pt_BR/LC_MESSAGES/ckan.po | 435 ++++++++++----------- ckan/i18n/pt_PT/LC_MESSAGES/ckan.po | 495 ++++++++++++------------ ckan/i18n/ro/LC_MESSAGES/ckan.po | 256 +++++++------ ckan/i18n/ru/LC_MESSAGES/ckan.po | 305 ++++++++------- ckan/i18n/sk/LC_MESSAGES/ckan.po | 397 ++++++++++---------- ckan/i18n/sl/LC_MESSAGES/ckan.po | 370 +++++++++--------- ckan/i18n/sq/LC_MESSAGES/ckan.po | 335 ++++++++--------- ckan/i18n/sr/LC_MESSAGES/ckan.po | 224 +++++------ ckan/i18n/sr_Latn/LC_MESSAGES/ckan.po | 223 +++++------ ckan/i18n/sv/LC_MESSAGES/ckan.po | 390 +++++++++---------- ckan/i18n/th/LC_MESSAGES/ckan.po | 247 ++++++------ ckan/i18n/tl/LC_MESSAGES/ckan.po | 12 +- ckan/i18n/tr/LC_MESSAGES/ckan.po | 205 +++++----- ckan/i18n/uk/LC_MESSAGES/ckan.po | 207 +++++----- ckan/i18n/uk_UA/LC_MESSAGES/ckan.po | 428 +++++++++++---------- ckan/i18n/vi/LC_MESSAGES/ckan.po | 352 ++++++++--------- ckan/i18n/zh_CN/LC_MESSAGES/ckan.po | 269 ++++++------- ckan/i18n/zh_TW/LC_MESSAGES/ckan.po | 318 ++++++++-------- 50 files changed, 8463 insertions(+), 8083 deletions(-) diff --git a/ckan/i18n/ar/LC_MESSAGES/ckan.po b/ckan/i18n/ar/LC_MESSAGES/ckan.po index d07d1b07cef..10f2319f4fe 100644 --- a/ckan/i18n/ar/LC_MESSAGES/ckan.po +++ b/ckan/i18n/ar/LC_MESSAGES/ckan.po @@ -1,23 +1,27 @@ -# Translations template for ckan. +# Arabic translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 +# Omar Isbaitan , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Omar Isbaitan , 2018\n" +"Language: ar\n" "Language-Team: Arabic (https://www.transifex.com/okfn/teams/11162/ar/)\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : " +"n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,17 +132,17 @@ msgstr "لم يتم العثور على مصدر مخزن البيانات" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" -"البيانات غير صالحة (على سبيل المثال: قيمة رقمية خارج النطاق أو تم إدراجها في" -" حقل نص)." +"البيانات غير صالحة (على سبيل المثال: قيمة رقمية خارج النطاق أو تم إدراجها" +" في حقل نص)." #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 #: ckanext/datastore/logic/action.py:344 ckanext/datastore/logic/action.py:457 @@ -165,7 +169,8 @@ msgstr "" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -176,8 +181,8 @@ msgstr "نقاط النهاية" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "بلإمكان الوصول لبيانات ال API عن طريق خطوات ال CKAN الخاصة بال API " #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 @@ -315,7 +320,8 @@ msgstr "واجهة برمجة تطبيقات API البيانات" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" "لمعلومات أكثر تحديث ملفك الشخصي و إض #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "" -" %s يستخدم عنوان البريد الإلكتروني الخاص بك إذا كنت تحتاج إلى إعادة تعيين " -"كلمة السر " +" %s يستخدم عنوان البريد الإلكتروني الخاص بك إذا كنت تحتاج إلى إعادة " +"تعيين كلمة السر " #: ckan/controllers/package.py:304 msgid "Invalid search query: {error_message}" @@ -1857,8 +1863,8 @@ msgstr "" #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "" #: ckan/logic/validators.py:363 @@ -2644,8 +2650,8 @@ msgstr "غير قادر على الحصول على بيانات للملف ال #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "" "أنت تقوم بتحميل ملف. هل أنت متأكد من أنك تريد التنقل بعيدًا وإيقاف هذا " "التحميل؟" @@ -2953,35 +2959,37 @@ msgstr "خيارات إعدادات CKAN" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

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

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

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

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

Intro " +"

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

" +"

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

" +"

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

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

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

" "

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

" -"

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

" -msgstr "" -"

عنوان موقع الكتروني :هذا هو عنوان هذه الحالة CKAN يظهر " -"في أماكن مختلفة في جميع أنحاء CKAN.

نمط : اختر من " -"قائمة من الأشكال البسيطة لنظام الألوان الرئيسي للحصول على سمة مخصصة سريعة " -"للغاية.

Site Tag Logo: هذا هو الشعار الذي يظهر في" -" رأس كل قوالب نماذج CKAN.

حول : سيظهر هذا النص في " -"حالات CKAN هذه حول الصفحة .

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

" -"Custom CSS: هذه كتلة من CSS تظهر في <head> " -"علامة من كل صفحة. إذا كنت ترغب في تخصيص القوالب بشكل كامل فإننا نوصي بذلك قراءة الوثائق .

" -"

الصفحة الرئيسية: هذا هو لاختيار تخطيط محدد مسبقا " -"للوحدات التي تظهر على صفحتك الرئيسية.

" +"

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

" +msgstr "" +"

عنوان موقع الكتروني :هذا هو عنوان هذه الحالة CKAN " +"يظهر في أماكن مختلفة في جميع أنحاء CKAN.

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

Site Tag Logo: هذا هو " +"الشعار الذي يظهر في رأس كل قوالب نماذج CKAN.

حول " +": سيظهر هذا النص في حالات CKAN هذه " +"حول الصفحة .

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

Custom CSS: هذه كتلة من CSS تظهر في " +" <head> علامة من كل صفحة. إذا كنت ترغب في تخصيص " +"القوالب بشكل كامل فإننا نوصي بذلك قراءة الوثائق .

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

" #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 @@ -2996,8 +3004,9 @@ msgstr "إدارة CKAN" #, python-format msgid "" "

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

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

" +"Proceed with care!

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

" msgstr "" "

كمستخدم مشرف نظام إدارة المستخدم لديك السيطرة الكاملة على هذا المثال " "CKAN. المضي قدما مع الرعاية!

للحصول على إرشادات حول استخدام ميزات " @@ -3160,9 +3169,8 @@ msgstr "هل أنت متأكد من أنك تريد حذف العضو - {name}؟ #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "إداره" @@ -3194,8 +3202,7 @@ msgstr "البحث في المجموعات..." msgid "There are currently no groups for this site" msgstr "حاليا لا يوجد مجموعات لهذا الموقع" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "هل ترغب بإنشاء واحد؟" @@ -3244,22 +3251,19 @@ msgstr "مستخدم جديد" msgid "If you wish to invite a new user, enter their email address." msgstr "اذا كنت ترغب بإضافة مستخدم جديد، أدخل البريد الالكتروني الخاص بهم." -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "قاعدة" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "هل انت متأكد أنك ترغب بحذف هذا المستخدم؟" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3280,13 +3284,13 @@ msgstr "ما هي الاشتراطات؟" #: ckan/templates/group/member_new.html:80 msgid "" -"

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

Member: Can add/remove " +"

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

Member: Can add/remove " "datasets from groups

" msgstr "" -"

مشرف: يمكنه تعديل معلومات المجموعة ، وكذلك إدارة أعضاء " -"المؤسسة.

عضو: يمكن إضافة / إزالة جدولة البيانات من " -"المجموعات

" +"

مشرف: يمكنه تعديل معلومات المجموعة ، وكذلك إدارة " +"أعضاء المؤسسة.

عضو: يمكن إضافة / إزالة جدولة " +"البيانات من المجموعات

" #: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 #: ckan/templates/group/new.html:7 @@ -3356,15 +3360,15 @@ msgstr "ما هي المجموعات؟" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" -"يمكنك استخدام مجموعات CKAN لإنشاء مجموعات من جدولة البيانات وإدارتها. يمكن " -"أن يكون ذلك لفهرسة مجموعات البيانات لمشروع أو فريق معين ، أو لموضوع معين ، " -"أو كطريقة بسيطة جدًا لمساعدة الأشخاص في البحث عن جدولة البيانات المنشورة " -"الخاصة بك والبحث عنها." +"يمكنك استخدام مجموعات CKAN لإنشاء مجموعات من جدولة البيانات وإدارتها. " +"يمكن أن يكون ذلك لفهرسة مجموعات البيانات لمشروع أو فريق معين ، أو لموضوع " +"معين ، أو كطريقة بسيطة جدًا لمساعدة الأشخاص في البحث عن جدولة البيانات " +"المنشورة الخاصة بك والبحث عنها." #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 @@ -3427,13 +3431,14 @@ msgid "" "

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

" "

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

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3443,23 +3448,23 @@ msgid "" "overview: http://ckan.org/features/

" msgstr "" -"

يعد CKAN منصة البوابة الرئيسية للبيانات المفتوحة المصدر في العالم.

" -"CKAN هو حل برمجي جاهز بالكامل يجعل الوصول إلى البيانات أمرًا قابلاً " +"

يعد CKAN منصة البوابة الرئيسية للبيانات المفتوحة المصدر في العالم.

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

" -"

تستخدم CKAN من قبل الحكومات ومجموعات المستخدمين في جميع أنحاء العالم " -"وتمتلك مجموعة متنوعة من بوابات البيانات الرسمية والمجتمعية بما في ذلك بوابات" -" الحكومة المحلية والوطنية والدولية ، مثل المملكة المتحدة data.gov.ukوالاتحاد الأوروبي

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

CKAN: http://ckan.org/
CKAN Tour: http//ckan.org/toue/
نظرة عامة على " -"الميزات:http//ckan.org/toue/
نظرة عامة " +"على الميزات:http//ckan.org/features/

" #: ckan/templates/home/snippets/promoted.html:8 @@ -3468,11 +3473,11 @@ msgstr "مرحبا في CKAN" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" -"هذه فقرة تمهيدية لطيفة حول CKAN أو الموقع الكتروني العام. ليس لدينا أي نسخة " -"للذهاب هنا بعد ولكن سنعمل قريبا" +"هذه فقرة تمهيدية لطيفة حول CKAN أو الموقع الكتروني العام. ليس لدينا أي " +"نسخة للذهاب هنا بعد ولكن سنعمل قريبا" #: ckan/templates/home/snippets/promoted.html:19 msgid "This is a featured section" @@ -3517,12 +3522,12 @@ msgstr "مجموعات" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" -"يمكنك استخدام تنسيق علامة مائلةهنا" #: ckan/templates/macros/form.html:277 @@ -3588,8 +3593,8 @@ msgstr "مسودة" #: ckan/templates/package/read.html:11 #: ckan/templates/package/snippets/package_basic_fields.html:98 #: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 msgid "Private" msgstr "خاص" @@ -3644,14 +3649,14 @@ msgid "" "

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

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

" -"

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

" +"

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

" msgstr "" "

مشرف: يمكن إضافة / تحرير وحذف جدولة البيانات ، وكذلك " -"إدارة أعضاء المؤسسة.

محرر: يمكن إضافة وتحرير جدولة " -"البيانات ، ولكن لا يمكنك إدارة أعضاء المؤسسة.

العضو:" -" يمكن عرض جدولة البيانات الخاصة للمؤسسة ، ولكن لا تضيف جدولة بيانات " -"جديدة.

" +"إدارة أعضاء المؤسسة.

محرر: يمكن إضافة وتحرير " +"جدولة البيانات ، ولكن لا يمكنك إدارة أعضاء المؤسسة.

" +"

العضو: يمكن عرض جدولة البيانات الخاصة للمؤسسة ، ولكن " +"لا تضيف جدولة بيانات جديدة.

" #: ckan/templates/organization/members.html:14 msgid "{count} member" @@ -3689,28 +3694,29 @@ msgstr "ما هي المنظمات؟" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

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

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

" -msgstr "" -"

تعمل المنظمات مثل دوائر النشر لمجموعات البيانات (على سبيل المثال ، وزارة " -"الصحة). وهذا يعني أنه يمكن نشر مجموعات البيانات من قِبل قسم ما بدلاً من " -"مستخدم فردي

داخل المؤسسات ، يمكن للمشرفين تعيين أدوار وتفويض أعضائها" -" ، مما يمنح المستخدمين الفرديين الحق في نشر مجموعات البيانات من تلك المنظمة " -"المعينة (على سبيل المثال ، مكتب الإحصائيات الوطنية)

" +"

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

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

" +msgstr "" +"

تعمل المنظمات مثل دوائر النشر لمجموعات البيانات (على سبيل المثال ، " +"وزارة الصحة). وهذا يعني أنه يمكن نشر مجموعات البيانات من قِبل قسم ما " +"بدلاً من مستخدم فردي

داخل المؤسسات ، يمكن للمشرفين تعيين أدوار " +"وتفويض أعضائها ، مما يمنح المستخدمين الفرديين الحق في نشر مجموعات " +"البيانات من تلك المنظمة المعينة (على سبيل المثال ، مكتب الإحصائيات " +"الوطنية)

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" -"تُستخدم مؤسسات CKAN لإنشاء مجموعات من جدولة البيانات وإدارتها ونشرها. يمكن " -"أن يكون للمستخدمين أدوارًا مختلفة داخل مؤسسة ، بناءً على مستوى التفويض الخاص" -" بهم لإنشاء و تحرير ونشر." +"تُستخدم مؤسسات CKAN لإنشاء مجموعات من جدولة البيانات وإدارتها ونشرها. " +"يمكن أن يكون للمستخدمين أدوارًا مختلفة داخل مؤسسة ، بناءً على مستوى " +"التفويض الخاص بهم لإنشاء و تحرير ونشر." #: ckan/templates/organization/snippets/organization_form.html:10 msgid "My Organization" @@ -3726,8 +3732,9 @@ msgstr "معلومات قليلة عن منظمتي ..." #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3750,13 +3757,13 @@ msgstr "ماهي جدولة البيانات؟" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" "جدولة البيانات CKAN عبارة عن مجموعة من موارد البيانات (مثل الملفات) ، " -"بالإضافة إلى وصف ومعلومات أخرى ، على عنوان URL ثابت. جدولة البيانات هي ما " -"يراه المستخدمون عند البحث عن البيانات." +"بالإضافة إلى وصف ومعلومات أخرى ، على عنوان URL ثابت. جدولة البيانات هي ما" +" يراه المستخدمون عند البحث عن البيانات." #: ckan/templates/package/confirm_delete.html:12 msgid "Are you sure you want to delete dataset - {name}?" @@ -3836,14 +3843,15 @@ msgstr "إضافة عرض" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" -"قد تكون طرق عرض مستكشف البيانات بطيئة وغير موثوق بها الا إذا تم تمكين ملحق " -"مخزن البيانات , لمزيد من المعلومات, يرجى الاطلاع علىوثيقة مستكشف البيانات" +"قد تكون طرق عرض مستكشف البيانات بطيئة وغير موثوق بها الا إذا تم تمكين " +"ملحق مخزن البيانات , لمزيد من المعلومات, يرجى الاطلاع علىوثيقة مستكشف " +"البيانات" #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:83 @@ -3853,11 +3861,12 @@ msgstr "إضافة" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" -"هذه نسخة قديمة من جدولة البيانات هذه , كما تم تعديلها على %(timestamp)s. قد " -"تختلف اختلافا كبيرا عن المراجعة الحالية" +"هذه نسخة قديمة من جدولة البيانات هذه , كما تم تعديلها على %(timestamp)s. " +"قد تختلف اختلافا كبيرا عن المراجعة الحالية" #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" @@ -3926,13 +3935,13 @@ msgstr "ربما لم يقم مسؤولو الموقع بتمكين المكون #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" -"إذا تطلبت المشاهدة استخدام مخزن البيانات ، فقد لا يتم تمكين المكوّن الإضافي " -"لـ مخزن البيانات ، أو ربما لم يتم دفع البيانات إلى مخزن البيانات ، أو لم " -"ينته مخزن البيانات من معالجة البيانات حتى الآن" +"إذا تطلبت المشاهدة استخدام مخزن البيانات ، فقد لا يتم تمكين المكوّن " +"الإضافي لـ مخزن البيانات ، أو ربما لم يتم دفع البيانات إلى مخزن البيانات " +"، أو لم ينته مخزن البيانات من معالجة البيانات حتى الآن" #: ckan/templates/package/resource_read.html:162 msgid "Additional Information" @@ -3999,8 +4008,8 @@ msgstr "إضافة موارد جديدة" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

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

" +"

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

" msgstr "" "

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

" @@ -4148,17 +4157,18 @@ msgstr "فعال" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." -msgstr "" -"ينطبق ترخيص البيانات الذي تحدده أعلاه فقط على محتويات أي ملفات موارد " -"تضيفها إلى جدولة البيانات هذه. بإرسال هذا النموذج ، فإنك توافق على إصدار " -"قيمت البيانات الوصفية التي تدخلها في النموذج تحت رخصة قاعدة البيانات " -"المفتوحة." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." +msgstr "" +"ينطبق ترخيص البيانات الذي تحدده أعلاه فقط على محتويات أي ملفات " +"موارد تضيفها إلى جدولة البيانات هذه. بإرسال هذا النموذج ، فإنك توافق على " +"إصدار قيمت البيانات الوصفية التي تدخلها في النموذج تحت رخصة قاعدة " +"البيانات المفتوحة." #: ckan/templates/package/snippets/package_form.html:39 msgid "Are you sure you want to delete this dataset?" @@ -4477,11 +4487,11 @@ msgstr "

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

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

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

" +"

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

" msgstr "" -"

كان هناك خطأ أثناء البحث. حاول مرة " -"أخرى.

" +"

كان هناك خطأ أثناء البحث. حاول " +"مرة أخرى.

" #: ckan/templates/snippets/search_result_text.html:15 msgid "{number} dataset found for \"{query}\"" @@ -4651,9 +4661,9 @@ msgstr "معلومات الحساب" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " -msgstr "" -"يتيح ملف التعريف الخاص بك لمستخدمي CKAN الآخرين معرفة من أنت وماذا تفعل." +" Your profile lets other CKAN users know about who you are and what you " +"do. " +msgstr "يتيح ملف التعريف الخاص بك لمستخدمي CKAN الآخرين معرفة من أنت وماذا تفعل." #: ckan/templates/user/edit_user_form.html:7 msgid "Change details" @@ -4744,8 +4754,7 @@ msgstr "هل نسيت كلمة السر؟" #: ckan/templates/user/login.html:44 msgid "No problem, use our password recovery form to reset it." -msgstr "" -"لا توجد مشكلة ، استخدم نموذج استرداد كلمة السر الخاص بنا لإعادة تعيينه." +msgstr "لا توجد مشكلة ، استخدم نموذج استرداد كلمة السر الخاص بنا لإعادة تعيينه." #: ckan/templates/user/login.html:47 msgid "Forgot your password?" @@ -4881,11 +4890,11 @@ msgstr "طلب إعادة التعيين" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" -"أدخل اسم المستخدم الخاص بك في المربع وسوف نرسل لك رسالة بريد إلكتروني تحتوي " -"على رابط لإدخال كلمة سر جديدة." +"أدخل اسم المستخدم الخاص بك في المربع وسوف نرسل لك رسالة بريد إلكتروني " +"تحتوي على رابط لإدخال كلمة سر جديدة." #: ckan/templates/user/snippets/followee_dropdown.html:15 #: ckan/templates/user/snippets/followee_dropdown.html:16 @@ -4911,3 +4920,4 @@ msgstr "بحث المستخدمين" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/bg/LC_MESSAGES/ckan.po b/ckan/i18n/bg/LC_MESSAGES/ckan.po index d7af436d726..38c50ee584a 100644 --- a/ckan/i18n/bg/LC_MESSAGES/ckan.po +++ b/ckan/i18n/bg/LC_MESSAGES/ckan.po @@ -1,23 +1,27 @@ -# Translations template for ckan. +# Bulgarian translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 +# Ivaylo Petrov, 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Ivaylo Petrov, 2018\n" -"Language-Team: Bulgarian (https://www.transifex.com/okfn/teams/11162/bg/)\n" +"Language: bg\n" +"Language-Team: Bulgarian (https://www.transifex.com/okfn/teams/11162/bg/)" +"\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,14 +132,14 @@ msgstr "Ресурсът от DataStore хранилището не е наме #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 @@ -161,7 +165,8 @@ msgstr "Достъп до ресурсни данни чрез уеб API със msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -172,8 +177,8 @@ msgstr "Крайни точки" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "" "Това Data API е достъпно само чрез следните действия от CKAN API за " "действия." @@ -315,7 +320,8 @@ msgstr "Data API" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 @@ -804,8 +810,8 @@ msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "" -"Пакет %s не може да бъде прочистен, тъй като свързаната ревизия %s съдържа " -"пакети, които не са изтрити %s" +"Пакет %s не може да бъде прочистен, тъй като свързаната ревизия %s " +"съдържа пакети, които не са изтрити %s" #: ckan/controllers/admin.py:183 ckan/views/admin.py:197 #, python-format @@ -866,8 +872,7 @@ msgstr "Няма ревизия с индентификатор: %s" #: ckan/controllers/api.py:297 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "" -"Липсващо условие на търсене ('since_id=UUID' или 'since_time=TIMESTAMP')" +msgstr "Липсващо условие на търсене ('since_id=UUID' или 'since_time=TIMESTAMP')" #: ckan/controllers/api.py:309 #, python-format @@ -1069,21 +1074,19 @@ msgstr "Нямате право да виждате тези последова #: ckan/controllers/home.py:35 msgid "This site is currently off-line. Database is not initialised." -msgstr "" -"В момента тази страница е недостъпна. Базата данни не е инициализирана." +msgstr "В момента тази страница е недостъпна. Базата данни не е инициализирана." #: ckan/controllers/home.py:73 ckan/views/home.py:58 #, python-format msgid "Please update your profile and add your email address. " -msgstr "" -"Моля, обновете профила си и добавете своя имейл адрес." +msgstr "Моля, обновете профила си и добавете своя имейл адрес." #: ckan/controllers/home.py:75 ckan/views/home.py:60 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "" -"%s използвайte своя имейл адрес, ако имате нужда да възстановите паролата " -"си." +"%s използвайte своя имейл адрес, ако имате нужда да възстановите паролата" +" си." #: ckan/controllers/package.py:304 msgid "Invalid search query: {error_message}" @@ -1452,7 +1455,8 @@ msgstr "{actor} изтри набора от данни {dataset}" #: ckan/lib/activity_streams.py:90 msgid "{actor} deleted the extra {extra} from the dataset {dataset}" msgstr "" -"{actor} изтри допълнителната информация {extra} от набора от данни {dataset}" +"{actor} изтри допълнителната информация {extra} от набора от данни " +"{dataset}" #: ckan/lib/activity_streams.py:93 msgid "{actor} deleted the resource {resource} from the dataset {dataset}" @@ -1473,7 +1477,8 @@ msgstr "{actor} създаде набора от данни {dataset}" #: ckan/lib/activity_streams.py:106 msgid "{actor} added the extra {extra} to the dataset {dataset}" msgstr "" -"{actor} добави допълнителна информация {extra} към набора от данни {dataset}" +"{actor} добави допълнителна информация {extra} към набора от данни " +"{dataset}" #: ckan/lib/activity_streams.py:109 msgid "{actor} added the resource {resource} to the dataset {dataset}" @@ -1824,8 +1829,8 @@ msgstr "Името може да е най-много %i символа" #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "" #: ckan/logic/validators.py:363 @@ -1911,8 +1916,8 @@ msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "" -"Редакцията не е приета, тъй като прилича на спам. Моля, избягвайте връзки " -"(URL адреси) в описанието." +"Редакцията не е приета, тъй като прилича на спам. Моля, избягвайте връзки" +" (URL адреси) в описанието." #: ckan/logic/validators.py:628 #, python-format @@ -1927,8 +1932,8 @@ msgstr "Това име на речник вече се използва" #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "" -"Стойността на ключа не може да бъде променена от %s на %s. Ключът може само " -"да се чете, без да се променя." +"Стойността на ключа не може да бъде променена от %s на %s. Ключът може " +"само да се чете, без да се променя." #: ckan/logic/validators.py:651 msgid "Tag vocabulary was not found." @@ -2014,7 +2019,8 @@ msgstr "Опит за създаване на организация като г #: ckan/logic/action/create.py:896 msgid "You must supply a package id or name (parameter \"package\")." msgstr "" -"Трябва да се зададе идентификатор или име на пакет (параметър \"package\")." +"Трябва да се зададе идентификатор или име на пакет (параметър " +"\"package\")." #: ckan/logic/action/create.py:899 msgid "You must supply a rating (parameter \"rating\")." @@ -2158,8 +2164,7 @@ msgstr "Потребител %s няма право да редактира те #: ckan/logic/auth/create.py:38 #, python-format msgid "User %s not authorized to add dataset to this organization" -msgstr "" -"Потребител %s няма право да добавя набори от данни към тази организация" +msgstr "Потребител %s няма право да добавя набори от данни към тази организация" #: ckan/logic/auth/create.py:61 msgid "No dataset id provided, cannot check auth." @@ -2169,7 +2174,8 @@ msgstr "" #: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 msgid "No package found for this resource, cannot check auth." msgstr "" -"Не е намерен пакет за този ресурс, автентичността не може да бъде проверена." +"Не е намерен пакет за този ресурс, автентичността не може да бъде " +"проверена." #: ckan/logic/auth/create.py:76 #, python-format @@ -2346,8 +2352,7 @@ msgstr "" #: ckan/model/license.py:233 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "" -"Open Data Commons Лиценз за Предоставяне на Обществено Достояние (PDDL)" +msgstr "Open Data Commons Лиценз за Предоставяне на Обществено Достояние (PDDL)" #: ckan/model/license.py:243 msgid "Open Data Commons Open Database License (ODbL)" @@ -2533,8 +2538,8 @@ msgstr "Връзка" #: ckan/public/base/javascript/modules/image-upload.js:61 msgid "Link to a URL on the internet (you can also link to an API)" msgstr "" -"Посочване на връзка към URL адрес в интернет (можете също така да посочите " -"връзка към API)" +"Посочване на връзка към URL адрес в интернет (можете също така да " +"посочите връзка към API)" #: ckan/public-bs2/base/javascript/modules/image-upload.js:68 #: ckan/public/base/javascript/modules/image-upload.js:68 @@ -2621,11 +2626,11 @@ msgstr "Неуспешно зареждане на информацията за #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "" -"В момента качвате файл. Сигурни ли сте, че искате да излезете от страницата " -"и да прекъснете качването?" +"В момента качвате файл. Сигурни ли сте, че искате да излезете от " +"страницата и да прекъснете качването?" #: ckan/public-bs2/base/javascript/modules/resource-view-filters.js:9 #: ckan/public/base/javascript/modules/resource-view-filters.js:9 @@ -2902,39 +2907,40 @@ msgstr "CKAN настройки за конфигурация" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

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

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

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

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

Intro " +"

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

" +"

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

" +"

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

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

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

" "

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

" -"

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

" +"

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

" msgstr "" "

Заглавие на сайта: Това е заглавието на настоящата " "инсталация на CKAN. То се появява на различни места в CKAN.

" "

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

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

" -"

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

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

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

" +"

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

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

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

" -"

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

" +"посетителите.

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

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

" #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 @@ -2949,8 +2955,9 @@ msgstr "" #, python-format msgid "" "

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

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

" +"Proceed with care!

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

" msgstr "" #: ckan/templates/admin/trash.html:20 @@ -3110,9 +3117,8 @@ msgstr "Сигурни ли сте, че искате да изтриете то #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "Управление" @@ -3144,8 +3150,7 @@ msgstr "Търсене в групи..." msgid "There are currently no groups for this site" msgstr "Не са налични групи за тази страница" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "Искате ли да създадете?" @@ -3178,8 +3183,8 @@ msgstr "Съществуващ потребител" #: ckan/templates/organization/member_new.html:22 msgid "If you wish to add an existing user, search for their username below." msgstr "" -"Ако желаете да добавите съществуващ потребител, потърсете потребителското му" -" име по-долу." +"Ако желаете да добавите съществуващ потребител, потърсете потребителското" +" му име по-долу." #: ckan/templates/group/member_new.html:38 #: ckan/templates/organization/member_new.html:39 @@ -3196,22 +3201,19 @@ msgstr "Нов потребител" msgid "If you wish to invite a new user, enter their email address." msgstr "Ако желаете да поканите потребител, въведете неговия имейл адрес." -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "Роля" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "Сигурни ли сте, че искате да изтриете този член?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3232,13 +3234,14 @@ msgstr "Какво представляват ролите?" #: ckan/templates/group/member_new.html:80 msgid "" -"

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

Member: Can add/remove " +"

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

Member: Can add/remove " "datasets from groups

" msgstr "" -"

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

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

" +"

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

" +"

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

" #: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 #: ckan/templates/group/new.html:7 @@ -3308,16 +3311,16 @@ msgstr "Какво представляват групите?" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" -"Можете да използвате CKAN Групи за създаване и управляване на колекции от " -"данни. Това би могло да включва каталогизиране на данни за определен проект " -"или екип, както и по определена тема, и представлява много лесен начин да " -"улесните потребителите в намирането и търсенето на данните, които Вие сте " -"публикували." +"Можете да използвате CKAN Групи за създаване и управляване на колекции от" +" данни. Това би могло да включва каталогизиране на данни за определен " +"проект или екип, както и по определена тема, и представлява много лесен " +"начин да улесните потребителите в намирането и търсенето на данните, " +"които Вие сте публикували." #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 @@ -3380,13 +3383,14 @@ msgid "" "

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

" "

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

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3397,25 +3401,25 @@ msgid "" "href=\"http://ckan.org/features/\">http://ckan.org/features/

" msgstr "" "

CKAN е водещата световна платформа-портал за отворени данни с отворен " -"код.

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

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

CKAN:

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

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

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

" #: ckan/templates/home/snippets/promoted.html:8 @@ -3424,11 +3428,11 @@ msgstr "Добре дошли в CKAN" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" -"Това е въвеждащ текст за CKAN или най-общо за сайта. Все още нямаме по-" -"подробно описание, но скоро ще имаме." +"Това е въвеждащ текст за CKAN или най-общо за сайта. Все още нямаме " +"по-подробно описание, но скоро ще имаме." #: ckan/templates/home/snippets/promoted.html:19 msgid "This is a featured section" @@ -3473,8 +3477,8 @@ msgstr "групи" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" @@ -3541,8 +3545,8 @@ msgstr "Чернова" #: ckan/templates/package/read.html:11 #: ckan/templates/package/snippets/package_basic_fields.html:98 #: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 msgid "Private" msgstr "Частен" @@ -3597,15 +3601,15 @@ msgid "" "

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

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

" -"

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

" +"

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

" msgstr "" -"

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

" -"

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

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

" +"

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

" +"

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

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

" #: ckan/templates/organization/members.html:14 msgid "{count} member" @@ -3639,24 +3643,24 @@ msgstr "Какво представляват организациите?" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

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

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

" +"

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

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

" msgstr "" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" -"CKAN Организациите се използват за създаване, управление и публикуване на " -"колекции набори от данни. Потребителите могат да имат различни роли в дадена" -" Организация в зависимост от техните права за създаване, редактиране и " -"публикуване." +"CKAN Организациите се използват за създаване, управление и публикуване на" +" колекции набори от данни. Потребителите могат да имат различни роли в " +"дадена Организация в зависимост от техните права за създаване, " +"редактиране и публикуване." #: ckan/templates/organization/snippets/organization_form.html:10 msgid "My Organization" @@ -3672,8 +3676,9 @@ msgstr "Малко информация за моята организация.. #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3696,13 +3701,14 @@ msgstr "Какво представляват наборите от данни?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" -"CKAN набор от данни представлява колекция ресурси от данни (като файлове), " -"наред с описание и друга информация, достъпни на определен URL адрес. " -"Наборите от данни са онова, което потребителите виждат, когато търсят данни." +"CKAN набор от данни представлява колекция ресурси от данни (като " +"файлове), наред с описание и друга информация, достъпни на определен URL " +"адрес. Наборите от данни са онова, което потребителите виждат, когато " +"търсят данни." #: ckan/templates/package/confirm_delete.html:12 msgid "Are you sure you want to delete dataset - {name}?" @@ -3782,9 +3788,9 @@ msgstr "" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" #: ckan/templates/package/new_view.html:29 @@ -3795,12 +3801,13 @@ msgstr "Добавяне" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" -"Това е стара ревизия на този набор от данни, след редакция на %(timestamp)s." -" Може съществено да се различава от настоящата " -"ревизия." +"Това е стара ревизия на този набор от данни, след редакция на " +"%(timestamp)s. Може съществено да се различава от настоящата ревизия." #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" @@ -3869,9 +3876,9 @@ msgstr "" #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" #: ckan/templates/package/resource_read.html:162 @@ -3939,8 +3946,8 @@ msgstr "Добавяне на нов ресурс" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

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

" +"

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

" msgstr "" "

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

" @@ -3963,8 +3970,8 @@ msgid "" " You can also access this registry using the %(api_link)s (see " "%(api_doc_link)s) or download a %(dump_link)s. " msgstr "" -"Може също така да получите достъп до този регистър, като използвате връзките" -" %(api_link)s (see %(api_doc_link)s) или свалите %(dump_link)s." +"Може също така да получите достъп до този регистър, като използвате " +"връзките %(api_link)s (see %(api_doc_link)s) или свалите %(dump_link)s." #: ckan/templates/package/search.html:60 #, python-format @@ -4088,11 +4095,12 @@ msgstr "Активен" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" #: ckan/templates/package/snippets/package_form.html:39 @@ -4203,8 +4211,7 @@ msgstr "Какво е ресурс?" #: ckan/templates/package/snippets/resource_help.html:4 msgid "A resource can be any file or link to a file containing useful data." -msgstr "" -"Ресурс е всеки файл или връзка към файл, който съдържа полезна информация." +msgstr "Ресурс е всеки файл или връзка към файл, който съдържа полезна информация." #: ckan/templates/package/snippets/resource_item.html:23 msgid "Explore" @@ -4413,8 +4420,8 @@ msgstr "

Моля, опитайте да потърсите о #: ckan/templates/snippets/search_form.html:87 msgid "" -"

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

" +"

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

" msgstr "" #: ckan/templates/snippets/search_result_text.html:15 @@ -4561,10 +4568,11 @@ msgstr "Информация за акаунт" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" -"Вашият профил позволява на други CKAN потребители да се запознаят с Вас и " -"това, с което се занимавате. " +"Вашият профил позволява на други CKAN потребители да се запознаят с Вас и" +" това, с което се занимавате. " #: ckan/templates/user/edit_user_form.html:7 msgid "Change details" @@ -4656,8 +4664,8 @@ msgstr "Забравена парола?" #: ckan/templates/user/login.html:44 msgid "No problem, use our password recovery form to reset it." msgstr "" -"Няма проблем, използвайте нашия формуляр за възстановяване на паролата, за " -"да я подновите." +"Няма проблем, използвайте нашия формуляр за възстановяване на паролата, " +"за да я подновите." #: ckan/templates/user/login.html:47 msgid "Forgot your password?" @@ -4793,8 +4801,8 @@ msgstr "" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" "Напишете потребителското си име в полето и ние ще Ви изпратим имейл с " "връзка, на която да въведете нова парола." @@ -4823,3 +4831,4 @@ msgstr "Търсене на потребители" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/ca/LC_MESSAGES/ckan.po b/ckan/i18n/ca/LC_MESSAGES/ckan.po index da3c05a3618..d5a6fe40a06 100644 --- a/ckan/i18n/ca/LC_MESSAGES/ckan.po +++ b/ckan/i18n/ca/LC_MESSAGES/ckan.po @@ -1,23 +1,25 @@ -# Translations template for ckan. +# Catalan translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Adrià Mercader , 2018\n" +"Language: ca\n" "Language-Team: Catalan (https://www.transifex.com/okfn/teams/11162/ca/)\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,19 +130,19 @@ msgstr "Recurs de la DataStore no trobat" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" "S'ha desat el diccionari de dades. Qualsevol nou canvi de tipus de camp " "tindrà efecte el proper cop que el recurs es pugi a la DataStore" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" -"Les dades són invàlides (per exemple: un valor numèric fora del seu rang o " -"que ha sigut afegit en un camp de text)." +"Les dades són invàlides (per exemple: un valor numèric fora del seu rang " +"o que ha sigut afegit en un camp de text)." #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 #: ckanext/datastore/logic/action.py:344 ckanext/datastore/logic/action.py:457 @@ -167,7 +169,8 @@ msgstr "" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" "Més informació a la main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

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

" +"target=\"_blank\">documentació de la API de dades i la DataStore.

" +" " #: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 msgid "Table" @@ -456,8 +461,8 @@ msgstr "0 Conjunts de dades" #: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 msgid "CKAN's data previewing tool has many powerful features" msgstr "" -"Les eines de visualització de dades de CKAN tenen moltes característiques " -"útils" +"Les eines de visualització de dades de CKAN tenen moltes característiques" +" útils" #: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 #: ckan/templates/group/snippets/info.html:32 @@ -497,8 +502,8 @@ msgstr "URL de la imatge" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -"p.ex. http://example.com/image.jpg (si es deixa en blanc s'usa la URL del " -"recurs)" +"p.ex. http://example.com/image.jpg (si es deixa en blanc s'usa la URL del" +" recurs)" #: ckanext/reclineview/plugin.py:101 msgid "Data Explorer" @@ -733,8 +738,7 @@ msgstr "URL del lloc web" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "eg. http://example.com (if blank uses resource url)" -msgstr "" -"p.ex. http://example.com (si es deixa en blanc s'usa la URL del recurs)" +msgstr "p.ex. http://example.com (si es deixa en blanc s'usa la URL del recurs)" #: ckan/templates/dataviewer/snippets/data_preview.html:23 #: ckan/templates/package/snippets/resource_view.html:64 @@ -819,8 +823,8 @@ msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "" -"No es pot purgar el paquet %s ja que la revisió associada %s inclou paquets " -"de dades no esborrats %s" +"No es pot purgar el paquet %s ja que la revisió associada %s inclou " +"paquets de dades no esborrats %s" #: ckan/controllers/admin.py:183 ckan/views/admin.py:197 #, python-format @@ -1132,8 +1136,8 @@ msgstr "Format de revisió invàlid: %r" #: ckan/controllers/package.py:415 msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." msgstr "" -"Visualitzar conjunts de dades de tipus \"{package_type}\" no està suportat " -"({file_lr})." +"Visualitzar conjunts de dades de tipus \"{package_type}\" no està " +"suportat ({file_lr})." #: ckan/controllers/package.py:454 ckan/controllers/package.py:839 #: ckan/controllers/package.py:940 ckan/controllers/package.py:988 @@ -1177,8 +1181,7 @@ msgstr "No teniu autorització per a crear un recurs" #: ckan/controllers/package.py:736 msgid "Unauthorized to create a resource for this package" -msgstr "" -"No teniu autorització per a afegir un recurs a aquest conjunt de dades" +msgstr "No teniu autorització per a afegir un recurs a aquest conjunt de dades" #: ckan/controllers/package.py:950 msgid "Unable to add package to search index." @@ -1331,8 +1334,8 @@ msgid "" "User \"%s\" is now registered but you are still logged in as \"%s\" from " "before" msgstr "" -"L'usuari \"%s\" ha estat registrat, pero encara teniu la sessió iniciada com" -" a \"%s\"" +"L'usuari \"%s\" ha estat registrat, pero encara teniu la sessió iniciada " +"com a \"%s\"" #: ckan/controllers/user.py:294 ckan/views/user.py:174 msgid "Unauthorized to edit a user." @@ -1378,8 +1381,8 @@ msgstr "Usuari desconegut: %s" #: ckan/controllers/user.py:498 ckan/views/user.py:542 msgid "Please check your inbox for a reset code." msgstr "" -"Si us plau, comproveu la vostra safata d'entrada per veure si heu rebut un " -"codi de reinici" +"Si us plau, comproveu la vostra safata d'entrada per veure si heu rebut " +"un codi de reinici" #: ckan/controllers/user.py:502 ckan/views/user.py:546 #, python-format @@ -1448,13 +1451,11 @@ msgstr "{actor} ha modificat el conjunt de dades {dataset}" #: ckan/lib/activity_streams.py:72 msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "" -"{actor} ha canviat l'element extra {extra} del conjunt de dades {dataset}" +msgstr "{actor} ha canviat l'element extra {extra} del conjunt de dades {dataset}" #: ckan/lib/activity_streams.py:75 msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "" -"{actor} ha actualitzat el recurs {resource} del conjunt de dades {dataset}" +msgstr "{actor} ha actualitzat el recurs {resource} del conjunt de dades {dataset}" #: ckan/lib/activity_streams.py:78 msgid "{actor} updated their profile" @@ -1478,8 +1479,7 @@ msgstr "{actor} ha esborrat l'extra {extra} del conjunt de dades {dataset}" #: ckan/lib/activity_streams.py:93 msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "" -"{actor} ha esborrat el recurs {resource} del conjunt de dades {dataset}" +msgstr "{actor} ha esborrat el recurs {resource} del conjunt de dades {dataset}" #: ckan/lib/activity_streams.py:97 msgid "{actor} created the group {group}" @@ -1846,11 +1846,11 @@ msgstr "El nom ha de tenir com a màxim %i caràcters" #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "" -"Ha de ser en minúscules i només contenir números i lletres sense caràcters " -"especials (excepte -_)" +"Ha de ser en minúscules i només contenir números i lletres sense " +"caràcters especials (excepte -_)" #: ckan/logic/validators.py:363 msgid "That URL is already in use." @@ -1949,8 +1949,8 @@ msgstr "Aquest nom de vocabulari ja existeix." #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "" -"No es pot canviar el valor de la clau de %s a %s. Aquesta clau és de només " -"lectura." +"No es pot canviar el valor de la clau de %s a %s. Aquesta clau és de " +"només lectura." #: ckan/logic/validators.py:651 msgid "Tag vocabulary was not found." @@ -2182,8 +2182,8 @@ msgstr "L'usuari %s no està autoritzat a editar aquests grups" #, python-format msgid "User %s not authorized to add dataset to this organization" msgstr "" -"L'usuari %s no té autorització per a afegir un conjunt de dades a aquesta " -"organització" +"L'usuari %s no té autorització per a afegir un conjunt de dades a aquesta" +" organització" #: ckan/logic/auth/create.py:61 msgid "No dataset id provided, cannot check auth." @@ -2247,8 +2247,7 @@ msgstr "L'usuari %s no té autorització per a eliminar el recurs %s" #: ckan/logic/auth/delete.py:56 msgid "Resource view not found, cannot check auth." -msgstr "" -"No s'ha trobat la vista del recurs, no es pot comprovar l'autorització." +msgstr "No s'ha trobat la vista del recurs, no es pot comprovar l'autorització." #: ckan/logic/auth/delete.py:73 #, python-format @@ -2321,8 +2320,7 @@ msgstr "L'usuari %s no té autorització per a modificar el recurs %s" #: ckan/logic/auth/update.py:100 #, python-format msgid "User %s not authorized to change state of package %s" -msgstr "" -"L'usuari %s no està autoritzat a canviar l'estat del conjunt de dades %s" +msgstr "L'usuari %s no està autoritzat a canviar l'estat del conjunt de dades %s" #: ckan/logic/auth/update.py:128 #, python-format @@ -2361,13 +2359,13 @@ msgstr "L'usuari %s no està autoritzat a canviar l'estat de la revisió" #, python-format msgid "User %s not authorized to update task_status table" msgstr "" -"L'usuari %s no està autoritzat a actualitzar la taula de l'estat de tasques" +"L'usuari %s no està autoritzat a actualitzar la taula de l'estat de " +"tasques" #: ckan/logic/auth/update.py:240 #, python-format msgid "User %s not authorized to update term_translation table" -msgstr "" -"L'usuari %s no està autoritzat a actualitzar la taula term_translation" +msgstr "L'usuari %s no està autoritzat a actualitzar la taula term_translation" #: ckan/model/license.py:223 msgid "License not specified" @@ -2500,8 +2498,7 @@ msgstr "No s'ha trobat coincidències" msgid "Input is too short, must be at least one character" msgid_plural "Input is too short, must be at least %(num)d characters" msgstr[0] "L'entrada de dades és massa curta, almenys ha de tenir un caràcter" -msgstr[1] "" -"L'entrada de dades és massa curta, almenys ha de tenir %(num)d caràcters" +msgstr[1] "L'entrada de dades és massa curta, almenys ha de tenir %(num)d caràcters" #: ckan/public-bs2/base/javascript/modules/basic-form.js:4 #: ckan/public/base/javascript/modules/basic-form.js:4 @@ -2648,11 +2645,11 @@ msgstr "No es pot obtenir les dades per a l'arxiu carregat" #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "" -"Esteu pujant un arxiu. Esteu segurs que voleu marxar de la pàgina i aturar " -"la pujada?" +"Esteu pujant un arxiu. Esteu segurs que voleu marxar de la pàgina i " +"aturar la pujada?" #: ckan/public-bs2/base/javascript/modules/resource-view-filters.js:9 #: ckan/public/base/javascript/modules/resource-view-filters.js:9 @@ -2929,38 +2926,41 @@ msgstr "Opcions de configuració de CKAN" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

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

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

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

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

Intro " +"

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

" +"

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

" +"

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

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

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

" "

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

" -"

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

" +"

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

" msgstr "" -"

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

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

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

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

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

" -"

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

" -"

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

" +"

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

" +"

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

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

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

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

" +"

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

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

" #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 @@ -2975,13 +2975,15 @@ msgstr "Administrar CKAN" #, python-format msgid "" "

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

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

" +"Proceed with care!

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

" msgstr "" -"

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

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

de CKAN " +"

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

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

de CKAN " #: ckan/templates/admin/trash.html:20 msgid "Purge" @@ -3142,9 +3144,8 @@ msgstr "Segur que voleu esborrar el membre - {name}?" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "Gestiona" @@ -3176,8 +3177,7 @@ msgstr "Cercar grups..." msgid "There are currently no groups for this site" msgstr "Ara mateix no hi ha grups en aquest lloc" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "En voleu crear un?" @@ -3226,22 +3226,19 @@ msgstr "Usuari nou" msgid "If you wish to invite a new user, enter their email address." msgstr "Si voleu convidar un nou usuari, introduïu el seu correu electrònic. " -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "Rol" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "Segur que voleu eliminar aquest membre?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3262,13 +3259,13 @@ msgstr "Què són els rols?" #: ckan/templates/group/member_new.html:80 msgid "" -"

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

Member: Can add/remove " +"

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

Member: Can add/remove " "datasets from groups

" msgstr "" "

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

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

" +"gestionar els membres del grup

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

" #: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 #: ckan/templates/group/new.html:7 @@ -3338,15 +3335,15 @@ msgstr "Què són els grups?" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" -"Podeu usar els grups de CKAN per crear i gestinar col·leccions de conjunts " -"de dades. Per exemple per agrupar conjunts de dades per a un projecte o " -"equip en particular, per a un temàtica en particular, o per ajudar a la gent" -" a cercar i trobar els vostres propis conjunts de dades." +"Podeu usar els grups de CKAN per crear i gestinar col·leccions de " +"conjunts de dades. Per exemple per agrupar conjunts de dades per a un " +"projecte o equip en particular, per a un temàtica en particular, o per " +"ajudar a la gent a cercar i trobar els vostres propis conjunts de dades." #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 @@ -3409,13 +3406,14 @@ msgid "" "

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

" "

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

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3426,20 +3424,21 @@ msgid "" "href=\"http://ckan.org/features/\">http://ckan.org/features/

" msgstr "" "

CKAN és la plataforma líder mundial en programari lliure per a " -"dades.

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

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

CKAN:

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

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

CKAN: http://ckan.org/
Volta per CKAN: http://ckan.org/tour/
Resum de " "funcinalitats: Markdown formatting here" msgstr "" "Podeu usar Admin: Can add/edit and delete datasets, as well as " "manage organization members.

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

" -"

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

" +"

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

" msgstr "" "

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

" -"

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

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

" +"

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

" +"

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

" #: ckan/templates/organization/members.html:14 msgid "{count} member" @@ -3669,31 +3669,32 @@ msgstr "Què són les organitzacions?" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

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

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

" +"

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

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

" msgstr "" -"

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

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

" +"

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

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

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" "Les organitzacions de CKAN s'uses per crear, gestionar i publicar " -"col·leccions de conjunts de dades. Els usuaris poden tenir diferents rols " -"dins de la organització, depenent del seu nivell d'autorització per crear, " -"editar i publicar conjunts de dades." +"col·leccions de conjunts de dades. Els usuaris poden tenir diferents rols" +" dins de la organització, depenent del seu nivell d'autorització per " +"crear, editar i publicar conjunts de dades." #: ckan/templates/organization/snippets/organization_form.html:10 msgid "My Organization" @@ -3709,8 +3710,9 @@ msgstr "Una mica d'informació sobre la meva organització..." #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" "Esteu segurs que voleu esborrar aquesta organització? Atenció: no es pot " "eliminar un organització mentre contingui conjunts de dades, públics o " @@ -3736,14 +3738,14 @@ msgstr "Què són els conjunts de dades?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" -" Un conjunt de dades de CKAN és una col·lecció de recursos de dades (com per" -" exemple arxius), junt amb una descripció i altra informació, en una URL " -"concreta. Els conjunts de dades són el que els usuaris veuen quan cerquen " -"dades." +" Un conjunt de dades de CKAN és una col·lecció de recursos de dades (com " +"per exemple arxius), junt amb una descripció i altra informació, en una " +"URL concreta. Els conjunts de dades són el que els usuaris veuen quan " +"cerquen dades." #: ckan/templates/package/confirm_delete.html:12 msgid "Are you sure you want to delete dataset - {name}?" @@ -3823,15 +3825,15 @@ msgstr "Afegir vista" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the
Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" "L'explorador de dades pot ser lent i poc fiable si la extensió de la " -"DataStore no està habilitada. Per a més informació, si us plau consulteu la " -"documentació de " -"l'explorador de dades. " +"DataStore no està habilitada. Per a més informació, si us plau consulteu " +"la documentació " +"de l'explorador de dades. " #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:83 @@ -3841,11 +3843,12 @@ msgstr "Afegir" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" -"Aquesta és una revisió antiga d'aquest conjunt de dades, tal i com s'edità " -"el %(timestamp)s. Pot diferir significativament de la revisió actual." #: ckan/templates/package/resource_edit_base.html:17 @@ -3904,7 +3907,8 @@ msgstr "No veieu les vistes esperades?" #: ckan/templates/package/resource_read.html:136 msgid "Here are some reasons you may not be seeing expected views:" msgstr "" -"Aquestes són algunes possibles raons per les quals no es mostren les vistes:" +"Aquestes són algunes possibles raons per les quals no es mostren les " +"vistes:" #: ckan/templates/package/resource_read.html:138 msgid "No view has been created that is suitable for this resource" @@ -3912,18 +3916,17 @@ msgstr "No s'ha creat un vista adequada per a aquest recurs" #: ckan/templates/package/resource_read.html:139 msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" -"Els administradors del lloc no han habilitat els connectors rellevants" +msgstr "Els administradors del lloc no han habilitat els connectors rellevants" #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" -"Si la vista requeriex que les dades estiguin a la DataStore, el connector de" -" la DataStore pot no estar habilitat, o les dades no s'han incorporat a la " -"DataStore o la DataStore encara no ha acabat de processar les dades" +"Si la vista requeriex que les dades estiguin a la DataStore, el connector" +" de la DataStore pot no estar habilitat, o les dades no s'han incorporat " +"a la DataStore o la DataStore encara no ha acabat de processar les dades" #: ckan/templates/package/resource_read.html:162 msgid "Additional Information" @@ -3990,8 +3993,8 @@ msgstr "Afegir nou recurs" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

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

" +"

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

" msgstr "" "

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

" @@ -4079,15 +4082,13 @@ msgstr "Crear una nova organització" #: ckan/templates/package/snippets/cannot_create_package.html:18 msgid "There are no organizations to which you can assign this dataset." -msgstr "" -"No hi ha organitzacions a les que pugueu assignar aquest conjunt de dades" +msgstr "No hi ha organitzacions a les que pugueu assignar aquest conjunt de dades" #: ckan/templates/package/snippets/cannot_create_package.html:19 msgid "" "Ask a system administrator to create an organization before you can " "continue." -msgstr "" -"Demaneu a un administrador que creï una organització abans de continuar" +msgstr "Demaneu a un administrador que creï una organització abans de continuar" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 @@ -4115,8 +4116,8 @@ msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "" -"Les definicions de llicències i la informació addicional la podeu trobar a " -"opendefinition.org " +"Les definicions de llicències i la informació addicional la podeu trobar " +"a opendefinition.org " #: ckan/templates/package/snippets/package_basic_fields.html:76 #: ckan/templates/snippets/organization.html:23 @@ -4141,16 +4142,17 @@ msgstr "Actiu" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" -"La llicència de dades que seleccioneu al camp superior només s'aplica" -" als continguts de qualsevol recurs que afegiu a aquest conjunt de dades. " -"Enviant aquest formulari. accepteu publicar les metadades introduïdes" -" en el formulari sota la llicència de dades que seleccioneu al camp superior només " +"s'aplica als continguts de qualsevol recurs que afegiu a aquest conjunt " +"de dades. Enviant aquest formulari. accepteu publicar les " +"metadades introduïdes en el formulari sota la Open Database " "License." @@ -4263,7 +4265,8 @@ msgstr "Què és un recurs?" #: ckan/templates/package/snippets/resource_help.html:4 msgid "A resource can be any file or link to a file containing useful data." msgstr "" -"Un recurs pot ser qualsevol arxiu o enllaç a un arxiu que conté dades útils." +"Un recurs pot ser qualsevol arxiu o enllaç a un arxiu que conté dades " +"útils." #: ckan/templates/package/snippets/resource_item.html:23 msgid "Explore" @@ -4294,8 +4297,8 @@ msgid "" "You can copy and paste the embed code into a CMS or blog software that " "supports raw HTML" msgstr "" -"Podeu copiar i enganxar el codi d'incrustació en un CMS o blog que suporti " -"codi HTML" +"Podeu copiar i enganxar el codi d'incrustació en un CMS o blog que " +"suporti codi HTML" #: ckan/templates/package/snippets/resource_view.html:80 msgid "Width" @@ -4474,8 +4477,8 @@ msgstr "

Prova una altra cerca.

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

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

" +"

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

" msgstr "" "

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

" @@ -4624,10 +4627,11 @@ msgstr "Informació del compte" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" -"El teu perfil permet a d'altres usuaris de CKAN que sàpigan qui ets i què " -"fas." +"El teu perfil permet a d'altres usuaris de CKAN que sàpigan qui ets i què" +" fas." #: ckan/templates/user/edit_user_form.html:7 msgid "Change details" @@ -4811,8 +4815,7 @@ msgstr "Com funciona això?" #: ckan/templates/user/perform_reset.html:45 msgid "Simply enter a new password and we'll update your account" -msgstr "" -"Simplement introdueix una nova contrasenya i modificarem el teu compte" +msgstr "Simplement introdueix una nova contrasenya i modificarem el teu compte" #: ckan/templates/user/read.html:27 msgid "User hasn't created any datasets." @@ -4857,8 +4860,8 @@ msgstr "Sol·licitar reinici" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" "Entra el teu nom d'usuari dins del quadre i t'enviarem un correu amb un " "enllaç per a entrar la contrasenya" @@ -4887,3 +4890,4 @@ msgstr "Cercar usuaris" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "La vostra contrasenya ha de tenir 8 o més caràcters." + diff --git a/ckan/i18n/cs_CZ/LC_MESSAGES/ckan.po b/ckan/i18n/cs_CZ/LC_MESSAGES/ckan.po index dd832c6b700..b38cd50d839 100644 --- a/ckan/i18n/cs_CZ/LC_MESSAGES/ckan.po +++ b/ckan/i18n/cs_CZ/LC_MESSAGES/ckan.po @@ -1,23 +1,28 @@ -# Translations template for ckan. +# Czech (Czech Republic) translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Jakub Klímek , 2018 +# Adrià Mercader , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Jakub Klímek , 2018\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/okfn/teams/11162/cs_CZ/)\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" +"Last-Translator: Adrià Mercader , 2018\n" +"Language: cs_CZ\n" +"Language-Team: Czech (Czech Republic) " +"(https://www.transifex.com/okfn/teams/11162/cs_CZ/)\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && " +"n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,16 +133,16 @@ msgstr "Požadovaný zdroj z DataStore nebyl nalezen" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" -"Datový slovník uložen. Veškeré změny typů budou uplatněny při dalším nahrání" -" zdroje do DataStore" +"Datový slovník uložen. Veškeré změny typů budou uplatněny při dalším " +"nahrání zdroje do DataStore" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" "Data byla nevalidní (příklad: číselná hodnota je mimo rozsah nebo byla " "vložena do textového pole)" @@ -167,7 +172,8 @@ msgstr "" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

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

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" "Další informace naleznete v dokumentaci pro update your profile and add your email address. " msgstr "" -"Prosím, upravte si svůj profil a doplňte svou emailovou " -"adresu. " +"Prosím, upravte si svůj profil a doplňte svou " +"emailovou adresu. " #: ckan/controllers/home.py:75 ckan/views/home.py:60 #, python-format msgid "%s uses your email address if you need to reset your password." -msgstr "" -"%s používá Vaši emailovou adresu v případě, že potřebujete obnovit heslo." +msgstr "%s používá Vaši emailovou adresu v případě, že potřebujete obnovit heslo." #: ckan/controllers/package.py:304 msgid "Invalid search query: {error_message}" @@ -1129,7 +1135,8 @@ msgstr "Neplatný formát verze: %r" #: ckan/controllers/package.py:415 msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." msgstr "" -"Zobrazení datových sad typu \"{package_type}\" není podporováno ({file_!r})." +"Zobrazení datových sad typu \"{package_type}\" není podporováno " +"({file_!r})." #: ckan/controllers/package.py:454 ckan/controllers/package.py:839 #: ckan/controllers/package.py:940 ckan/controllers/package.py:988 @@ -1353,8 +1360,7 @@ msgstr "nesprávné heslo" #: ckan/controllers/user.py:427 ckan/views/user.py:386 msgid "Login failed. Bad username or password." -msgstr "" -"Přihlášení se nezdařilo. Zadali jste špatné uživatelské jméno nebo heslo." +msgstr "Přihlášení se nezdařilo. Zadali jste špatné uživatelské jméno nebo heslo." #: ckan/controllers/user.py:460 ckan/views/user.py:504 msgid "Unauthorized to request reset password." @@ -1466,8 +1472,7 @@ msgstr "{actor} smazal(-a) datovou sadu {dataset}" #: ckan/lib/activity_streams.py:90 msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "" -"{actor} odstranil(-a) rozšiřující atribut {extra} z datové sady {dataset}" +msgstr "{actor} odstranil(-a) rozšiřující atribut {extra} z datové sady {dataset}" #: ckan/lib/activity_streams.py:93 msgid "{actor} deleted the resource {resource} from the dataset {dataset}" @@ -1487,8 +1492,7 @@ msgstr "{actor} vytvořil(-a) datovou sadu {dataset}" #: ckan/lib/activity_streams.py:106 msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "" -"{actor} přidal(-a) rozšiřující atribut {extra} k datové sadě {dataset}" +msgstr "{actor} přidal(-a) rozšiřující atribut {extra} k datové sadě {dataset}" #: ckan/lib/activity_streams.py:109 msgid "{actor} added the resource {resource} to the dataset {dataset}" @@ -1855,8 +1859,8 @@ msgstr "Jméno může mít nejvýše %i znaků" #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "Musí být čistě alfanumerické (ascii) malé znaky a tyto symboly: -_" #: ckan/logic/validators.py:363 @@ -1901,8 +1905,8 @@ msgstr "Délka tag \"%s\" je větší než povolené maximum %i" #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "" -"Tag \"%s\" může obsahovat pouze malá písmena bez diakritiky, číslice a znaky" -" - (pomlčka) a _ (podtržítko)" +"Tag \"%s\" může obsahovat pouze malá písmena bez diakritiky, číslice a " +"znaky - (pomlčka) a _ (podtržítko)" #: ckan/logic/validators.py:438 #, python-format @@ -1942,8 +1946,8 @@ msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "" -"Úprava nebyla povolena, protože vypadá jako spam. Vyhněte se prosím v popisu" -" odkazům." +"Úprava nebyla povolena, protože vypadá jako spam. Vyhněte se prosím v " +"popisu odkazům." #: ckan/logic/validators.py:628 #, python-format @@ -1957,8 +1961,7 @@ msgstr "Jméno slovníku je již používáno" #: ckan/logic/validators.py:642 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" -msgstr "" -"Nelze změnit hodnotu pojmu z %s na %s. Tento pojem je pouze pro čtení." +msgstr "Nelze změnit hodnotu pojmu z %s na %s. Tento pojem je pouze pro čtení." #: ckan/logic/validators.py:651 msgid "Tag vocabulary was not found." @@ -2001,8 +2004,8 @@ msgstr "Toto není textový řetězec" #: ckan/logic/validators.py:790 msgid "This parent would create a loop in the hierarchy" msgstr "" -"Přidáním tohoto nadřazeného objektu vytvoříte v rámci hierarchie cyklickou " -"vazbu" +"Přidáním tohoto nadřazeného objektu vytvoříte v rámci hierarchie " +"cyklickou vazbu" #: ckan/logic/validators.py:800 msgid "\"filter_fields\" and \"filter_values\" should have the same length" @@ -2198,8 +2201,7 @@ msgstr "Nebylo zadáno žádné ID datové sady. Nelze autorizovat." #: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 #: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 msgid "No package found for this resource, cannot check auth." -msgstr "" -"Pro tento zdroj nebyl nalezen žádný balíček, nelze zkontrolovat oprávnění." +msgstr "Pro tento zdroj nebyl nalezen žádný balíček, nelze zkontrolovat oprávnění." #: ckan/logic/auth/create.py:76 #, python-format @@ -2224,7 +2226,8 @@ msgstr "Uživatel %s nemá oprávnění vytvářet organizace" #: ckan/logic/auth/create.py:145 msgid "User {user} not authorized to create users via the API" msgstr "" -"Uživatel {user} není oprávněn vytvářet uživatelské účty prostřednictvím API" +"Uživatel {user} není oprávněn vytvářet uživatelské účty prostřednictvím " +"API" #: ckan/logic/auth/create.py:148 msgid "Not authorized to create users" @@ -2419,8 +2422,7 @@ msgstr "UK Open Government Licence (OGL)" #: ckan/model/license.py:342 msgid "Creative Commons Non-Commercial (Any)" -msgstr "" -"Creative Commons Neužívejte dílo komerčně (jakákoli takováto CC licence)" +msgstr "Creative Commons Neužívejte dílo komerčně (jakákoli takováto CC licence)" #: ckan/model/license.py:350 msgid "Other (Non-Commercial)" @@ -2478,8 +2480,7 @@ msgstr "je příbuzné s %s" #: ckan/public-bs2/base/javascript/modules/api-info.js:96 #: ckan/public/base/javascript/modules/api-info.js:96 msgid "There is no API data to load for this resource" -msgstr "" -"Tento datový zdroj neobsahuje žádná data, která lze poskytnou přes API" +msgstr "Tento datový zdroj neobsahuje žádná data, která lze poskytnou přes API" #: ckan/public-bs2/base/javascript/modules/api-info.js:124 #: ckan/public/base/javascript/modules/api-info.js:124 @@ -2651,8 +2652,8 @@ msgstr "Nelze získat data z nahraného souboru" #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "" "Právě nahráváte soubor. Jste si opravdu jistí, že chcete tuto stránku " "opustit a ukončit tak nahrávání?" @@ -2946,37 +2947,39 @@ msgstr "Konfigurační volby CKAN" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

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

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

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

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

Intro " +"

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

" +"

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

" +"

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

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

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

" "

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

" -"

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

" +"

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

" msgstr "" "

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

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

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

" -"

O portálu: Tento text se objeví na

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

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

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

" "

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

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

" -"

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

" +"href=\"%(home_url)s\">domovské stránce této CKAN instance pro " +"přivítání návštěvníků.

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

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

" #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 @@ -2991,12 +2994,14 @@ msgstr "Spravovat CKAN" #, python-format msgid "" "

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

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

" +"Proceed with care!

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

" msgstr "" "

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

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

" +"Pokračujte s opatrností!

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

" #: ckan/templates/admin/trash.html:20 msgid "Purge" @@ -3155,9 +3160,8 @@ msgstr "Jste si jistí, že chcete odstranit člena - {name}?" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "Spravovat" @@ -3189,8 +3193,7 @@ msgstr "Vyhledat skupiny..." msgid "There are currently no groups for this site" msgstr "Na tomto portálu aktuálně nejsou žádné skupiny" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "Nechcete jednu založit?" @@ -3239,25 +3242,21 @@ msgstr "Nový uživatel" #: ckan/templates/group/member_new.html:45 #: ckan/templates/organization/member_new.html:46 msgid "If you wish to invite a new user, enter their email address." -msgstr "" -"Pokud si přejete pozvat nové uživatele, zadejte jejich emailové adresy." +msgstr "Pokud si přejete pozvat nové uživatele, zadejte jejich emailové adresy." -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "Role" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "Jste si jist, že chcete smazat tohoto člena?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3278,8 +3277,8 @@ msgstr "Co jsou to role?" #: ckan/templates/group/member_new.html:80 msgid "" -"

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

Member: Can add/remove " +"

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

Member: Can add/remove " "datasets from groups

" msgstr "" "

Administrátor: Může upravovat informace o skupině a " @@ -3354,15 +3353,16 @@ msgstr "Co jsou skupiny?" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" -"V CKAN můžete skupiny použít k vytváření a správě kolekcí datových sad. Může" -" to být např. katalog datových sad určitého projektu nebo týmu, případně to " -"mohou být datové sady určitého tématu. Skupiny také můžete použít jako " -"pomůcku pro uživatele, aby mohli snáze najít Vámi publikované datové sady." +"V CKAN můžete skupiny použít k vytváření a správě kolekcí datových sad. " +"Může to být např. katalog datových sad určitého projektu nebo týmu, " +"případně to mohou být datové sady určitého tématu. Skupiny také můžete " +"použít jako pomůcku pro uživatele, aby mohli snáze najít Vámi publikované" +" datové sady." #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 @@ -3425,13 +3425,14 @@ msgid "" "

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

" "

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

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

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

CKAN je přední světová open source platforma pro datové portály.

" "

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

CKAN je využíván vládami a skupinami uživatelů po celém " -"světě a je to platforma mnoha oficiálních a komunitních datových portálů, " -"mezi které patří portály veřejné správy na regionální, národní a nadnárodní " -"úrovni, jako jsou např. portály Velké Británie

CKAN je využíván vládami a skupinami uživatelů po " +"celém světě a je to platforma mnoha oficiálních a komunitních datových " +"portálů, mezi které patří portály veřejné správy na regionální, národní a" +" nadnárodní úrovni, jako jsou např. portály Velké Británie data.gov.uk a Evropské Unie publicdata.eu, Brazílie dados.gov.br, portály veřejné správy v " @@ -3468,11 +3469,11 @@ msgstr "Vítejte v CKAN" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" -"Toto je úvodní odstavec o CKANu nebo obecně o portálu. Nemáme sem zatím co " -"dát, ale to se brzy změní" +"Toto je úvodní odstavec o CKANu nebo obecně o portálu. Nemáme sem zatím " +"co dát, ale to se brzy změní" #: ckan/templates/home/snippets/promoted.html:19 msgid "This is a featured section" @@ -3517,13 +3518,13 @@ msgstr "skupiny" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" -"Zde můžete použít formátování Markdown" +"Zde můžete použít formátování Markdown" #: ckan/templates/macros/form.html:277 msgid "This field is required" @@ -3588,8 +3589,8 @@ msgstr "Předběžný návrh" #: ckan/templates/package/read.html:11 #: ckan/templates/package/snippets/package_basic_fields.html:98 #: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 msgid "Private" msgstr "Soukromá" @@ -3644,14 +3645,15 @@ msgid "" "

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

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

" -"

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

" +"

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

" msgstr "" -"

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

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

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

" +"

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

" +"

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

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

" #: ckan/templates/organization/members.html:14 msgid "{count} member" @@ -3687,30 +3689,31 @@ msgstr "Co jsou organizace?" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

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

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

" +"

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

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

" msgstr "" "

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

Uvnitř organizací mohou administrátoři " -"přidělovat role a autorizovat členy. Členům mohou individuálně přidělovat " -"práva na publikaci datových sad za danou organizaci (např. Český statistický" -" úřad)." +"přidělovat role a autorizovat členy. Členům mohou individuálně přidělovat" +" práva na publikaci datových sad za danou organizaci (např. Český " +"statistický úřad)." #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" "V CKAN jsou organizace používány k vytváření, správě a publikaci kolekcí " -"datových sad. Uživatelé mohou mít v rámci organizace různé role v závislosti" -" na úrovni oprávnění k vytváření, úpravám a publikaci datových sad." +"datových sad. Uživatelé mohou mít v rámci organizace různé role v " +"závislosti na úrovni oprávnění k vytváření, úpravám a publikaci datových " +"sad." #: ckan/templates/organization/snippets/organization_form.html:10 msgid "My Organization" @@ -3726,11 +3729,13 @@ msgstr "Stručné informace o mé organizaci" #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" -"Opravdu chcete smazat tuto organizaci? Poznámka*: Smazání nemůže proběhnout " -"dokud do této organizace patří veřejné či soukromé datové sady." +"Opravdu chcete smazat tuto organizaci? Poznámka*: Smazání nemůže " +"proběhnout dokud do této organizace patří veřejné či soukromé datové " +"sady." #: ckan/templates/organization/snippets/organization_form.html:41 msgid "Save Organization" @@ -3752,13 +3757,13 @@ msgstr "Co jsou to datové sady?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" -"V CKAN je datasetem soubor datových zdrojů (jako jsou např. soubory) spolu s" -" jeho popisem a dalšími údaji, který má pevnou URL adresu. Uživatelům se " -"zobrazují datasety jako výsledky jejich hledání." +"V CKAN je datasetem soubor datových zdrojů (jako jsou např. soubory) " +"spolu s jeho popisem a dalšími údaji, který má pevnou URL adresu. " +"Uživatelům se zobrazují datasety jako výsledky jejich hledání." #: ckan/templates/package/confirm_delete.html:12 msgid "Are you sure you want to delete dataset - {name}?" @@ -3838,15 +3843,15 @@ msgstr "Přidat zobrazení" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" "Zobrazení prohlížeče dat může být pomalé a nespolehlivé, pokud není " "aktivováno rozšíření DataStore. Pro více informací se podívejte na dokumentaci Datového " -"prohlížeče." +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>dokumentaci " +"Datového prohlížeče." #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:83 @@ -3856,11 +3861,12 @@ msgstr "Přidat" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" -"Toto je stará revize tohoto dataset, která byla upravena %(timestamp)s. Může" -" se tak značně lišit od aktuální revize." +"Toto je stará revize tohoto dataset, která byla upravena %(timestamp)s. " +"Může se tak značně lišit od aktuální revize." #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" @@ -3921,8 +3927,7 @@ msgstr "Zde je pár důvodů proč nemusíte vidět očekávaná zobrazení:" #: ckan/templates/package/resource_read.html:138 msgid "No view has been created that is suitable for this resource" -msgstr "" -"Nebylo vytvořeno žádné zobrazení které by se hodilo pro tento datový zdroj" +msgstr "Nebylo vytvořeno žádné zobrazení které by se hodilo pro tento datový zdroj" #: ckan/templates/package/resource_read.html:139 msgid "The site administrators may not have enabled the relevant view plugins" @@ -3930,13 +3935,13 @@ msgstr "Administrátoři možná nepovolili relevantní pluginy pro zobrazení" #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" -"Jestliže zobrazení vyžaduje DataStore, plugin DataStore možná není zapnutý, " -"data nebyla nahrána do DataStore a nebo DataStore ještě nedokončil " -"zpracování dat." +"Jestliže zobrazení vyžaduje DataStore, plugin DataStore možná není " +"zapnutý, data nebyla nahrána do DataStore a nebo DataStore ještě " +"nedokončil zpracování dat." #: ckan/templates/package/resource_read.html:162 msgid "Additional Information" @@ -4003,8 +4008,8 @@ msgstr "Přidat nový datový zdroj" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

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

" +"

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

" msgstr "" "

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

" @@ -4092,15 +4097,13 @@ msgstr "Vytvořit organizaci" #: ckan/templates/package/snippets/cannot_create_package.html:18 msgid "There are no organizations to which you can assign this dataset." -msgstr "" -"Neexistují organizace, do kterých byste mohli přiřadit tuto datovou sadu." +msgstr "Neexistují organizace, do kterých byste mohli přiřadit tuto datovou sadu." #: ckan/templates/package/snippets/cannot_create_package.html:19 msgid "" "Ask a system administrator to create an organization before you can " "continue." -msgstr "" -"Před pokračováním požádejte systémového správce o vytvoření organizace." +msgstr "Před pokračováním požádejte systémového správce o vytvoření organizace." #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 @@ -4154,16 +4157,17 @@ msgstr "Aktivní" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" "Datová licence kterou výše vyberete se vztahuje pouze na obsah " -"každého ze zdrojových souborů které přidáte do této datové sady. Odesláním " -"tohoto formuláře souhlasíte s uvolněním metadatových hodnot, které " -"zadáváte do formuláře, pod licencí metadatových " +"hodnot, které zadáváte do formuláře, pod licencí Open Database " "License." @@ -4308,8 +4312,8 @@ msgid "" "You can copy and paste the embed code into a CMS or blog software that " "supports raw HTML" msgstr "" -"Můžete kopírovat a vložit kód embedu do CMS nebo blogovacího software který " -"podporuje čisté HTML" +"Můžete kopírovat a vložit kód embedu do CMS nebo blogovacího software " +"který podporuje čisté HTML" #: ckan/templates/package/snippets/resource_view.html:80 msgid "Width" @@ -4488,8 +4492,8 @@ msgstr "

Prosím, zkuste jiný dotaz.

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

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

" +"

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

" msgstr "" "

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

" @@ -4650,10 +4654,11 @@ msgstr "Informace o uživatelském účtu" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" -"Pomocí Vašeho CKAN profilu můžete říci ostatním uživatelům něco o sobě a o " -"tom, co děláte." +"Pomocí Vašeho CKAN profilu můžete říci ostatním uživatelům něco o sobě a " +"o tom, co děláte." #: ckan/templates/user/edit_user_form.html:7 msgid "Change details" @@ -4777,8 +4782,7 @@ msgstr "Už jste přihlášeni" #: ckan/templates/user/logout_first.html:22 msgid "You need to log out before you can log in with another account." -msgstr "" -"Pokud se chcete přihlásit pod jiným účtem, musíte se nejprve odhlásit." +msgstr "Pokud se chcete přihlásit pod jiným účtem, musíte se nejprve odhlásit." #: ckan/templates/user/logout_first.html:23 msgid "Log out now" @@ -4799,7 +4803,8 @@ msgstr "Proč bych se měl přihlásit?" #: ckan/templates/user/new.html:28 msgid "Create datasets, groups and other exciting things" msgstr "" -"Abyste mohli vytvářet datové sady, skupiny a spoustu dalších zajímavých věcí" +"Abyste mohli vytvářet datové sady, skupiny a spoustu dalších zajímavých " +"věcí" #: ckan/templates/user/new_user_form.html:5 msgid "username" @@ -4882,8 +4887,8 @@ msgstr "Žádost o obnovení" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" "Zadejte uživatelské jméno do textového pole a bude Vám zaslán email s " "odkazem, kde si budete moci zadat nové heslo." @@ -4912,3 +4917,4 @@ msgstr "Vyhledat uživatele" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "Vaše heslo musí mít alespoň 8 znaků." + diff --git a/ckan/i18n/da_DK/LC_MESSAGES/ckan.po b/ckan/i18n/da_DK/LC_MESSAGES/ckan.po index d2cb84cf009..4a45b4733d2 100644 --- a/ckan/i18n/da_DK/LC_MESSAGES/ckan.po +++ b/ckan/i18n/da_DK/LC_MESSAGES/ckan.po @@ -1,23 +1,26 @@ -# Translations template for ckan. +# Danish (Denmark) translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Adrià Mercader , 2018\n" -"Language-Team: Danish (Denmark) (https://www.transifex.com/okfn/teams/11162/da_DK/)\n" +"Language: da_DK\n" +"Language-Team: Danish (Denmark) " +"(https://www.transifex.com/okfn/teams/11162/da_DK/)\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: da_DK\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,14 +131,14 @@ msgstr "DataStore-ressourcen ikke fundet" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 @@ -161,7 +164,8 @@ msgstr "Tilgå ressourcens data via et web-API med kraftfuld query-support" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -172,8 +176,8 @@ msgstr "Endpoints" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "Data-API'et kan tilgås via følgende actions fra CKAN action API'et." #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 @@ -311,7 +315,8 @@ msgstr "Data API" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 @@ -800,8 +805,8 @@ msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "" -"Kan ikke tømme datakilde %s da associeret revision %s omfatter ikke-slettede" -" datakilder %s" +"Kan ikke tømme datakilde %s da associeret revision %s omfatter ikke-" +"slettede datakilder %s" #: ckan/controllers/admin.py:183 ckan/views/admin.py:197 #, python-format @@ -1070,13 +1075,13 @@ msgstr "Dette site er i øjeblikket offline. Databasen er ikke initialiseret." #, python-format msgid "Please update your profile and add your email address. " msgstr "" -"Opdatér venligst din profil og tilføj din e-mail-adresse." +"Opdatér venligst din profil og tilføj din e-mail-" +"adresse." #: ckan/controllers/home.py:75 ckan/views/home.py:60 #, python-format msgid "%s uses your email address if you need to reset your password." -msgstr "" -"%s bruger din e-mail-adresse, hvis du ønsker at nulstille din adgangskode." +msgstr "%s bruger din e-mail-adresse, hvis du ønsker at nulstille din adgangskode." #: ckan/controllers/package.py:304 msgid "Invalid search query: {error_message}" @@ -1303,8 +1308,8 @@ msgid "" "User \"%s\" is now registered but you are still logged in as \"%s\" from " "before" msgstr "" -"Bruger \"%s\" er nu registreret, men du er fortsat logget ind som \"%s\" fra" -" tidligere" +"Bruger \"%s\" er nu registreret, men du er fortsat logget ind som \"%s\" " +"fra tidligere" #: ckan/controllers/user.py:294 ckan/views/user.py:174 msgid "Unauthorized to edit a user." @@ -1813,8 +1818,8 @@ msgstr "Navnet må indeholde maksimalt %i tegn" #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "" #: ckan/logic/validators.py:363 @@ -1898,8 +1903,8 @@ msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "" -"Ændring ikke godkendt, da indholdet ser ud til at ligne spam. Undgå venligst" -" links i din beskrivelse." +"Ændring ikke godkendt, da indholdet ser ud til at ligne spam. Undgå " +"venligst links i din beskrivelse." #: ckan/logic/validators.py:628 #, python-format @@ -2151,8 +2156,7 @@ msgstr "" #: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 #: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 msgid "No package found for this resource, cannot check auth." -msgstr "" -"Ingen datakilde fundet til denne ressource, kan ikke tjekke autorisation." +msgstr "Ingen datakilde fundet til denne ressource, kan ikke tjekke autorisation." #: ckan/logic/auth/create.py:76 #, python-format @@ -2291,8 +2295,7 @@ msgstr "Bruger %s ikke autoriseret til at ændre status for gruppen %s" #: ckan/logic/auth/update.py:162 #, python-format msgid "User %s not authorized to edit permissions of group %s" -msgstr "" -"Bruger %s ikke autoriseret til at redigere tilladelserne for gruppen %s" +msgstr "Bruger %s ikke autoriseret til at redigere tilladelserne for gruppen %s" #: ckan/logic/auth/update.py:190 msgid "Have to be logged in to edit user" @@ -2600,10 +2603,11 @@ msgstr "Ude af stand til at hente data for uploadet fil" #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "" -"Du uploader en fil. Er du sikker på, du vil navigere væk og standse upload?" +"Du uploader en fil. Er du sikker på, du vil navigere væk og standse " +"upload?" #: ckan/public-bs2/base/javascript/modules/resource-view-filters.js:9 #: ckan/public/base/javascript/modules/resource-view-filters.js:9 @@ -2880,36 +2884,38 @@ msgstr "CKAN konfigurationsindstillinger" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

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

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

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

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

Intro " +"

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

" +"

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

" +"

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

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

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

" "

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

" -"

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

" -msgstr "" -"

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

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

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

" +"

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

" +msgstr "" +"

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

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

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

" "

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

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

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

" -"

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

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

" +"

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

" #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 @@ -2924,8 +2930,9 @@ msgstr "" #, python-format msgid "" "

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

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

" +"Proceed with care!

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

" msgstr "" #: ckan/templates/admin/trash.html:20 @@ -3085,9 +3092,8 @@ msgstr "Er du sikker på, at du vil slette medlemmet - {name}?" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "Administrer" @@ -3119,8 +3125,7 @@ msgstr "Søg grupper..." msgid "There are currently no groups for this site" msgstr "Der er i øjeblikket ingen grupper for dette site" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "Hvad med at oprette en?" @@ -3153,7 +3158,8 @@ msgstr "Eksisterende bruger" #: ckan/templates/organization/member_new.html:22 msgid "If you wish to add an existing user, search for their username below." msgstr "" -"Hvis du vil tilføje en eksisterende burger, søg efter brugernavnet herunder." +"Hvis du vil tilføje en eksisterende burger, søg efter brugernavnet " +"herunder." #: ckan/templates/group/member_new.html:38 #: ckan/templates/organization/member_new.html:39 @@ -3170,22 +3176,19 @@ msgstr "Ny bruger" msgid "If you wish to invite a new user, enter their email address." msgstr "Hvis du vil invitere en ny bruger, indtast dennes e-mail-adresse." -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "Rolle" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "Er du sikker på, at du vil slette dette medlem?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3206,13 +3209,13 @@ msgstr "Hvad er roller?" #: ckan/templates/group/member_new.html:80 msgid "" -"

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

Member: Can add/remove " +"

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

Member: Can add/remove " "datasets from groups

" msgstr "" "

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

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

" +"organisationsmedlemmer.

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

" #: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 #: ckan/templates/group/new.html:7 @@ -3282,15 +3285,15 @@ msgstr "Hvad er grupper?" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" -"Du kan bruge CKAN Grupper til at oprette og håndtere samlinger af datasæt. " -"Dette kan være datasæt for et givent projekt eller team, efter et bestemt " -"tema eller som en meget simpel måde at hjælpe folk med at finde og søge " -"efter dine egne publicerede datasæt." +"Du kan bruge CKAN Grupper til at oprette og håndtere samlinger af " +"datasæt. Dette kan være datasæt for et givent projekt eller team, efter " +"et bestemt tema eller som en meget simpel måde at hjælpe folk med at " +"finde og søge efter dine egne publicerede datasæt." #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 @@ -3353,13 +3356,14 @@ msgid "" "

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

" "

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

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3369,15 +3373,16 @@ msgid "" "overview: http://ckan.org/features/

" msgstr "" -"

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

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

CKAN is used by governments and user groups worldwide and " -"powers a variety of official and community data portals including portals " -"for local, national and international government, such as the UK’s CKAN is the world’s leading open-source data portal platform.

" +"

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

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " @@ -3394,11 +3399,11 @@ msgstr "Velkommen til CKAN" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" -"Dette er en lækker intro-tekst om CKAN eller sitet i almindelighed. Vi har " -"ikke noget tekst her endnu, men det kommer snart" +"Dette er en lækker intro-tekst om CKAN eller sitet i almindelighed. Vi " +"har ikke noget tekst her endnu, men det kommer snart" #: ckan/templates/home/snippets/promoted.html:19 msgid "This is a featured section" @@ -3443,8 +3448,8 @@ msgstr "grupper" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" @@ -3511,8 +3516,8 @@ msgstr "Udkast" #: ckan/templates/package/read.html:11 #: ckan/templates/package/snippets/package_basic_fields.html:98 #: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 msgid "Private" msgstr "Privat" @@ -3567,14 +3572,14 @@ msgid "" "

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

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

" -"

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

" +"

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

" msgstr "" -"

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

" +"

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

" "

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

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

" +"administrere medlemmer i en organisation

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

" #: ckan/templates/organization/members.html:14 msgid "{count} member" @@ -3608,23 +3613,24 @@ msgstr "Hvad er organisationer?" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

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

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

" +"

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

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

" msgstr "" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" -"CKAN Organisationer bruges til at oprette, håndtere og publicere samlinger " -"af datasæt. Brugere kan have forskellige roller inden for en Organisation, " -"afhængigt af deres autorisation til at oprette, redigere og publicere." +"CKAN Organisationer bruges til at oprette, håndtere og publicere " +"samlinger af datasæt. Brugere kan have forskellige roller inden for en " +"Organisation, afhængigt af deres autorisation til at oprette, redigere og" +" publicere." #: ckan/templates/organization/snippets/organization_form.html:10 msgid "My Organization" @@ -3640,8 +3646,9 @@ msgstr "Lidt information om min organisation..." #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3664,13 +3671,13 @@ msgstr "Hvad er datasæt?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" -"Et CKAN Datasæt er en samling af dataressourcer (som f.eks. filer), sammen " -"med en beskrivelse og andre informationer, som en statisk URL. Datasæt er " -"hvad brugere ser, når de søger efter data." +"Et CKAN Datasæt er en samling af dataressourcer (som f.eks. filer), " +"sammen med en beskrivelse og andre informationer, som en statisk URL. " +"Datasæt er hvad brugere ser, når de søger efter data." #: ckan/templates/package/confirm_delete.html:12 msgid "Are you sure you want to delete dataset - {name}?" @@ -3750,9 +3757,9 @@ msgstr "" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" #: ckan/templates/package/new_view.html:29 @@ -3763,11 +3770,12 @@ msgstr "Tilføj" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" -"Dette er en gammel version af dette datasæt (ændret %(timestamp)s). Det kan " -"afvige markant fra den aktuelle version." +"Dette er en gammel version af dette datasæt (ændret %(timestamp)s). Det " +"kan afvige markant fra den aktuelle version." #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" @@ -3836,9 +3844,9 @@ msgstr "" #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" #: ckan/templates/package/resource_read.html:162 @@ -3906,8 +3914,8 @@ msgstr "Tilføj ny ressource" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

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

" +"

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

" msgstr "" "

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

" @@ -3938,8 +3946,7 @@ msgstr "" msgid "" " You can also access this registry using the %(api_link)s (see " "%(api_doc_link)s). " -msgstr "" -"Du kan også tilgå dette register med %(api_link)s (se %(api_doc_link)s)." +msgstr "Du kan også tilgå dette register med %(api_link)s (se %(api_doc_link)s)." #: ckan/templates/package/view_edit_base.html:9 msgid "All views" @@ -4054,11 +4061,12 @@ msgstr "Aktiv" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" #: ckan/templates/package/snippets/package_form.html:39 @@ -4380,8 +4388,8 @@ msgstr "

Prøv venligst en anden søgning.

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

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

" +"

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

" msgstr "" #: ckan/templates/snippets/search_result_text.html:15 @@ -4528,7 +4536,8 @@ msgstr "Kontoinformation" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "Din profil viser andre CKAN-brugere hvem du er og hvad du laver." #: ckan/templates/user/edit_user_form.html:7 @@ -4758,11 +4767,11 @@ msgstr "" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" -"Skriv dit brugernavn i feltet og vi sender dig en e-mail med et link, hvor " -"du kan angive en ny adgangskode." +"Skriv dit brugernavn i feltet og vi sender dig en e-mail med et link, " +"hvor du kan angive en ny adgangskode." #: ckan/templates/user/snippets/followee_dropdown.html:15 #: ckan/templates/user/snippets/followee_dropdown.html:16 @@ -4788,3 +4797,4 @@ msgstr "Søg efter brugere" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/de/LC_MESSAGES/ckan.po b/ckan/i18n/de/LC_MESSAGES/ckan.po index e1606411da5..697dcc37bb8 100644 --- a/ckan/i18n/de/LC_MESSAGES/ckan.po +++ b/ckan/i18n/de/LC_MESSAGES/ckan.po @@ -1,23 +1,26 @@ -# Translations template for ckan. +# German translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 +# Ondics Githubler, 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Ondics Githubler, 2018\n" +"Language: de\n" "Language-Team: German (https://www.transifex.com/okfn/teams/11162/de/)\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,16 +131,16 @@ msgstr "DataStore Ressource nicht gefunden" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" -"Das Data Dictionary wurde gespeichert. Typ-Änderungen werden wirksam, wenn " -"die Ressource in den DataStore hochgeladen wird." +"Das Data Dictionary wurde gespeichert. Typ-Änderungen werden wirksam, " +"wenn die Ressource in den DataStore hochgeladen wird." #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" "Die Daten waren ungültig (evtl. ist ein numerischer Wert außerhalb des " "gültigen Bereichs oder wurde in ein Feld vom Typ \"Text\" eingefügt)." @@ -167,7 +170,8 @@ msgstr "" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" "Weiterführende Information in der main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" "Weiterführende Information in der Powered by
CKAN" msgstr "" -"Eingesetzte Software ist CKAN" +"Eingesetzte Software ist CKAN" #: ckan/templates/header.html:9 msgid "Sysadmin settings" @@ -2931,37 +2928,38 @@ msgstr "Optionen der CKAN-Konfiguration" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

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

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

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

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

Intro " +"

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

" +"

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

" +"

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

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

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

" "

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

" -"

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

" +"

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

" msgstr "" -"

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

" -"

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

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

" -"

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

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

" -"

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

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

" +"

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

" +"

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

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

" +"

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

" +"

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

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

" +"

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

" #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 @@ -2976,8 +2974,9 @@ msgstr "CKAN verwalten" #, python-format msgid "" "

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

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

" +"Proceed with care!

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

" msgstr "" "

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

Hilfe zu den Möglichkeiten zur " @@ -3141,9 +3140,8 @@ msgstr "Sind Sie sicher, dass Sie das Mitglied {name} löschen wollen?" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "Bearbeiten" @@ -3175,8 +3173,7 @@ msgstr "Gruppe suchen..." msgid "There are currently no groups for this site" msgstr "Es gibt momentan keine Gruppen für diese Seite" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "Wie wäre es, wenn Sie eine erstellen?" @@ -3209,8 +3206,8 @@ msgstr "Bestehender Benutzer" #: ckan/templates/organization/member_new.html:22 msgid "If you wish to add an existing user, search for their username below." msgstr "" -"Um einen bestehenden Benutzer hinzuzufügen, können Sie dessen Benutzernamen " -"unten suchen." +"Um einen bestehenden Benutzer hinzuzufügen, können Sie dessen " +"Benutzernamen unten suchen." #: ckan/templates/group/member_new.html:38 #: ckan/templates/organization/member_new.html:39 @@ -3225,25 +3222,21 @@ msgstr "Neuer Benutzer" #: ckan/templates/group/member_new.html:45 #: ckan/templates/organization/member_new.html:46 msgid "If you wish to invite a new user, enter their email address." -msgstr "" -"Um einen neuen Benutzer einzuladen, geben Sie dessen Email-Adresse ein." +msgstr "Um einen neuen Benutzer einzuladen, geben Sie dessen Email-Adresse ein." -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "Rolle" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "Sind Sie sicher, dass Sie dieses Mitglied löschen wollen?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3264,8 +3257,8 @@ msgstr "Was sind Rollen?" #: ckan/templates/group/member_new.html:80 msgid "" -"

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

Member: Can add/remove " +"

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

Member: Can add/remove " "datasets from groups

" msgstr "" "

Admin: Kann Gruppen-Informationen und " @@ -3340,15 +3333,15 @@ msgstr "Was sind Gruppen?" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" -"Sie können mit CKAN Gruppen Datensätze erstellen und verwalten. Damit können" -" Datensätze für ein bestimmtes Projekt, ein Team oder zu einem bestimmten " -"Thema katalogisiert oder sehr leicht die eigenen veröffentlichten Datensätze" -" anderen Leuten zugänglich gemacht werden." +"Sie können mit CKAN Gruppen Datensätze erstellen und verwalten. Damit " +"können Datensätze für ein bestimmtes Projekt, ein Team oder zu einem " +"bestimmten Thema katalogisiert oder sehr leicht die eigenen " +"veröffentlichten Datensätze anderen Leuten zugänglich gemacht werden." #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 @@ -3411,13 +3404,14 @@ msgid "" "

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

" "

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

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

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

CKAN ist die weltweit führende Open Souce Data Portalsoftware.

" "

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

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

CKAN: http://ckan.org/
CKAN Kennenlern-Tour: " -"http://ckan.org/tour/
" +"sowie kommunale und Städteportale in allen Teilen der Welt.

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

" @@ -3454,8 +3448,8 @@ msgstr "Willkommen bei CKAN" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" "Dies ist ein freundlicher Einführungsabsatz zu CKAN oder dieser Seite " "generell. Wir haben noch keinen Inhalt hier, aber sicherlich bald" @@ -3503,8 +3497,8 @@ msgstr "Gruppen" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" "Sie können hier Admin: Can add/edit and delete datasets, as well as " "manage organization members.

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

" -"

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

" +"

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

" msgstr "" -"

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

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

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

" +"

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

" +"

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

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

" #: ckan/templates/organization/members.html:14 msgid "{count} member" @@ -3671,31 +3666,31 @@ msgstr "Was sind Organisationen?" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

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

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

" +"

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

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

" msgstr "" "

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

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

" +"Datensätze (zum Beispiel das Katasteramt). Das bedeutet, dass Datensätze " +"von dieser Abteilung veröffentlicht werden und dieser auch gehören, " +"anstatt einem einzelnen Nutzer.

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

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" -"Mit CKAN Organisationen können Gruppen von Datensätzen erstellt, bearbeitet " -"und veröffentlicht werden. Benutzer haben verschiedene Berechtigungen " -"innerhalb von Organisationen, die von ihrer Berechtigungsstufe abhängen: " -"erstellen, bearbeiten, veröffentlichen." +"Mit CKAN Organisationen können Gruppen von Datensätzen erstellt, " +"bearbeitet und veröffentlicht werden. Benutzer haben verschiedene " +"Berechtigungen innerhalb von Organisationen, die von ihrer " +"Berechtigungsstufe abhängen: erstellen, bearbeiten, veröffentlichen." #: ckan/templates/organization/snippets/organization_form.html:10 msgid "My Organization" @@ -3711,12 +3706,13 @@ msgstr "Ein paar Informationen zu meiner Organisation..." #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" -"Soll diese Organisation wirklich gelöscht werden? Hinweis*: Das Löschen kann" -" nicht ausgeführt werden, solange öffentliche oder private Datensätze zu " -"dieser Organisation gehören." +"Soll diese Organisation wirklich gelöscht werden? Hinweis*: Das Löschen " +"kann nicht ausgeführt werden, solange öffentliche oder private Datensätze" +" zu dieser Organisation gehören." #: ckan/templates/organization/snippets/organization_form.html:41 msgid "Save Organization" @@ -3738,13 +3734,13 @@ msgstr "Was sind Datensätze?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" -"Ein CKAN Datensatz ist eine Menge von Daten-Ressourcen (z.B. Dateien) mit " -"einer Beschreibung und anderen Informationen an einer festen URL. Datensätze" -" werden bei Suchanfragen als Ergebnisse zurückgegeben." +"Ein CKAN Datensatz ist eine Menge von Daten-Ressourcen (z.B. Dateien) mit" +" einer Beschreibung und anderen Informationen an einer festen URL. " +"Datensätze werden bei Suchanfragen als Ergebnisse zurückgegeben." #: ckan/templates/package/confirm_delete.html:12 msgid "Are you sure you want to delete dataset - {name}?" @@ -3824,15 +3820,15 @@ msgstr "Ansicht hinzufügen" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the
Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" "Data Explorer Darstellungen können langsam und ungenau sein solange die " -"DataStore Extension nicht aktiviert ist. Weiterführende Informationen hierzu" -" in der Data Explorer " -"Dokumentation. " +"DataStore Extension nicht aktiviert ist. Weiterführende Informationen " +"hierzu in der Data Explorer Dokumentation. " #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:83 @@ -3842,11 +3838,12 @@ msgstr "Hinzufügen" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" -"Dies ist eine alte Version dieses Datensatzes vom %(timestamp)s. Sie kann " -"erheblich von der aktuellen Version abweichen." +"Dies ist eine alte Version dieses Datensatzes vom %(timestamp)s. Sie kann" +" erheblich von der aktuellen Version abweichen." #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" @@ -3919,9 +3916,9 @@ msgstr "" #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" "Wenn eine Darstellung den DataStore erfordert wurde das DataStore Plugin " "nicht aktiviert oder die Daten befinden sich nicht im DataStore oder der " @@ -3992,8 +3989,8 @@ msgstr "Neue Ressource hinzufügen" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

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

" +"

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

" msgstr "" "

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

" @@ -4084,15 +4081,16 @@ msgstr "Organisation erstellen" #: ckan/templates/package/snippets/cannot_create_package.html:18 msgid "There are no organizations to which you can assign this dataset." msgstr "" -"Es gibt keine Organisation, zu der dieser Datensatz zugeordnet werden kann." +"Es gibt keine Organisation, zu der dieser Datensatz zugeordnet werden " +"kann." #: ckan/templates/package/snippets/cannot_create_package.html:19 msgid "" "Ask a system administrator to create an organization before you can " "continue." msgstr "" -"Ein Systemadministrator muss diese zunächst Organisation anlegen, damit Sie " -"fortfahren können." +"Ein Systemadministrator muss diese zunächst Organisation anlegen, damit " +"Sie fortfahren können." #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 @@ -4121,8 +4119,8 @@ msgid "" "href=\"http://opendefinition.org/licenses/\">opendefinition.org " msgstr "" "Lizenzdefinitionen und weiterführende Informationen können unter opendefinition.org gefunden" -" werden." +"href=\"http://opendefinition.org/licenses/\">opendefinition.org " +"gefunden werden." #: ckan/templates/package/snippets/package_basic_fields.html:76 #: ckan/templates/snippets/organization.html:23 @@ -4147,15 +4145,16 @@ msgstr "aktiv" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" -"Die Datenlizenz, die Sie ausgewählt haben gilt nur für die Inhalte " -"aller Ressourcen, die zu diesem Datensatz gehören. Wenn Sie dieses Formular " -"absenden, stimmen Sie zu, die Metadaten unter der Datenlizenz, die Sie ausgewählt haben gilt nur für die Inhalte" +" aller Ressourcen, die zu diesem Datensatz gehören. Wenn Sie dieses " +"Formular absenden, stimmen Sie zu, die Metadaten unter der Open Database " "License zu veröffentlichen." @@ -4268,8 +4267,8 @@ msgstr "Was ist eine Ressource?" #: ckan/templates/package/snippets/resource_help.html:4 msgid "A resource can be any file or link to a file containing useful data." msgstr "" -"Eine Ressource kann jede Datei oder jeder Link zu einer Datei mit nützlichen" -" Daten sein." +"Eine Ressource kann jede Datei oder jeder Link zu einer Datei mit " +"nützlichen Daten sein." #: ckan/templates/package/snippets/resource_item.html:23 msgid "Explore" @@ -4289,8 +4288,7 @@ msgstr "Einbettung" #: ckan/templates/package/snippets/resource_view.html:32 msgid "This resource view is not available at the moment." -msgstr "" -"Diese Ressourcendarstellung/-view kann momentan nicht angezeigt werden." +msgstr "Diese Ressourcendarstellung/-view kann momentan nicht angezeigt werden." #: ckan/templates/package/snippets/resource_view.html:74 msgid "Embed resource view" @@ -4363,7 +4361,8 @@ msgstr "Was ist eine Darstellung bzw. ein View?" #: ckan/templates/package/snippets/view_help.html:4 msgid "A view is a representation of the data held against a resource" msgstr "" -"Eine Darstellung bzw. ein View ist eine Ansicht von Daten in einer Ressource" +"Eine Darstellung bzw. ein View ist eine Ansicht von Daten in einer " +"Ressource" #: ckan/templates/revision/diff.html:6 msgid "Differences" @@ -4482,8 +4481,8 @@ msgstr "

Bitte versuch es mit einer anderen Suche.

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

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

" +"

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

" msgstr "" "

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

" @@ -4632,9 +4631,9 @@ msgstr "Informationen zum Benutzerkonto" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " -msgstr "" -"Ihr Profil teilt anderen CKAN-Nutzern mit, wer Sie sind und was Sie tun." +" Your profile lets other CKAN users know about who you are and what you " +"do. " +msgstr "Ihr Profil teilt anderen CKAN-Nutzern mit, wer Sie sind und was Sie tun." #: ckan/templates/user/edit_user_form.html:7 msgid "Change details" @@ -4725,8 +4724,7 @@ msgstr "Haben Sie Ihr Kennwort vergessen?" #: ckan/templates/user/login.html:44 msgid "No problem, use our password recovery form to reset it." -msgstr "" -"Kein Problem, nutzen Sie unser Formular um Ihr Passwort zurückzusetzen." +msgstr "Kein Problem, nutzen Sie unser Formular um Ihr Passwort zurückzusetzen." #: ckan/templates/user/login.html:47 msgid "Forgot your password?" @@ -4866,11 +4864,11 @@ msgstr "Zurücksetzen anfordern" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" -"Geben Sie Ihren Nutzernamen in das Feld ein und wir senden Ihnen eine E-Mail" -" mit einem Link um ein neues Passwort zu setzen." +"Geben Sie Ihren Nutzernamen in das Feld ein und wir senden Ihnen eine " +"E-Mail mit einem Link um ein neues Passwort zu setzen." #: ckan/templates/user/snippets/followee_dropdown.html:15 #: ckan/templates/user/snippets/followee_dropdown.html:16 @@ -4896,3 +4894,4 @@ msgstr "Suche Nutzer" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "Das Kennwort muss mindestens 8 Zeichen enthalten." + diff --git a/ckan/i18n/el/LC_MESSAGES/ckan.po b/ckan/i18n/el/LC_MESSAGES/ckan.po index 0d86a5326cc..1ea2cfbf562 100644 --- a/ckan/i18n/el/LC_MESSAGES/ckan.po +++ b/ckan/i18n/el/LC_MESSAGES/ckan.po @@ -1,23 +1,26 @@ -# Translations template for ckan. +# Greek translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 +# Sotirios Karampatakis , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Sotirios Karampatakis , 2018\n" +"Language: el\n" "Language-Team: Greek (https://www.transifex.com/okfn/teams/11162/el/)\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,19 +131,19 @@ msgstr "Δεν βρέθηκε ο πόρος DataStore" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" "Το Λεξικό Δεδομένων αποθηκεύτηκε. Οποιαδήποτε παράκαμψη τύπου θα έχει " "επίδραση όταν ο πόρος μεταφορτωθεί στο DataStore. " #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" -"Τα δεδομένα ήταν μη έγκυρα (για παράδειγμα: μία αριθμητική τιμή ήταν εκτός " -"ορίων ή καταχωρήθηκε σε πεδίο κειμένου)." +"Τα δεδομένα ήταν μη έγκυρα (για παράδειγμα: μία αριθμητική τιμή ήταν " +"εκτός ορίων ή καταχωρήθηκε σε πεδίο κειμένου)." #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 #: ckanext/datastore/logic/action.py:344 ckanext/datastore/logic/action.py:457 @@ -167,7 +170,8 @@ msgstr "" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" " Περισσότερες πληροφορίες στην main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

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

" +"target=\"_blank\">κεντρική τεκμηρίωση του CKAN Data API και του " +"DataStore .

" #: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 msgid "Table" @@ -497,8 +501,7 @@ msgstr "URL εικόνας" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "" -"π.χ. http://example.com/image.jpg (χρήση του url πόρου αν μείνει κενό)" +msgstr "π.χ. http://example.com/image.jpg (χρήση του url πόρου αν μείνει κενό)" #: ckanext/reclineview/plugin.py:101 msgid "Data Explorer" @@ -818,8 +821,8 @@ msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "" -"Δεν είναι δυνατή η εκκαθάριση του πακέτου %s καθως η συνδεόμενη αναθεώρηση " -"%s περιλαμβάνει μη διεγραμμένα πακέτα%s" +"Δεν είναι δυνατή η εκκαθάριση του πακέτου %s καθως η συνδεόμενη " +"αναθεώρηση %s περιλαμβάνει μη διεγραμμένα πακέτα%s" #: ckan/controllers/admin.py:183 ckan/views/admin.py:197 #, python-format @@ -1029,8 +1032,7 @@ msgstr "%s έχει διαγραφεί." #: ckan/controllers/group.py:657 #, python-format msgid "User %r not authorized to edit members of %s" -msgstr "" -"Ο χρήστης %r δεν είναι εξουσιοδοτημένος να επεξεργάζεται τα μέλη του %s" +msgstr "Ο χρήστης %r δεν είναι εξουσιοδοτημένος να επεξεργάζεται τα μέλη του %s" #: ckan/controllers/group.py:670 #, python-format @@ -1093,15 +1095,15 @@ msgstr "" #, python-format msgid "Please update your profile and add your email address. " msgstr "" -"Παρακαλούμε ενημερώστε το προφίλ σας και προσθέστε τη " -"διεύθυνση ηλεκτρονικού ταχυδρομείου σας." +"Παρακαλούμε ενημερώστε το προφίλ σας και προσθέστε " +"τη διεύθυνση ηλεκτρονικού ταχυδρομείου σας." #: ckan/controllers/home.py:75 ckan/views/home.py:60 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "" -" %s χρησιμοποιείστε τη διεύθυνση ηλεκτρονικού ταχυδρομείου σας εάν θέλετε να" -" επαναφέρετε τον κωδικό πρόσβασής σας." +" %s χρησιμοποιείστε τη διεύθυνση ηλεκτρονικού ταχυδρομείου σας εάν θέλετε" +" να επαναφέρετε τον κωδικό πρόσβασής σας." #: ckan/controllers/package.py:304 msgid "Invalid search query: {error_message}" @@ -1132,8 +1134,8 @@ msgstr "Μη έγκυρη μορφή αναθεώρησης:%r" #: ckan/controllers/package.py:415 msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." msgstr "" -"Η προβολή συνόλων δεδομένων του τύπου \"{package_type}\" δεν υποστηρίζεται " -"({file_!r})." +"Η προβολή συνόλων δεδομένων του τύπου \"{package_type}\" δεν " +"υποστηρίζεται ({file_!r})." #: ckan/controllers/package.py:454 ckan/controllers/package.py:839 #: ckan/controllers/package.py:940 ckan/controllers/package.py:988 @@ -1332,8 +1334,8 @@ msgid "" "User \"%s\" is now registered but you are still logged in as \"%s\" from " "before" msgstr "" -"Ο χρήστης \"%s\" έχει εγγραφεί αλλά είστε ακόμα συνδεδεμένοι ως \"%s\" από " -"πριν" +"Ο χρήστης \"%s\" έχει εγγραφεί αλλά είστε ακόμα συνδεδεμένοι ως \"%s\" " +"από πριν" #: ckan/controllers/user.py:294 ckan/views/user.py:174 msgid "Unauthorized to edit a user." @@ -1378,8 +1380,7 @@ msgstr "Δεν υπάρχει τέτοιος χρήστης:%s" #: ckan/controllers/user.py:498 ckan/views/user.py:542 msgid "Please check your inbox for a reset code." -msgstr "" -"Παρακαλούμε ελέγξτε τα εισερχόμενά μηνύματα σας για τον κωδικό επαναφοράς." +msgstr "Παρακαλούμε ελέγξτε τα εισερχόμενά μηνύματα σας για τον κωδικό επαναφοράς." #: ckan/controllers/user.py:502 ckan/views/user.py:546 #, python-format @@ -1472,13 +1473,11 @@ msgstr "ο {actor} διέγραψε το σύνολο δεδομένων {datase #: ckan/lib/activity_streams.py:90 msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "" -"ο {actor} διέγραψε το πρόσθετο {extra} στο σύνολο δεδομένων {dataset}" +msgstr "ο {actor} διέγραψε το πρόσθετο {extra} στο σύνολο δεδομένων {dataset}" #: ckan/lib/activity_streams.py:93 msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "" -"ο {actor} διέγραψε τον πόρο {resource} από το σύνολο δεδομένων {dataset}" +msgstr "ο {actor} διέγραψε τον πόρο {resource} από το σύνολο δεδομένων {dataset}" #: ckan/lib/activity_streams.py:97 msgid "{actor} created the group {group}" @@ -1845,11 +1844,11 @@ msgstr " Το όνομα πρέπει να είναι κατ 'ανώτατο ό #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "" -"Πρέπει να αποτελείται μόνο από πεζούς αλφαρηθμητικούς χαρακτήρες (ascii) και" -" αυτά τα σύμβολα: -_" +"Πρέπει να αποτελείται μόνο από πεζούς αλφαρηθμητικούς χαρακτήρες (ascii) " +"και αυτά τα σύμβολα: -_" #: ckan/logic/validators.py:363 msgid "That URL is already in use." @@ -1934,8 +1933,8 @@ msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "" -"Η επεξεργασία δεν επιτρέπεται, δεδομένου ότι μοιάζει με spam. Παρακαλούμε " -"αποφύγετε συνδέσεις στην περιγραφή σας." +"Η επεξεργασία δεν επιτρέπεται, δεδομένου ότι μοιάζει με spam. Παρακαλούμε" +" αποφύγετε συνδέσεις στην περιγραφή σας." #: ckan/logic/validators.py:628 #, python-format @@ -1981,8 +1980,7 @@ msgstr "ο ρόλος δεν υπάρχει." #: ckan/logic/validators.py:749 msgid "Datasets with no organization can't be private." -msgstr "" -"Τα σύνολα δεδομένων που δεν ανήκουν σε φορέα δε μπορούν να είναι ιδιωτικά." +msgstr "Τα σύνολα δεδομένων που δεν ανήκουν σε φορέα δε μπορούν να είναι ιδιωτικά." #: ckan/logic/validators.py:755 msgid "Not a list" @@ -2105,8 +2103,8 @@ msgstr "REST API: Διαγραφή Μέλους: %s" #: ckan/logic/action/delete.py:358 msgid "Organization cannot be deleted while it still has datasets" msgstr "" -"Ο οργανισμός δεν μπορεί να διαγραφεί όσο υπάρχουν ακόμα σύνολα δεδομένων που" -" του ανήκουν." +"Ο οργανισμός δεν μπορεί να διαγραφεί όσο υπάρχουν ακόμα σύνολα δεδομένων " +"που του ανήκουν." #: ckan/logic/action/delete.py:560 ckan/logic/action/delete.py:586 #: ckan/logic/action/get.py:2432 ckan/logic/action/update.py:906 @@ -2186,8 +2184,8 @@ msgstr "Ο χρήστης %s δεν έχει δικαίωμα επεξεργασ #, python-format msgid "User %s not authorized to add dataset to this organization" msgstr "" -"Ο χρήστης %s δεν έχει εξουσιοδότηση να προσθέσει σύνολο δεδομένων σε αυτόν " -"το φορέα" +"Ο χρήστης %s δεν έχει εξουσιοδότηση να προσθέσει σύνολο δεδομένων σε " +"αυτόν το φορέα" #: ckan/logic/auth/create.py:61 msgid "No dataset id provided, cannot check auth." @@ -2199,8 +2197,8 @@ msgstr "" #: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 msgid "No package found for this resource, cannot check auth." msgstr "" -"Δε βρέθηκε κανένα πακέτο για αυτόν τον πόρο, δεν μπορεί να γίνει έλεγχος στο" -" auth." +"Δε βρέθηκε κανένα πακέτο για αυτόν τον πόρο, δεν μπορεί να γίνει έλεγχος " +"στο auth." #: ckan/logic/auth/create.py:76 #, python-format @@ -2227,8 +2225,8 @@ msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για #: ckan/logic/auth/create.py:145 msgid "User {user} not authorized to create users via the API" msgstr "" -"Ο χρήστης {user} δεν έχει εξουσιοδότηση για τη δημιουργία χρηστών μέσω του " -"API" +"Ο χρήστης {user} δεν έχει εξουσιοδότηση για τη δημιουργία χρηστών μέσω " +"του API" #: ckan/logic/auth/create.py:148 msgid "Not authorized to create users" @@ -2246,8 +2244,7 @@ msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για #: ckan/logic/auth/create.py:244 ckan/logic/auth/update.py:115 #, python-format msgid "User %s not authorized to edit group %s" -msgstr "" -"Ο χρήστης %s δεν έχει εξουσιοδότηση για την επεξεργασία της ομάδας %s." +msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για την επεξεργασία της ομάδας %s." #: ckan/logic/auth/delete.py:40 #, python-format @@ -2256,8 +2253,7 @@ msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για #: ckan/logic/auth/delete.py:56 msgid "Resource view not found, cannot check auth." -msgstr "" -"Δε βρέθηκε η προβολή πόρους, δεν είναι δυνατός ο έλεγχος εξουσιοδότησης" +msgstr "Δε βρέθηκε η προβολή πόρους, δεν είναι δυνατός ο έλεγχος εξουσιοδότησης" #: ckan/logic/auth/delete.py:73 #, python-format @@ -2322,8 +2318,7 @@ msgstr "" #: ckan/logic/auth/update.py:39 #, python-format msgid "User %s not authorized to edit package %s" -msgstr "" -"Ο χρήστης %s δεν έχει εξουσιοδότηση για την επεξεργασία του πακέτου %s." +msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για την επεξεργασία του πακέτου %s." #: ckan/logic/auth/update.py:71 #, python-format @@ -2334,20 +2329,20 @@ msgstr "Ο χρήστης %s δεν έχει δικαίωμα επεξεργασ #, python-format msgid "User %s not authorized to change state of package %s" msgstr "" -"Ο χρήστης %s δεν έχει εξουσιοδότηση για την αλλαγή κατάστασης του πακέτου " -"%s." +"Ο χρήστης %s δεν έχει εξουσιοδότηση για την αλλαγή κατάστασης του πακέτου" +" %s." #: ckan/logic/auth/update.py:128 #, python-format msgid "User %s not authorized to edit organization %s" -msgstr "" -"Ο χρήστης %s δεν έχει εξουσιοδότηση για την επεξεργασία του οργανισμού %s" +msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για την επεξεργασία του οργανισμού %s" #: ckan/logic/auth/update.py:145 #, python-format msgid "User %s not authorized to change state of group %s" msgstr "" -"Ο χρήστης %s δεν έχει εξουσιοδότηση για την αλλαγή κατάστασης της ομάδας %s." +"Ο χρήστης %s δεν έχει εξουσιοδότηση για την αλλαγή κατάστασης της ομάδας " +"%s." #: ckan/logic/auth/update.py:162 #, python-format @@ -2363,8 +2358,7 @@ msgstr "Απαιτείται σύνδεση για την επεξεργασία #: ckan/logic/auth/update.py:198 #, python-format msgid "User %s not authorized to edit user %s" -msgstr "" -"Ο χρήστης %s δεν έχει εξουσιοδότηση για την επεξεργασία του χρήστη %s." +msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για την επεξεργασία του χρήστη %s." #: ckan/logic/auth/update.py:209 msgid "User {0} not authorized to update user {1}" @@ -2381,7 +2375,8 @@ msgstr "" #, python-format msgid "User %s not authorized to update task_status table" msgstr "" -"Ο χρήστης %s δεν έχει εξουσιοδότηση για την ανανέωση του πίνακα task_status." +"Ο χρήστης %s δεν έχει εξουσιοδότηση για την ανανέωση του πίνακα " +"task_status." #: ckan/logic/auth/update.py:240 #, python-format @@ -2520,8 +2515,7 @@ msgstr "Δεν βρέθηκε" #, python-format msgid "Input is too short, must be at least one character" msgid_plural "Input is too short, must be at least %(num)d characters" -msgstr[0] "" -"Η καταχώρηση είναι πολύ μικρή, πρέπει να είναι τουλάχιστον ένας χαρακτήρας" +msgstr[0] "Η καταχώρηση είναι πολύ μικρή, πρέπει να είναι τουλάχιστον ένας χαρακτήρας" msgstr[1] "" "Η καταχόρηση είναι πολύ μικρή, πρέπει να είναι το λιγότερο %(num)d " "χαρακτήρες" @@ -2585,8 +2579,8 @@ msgstr "Σύνδεσμος" #: ckan/public/base/javascript/modules/image-upload.js:61 msgid "Link to a URL on the internet (you can also link to an API)" msgstr "" -"Σύνδεσμος σε URL (μπορείτε να παρέχετε σύνδεσμο σε προγραμματιστικη διεπαφή " -"- API)" +"Σύνδεσμος σε URL (μπορείτε να παρέχετε σύνδεσμο σε προγραμματιστικη " +"διεπαφή - API)" #: ckan/public-bs2/base/javascript/modules/image-upload.js:68 #: ckan/public/base/javascript/modules/image-upload.js:68 @@ -2673,11 +2667,11 @@ msgstr "Αδυναμία λήψης δεδομένων του αρχείου μ #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "" -"Αυτή τη στιγμή μεταφορτώνετε ένα αρχείο. Είσαστε σίγουρος/η ό,τι θέλετε να " -"μεταβείτε σε άλλη σελίδα και να διακόψετε τη μεταφόρτωση;" +"Αυτή τη στιγμή μεταφορτώνετε ένα αρχείο. Είσαστε σίγουρος/η ό,τι θέλετε " +"να μεταβείτε σε άλλη σελίδα και να διακόψετε τη μεταφόρτωση;" #: ckan/public-bs2/base/javascript/modules/resource-view-filters.js:9 #: ckan/public/base/javascript/modules/resource-view-filters.js:9 @@ -2954,39 +2948,40 @@ msgstr " Επιλογές ρυθμίσεων" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

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

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

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

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

Intro " +"

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

" +"

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

" +"

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

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

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

" "

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

" -"

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

" +"

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

" msgstr "" -"

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

" +"

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

" "

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

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

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

" -"

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

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

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

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

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

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

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

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

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

" #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 @@ -3001,8 +2996,9 @@ msgstr "Διαχείριση CKAN" #, python-format msgid "" "

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

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

" +"Proceed with care!

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

" msgstr "" "

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

Για καθοδήγηση σχετικά με τη χρήση των " @@ -3166,9 +3162,8 @@ msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετ #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "Διαχείριση" @@ -3200,8 +3195,7 @@ msgstr "Αναζήτηση σε ομάδες..." msgid "There are currently no groups for this site" msgstr "Δεν έχουν οριστεί ομάδες προς το παρόν." -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "Τι θα λέγατε για τη δημιουργία ενός;" @@ -3234,8 +3228,8 @@ msgstr "Υπάρχων χρήστης" #: ckan/templates/organization/member_new.html:22 msgid "If you wish to add an existing user, search for their username below." msgstr "" -"Αν θέλετε να προσθέσετε έναν υπάρχοντα χρήστη, αναζητήστε το όνομα χρήστη " -"παρακάτω." +"Αν θέλετε να προσθέσετε έναν υπάρχοντα χρήστη, αναζητήστε το όνομα χρήστη" +" παρακάτω." #: ckan/templates/group/member_new.html:38 #: ckan/templates/organization/member_new.html:39 @@ -3254,22 +3248,19 @@ msgstr "" "Αν θέλετε να προσκαλέσετε έναν νέο χρήστη, εισάγετε τη διεύθυνση " "ηλεκτρονικού ταχυδρομείου του." -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "Ρόλος" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε το μέλος;" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3290,14 +3281,14 @@ msgstr "Τι είναι οι ρόλοι;" #: ckan/templates/group/member_new.html:80 msgid "" -"

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

Member: Can add/remove " +"

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

Member: Can add/remove " "datasets from groups

" msgstr "" "

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

" -"

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

" +"

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

" #: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 #: ckan/templates/group/new.html:7 @@ -3367,17 +3358,17 @@ msgstr "Τι είναι οι Ομάδες;" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" " Μπορείτε να χρησιμοποιήσετε τις Ομάδες για να δημιουργήσετε και να " -"διαχειριστείτε συλλογές από σύνολα δεδομένων. Αυτό θα ήταν χρήσιμο για να " -"δημιουργήσετε καταλόγους από σύνολα δεδομένων για ένα συγκεκριμένο έργο ή " -"κάποια ομάδα, είτε για ένα συγκεκριμένο θεμα, είτε ως έναν πολύ απλό τρόπο " -"με τον οποίο να βοηθήσετε άλλους να βρίσκουν και να αναζητούν τα δικά σας " -"δημοσιευμένα σύνολα δεδομένων. " +"διαχειριστείτε συλλογές από σύνολα δεδομένων. Αυτό θα ήταν χρήσιμο για να" +" δημιουργήσετε καταλόγους από σύνολα δεδομένων για ένα συγκεκριμένο έργο " +"ή κάποια ομάδα, είτε για ένα συγκεκριμένο θεμα, είτε ως έναν πολύ απλό " +"τρόπο με τον οποίο να βοηθήσετε άλλους να βρίσκουν και να αναζητούν τα " +"δικά σας δημοσιευμένα σύνολα δεδομένων. " #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 @@ -3440,13 +3431,14 @@ msgid "" "

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

" "

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

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3457,26 +3449,27 @@ msgid "" "href=\"http://ckan.org/features/\">http://ckan.org/features/

" msgstr "" "

Το CKAN είναι η κορυφαία στον κόσμο πλατφόρμα ανοιχτού κώδικα για " -"ανοιχτά δεδομένα.

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

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

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

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

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

" #: ckan/templates/home/snippets/promoted.html:8 @@ -3485,15 +3478,15 @@ msgstr "Καλωσήλθατε" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "Μία ωραία μικρή εισαγωγική παράγραφος για τον δικτυακό τόπο." #: ckan/templates/home/snippets/promoted.html:19 msgid "This is a featured section" msgstr "" -"Αυτό είναι μια ενότητα στην οποία μπορείτε να αναδείξετε το περιεχόμενο που " -"θεωρείτε σημαντικό." +"Αυτό είναι μια ενότητα στην οποία μπορείτε να αναδείξετε το περιεχόμενο " +"που θεωρείτε σημαντικό." #: ckan/templates/home/snippets/search.html:2 msgid "E.g. environment" @@ -3534,8 +3527,8 @@ msgstr "ομάδες" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" "Μπορείτε να χρησιμοποιήσετε μορφοποίηση Admin: Can add/edit and delete datasets, as well as " "manage organization members.

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

" -"

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

" +"

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

" msgstr "" -"

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

" +"

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

" "

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

" -"

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

" +"

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

" #: ckan/templates/organization/members.html:14 msgid "{count} member" @@ -3703,25 +3696,25 @@ msgstr "Τι είναι οι φορείς;" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

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

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

" +"

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

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

" msgstr "" -"

Οι Φορείς ενεργούν ως τμήματα δημοσίευσης συνόλων δεδομένων (π.χ. Δ/νση " -"Υγείας). Αυτό σημαίνει ότι τα σύνολα δεδομένων δημοσιεύονται εκ μέρους και " -"ανήκουν σε μία Δ/νση αντί σε ένα χρήστη.

Εντός των φορέων, οι " -"διαχειριστές μπορούν να να αναθέσουν ρόλους και να εξουσιοδοτήσουν τα μέλη " -"τους, παρέχοντάς τους το δικαίωμα να δημοσιεύσουν σύνολα δεδομένων εκ μέρους" -" του Φορέα (π.χ. ΕΛΣΤΑΤ).

" +"

Οι Φορείς ενεργούν ως τμήματα δημοσίευσης συνόλων δεδομένων (π.χ. " +"Δ/νση Υγείας). Αυτό σημαίνει ότι τα σύνολα δεδομένων δημοσιεύονται εκ " +"μέρους και ανήκουν σε μία Δ/νση αντί σε ένα χρήστη.

Εντός των " +"φορέων, οι διαχειριστές μπορούν να να αναθέσουν ρόλους και να " +"εξουσιοδοτήσουν τα μέλη τους, παρέχοντάς τους το δικαίωμα να δημοσιεύσουν" +" σύνολα δεδομένων εκ μέρους του Φορέα (π.χ. ΕΛΣΤΑΤ).

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" " Οι Φορείς του CKAN χρησιμοποιούνται για τη δημιουργία, διαχείριση και " "δημοσίευση συλλογών συνόλων δεδομένων. Οι χρήστες μπορούν να έχουν " @@ -3743,12 +3736,13 @@ msgstr "Λίγες πληροφορίες σχετικά με τον φορέα. #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" "Είσαι σίγουρος ότι θέλεις να διαγράψεις αυτό τον Οργανισμό; Σημείωση*: Η " -"διαγραφή Οργανισμού δεν μπορεί αν εκτελεστεί ενόσω δημόσια ή ιδιωτικά σύνολα" -" δεδομένων ανήκουν στον Οργανισμό. " +"διαγραφή Οργανισμού δεν μπορεί αν εκτελεστεί ενόσω δημόσια ή ιδιωτικά " +"σύνολα δεδομένων ανήκουν στον Οργανισμό. " #: ckan/templates/organization/snippets/organization_form.html:41 msgid "Save Organization" @@ -3770,19 +3764,18 @@ msgstr "Τι είναι τα σύνολα δεδομένων;" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" -"Ένα σύνολο δεδομένων αποτελεί μια συλλογή πόρων (όπως αρχεία), μαζί με μια " -"περιγραφή και άλλες πληροφορίες, διαθέσιμη σε συγκεκριμένο URL. Τα σύνολα " -"δεδομένων παρέχονται ως αποτέλεσμα της αναζήτησης που πραγματοποιούν οι " -"χρήστες." +"Ένα σύνολο δεδομένων αποτελεί μια συλλογή πόρων (όπως αρχεία), μαζί με " +"μια περιγραφή και άλλες πληροφορίες, διαθέσιμη σε συγκεκριμένο URL. Τα " +"σύνολα δεδομένων παρέχονται ως αποτέλεσμα της αναζήτησης που " +"πραγματοποιούν οι χρήστες." #: ckan/templates/package/confirm_delete.html:12 msgid "Are you sure you want to delete dataset - {name}?" -msgstr "" -"Είστε σίγουροι ότι θέλετε να διαγράψετε το σύνολο δεδομένων - {name}? ;" +msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε το σύνολο δεδομένων - {name}? ;" #: ckan/templates/package/confirm_delete_resource.html:11 msgid "Are you sure you want to delete resource - {name}?" @@ -3858,16 +3851,16 @@ msgstr "Προσθήκη προβολής" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the
Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" -"Οι οπτικοποιήσεις του Data Explorer μπορεί να είναι αργές και αναξιόπιστες, " -"εκτός εάν η επέκταση DataStore είναι ενεργοποιημένη. Για περισσότερες " -"πληροφορίες, παρακαλώ συμβουλευτείτε την τεκμηρίωση του Data " -"Explorer . " +"Οι οπτικοποιήσεις του Data Explorer μπορεί να είναι αργές και " +"αναξιόπιστες, εκτός εάν η επέκταση DataStore είναι ενεργοποιημένη. Για " +"περισσότερες πληροφορίες, παρακαλώ συμβουλευτείτε την τεκμηρίωση " +"του Data Explorer . " #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:83 @@ -3877,12 +3870,13 @@ msgstr "Προσθήκη" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" "Αυτή είναι μια παλιά αναθεώρηση αυτού του συνόλου δεδομένων, όπως το " -"επεξεργάστηκαν στο %(timestamp)s. Μπορεί να διαφέρει σημαντικά από την τρέχουσα αναθεώρηση." +"επεξεργάστηκαν στο %(timestamp)s. Μπορεί να διαφέρει σημαντικά από την τρέχουσα αναθεώρηση." #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" @@ -3931,8 +3925,7 @@ msgstr "Πηγή : %(dataset)s" #: ckan/templates/package/resource_read.html:127 msgid "There are no views created for this resource yet." -msgstr "" -"Δεν έχει δημιουργηθεί ακόμα Προβολή για την προεπισκόπηση αυτού του πόρου" +msgstr "Δεν έχει δημιουργηθεί ακόμα Προβολή για την προεπισκόπηση αυτού του πόρου" #: ckan/templates/package/resource_read.html:131 msgid "Not seeing the views you were expecting?" @@ -3951,18 +3944,19 @@ msgstr "" #: ckan/templates/package/resource_read.html:139 msgid "The site administrators may not have enabled the relevant view plugins" msgstr "" -"Ο διαχειριστής της ιστοσελίδας μπορεί να μην έχει ενεργοποιήσει τα σχετικά " -"πρόσθετα οπτικοποιήσεων. " +"Ο διαχειριστής της ιστοσελίδας μπορεί να μην έχει ενεργοποιήσει τα " +"σχετικά πρόσθετα οπτικοποιήσεων. " #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" -"Αν μια προβολή απαιτεί το πρόσθετο DataStore, τότε το πρόσθετο μπορεί να μην" -" έχει ενεργοποιηθεί ή τα δεδομένα να μην έχουν αποθηκευθεί στο DataStore ή " -"δεν έχει ολοκληρωθεί η επεξεργασία των δεδομένων στο DataStore." +"Αν μια προβολή απαιτεί το πρόσθετο DataStore, τότε το πρόσθετο μπορεί να " +"μην έχει ενεργοποιηθεί ή τα δεδομένα να μην έχουν αποθηκευθεί στο " +"DataStore ή δεν έχει ολοκληρωθεί η επεξεργασία των δεδομένων στο " +"DataStore." #: ckan/templates/package/resource_read.html:162 msgid "Additional Information" @@ -4029,8 +4023,8 @@ msgstr "Προσθήκη νέου πόρου" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

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

" +"

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

" msgstr "" "

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

" @@ -4053,8 +4047,9 @@ msgid "" " You can also access this registry using the %(api_link)s (see " "%(api_doc_link)s) or download a %(dump_link)s. " msgstr "" -"Μπορείτε επίσης να αποκτήσετε πρόσβαση σε αυτό το μητρώο χρησιμοποιώντας το " -"%(api_link)s (δείτε %(api_doc_link)s) η κατεβάζοντας ένα %(dump_link)s." +"Μπορείτε επίσης να αποκτήσετε πρόσβαση σε αυτό το μητρώο χρησιμοποιώντας " +"το %(api_link)s (δείτε %(api_doc_link)s) η κατεβάζοντας ένα " +"%(dump_link)s." #: ckan/templates/package/search.html:60 #, python-format @@ -4184,16 +4179,17 @@ msgstr "Ενεργό" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" -"Η Άδεια Χρήσης Δεδομένων που επέλεξες παραπάνω, έχει ισχύ μόνο στα " -"περιεχόμενα οποιουδήποτε αρχείου πόρου που προσθέτεις στο σύνολο δεδομένων. " -"Καταθέτοντας αυτή την φόρμα, συμφωνείς στη διάθεση των μεταδεδομένων" -" που εισάγεις στη φόρμα υπό την άδεια Άδεια Χρήσης Δεδομένων που επέλεξες παραπάνω, έχει ισχύ μόνο στα" +" περιεχόμενα οποιουδήποτε αρχείου πόρου που προσθέτεις στο σύνολο " +"δεδομένων. Καταθέτοντας αυτή την φόρμα, συμφωνείς στη διάθεση των " +"μεταδεδομένων που εισάγεις στη φόρμα υπό την άδεια Open Database " "License." @@ -4259,8 +4255,7 @@ msgstr "π.χ. CSV, XML or JSON" #: ckan/templates/package/snippets/resource_form.html:42 msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "" -"Θα ερμηνευθεί αυτόματα. Μπορείτε να το αφήσετε κενό εφόσον το επιθυμείτε" +msgstr "Θα ερμηνευθεί αυτόματα. Μπορείτε να το αφήσετε κενό εφόσον το επιθυμείτε" #: ckan/templates/package/snippets/resource_form.html:53 msgid "eg. 2012-06-05" @@ -4307,8 +4302,8 @@ msgstr "Τι είναι ένας πόρος ;" #: ckan/templates/package/snippets/resource_help.html:4 msgid "A resource can be any file or link to a file containing useful data." msgstr "" -"Ένας πόρος μπορεί να είναι οποιοδήποτε αρχείο ή σύνδεσμος σε ένα αρχείο που " -"περιέχει χρήσιμα δεδομένα." +"Ένας πόρος μπορεί να είναι οποιοδήποτε αρχείο ή σύνδεσμος σε ένα αρχείο " +"που περιέχει χρήσιμα δεδομένα." #: ckan/templates/package/snippets/resource_item.html:23 msgid "Explore" @@ -4519,11 +4514,11 @@ msgstr "

Παρακαλώ δοκιμάστε νέα αναζ #: ckan/templates/snippets/search_form.html:87 msgid "" -"

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

" +"

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

" msgstr "" -"

Προέκυψε ένα πρόβλημα κατά την αναζήτηση. " -" Παρακαλώ δοκιμάστε ξανά.

" +"

Προέκυψε ένα πρόβλημα κατά την αναζήτηση." +" Παρακαλώ δοκιμάστε ξανά.

" #: ckan/templates/snippets/search_result_text.html:15 msgid "{number} dataset found for \"{query}\"" @@ -4669,10 +4664,11 @@ msgstr "Πληροφορίες λογαριασμού" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" -"Το προφίλ σας επιτρέπει σε άλλους χρήστες να γνωρίζουν ποιοι είστε και τι " -"κάνετε." +"Το προφίλ σας επιτρέπει σε άλλους χρήστες να γνωρίζουν ποιοι είστε και τι" +" κάνετε." #: ckan/templates/user/edit_user_form.html:7 msgid "Change details" @@ -4766,8 +4762,8 @@ msgstr "Ξεχάσατε τον κωδικό πρόσβασης;" #: ckan/templates/user/login.html:44 msgid "No problem, use our password recovery form to reset it." msgstr "" -"Δεν υπάρχει πρόβλημα, χρησιμοποιήστε τη φόρμα ανάκτησης κωδικού πρόσβασης " -"για να τον επαναφέρετε." +"Δεν υπάρχει πρόβλημα, χρησιμοποιήστε τη φόρμα ανάκτησης κωδικού πρόσβασης" +" για να τον επαναφέρετε." #: ckan/templates/user/login.html:47 msgid "Forgot your password?" @@ -4863,7 +4859,8 @@ msgstr "Πως λειτουργεί;" #: ckan/templates/user/perform_reset.html:45 msgid "Simply enter a new password and we'll update your account" msgstr "" -"Απλά εισάγετε ένα νέο κωδικό πρόσβασης και θα ενημερώσουμε το λογαριασμό σας" +"Απλά εισάγετε ένα νέο κωδικό πρόσβασης και θα ενημερώσουμε το λογαριασμό " +"σας" #: ckan/templates/user/read.html:27 msgid "User hasn't created any datasets." @@ -4908,11 +4905,11 @@ msgstr "Αίτηση επαναφοράς" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" -"Εισάγετε το όνομα χρήστη σας στο πλαίσιο κειμένου και θα σας στείλουμε ένα " -"email με ένα σύνδεσμο για να εισάγετε ένα νέο κωδικό πρόσβασης." +"Εισάγετε το όνομα χρήστη σας στο πλαίσιο κειμένου και θα σας στείλουμε " +"ένα email με ένα σύνδεσμο για να εισάγετε ένα νέο κωδικό πρόσβασης." #: ckan/templates/user/snippets/followee_dropdown.html:15 #: ckan/templates/user/snippets/followee_dropdown.html:16 @@ -4938,3 +4935,4 @@ msgstr "Αναζήτηση χρηστών" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "Ο κωδικός σύνδεσης πρέπει να αποτελείτε από τουλάχιστον 8 χαρακτήρες." + diff --git a/ckan/i18n/en_AU/LC_MESSAGES/ckan.po b/ckan/i18n/en_AU/LC_MESSAGES/ckan.po index e87ed5e08ab..99475f3c983 100644 --- a/ckan/i18n/en_AU/LC_MESSAGES/ckan.po +++ b/ckan/i18n/en_AU/LC_MESSAGES/ckan.po @@ -1,23 +1,26 @@ -# Translations template for ckan. +# English (Australia) translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Adrià Mercader , 2018\n" -"Language-Team: English (Australia) (https://www.transifex.com/okfn/teams/11162/en_AU/)\n" +"Language: en_AU\n" +"Language-Team: English (Australia) " +"(https://www.transifex.com/okfn/teams/11162/en_AU/)\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,17 +131,17 @@ msgstr "DataStore resource not found" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 #: ckanext/datastore/logic/action.py:344 ckanext/datastore/logic/action.py:457 @@ -163,7 +166,8 @@ msgstr "Access resource data via a web API with powerful query support" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -174,11 +178,11 @@ msgstr "Endpoints" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 #: ckanext/datastore/templates/ajax_snippets/api_info.html:44 @@ -315,11 +319,13 @@ msgstr "Data API" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

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

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " #: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 msgid "Table" @@ -1076,8 +1082,7 @@ msgstr "This site is currently off-line. Database is not initialised." #: ckan/controllers/home.py:73 ckan/views/home.py:58 #, python-format msgid "Please update your profile and add your email address. " -msgstr "" -"Please update your profile and add your email address. " +msgstr "Please update your profile and add your email address. " #: ckan/controllers/home.py:75 ckan/views/home.py:60 #, python-format @@ -1819,11 +1824,11 @@ msgstr "Name must be a maximum of %i characters long" #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" #: ckan/logic/validators.py:363 msgid "That URL is already in use." @@ -2606,11 +2611,11 @@ msgstr "Unable to get data for uploaded file" #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" #: ckan/public-bs2/base/javascript/modules/resource-view-filters.js:9 #: ckan/public/base/javascript/modules/resource-view-filters.js:9 @@ -2887,37 +2892,39 @@ msgstr "CKAN config options" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

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

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

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

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

Intro " +"

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

" +"

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

" +"

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

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

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

" "

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

" -"

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

" +"

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

" msgstr "" -"

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

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

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

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

Intro " +"

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

" +"

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

" +"

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

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

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

" "

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

" -"

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

" +"

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

" #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 @@ -2932,12 +2939,14 @@ msgstr "Administer CKAN" #, python-format msgid "" "

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

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

" +"Proceed with care!

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

" msgstr "" "

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

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

" +"Proceed with care!

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

" #: ckan/templates/admin/trash.html:20 msgid "Purge" @@ -3096,9 +3105,8 @@ msgstr "Are you sure you want to delete member - {name}?" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "Manage" @@ -3130,8 +3138,7 @@ msgstr "Search groups..." msgid "There are currently no groups for this site" msgstr "There are currently no groups for this site" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "How about creating one?" @@ -3180,22 +3187,19 @@ msgstr "New User" msgid "If you wish to invite a new user, enter their email address." msgstr "If you wish to invite a new user, enter their email address." -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "Role" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "Are you sure you want to delete this member?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3216,12 +3220,12 @@ msgstr "What are roles?" #: ckan/templates/group/member_new.html:80 msgid "" -"

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

Member: Can add/remove " +"

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

Member: Can add/remove " "datasets from groups

" msgstr "" -"

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

Member: Can add/remove " +"

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

Member: Can add/remove " "datasets from groups

" #: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 @@ -3292,15 +3296,15 @@ msgstr "What are Groups?" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 @@ -3363,13 +3367,14 @@ msgid "" "

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

" "

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

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

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

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

" "

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

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3404,11 +3410,11 @@ msgstr "Welcome to CKAN" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " #: ckan/templates/home/snippets/promoted.html:19 msgid "This is a featured section" @@ -3453,12 +3459,12 @@ msgstr "groups" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" -"You can use Markdown formatting here" #: ckan/templates/macros/form.html:277 @@ -3524,8 +3530,8 @@ msgstr "Draft" #: ckan/templates/package/read.html:11 #: ckan/templates/package/snippets/package_basic_fields.html:98 #: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 msgid "Private" msgstr "Private" @@ -3580,14 +3586,14 @@ msgid "" "

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

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

" -"

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

" +"

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

" msgstr "" "

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

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

" -"

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

" +"

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

" #: ckan/templates/organization/members.html:14 msgid "{count} member" @@ -3621,29 +3627,29 @@ msgstr "What are Organisations?" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

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

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

" +"

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

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

" msgstr "" -"

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

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

" +"

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

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

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" -" CKAN Organisations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organisation, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organisations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organisation, " +"depending on their level of authorisation to create, edit and publish. " #: ckan/templates/organization/snippets/organization_form.html:10 msgid "My Organization" @@ -3659,8 +3665,9 @@ msgstr "A little information about my organisation..." #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3683,13 +3690,13 @@ msgstr "What are datasets?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " #: ckan/templates/package/confirm_delete.html:12 msgid "Are you sure you want to delete dataset - {name}?" @@ -3769,15 +3776,15 @@ msgstr "Add view" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:83 @@ -3787,11 +3794,13 @@ msgstr "Add" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" @@ -3856,18 +3865,17 @@ msgstr "No view has been created that is suitable for this resource" #: ckan/templates/package/resource_read.html:139 msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" -"The site administrators may not have enabled the relevant view plugins" +msgstr "The site administrators may not have enabled the relevant view plugins" #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" #: ckan/templates/package/resource_read.html:162 msgid "Additional Information" @@ -3934,11 +3942,11 @@ msgstr "Add new resource" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

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

" +"

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

" msgstr "" -"

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

" +"

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

" #: ckan/templates/package/search.html:52 msgid "API" @@ -4083,17 +4091,19 @@ msgstr "Active" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." #: ckan/templates/package/snippets/package_form.html:39 msgid "Are you sure you want to delete this dataset?" @@ -4414,8 +4424,8 @@ msgstr "

Please try another search.

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

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

" +"

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

" msgstr "" #: ckan/templates/snippets/search_result_text.html:15 @@ -4562,9 +4572,11 @@ msgstr "Account Info" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " #: ckan/templates/user/edit_user_form.html:7 msgid "Change details" @@ -4791,11 +4803,11 @@ msgstr "Request reset" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." #: ckan/templates/user/snippets/followee_dropdown.html:15 #: ckan/templates/user/snippets/followee_dropdown.html:16 @@ -4821,3 +4833,4 @@ msgstr "Search Users" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/en_GB/LC_MESSAGES/ckan.po b/ckan/i18n/en_GB/LC_MESSAGES/ckan.po index 82343bf100a..9dbf23ffb69 100644 --- a/ckan/i18n/en_GB/LC_MESSAGES/ckan.po +++ b/ckan/i18n/en_GB/LC_MESSAGES/ckan.po @@ -1,23 +1,26 @@ -# Translations template for ckan. +# English (United Kingdom) translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Adrià Mercader , 2018\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/okfn/teams/11162/en_GB/)\n" +"Language: en_GB\n" +"Language-Team: English (United Kingdom) " +"(https://www.transifex.com/okfn/teams/11162/en_GB/)\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,17 +131,17 @@ msgstr "DataStore resource not found" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 #: ckanext/datastore/logic/action.py:344 ckanext/datastore/logic/action.py:457 @@ -163,7 +166,8 @@ msgstr "Access resource data via a web API with powerful query support" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -174,11 +178,11 @@ msgstr "Endpoints" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 #: ckanext/datastore/templates/ajax_snippets/api_info.html:44 @@ -315,11 +319,13 @@ msgstr "Data API" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

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

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " #: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 msgid "Table" @@ -1076,8 +1082,7 @@ msgstr "This site is currently off-line. Database is not initialised." #: ckan/controllers/home.py:73 ckan/views/home.py:58 #, python-format msgid "Please update your profile and add your email address. " -msgstr "" -"Please update your profile and add your email address. " +msgstr "Please update your profile and add your email address. " #: ckan/controllers/home.py:75 ckan/views/home.py:60 #, python-format @@ -1819,11 +1824,11 @@ msgstr "Name must be a maximum of %i characters long" #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" #: ckan/logic/validators.py:363 msgid "That URL is already in use." @@ -2606,11 +2611,11 @@ msgstr "Unable to get data for uploaded file" #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" #: ckan/public-bs2/base/javascript/modules/resource-view-filters.js:9 #: ckan/public/base/javascript/modules/resource-view-filters.js:9 @@ -2887,37 +2892,39 @@ msgstr "CKAN config options" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

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

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

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

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

Intro " +"

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

" +"

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

" +"

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

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

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

" "

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

" -"

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

" +"

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

" msgstr "" -"

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

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

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

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

Intro " +"

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

" +"

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

" +"

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

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

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

" "

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

" -"

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

" +"

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

" #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 @@ -2932,12 +2939,14 @@ msgstr "Administer CKAN" #, python-format msgid "" "

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

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

" +"Proceed with care!

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

" msgstr "" "

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

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

" +"Proceed with care!

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

" #: ckan/templates/admin/trash.html:20 msgid "Purge" @@ -3096,9 +3105,8 @@ msgstr "Are you sure you want to delete member - {name}?" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "Manage" @@ -3130,8 +3138,7 @@ msgstr "Search groups..." msgid "There are currently no groups for this site" msgstr "There are currently no groups for this site" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "How about creating one?" @@ -3180,22 +3187,19 @@ msgstr "New User" msgid "If you wish to invite a new user, enter their email address." msgstr "If you wish to invite a new user, enter their email address." -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "Role" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "Are you sure you want to delete this member?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3216,12 +3220,12 @@ msgstr "What are roles?" #: ckan/templates/group/member_new.html:80 msgid "" -"

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

Member: Can add/remove " +"

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

Member: Can add/remove " "datasets from groups

" msgstr "" -"

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

Member: Can add/remove " +"

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

Member: Can add/remove " "datasets from groups

" #: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 @@ -3292,15 +3296,15 @@ msgstr "What are Groups?" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" -"You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +"You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 @@ -3363,13 +3367,14 @@ msgid "" "

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

" "

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

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

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

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

" "

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

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3404,11 +3410,11 @@ msgstr "Welcome to CKAN" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " #: ckan/templates/home/snippets/promoted.html:19 msgid "This is a featured section" @@ -3453,12 +3459,12 @@ msgstr "groups" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" -"You can use Markdown formatting here" #: ckan/templates/macros/form.html:277 @@ -3524,8 +3530,8 @@ msgstr "Draft" #: ckan/templates/package/read.html:11 #: ckan/templates/package/snippets/package_basic_fields.html:98 #: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 msgid "Private" msgstr "Private" @@ -3580,14 +3586,14 @@ msgid "" "

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

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

" -"

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

" +"

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

" msgstr "" "

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

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

" -"

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

" +"

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

" #: ckan/templates/organization/members.html:14 msgid "{count} member" @@ -3621,29 +3627,29 @@ msgstr "What are Organisations?" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

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

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

" +"

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

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

" msgstr "" -"

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

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

" +"

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

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

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" -" CKAN Organisations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organisation, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organisations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organisation, " +"depending on their level of authorisation to create, edit and publish. " #: ckan/templates/organization/snippets/organization_form.html:10 msgid "My Organization" @@ -3659,8 +3665,9 @@ msgstr "A little information about my organisation..." #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3683,13 +3690,13 @@ msgstr "What are datasets?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " #: ckan/templates/package/confirm_delete.html:12 msgid "Are you sure you want to delete dataset - {name}?" @@ -3769,15 +3776,15 @@ msgstr "Add view" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:83 @@ -3787,11 +3794,13 @@ msgstr "Add" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" @@ -3856,18 +3865,17 @@ msgstr "No view has been created that is suitable for this resource" #: ckan/templates/package/resource_read.html:139 msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" -"The site administrators may not have enabled the relevant view plugins" +msgstr "The site administrators may not have enabled the relevant view plugins" #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" #: ckan/templates/package/resource_read.html:162 msgid "Additional Information" @@ -3934,11 +3942,11 @@ msgstr "Add new resource" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

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

" +"

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

" msgstr "" -"

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

" +"

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

" #: ckan/templates/package/search.html:52 msgid "API" @@ -4085,17 +4093,19 @@ msgstr "Active" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." #: ckan/templates/package/snippets/package_form.html:39 msgid "Are you sure you want to delete this dataset?" @@ -4416,11 +4426,11 @@ msgstr "

Please try another search.

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

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

" +"

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

" msgstr "" -"

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

" +"

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

" #: ckan/templates/snippets/search_result_text.html:15 msgid "{number} dataset found for \"{query}\"" @@ -4566,9 +4576,11 @@ msgstr "Account Info" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " #: ckan/templates/user/edit_user_form.html:7 msgid "Change details" @@ -4795,11 +4807,11 @@ msgstr "Request reset" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." #: ckan/templates/user/snippets/followee_dropdown.html:15 #: ckan/templates/user/snippets/followee_dropdown.html:16 @@ -4825,3 +4837,4 @@ msgstr "Search Users" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/es/LC_MESSAGES/ckan.po b/ckan/i18n/es/LC_MESSAGES/ckan.po index cabfe8be403..f8d6aaabbb9 100644 --- a/ckan/i18n/es/LC_MESSAGES/ckan.po +++ b/ckan/i18n/es/LC_MESSAGES/ckan.po @@ -1,23 +1,28 @@ -# Translations template for ckan. +# Spanish translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Mihai Pantazi , 2018 +# Isabel M Ruiz Mellado , 2018 +# David Portoles , 2018 +# Adrià Mercader , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: David Portoles , 2018\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" +"Last-Translator: Adrià Mercader , 2018\n" +"Language: es\n" "Language-Team: Spanish (https://www.transifex.com/okfn/teams/11162/es/)\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,19 +133,19 @@ msgstr "No se ha encontrado el recurso." #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" -"Diccionario de datos guardado. Cualquier actualización de tipo tendrá efecto" -" una vez el recurso vuelva a ser subido a DataStore" +"Diccionario de datos guardado. Cualquier actualización de tipo tendrá " +"efecto una vez el recurso vuelva a ser subido a DataStore" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" -"Los datos fueron inválidos (por ejemplo: un valor numérico estuvo fuera de " -"rango o fue insertado en un campo de texto)." +"Los datos fueron inválidos (por ejemplo: un valor numérico estuvo fuera " +"de rango o fue insertado en un campo de texto)." #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 #: ckanext/datastore/logic/action.py:344 ckanext/datastore/logic/action.py:457 @@ -167,12 +172,13 @@ msgstr "" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

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

" +"target=\"_blank\">documentación del API de Datos principal y del " +"DataStore de CKAN.

" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 #: ckanext/datastore/templates/ajax_snippets/api_info.html:35 @@ -182,11 +188,11 @@ msgstr "Punto de acceso API" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "" -"El API de Datos es accesible a través de las siguientes acciones de la API " -"de acción de CKAN." +"El API de Datos es accesible a través de las siguientes acciones de la " +"API de acción de CKAN." #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 #: ckanext/datastore/templates/ajax_snippets/api_info.html:44 @@ -323,12 +329,13 @@ msgstr "API de datos" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

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

" +"target=\"_blank\">documentación del API de Datos principal y del " +"DataStore de CKAN.

" #: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 msgid "Table" @@ -498,8 +505,7 @@ msgstr "URL de la imagen" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "" -"ej: http://example.com/image.jpg (si el blanco utiliza la url del recurso)" +msgstr "ej: http://example.com/image.jpg (si el blanco utiliza la url del recurso)" #: ckanext/reclineview/plugin.py:101 msgid "Data Explorer" @@ -807,8 +813,7 @@ msgstr "CSS Personalizado" #: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:29 msgid "Customisable css inserted into the page header" -msgstr "" -"Hoja de estilo CSS personalizable insertada en la cabecera de la página" +msgstr "Hoja de estilo CSS personalizable insertada en la cabecera de la página" #: ckan/controllers/admin.py:58 ckan/templates/admin/config.html:31 msgid "Homepage" @@ -882,8 +887,7 @@ msgstr "No hay ninguna revisión con id: %s" #: ckan/controllers/api.py:297 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "" -"Término de búsqueda faltante ('since_id=UUID' o 'since_time=TIMESTAMP')" +msgstr "Término de búsqueda faltante ('since_id=UUID' o 'since_time=TIMESTAMP')" #: ckan/controllers/api.py:309 #, python-format @@ -908,8 +912,8 @@ msgstr "Valor de qjson malformado: %r" #: ckan/controllers/api.py:392 msgid "Request params must be in form of a json encoded dictionary." msgstr "" -"Los parámetros requeridos debe estar en forma de un diccionario en código " -"json." +"Los parámetros requeridos debe estar en forma de un diccionario en código" +" json." #: ckan/controllers/feed.py:234 ckan/controllers/group.py:128 #: ckan/controllers/group.py:226 ckan/controllers/group.py:394 @@ -1101,8 +1105,7 @@ msgstr "" #: ckan/controllers/home.py:75 ckan/views/home.py:60 #, python-format msgid "%s uses your email address if you need to reset your password." -msgstr "" -"%s utiliza tu correo electrónico si necesitas recuperar tu contraseña." +msgstr "%s utiliza tu correo electrónico si necesitas recuperar tu contraseña." #: ckan/controllers/package.py:304 msgid "Invalid search query: {error_message}" @@ -1359,7 +1362,8 @@ msgstr "Contraseña incorrecta" #: ckan/controllers/user.py:427 ckan/views/user.py:386 msgid "Login failed. Bad username or password." msgstr "" -"No se ha podido iniciar sesión. Nombre de usuario o contraseña incorrectos." +"No se ha podido iniciar sesión. Nombre de usuario o contraseña " +"incorrectos." #: ckan/controllers/user.py:460 ckan/views/user.py:504 msgid "Unauthorized to request reset password." @@ -1378,8 +1382,7 @@ msgstr "No existe el usuario: %s" #: ckan/controllers/user.py:498 ckan/views/user.py:542 msgid "Please check your inbox for a reset code." -msgstr "" -"Por favor revise su bandeja de entrada para el código de restablecimiento." +msgstr "Por favor revise su bandeja de entrada para el código de restablecimiento." #: ckan/controllers/user.py:502 ckan/views/user.py:546 #, python-format @@ -1452,8 +1455,7 @@ msgstr "{actor} actualizó los extra {extra} del conjunto de datos {dataset}" #: ckan/lib/activity_streams.py:75 msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "" -"{actor} actualizó el recurso {resource} en el conjunto de datos {dataset}" +msgstr "{actor} actualizó el recurso {resource} en el conjunto de datos {dataset}" #: ckan/lib/activity_streams.py:78 msgid "{actor} updated their profile" @@ -1721,8 +1723,7 @@ msgstr "%s <%s>" #: ckan/lib/mailer.py:116 msgid "No recipient email address available!" -msgstr "" -"No está disponible la dirección de correo electrónico del destinatario!" +msgstr "No está disponible la dirección de correo electrónico del destinatario!" #: ckan/lib/mailer.py:134 ckan/templates/home/snippets/stats.html:17 msgid "organization" @@ -1845,8 +1846,8 @@ msgstr "El nonbre no puede tener más de %i caracteres de largo" #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "" "Debe contener solamente caracteres alfanuméricos (ascii) en minúsculas y " "estos símbolos: -_" @@ -1948,8 +1949,8 @@ msgstr "Este nombre de vocabulario ya está en uso." #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "" -"No se puede cambiar el valor de la clave de %s a %s. Esta clave es de solo " -"lectura." +"No se puede cambiar el valor de la clave de %s a %s. Esta clave es de " +"solo lectura." #: ckan/logic/validators.py:651 msgid "Tag vocabulary was not found." @@ -2053,8 +2054,7 @@ msgstr "La valoración debe ser entre %i y %i." #: ckan/logic/action/create.py:1078 msgid "Error sending the invite email, the user was not created: {0}" -msgstr "" -"Error enviando una invitación por mail, el usuario no está creado: {0}" +msgstr "Error enviando una invitación por mail, el usuario no está creado: {0}" #: ckan/logic/action/create.py:1254 ckan/logic/action/create.py:1261 msgid "You must be logged in to follow users" @@ -2188,21 +2188,22 @@ msgstr "" #: ckan/logic/auth/create.py:61 msgid "No dataset id provided, cannot check auth." msgstr "" -"No se ingresó id del conjunto de datos, no se puede comprobar autorización." +"No se ingresó id del conjunto de datos, no se puede comprobar " +"autorización." #: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 #: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 msgid "No package found for this resource, cannot check auth." msgstr "" -"No se ha encontrado ningún paquete para este recurso, no se puede comprobar " -"la autoridad." +"No se ha encontrado ningún paquete para este recurso, no se puede " +"comprobar la autoridad." #: ckan/logic/auth/create.py:76 #, python-format msgid "User %s not authorized to create resources on dataset %s" msgstr "" -"El usuario %s no está autorizado para crear recursos en el conjunto de datos" -" %s" +"El usuario %s no está autorizado para crear recursos en el conjunto de " +"datos %s" #: ckan/logic/auth/create.py:108 #, python-format @@ -2221,8 +2222,7 @@ msgstr "El usuario %s no está autorizado para crear organizaciones" #: ckan/logic/auth/create.py:145 msgid "User {user} not authorized to create users via the API" -msgstr "" -"El usuario {user} no está autorizado a crear usuarios a través de la API" +msgstr "El usuario {user} no está autorizado a crear usuarios a través de la API" #: ckan/logic/auth/create.py:148 msgid "Not authorized to create users" @@ -2322,8 +2322,7 @@ msgstr "El usuario %s no está autorizado para editar el recurso %s" #: ckan/logic/auth/update.py:100 #, python-format msgid "User %s not authorized to change state of package %s" -msgstr "" -"El usuario %s no está autorizado para cambiar el estado del paquete %s" +msgstr "El usuario %s no está autorizado para cambiar el estado del paquete %s" #: ckan/logic/auth/update.py:128 #, python-format @@ -2338,8 +2337,7 @@ msgstr "El usuario %s no está autorizado para cambiar el estado del grupo %s" #: ckan/logic/auth/update.py:162 #, python-format msgid "User %s not authorized to edit permissions of group %s" -msgstr "" -"El usuario %s no está autorizado para editar los permisos del grupo %s" +msgstr "El usuario %s no está autorizado para editar los permisos del grupo %s" #: ckan/logic/auth/update.py:190 msgid "Have to be logged in to edit user" @@ -2357,8 +2355,7 @@ msgstr "El usuario {0} no autorizado para actualizar al usuario {1}" #: ckan/logic/auth/update.py:217 #, python-format msgid "User %s not authorized to change state of revision" -msgstr "" -"El usuario %s no está autorizado para cambiar el estado de la revisión" +msgstr "El usuario %s no está autorizado para cambiar el estado de la revisión" #: ckan/logic/auth/update.py:226 #, python-format @@ -2368,8 +2365,7 @@ msgstr "El usuario %s no esta autorizado para actualizar la tabla task_status" #: ckan/logic/auth/update.py:240 #, python-format msgid "User %s not authorized to update term_translation table" -msgstr "" -"El usuario %s no está autorizado a actualizar la tabla term_translation" +msgstr "El usuario %s no está autorizado a actualizar la tabla term_translation" #: ckan/model/license.py:223 msgid "License not specified" @@ -2649,8 +2645,8 @@ msgstr "No se pudo obtener datos para el archivo subido" #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "" "Estás subiendo un fichero. Estás seguro que quieres salir y parar esta " "subida?" @@ -2930,37 +2926,39 @@ msgstr "Opciones de configuración de CKAN" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

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

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

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

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

Intro " +"

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

" +"

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

" +"

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

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

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

" "

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

" -"

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

" +"

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

" msgstr "" -"

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

" -"

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

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

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

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

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

" +"

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

" +"

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

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

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

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

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

" #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 @@ -2975,14 +2973,15 @@ msgstr "Administrar CKAN" #, python-format msgid "" "

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

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

" +"Proceed with care!

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

" msgstr "" "

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

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

" +"instancia de CKAN. ¡Proceda con cuidado!

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

" #: ckan/templates/admin/trash.html:20 msgid "Purge" @@ -3143,9 +3142,8 @@ msgstr "¿Está seguro de que desea eliminar al miembro - {name}?" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "Administrar" @@ -3177,8 +3175,7 @@ msgstr "Buscar grupos..." msgid "There are currently no groups for this site" msgstr "No existen actualmente grupos para este sitio" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "¿Qué tal creando uno?" @@ -3210,8 +3207,7 @@ msgstr "Usuario existente" #: ckan/templates/group/member_new.html:21 #: ckan/templates/organization/member_new.html:22 msgid "If you wish to add an existing user, search for their username below." -msgstr "" -"Si quiere añadir un usuario existente, buscar el nombre del usuario abajo." +msgstr "Si quiere añadir un usuario existente, buscar el nombre del usuario abajo." #: ckan/templates/group/member_new.html:38 #: ckan/templates/organization/member_new.html:39 @@ -3226,25 +3222,21 @@ msgstr "Usuario nuevo" #: ckan/templates/group/member_new.html:45 #: ckan/templates/organization/member_new.html:46 msgid "If you wish to invite a new user, enter their email address." -msgstr "" -"Si desea invitar a un usuario, escriba su dirección de correo electrónico" +msgstr "Si desea invitar a un usuario, escriba su dirección de correo electrónico" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "Rol" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "¿Está seguro de que desea eliminar a este miembro?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3265,12 +3257,12 @@ msgstr "¿Qué son los roles?" #: ckan/templates/group/member_new.html:80 msgid "" -"

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

Member: Can add/remove " +"

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

Member: Can add/remove " "datasets from groups

" msgstr "" -"

Administrador:Puede editar información del grupo, así " -"como también administrar miembros de la " +"

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

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

" @@ -3342,16 +3334,16 @@ msgstr "¿Qué son los Grupos?" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" "Puedes usar los grupos de CKAN para crear y administrar colecciones de " -"conjuntos de datos. Esto se puede usar para catalogar conjuntos de datos de " -"un proyecto concreto o un equipo, o de un tema en particular, o como una " -"manera muy sencilla de ayudar a la gente a buscar y encontrar sus propios " -"conjuntos de datos publicados." +"conjuntos de datos. Esto se puede usar para catalogar conjuntos de datos " +"de un proyecto concreto o un equipo, o de un tema en particular, o como " +"una manera muy sencilla de ayudar a la gente a buscar y encontrar sus " +"propios conjuntos de datos publicados." #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 @@ -3414,13 +3406,14 @@ msgid "" "

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

" "

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

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3431,24 +3424,25 @@ msgid "" "href=\"http://ckan.org/features/\">http://ckan.org/features/

" msgstr "" "

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

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

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

CKAN:

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

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

CKAN: http://ckan.org/
Tour de CKAN: http://ckan.org/tour/
Revisión de " -"funcionalidades: http://ckan.org/tour/
Revisión " +"de funcionalidades: http://ckan.org/features/" #: ckan/templates/home/snippets/promoted.html:8 @@ -3457,11 +3451,12 @@ msgstr "Bienvenido a CKAN" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" -"Este es un párrafo amigable de introducción acerca de CKAN o del sitio en " -"general. No tenemos ningún mensaje que vaya aquí pero pronto lo tendremos" +"Este es un párrafo amigable de introducción acerca de CKAN o del sitio en" +" general. No tenemos ningún mensaje que vaya aquí pero pronto lo " +"tendremos" #: ckan/templates/home/snippets/promoted.html:19 msgid "This is a featured section" @@ -3506,8 +3501,8 @@ msgstr "grupos" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" "Puede usar Admin: Can add/edit and delete datasets, as well as " "manage organization members.

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

" -"

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

" +"

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

" msgstr "" -"

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

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

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

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

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

" #: ckan/templates/organization/members.html:14 @@ -3676,32 +3671,32 @@ msgstr "¿Qué son las Organizaciones?" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

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

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

" +"

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

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

" msgstr "" "

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

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

" +"conjuntos de datos (por ejemplo, el Departamento de Salud). Esto " +"significa que los conjuntos de datos pueden ser publicados por y " +"pertenecer a un departamento en vez de a un usuario individual.

" +"

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

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" "Las organizaciones en CKAN son usadas para crear, gestionar y publicar " "colecciones de conjuntos de datos. Los usuarios pueden tener diferentes " -"perfiles en una organización, dependiente de su nivel de autorización para " -"crear, editar y publicar" +"perfiles en una organización, dependiente de su nivel de autorización " +"para crear, editar y publicar" #: ckan/templates/organization/snippets/organization_form.html:10 msgid "My Organization" @@ -3717,11 +3712,12 @@ msgstr "Un poco de información acerca de mi organización..." #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" -"¿Estás seguro de que quieres borrar esta organización? Nota*: El borrado no " -"se puede realizar mientras conjuntos de datos públicos o privados " +"¿Estás seguro de que quieres borrar esta organización? Nota*: El borrado " +"no se puede realizar mientras conjuntos de datos públicos o privados " "pertenezcan a esta organización" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3744,13 +3740,14 @@ msgstr "¿Qué son los conjuntos de datos?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" "Un Conjunto de Datos de CKAN es una colección de recursos de datos (como " -"ficheros), junto con una descripción y otra información, unida a una URL. " -"Los conjuntos de datos son lo que los usuarios ven cuando buscan un dato." +"ficheros), junto con una descripción y otra información, unida a una URL." +" Los conjuntos de datos son lo que los usuarios ven cuando buscan un " +"dato." #: ckan/templates/package/confirm_delete.html:12 msgid "Are you sure you want to delete dataset - {name}?" @@ -3830,15 +3827,15 @@ msgstr "Agregar vista" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the
Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" -"Las vistas de Data Explorer pueden ser lentas y no confiables a no ser que " -"la extensión DataStore esté activa. Para más información por favor revise la" -" documentación de" -" Data Explorer." +"Las vistas de Data Explorer pueden ser lentas y no confiables a no ser " +"que la extensión DataStore esté activa. Para más información por favor " +"revise la documentación de Data Explorer." #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:83 @@ -3848,8 +3845,9 @@ msgstr "Añade" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" "Esta es una versión antigua de este conjunto de datos, editada en " "%(timestamp)s. Puede diferir significativamente de la This dataset has no data, why not " -"add some?

" +"

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

" msgstr "" "

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

" @@ -4023,8 +4022,8 @@ msgid "" " You can also access this registry using the %(api_link)s (see " "%(api_doc_link)s) or download a %(dump_link)s. " msgstr "" -"Usted también puede acceder a este registro utilizando los %(api_link)s (ver" -" %(api_doc_link)s) o descargando un %(dump_link)s." +"Usted también puede acceder a este registro utilizando los %(api_link)s " +"(ver %(api_doc_link)s) o descargando un %(dump_link)s." #: ckan/templates/package/search.html:60 #, python-format @@ -4032,8 +4031,8 @@ msgid "" " You can also access this registry using the %(api_link)s (see " "%(api_doc_link)s). " msgstr "" -"Usted también puede acceder a este registro utilizando los %(api_link)s (ver" -" %(api_doc_link)s)." +"Usted también puede acceder a este registro utilizando los %(api_link)s " +"(ver %(api_doc_link)s)." #: ckan/templates/package/view_edit_base.html:9 msgid "All views" @@ -4088,16 +4087,15 @@ msgstr "Crear una nueva organización" #: ckan/templates/package/snippets/cannot_create_package.html:18 msgid "There are no organizations to which you can assign this dataset." -msgstr "" -"No hay organizaciones a las que le puedas asignar este conjunto de datos." +msgstr "No hay organizaciones a las que le puedas asignar este conjunto de datos." #: ckan/templates/package/snippets/cannot_create_package.html:19 msgid "" "Ask a system administrator to create an organization before you can " "continue." msgstr "" -"Preguntar a un administrador del sistema para crear una organización antes " -"de continuar" +"Preguntar a un administrador del sistema para crear una organización " +"antes de continuar" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 @@ -4125,8 +4123,8 @@ msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "" -"Definiciones de licencias e información adicional puede ser encontrada en opendefinition.org" +"Definiciones de licencias e información adicional puede ser encontrada en" +" opendefinition.org" #: ckan/templates/package/snippets/package_basic_fields.html:76 #: ckan/templates/snippets/organization.html:23 @@ -4151,15 +4149,16 @@ msgstr "Activo" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" "La licencia de datos que seleccionó arriba solo aplica para los " -"contenidos de cualquier archivo de recurso que agregue a este conjunto de " -"datos. Al enviar este formulario, usted está de acuerdo en liberar los " +"contenidos de cualquier archivo de recurso que agregue a este conjunto de" +" datos. Al enviar este formulario, usted está de acuerdo en liberar los " "valores de metadatos que ingrese en el formulario bajo la Licencia Open " "Database." @@ -4273,8 +4272,8 @@ msgstr "¿Qué es un recurso?" #: ckan/templates/package/snippets/resource_help.html:4 msgid "A resource can be any file or link to a file containing useful data." msgstr "" -"Un recurso puede ser cualquier archivo o enlace a un archivo que contiene " -"datos útiles." +"Un recurso puede ser cualquier archivo o enlace a un archivo que contiene" +" datos útiles." #: ckan/templates/package/snippets/resource_item.html:23 msgid "Explore" @@ -4367,7 +4366,8 @@ msgstr "¿Qué es una vista?" #: ckan/templates/package/snippets/view_help.html:4 msgid "A view is a representation of the data held against a resource" msgstr "" -"Una vista es una representación de los datos que se tienen sobre un recurso" +"Una vista es una representación de los datos que se tienen sobre un " +"recurso" #: ckan/templates/revision/diff.html:6 msgid "Differences" @@ -4461,8 +4461,8 @@ msgstr "No se ha provisto de una licencia" #: ckan/templates/snippets/license.html:28 msgid "This dataset satisfies the Open Definition." msgstr "" -"Este conjunto de datos cumple con la Definición de Conocimiento Abierto - " -"Open Definition." +"Este conjunto de datos cumple con la Definición de Conocimiento Abierto -" +" Open Definition." #: ckan/templates/snippets/organization.html:48 msgid "There is no description for this organization" @@ -4488,8 +4488,8 @@ msgstr "

Por favor intente otra búsqueda.

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

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

" +"

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

" msgstr "" "

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

" @@ -4638,7 +4638,8 @@ msgstr "Información de la Cuenta" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" "Su perfil le permite a otros usuarios de CKAN conocer acerca de usted y " "sobre lo que hace." @@ -4733,8 +4734,8 @@ msgstr "¿Olvidó su clave?" #: ckan/templates/user/login.html:44 msgid "No problem, use our password recovery form to reset it." msgstr "" -"No hay problema, utilice nuestro formulario de recuperación de contraseña " -"para restablecerla." +"No hay problema, utilice nuestro formulario de recuperación de contraseña" +" para restablecerla." #: ckan/templates/user/login.html:47 msgid "Forgot your password?" @@ -4872,11 +4873,11 @@ msgstr "Solicitar restablecimiento" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" -"Ingrese su nombre de usuario en el recuadro y le enviaremos un email con un " -"enlace para ingresar una nueva contraseña." +"Ingrese su nombre de usuario en el recuadro y le enviaremos un email con " +"un enlace para ingresar una nueva contraseña." #: ckan/templates/user/snippets/followee_dropdown.html:15 #: ckan/templates/user/snippets/followee_dropdown.html:16 @@ -4902,3 +4903,4 @@ msgstr "Buscar Usuarios" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "Su contraseña debe tener 8 caracteres o más." + diff --git a/ckan/i18n/es_AR/LC_MESSAGES/ckan.po b/ckan/i18n/es_AR/LC_MESSAGES/ckan.po index 7574fc4c3b1..90b3ac2164a 100644 --- a/ckan/i18n/es_AR/LC_MESSAGES/ckan.po +++ b/ckan/i18n/es_AR/LC_MESSAGES/ckan.po @@ -1,23 +1,27 @@ -# Translations template for ckan. +# Spanish (Argentina) translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 +# Ignacio L'Episcopo, 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Ignacio L'Episcopo, 2018\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/okfn/teams/11162/es_AR/)\n" +"Language: es_AR\n" +"Language-Team: Spanish (Argentina) " +"(https://www.transifex.com/okfn/teams/11162/es_AR/)\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,19 +132,19 @@ msgstr "No se ha encontrado el recurso." #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" -"Diccionario de datos guardado. Cualquier actualización de tipo tendrá efecto" -" una vez el recurso vuelva a ser subido a DataStore" +"Diccionario de datos guardado. Cualquier actualización de tipo tendrá " +"efecto una vez el recurso vuelva a ser subido a DataStore" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" -"Los datos fueron inválidos (por ejemplo: un valor numérico estuvo fuera de " -"rango o fue insertado en un campo de texto)." +"Los datos fueron inválidos (por ejemplo: un valor numérico estuvo fuera " +"de rango o fue insertado en un campo de texto)." #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 #: ckanext/datastore/logic/action.py:344 ckanext/datastore/logic/action.py:457 @@ -167,12 +171,13 @@ msgstr "" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

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

" +"target=\"_blank\">documentación del API de Datos principal y del " +"DataStore de CKAN.

" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 #: ckanext/datastore/templates/ajax_snippets/api_info.html:35 @@ -182,11 +187,11 @@ msgstr "Punto de acceso API" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "" -"El API de Datos es accesible a través de las siguientes acciones de la API " -"de acción de CKAN." +"El API de Datos es accesible a través de las siguientes acciones de la " +"API de acción de CKAN." #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 #: ckanext/datastore/templates/ajax_snippets/api_info.html:44 @@ -323,12 +328,13 @@ msgstr "API de datos" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

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

" +"target=\"_blank\">documentación del API de Datos principal y del " +"DataStore de CKAN.

" #: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 msgid "Table" @@ -882,8 +888,7 @@ msgstr "No hay ninguna revisión con la identificación: %s" #: ckan/controllers/api.py:297 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "" -"Término de búsqueda faltante ('since_id=UUID' o 'since_time=TIMESTAMP')" +msgstr "Término de búsqueda faltante ('since_id=UUID' o 'since_time=TIMESTAMP')" #: ckan/controllers/api.py:309 #, python-format @@ -908,8 +913,8 @@ msgstr "Valor de qjson mal formado: %r" #: ckan/controllers/api.py:392 msgid "Request params must be in form of a json encoded dictionary." msgstr "" -"Los parámetros requeridos debe estar en forma de un diccionario en código " -"json." +"Los parámetros requeridos debe estar en forma de un diccionario en código" +" json." #: ckan/controllers/feed.py:234 ckan/controllers/group.py:128 #: ckan/controllers/group.py:226 ckan/controllers/group.py:394 @@ -1095,8 +1100,8 @@ msgstr "" #, python-format msgid "Please update your profile and add your email address. " msgstr "" -"Por favor actualiza tu perfil y añade tu dirección de " -"correo electrónico." +"Por favor actualiza tu perfil y añade tu dirección de" +" correo electrónico." #: ckan/controllers/home.py:75 ckan/views/home.py:60 #, python-format @@ -1358,7 +1363,8 @@ msgstr "Contraseña incorrecta" #: ckan/controllers/user.py:427 ckan/views/user.py:386 msgid "Login failed. Bad username or password." msgstr "" -"No se ha podido iniciar sesión. Nombre de usuario o contraseña incorrectos." +"No se ha podido iniciar sesión. Nombre de usuario o contraseña " +"incorrectos." #: ckan/controllers/user.py:460 ckan/views/user.py:504 msgid "Unauthorized to request reset password." @@ -1450,8 +1456,7 @@ msgstr "{actor} actualizó los extra {extra} del conjunto de datos {dataset}" #: ckan/lib/activity_streams.py:75 msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "" -"{actor} actualizó el recurso {resource} en el conjunto de datos {dataset}" +msgstr "{actor} actualizó el recurso {resource} en el conjunto de datos {dataset}" #: ckan/lib/activity_streams.py:78 msgid "{actor} updated their profile" @@ -1719,8 +1724,7 @@ msgstr "%s <%s>" #: ckan/lib/mailer.py:116 msgid "No recipient email address available!" -msgstr "" -"¡No está disponible la dirección de correo electrónico del destinatario!" +msgstr "¡No está disponible la dirección de correo electrónico del destinatario!" #: ckan/lib/mailer.py:134 ckan/templates/home/snippets/stats.html:17 msgid "organization" @@ -1843,8 +1847,8 @@ msgstr "El nonbre no puede tener más de %i caracteres de largo" #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "" "Debe contener solamente caracteres alfanuméricos (ascii) en minúsculas y " "estos símbolos: -_" @@ -1929,8 +1933,7 @@ msgstr "Las contraseñas introducidas no coinciden" msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." -msgstr "" -"Edición no permitida porque parece spam. Evita enlaces en tu descripción." +msgstr "Edición no permitida porque parece spam. Evita enlaces en tu descripción." #: ckan/logic/validators.py:628 #, python-format @@ -1945,8 +1948,8 @@ msgstr "Este nombre de vocabulario ya está en uso." #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "" -"No se puede cambiar el valor de la clave de %s a %s. Esta clave es de solo " -"lectura." +"No se puede cambiar el valor de la clave de %s a %s. Esta clave es de " +"solo lectura." #: ckan/logic/validators.py:651 msgid "Tag vocabulary was not found." @@ -2050,8 +2053,7 @@ msgstr "La valoración debe ser entre %i y %i." #: ckan/logic/action/create.py:1078 msgid "Error sending the invite email, the user was not created: {0}" -msgstr "" -"Error enviando una invitación por mail, el usuario no está creado: {0}" +msgstr "Error enviando una invitación por mail, el usuario no está creado: {0}" #: ckan/logic/action/create.py:1254 ckan/logic/action/create.py:1261 msgid "You must be logged in to follow users" @@ -2185,21 +2187,22 @@ msgstr "" #: ckan/logic/auth/create.py:61 msgid "No dataset id provided, cannot check auth." msgstr "" -"No se ingresó id del conjunto de datos, no se puede comprobar autenticación." +"No se ingresó id del conjunto de datos, no se puede comprobar " +"autenticación." #: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 #: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 msgid "No package found for this resource, cannot check auth." msgstr "" -"No se ha encontrado ningún paquete para este recurso, no se puede comprobar " -"la autenticación." +"No se ha encontrado ningún paquete para este recurso, no se puede " +"comprobar la autenticación." #: ckan/logic/auth/create.py:76 #, python-format msgid "User %s not authorized to create resources on dataset %s" msgstr "" -"El usuario %s no está autorizado para crear recursos en el conjunto de datos" -" %s" +"El usuario %s no está autorizado para crear recursos en el conjunto de " +"datos %s" #: ckan/logic/auth/create.py:108 #, python-format @@ -2218,8 +2221,7 @@ msgstr "El usuario %s no está autorizado para crear organizaciones" #: ckan/logic/auth/create.py:145 msgid "User {user} not authorized to create users via the API" -msgstr "" -"El usuario {user} no está autorizado a crear usuarios a través de la API" +msgstr "El usuario {user} no está autorizado a crear usuarios a través de la API" #: ckan/logic/auth/create.py:148 msgid "Not authorized to create users" @@ -2319,8 +2321,7 @@ msgstr "El usuario %s no está autorizado para editar el recurso %s" #: ckan/logic/auth/update.py:100 #, python-format msgid "User %s not authorized to change state of package %s" -msgstr "" -"El usuario %s no está autorizado para cambiar el estado del paquete %s" +msgstr "El usuario %s no está autorizado para cambiar el estado del paquete %s" #: ckan/logic/auth/update.py:128 #, python-format @@ -2335,8 +2336,7 @@ msgstr "El usuario %s no está autorizado para cambiar el estado del grupo %s" #: ckan/logic/auth/update.py:162 #, python-format msgid "User %s not authorized to edit permissions of group %s" -msgstr "" -"El usuario %s no está autorizado para editar los permisos del grupo %s" +msgstr "El usuario %s no está autorizado para editar los permisos del grupo %s" #: ckan/logic/auth/update.py:190 msgid "Have to be logged in to edit user" @@ -2354,8 +2354,7 @@ msgstr "El usuario {0} no autorizado para actualizar al usuario {1}" #: ckan/logic/auth/update.py:217 #, python-format msgid "User %s not authorized to change state of revision" -msgstr "" -"El usuario %s no está autorizado para cambiar el estado de la revisión" +msgstr "El usuario %s no está autorizado para cambiar el estado de la revisión" #: ckan/logic/auth/update.py:226 #, python-format @@ -2365,8 +2364,7 @@ msgstr "El usuario %s no esta autorizado para actualizar la tabla task_status" #: ckan/logic/auth/update.py:240 #, python-format msgid "User %s not authorized to update term_translation table" -msgstr "" -"El usuario %s no está autorizado a actualizar la tabla term_translation" +msgstr "El usuario %s no está autorizado a actualizar la tabla term_translation" #: ckan/model/license.py:223 msgid "License not specified" @@ -2646,11 +2644,11 @@ msgstr "No se pudo obtener datos para el archivo subido" #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "" -"Estás subiendo un archivo. ¿Estás seguro que quieres salir y detener esta " -"subida?" +"Estás subiendo un archivo. ¿Estás seguro que quieres salir y detener esta" +" subida?" #: ckan/public-bs2/base/javascript/modules/resource-view-filters.js:9 #: ckan/public/base/javascript/modules/resource-view-filters.js:9 @@ -2927,36 +2925,38 @@ msgstr "Opciones de configuración de CKAN" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

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

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

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

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

Intro " +"

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

" +"

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

" +"

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

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

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

" "

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

" -"

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

" +"

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

" msgstr "" -"

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

" -"

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

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

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

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

CSS " -"Personalizado: Este es el bloque de código CSS que aparece en la " -"etiqueta <head> de cada página. Si deseas personalizar " -"las plantillas de manera más profunda le recomendamos Título del Sitio: Este es el título de esta instancia" +" de CKAN. Se muestra en varios lugares dentro de CKAN.

" +"

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

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

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

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

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

" #: ckan/templates/admin/confirm_reset.html:3 @@ -2972,14 +2972,15 @@ msgstr "Administrar CKAN" #, python-format msgid "" "

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

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

" +"Proceed with care!

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

" msgstr "" "

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

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

" +"instancia de CKAN. ¡Proceda con cuidado!

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

" #: ckan/templates/admin/trash.html:20 msgid "Purge" @@ -3140,9 +3141,8 @@ msgstr "¿Seguro de que deseas eliminar al miembro - {name}?" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "Administrar" @@ -3174,8 +3174,7 @@ msgstr "Buscar grupos..." msgid "There are currently no groups for this site" msgstr "No existen actualmente grupos para este sitio" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "¿Qué tal creando uno?" @@ -3207,8 +3206,7 @@ msgstr "Usuario existente" #: ckan/templates/group/member_new.html:21 #: ckan/templates/organization/member_new.html:22 msgid "If you wish to add an existing user, search for their username below." -msgstr "" -"Si quiere añadir un usuario existente, buscar el nombre del usuario abajo." +msgstr "Si quiere añadir un usuario existente, buscar el nombre del usuario abajo." #: ckan/templates/group/member_new.html:38 #: ckan/templates/organization/member_new.html:39 @@ -3223,25 +3221,21 @@ msgstr "Usuario nuevo" #: ckan/templates/group/member_new.html:45 #: ckan/templates/organization/member_new.html:46 msgid "If you wish to invite a new user, enter their email address." -msgstr "" -"Si deseas invitar a un usuario, escribe su dirección de correo electrónico" +msgstr "Si deseas invitar a un usuario, escribe su dirección de correo electrónico" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "Rol" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "¿Seguro de que deseas eliminar a este miembro?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3262,12 +3256,12 @@ msgstr "¿Qué son los roles?" #: ckan/templates/group/member_new.html:80 msgid "" -"

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

Member: Can add/remove " +"

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

Member: Can add/remove " "datasets from groups

" msgstr "" -"

Administrador:Puede editar información del grupo, así " -"como también administrar miembros de la " +"

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

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

" @@ -3339,16 +3333,16 @@ msgstr "¿Qué son los Grupos?" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" "Puedes usar los grupos de CKAN para crear y administrar colecciones de " -"conjuntos de datos. Esto se puede usar para catalogar conjuntos de datos de " -"un proyecto concreto o un equipo, o de un tema en particular, o como una " -"manera muy sencilla de ayudar a la gente a buscar y encontrar sus propios " -"conjuntos de datos publicados." +"conjuntos de datos. Esto se puede usar para catalogar conjuntos de datos " +"de un proyecto concreto o un equipo, o de un tema en particular, o como " +"una manera muy sencilla de ayudar a la gente a buscar y encontrar sus " +"propios conjuntos de datos publicados." #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 @@ -3411,13 +3405,14 @@ msgid "" "

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

" "

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

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3428,24 +3423,25 @@ msgid "" "href=\"http://ckan.org/features/\">http://ckan.org/features/

" msgstr "" "

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

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

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

CKAN:

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

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

CKAN: http://ckan.org/
Tour de CKAN: http://ckan.org/tour/
Revisión de " -"funcionalidades: http://ckan.org/tour/
Revisión " +"de funcionalidades: http://ckan.org/features/" #: ckan/templates/home/snippets/promoted.html:8 @@ -3454,11 +3450,12 @@ msgstr "Bienvenido a CKAN" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" -"Este es un párrafo amigable de introducción acerca de CKAN o del sitio en " -"general. No tenemos ningún mensaje que vaya aquí pero pronto lo tendremos" +"Este es un párrafo amigable de introducción acerca de CKAN o del sitio en" +" general. No tenemos ningún mensaje que vaya aquí pero pronto lo " +"tendremos" #: ckan/templates/home/snippets/promoted.html:19 msgid "This is a featured section" @@ -3503,12 +3500,12 @@ msgstr "grupos" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" -"Puedes usar formato Markdown aquí" #: ckan/templates/macros/form.html:277 @@ -3574,8 +3571,8 @@ msgstr "Borrador" #: ckan/templates/package/read.html:11 #: ckan/templates/package/snippets/package_basic_fields.html:98 #: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 msgid "Private" msgstr "Privado" @@ -3630,16 +3627,16 @@ msgid "" "

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

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

" -"

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

" +"

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

" msgstr "" "

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

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

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

" +"organización.

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

" #: ckan/templates/organization/members.html:14 msgid "{count} member" @@ -3673,32 +3670,32 @@ msgstr "¿Qué son las Organizaciones?" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

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

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

" +"

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

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

" msgstr "" "

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

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

" +"conjuntos de datos (por ejemplo, el Departamento de Salud). Esto " +"significa que los conjuntos de datos pueden ser publicados por y " +"pertenecer a un departamento en vez de a un usuario individual.

" +"

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

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" "Las organizaciones en CKAN son usadas para crear, gestionar y publicar " "colecciones de conjuntos de datos. Los usuarios pueden tener diferentes " -"perfiles en una organización, dependiente de su nivel de autorización para " -"crear, editar y publicar" +"perfiles en una organización, dependiente de su nivel de autorización " +"para crear, editar y publicar" #: ckan/templates/organization/snippets/organization_form.html:10 msgid "My Organization" @@ -3714,8 +3711,9 @@ msgstr "Un poco de información acerca de mi organización..." #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" "¿Estás seguro de que quieres eliminar esta organización? Nota*: La " "eliminación no se puede realizar mientras conjuntos de datos públicos o " @@ -3741,13 +3739,14 @@ msgstr "¿Qué son los conjuntos de datos?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" "Un Conjunto de Datos de CKAN es una colección de recursos de datos (como " -"ficheros), junto con una descripción y otra información, unida a una URL. " -"Los conjuntos de datos son lo que los usuarios ven cuando buscan un dato." +"ficheros), junto con una descripción y otra información, unida a una URL." +" Los conjuntos de datos son lo que los usuarios ven cuando buscan un " +"dato." #: ckan/templates/package/confirm_delete.html:12 msgid "Are you sure you want to delete dataset - {name}?" @@ -3827,15 +3826,15 @@ msgstr "Agregar vista" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" -"Las vistas de Data Explorer pueden ser lentas y no confiables a no ser que " -"la extensión DataStore esté activa. Para más información revisa la documentación de Data " -"Explorer." +"Las vistas de Data Explorer pueden ser lentas y no confiables a no ser " +"que la extensión DataStore esté activa. Para más información revisa la documentación" +" de Data Explorer." #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:83 @@ -3845,8 +3844,9 @@ msgstr "Añade" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" "Esta es una versión antigua de este conjunto de datos, editada en " "%(timestamp)s. Puede diferir significativamente de la This dataset has no data, why not " -"add some?

" +"

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

" msgstr "" "

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

" @@ -4085,16 +4086,15 @@ msgstr "Crear una nueva organización" #: ckan/templates/package/snippets/cannot_create_package.html:18 msgid "There are no organizations to which you can assign this dataset." -msgstr "" -"No hay organizaciones a las que le puedas asignar este conjunto de datos." +msgstr "No hay organizaciones a las que le puedas asignar este conjunto de datos." #: ckan/templates/package/snippets/cannot_create_package.html:19 msgid "" "Ask a system administrator to create an organization before you can " "continue." msgstr "" -"Preguntar a un administrador del sistema para crear una organización antes " -"de continuar" +"Preguntar a un administrador del sistema para crear una organización " +"antes de continuar" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 @@ -4122,8 +4122,8 @@ msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "" -"Definiciones de licencias e información adicional puede ser encontrada en opendefinition.org" +"Definiciones de licencias e información adicional puede ser encontrada en" +" opendefinition.org" #: ckan/templates/package/snippets/package_basic_fields.html:76 #: ckan/templates/snippets/organization.html:23 @@ -4148,16 +4148,17 @@ msgstr "Activo" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" "La licencia de datos que seleccionó arriba solo aplica para los " -"contenidos de cualquier archivo de recurso que agregue a este conjunto de " -"datos. Al enviar este formulario, estás de acuerdo en liberar los valores de" -" metadatos que ingrese en el formulario bajo la metadatos que ingrese en el formulario bajo la Licencia Open " "Database." @@ -4270,8 +4271,8 @@ msgstr "¿Qué es un recurso?" #: ckan/templates/package/snippets/resource_help.html:4 msgid "A resource can be any file or link to a file containing useful data." msgstr "" -"Un recurso puede ser cualquier archivo o enlace a un archivo que contiene " -"datos útiles." +"Un recurso puede ser cualquier archivo o enlace a un archivo que contiene" +" datos útiles." #: ckan/templates/package/snippets/resource_item.html:23 msgid "Explore" @@ -4302,8 +4303,8 @@ msgid "" "You can copy and paste the embed code into a CMS or blog software that " "supports raw HTML" msgstr "" -"Puedes copiar y pegar el código de inserción en un CMS o blog que soporte " -"HTML crudo" +"Puedes copiar y pegar el código de inserción en un CMS o blog que soporte" +" HTML crudo" #: ckan/templates/package/snippets/resource_view.html:80 msgid "Width" @@ -4364,7 +4365,8 @@ msgstr "¿Qué es una vista?" #: ckan/templates/package/snippets/view_help.html:4 msgid "A view is a representation of the data held against a resource" msgstr "" -"Una vista es una representación de los datos que se tienen sobre un recurso" +"Una vista es una representación de los datos que se tienen sobre un " +"recurso" #: ckan/templates/revision/diff.html:6 msgid "Differences" @@ -4458,8 +4460,8 @@ msgstr "No se ha proporcionado una licencia" #: ckan/templates/snippets/license.html:28 msgid "This dataset satisfies the Open Definition." msgstr "" -"Este conjunto de datos cumple con la Definición de Conocimiento Abierto - " -"Open Definition." +"Este conjunto de datos cumple con la Definición de Conocimiento Abierto -" +" Open Definition." #: ckan/templates/snippets/organization.html:48 msgid "There is no description for this organization" @@ -4485,8 +4487,8 @@ msgstr "

Intenta otra búsqueda.

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

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

" +"

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

" msgstr "" "

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

" @@ -4635,10 +4637,11 @@ msgstr "Información de la Cuenta" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" -"Tu perfil le permite a otros usuarios de CKAN conocer acerca tuyo y sobre lo" -" que haces." +"Tu perfil le permite a otros usuarios de CKAN conocer acerca tuyo y sobre" +" lo que haces." #: ckan/templates/user/edit_user_form.html:7 msgid "Change details" @@ -4730,8 +4733,8 @@ msgstr "¿Olvidaste tu contraseña?" #: ckan/templates/user/login.html:44 msgid "No problem, use our password recovery form to reset it." msgstr "" -"No hay problema, utilice nuestro formulario de recuperación de contraseña " -"para restablecerla." +"No hay problema, utilice nuestro formulario de recuperación de contraseña" +" para restablecerla." #: ckan/templates/user/login.html:47 msgid "Forgot your password?" @@ -4869,11 +4872,11 @@ msgstr "Solicitar restablecimiento" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" -"Ingrese tu nombre de usuario en el recuadro y te enviaremos un email con un " -"enlace para ingresar una nueva contraseña." +"Ingrese tu nombre de usuario en el recuadro y te enviaremos un email con " +"un enlace para ingresar una nueva contraseña." #: ckan/templates/user/snippets/followee_dropdown.html:15 #: ckan/templates/user/snippets/followee_dropdown.html:16 @@ -4899,3 +4902,4 @@ msgstr "Buscar Usuarios" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "La contraseña debe tener 8 caracteres o más." + diff --git a/ckan/i18n/fa_IR/LC_MESSAGES/ckan.po b/ckan/i18n/fa_IR/LC_MESSAGES/ckan.po index 478b61b1264..68b8143f4db 100644 --- a/ckan/i18n/fa_IR/LC_MESSAGES/ckan.po +++ b/ckan/i18n/fa_IR/LC_MESSAGES/ckan.po @@ -1,23 +1,26 @@ -# Translations template for ckan. +# Persian (Iran) translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Adrià Mercader , 2018\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/okfn/teams/11162/fa_IR/)\n" +"Language: fa_IR\n" +"Language-Team: Persian (Iran) " +"(https://www.transifex.com/okfn/teams/11162/fa_IR/)\n" +"Plural-Forms: nplurals=2; plural=(n > 1)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,14 +131,14 @@ msgstr "" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 @@ -161,7 +164,8 @@ msgstr "" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -172,8 +176,8 @@ msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 @@ -311,7 +315,8 @@ msgstr "" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 @@ -1809,8 +1814,8 @@ msgstr "" #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "" #: ckan/logic/validators.py:363 @@ -2592,8 +2597,8 @@ msgstr "" #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "" #: ckan/public-bs2/base/javascript/modules/resource-view-filters.js:9 @@ -2869,21 +2874,22 @@ msgstr "" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

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

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

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

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

Intro " +"

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

" +"

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

" +"

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

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

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

" "

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

" -"

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

" +"

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

" msgstr "" #: ckan/templates/admin/confirm_reset.html:3 @@ -2899,8 +2905,9 @@ msgstr "" #, python-format msgid "" "

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

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

" +"Proceed with care!

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

" msgstr "" #: ckan/templates/admin/trash.html:20 @@ -3060,9 +3067,8 @@ msgstr "" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "" @@ -3094,8 +3100,7 @@ msgstr "" msgid "There are currently no groups for this site" msgstr "" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "" @@ -3144,22 +3149,19 @@ msgstr "" msgid "If you wish to invite a new user, enter their email address." msgstr "" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3180,8 +3182,8 @@ msgstr "" #: ckan/templates/group/member_new.html:80 msgid "" -"

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

Member: Can add/remove " +"

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

Member: Can add/remove " "datasets from groups

" msgstr "" @@ -3253,10 +3255,10 @@ msgstr "" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" #: ckan/templates/group/snippets/history_revisions.html:10 @@ -3320,13 +3322,14 @@ msgid "" "

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

" "

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

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3343,8 +3346,8 @@ msgstr "" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" #: ckan/templates/home/snippets/promoted.html:19 @@ -3390,8 +3393,8 @@ msgstr "" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" @@ -3458,8 +3461,8 @@ msgstr "" #: ckan/templates/package/read.html:11 #: ckan/templates/package/snippets/package_basic_fields.html:98 #: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 msgid "Private" msgstr "" @@ -3514,8 +3517,8 @@ msgid "" "

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

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

" -"

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

" +"

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

" msgstr "" #: ckan/templates/organization/members.html:14 @@ -3550,19 +3553,19 @@ msgstr "" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

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

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

" +"

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

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

" msgstr "" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" #: ckan/templates/organization/snippets/organization_form.html:10 @@ -3579,8 +3582,9 @@ msgstr "" #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3603,9 +3607,9 @@ msgstr "" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" #: ckan/templates/package/confirm_delete.html:12 @@ -3686,9 +3690,9 @@ msgstr "" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" #: ckan/templates/package/new_view.html:29 @@ -3699,8 +3703,9 @@ msgstr "" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" #: ckan/templates/package/resource_edit_base.html:17 @@ -3770,9 +3775,9 @@ msgstr "" #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" #: ckan/templates/package/resource_read.html:162 @@ -3840,8 +3845,8 @@ msgstr "" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

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

" +"

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

" msgstr "" #: ckan/templates/package/search.html:52 @@ -3981,11 +3986,12 @@ msgstr "" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" #: ckan/templates/package/snippets/package_form.html:39 @@ -4305,8 +4311,8 @@ msgstr "" #: ckan/templates/snippets/search_form.html:87 msgid "" -"

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

" +"

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

" msgstr "" #: ckan/templates/snippets/search_result_text.html:15 @@ -4453,7 +4459,8 @@ msgstr "" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" #: ckan/templates/user/edit_user_form.html:7 @@ -4681,8 +4688,8 @@ msgstr "" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" #: ckan/templates/user/snippets/followee_dropdown.html:15 @@ -4709,3 +4716,4 @@ msgstr "" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/fi/LC_MESSAGES/ckan.po b/ckan/i18n/fi/LC_MESSAGES/ckan.po index 6a93bd352d3..408490df17a 100644 --- a/ckan/i18n/fi/LC_MESSAGES/ckan.po +++ b/ckan/i18n/fi/LC_MESSAGES/ckan.po @@ -1,23 +1,25 @@ -# Translations template for ckan. +# Finnish translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Adrià Mercader , 2018\n" +"Language: fi\n" "Language-Team: Finnish (https://www.transifex.com/okfn/teams/11162/fi/)\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,17 +130,17 @@ msgstr "DataStore-resurssia ei löytynyt" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" -"Tieto oli virheellistä (esimerkiksi: numeerinen arvo on rajojen ulkopuolella" -" ta oli lisätty tekstitietoon)." +"Tieto oli virheellistä (esimerkiksi: numeerinen arvo on rajojen " +"ulkopuolella ta oli lisätty tekstitietoon)." #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 #: ckanext/datastore/logic/action.py:344 ckanext/datastore/logic/action.py:457 @@ -163,7 +165,8 @@ msgstr "Sisällöt on saatavilla myös kyselyrajapinna (API) kautta" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -174,10 +177,9 @@ msgstr "Päätepisteet" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "" -"Data API:a voidaan käyttää seuraavilla CKAN action API:n toiminnoilla." +"The Data API can be accessed via the following actions of the CKAN action" +" API." +msgstr "Data API:a voidaan käyttää seuraavilla CKAN action API:n toiminnoilla." #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 #: ckanext/datastore/templates/ajax_snippets/api_info.html:44 @@ -314,7 +316,8 @@ msgstr "Data API" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" "Lisätietoa löydät Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

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

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

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

Intro " +"

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

" +"

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

" +"

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

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

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

" "

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

" -"

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

" +"

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

" msgstr "" "

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

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

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

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

" -"

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

" -"

Muokattu CSS: Tämä on CSS tyylimuotoilu, joka näkyy " +"tyylilistalta päävärityksen yksinkertaisia muunnelmia.

" +"

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

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

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

" +"

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

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

" +"target=\"_blank\">dokumentaation.

" +"

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

" #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 @@ -2945,13 +2945,15 @@ msgstr "Hallinnoi CKAN:ia" #, python-format msgid "" "

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

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

" +"Proceed with care!

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

" msgstr "" -"

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

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

" +"

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

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

" #: ckan/templates/admin/trash.html:20 msgid "Purge" @@ -3112,9 +3114,8 @@ msgstr "Haluatko varmasti poistaa jäsenen - {name}?" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "Hallinnoi" @@ -3146,8 +3147,7 @@ msgstr "Etsi ryhmiä..." msgid "There are currently no groups for this site" msgstr "Sivulla ei ole tällä hetkellä ryhmiä." -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "Mitäs jos tekisit yhden?" @@ -3179,8 +3179,7 @@ msgstr "Olemassa oleva käyttäjä" #: ckan/templates/group/member_new.html:21 #: ckan/templates/organization/member_new.html:22 msgid "If you wish to add an existing user, search for their username below." -msgstr "" -"Jos haluat lisätä olemassa olevan käyttäjän, etsi häntä käyttäjänimellä." +msgstr "Jos haluat lisätä olemassa olevan käyttäjän, etsi häntä käyttäjänimellä." #: ckan/templates/group/member_new.html:38 #: ckan/templates/organization/member_new.html:39 @@ -3199,22 +3198,19 @@ msgstr "" "Jos haluat kutsua uuden käyttäjän, niin kirjoita kutsuttavan " "sähköpostiosoite alle." -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "Rooli" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "Haluatko varmasti poistaa tämän jäsenen?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3235,13 +3231,13 @@ msgstr "Mitä roolit ovat?" #: ckan/templates/group/member_new.html:80 msgid "" -"

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

Member: Can add/remove " +"

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

Member: Can add/remove " "datasets from groups

" msgstr "" -"

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

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

" +"

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

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

" #: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 #: ckan/templates/group/new.html:7 @@ -3311,14 +3307,14 @@ msgstr "Mitä ryhmät ovat?" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" -"Voit luoda ja hallinnoida tietoaineistokokonaisuuksia käyttämällä CKAN:in " -"ryhmiä. Voit koota yhteen ryhmään tietoaineistoja esimerkiksi projektin, " -"käyttäjäryhmän tai teeman mukaisesti ja siten helpottaa aineistojen " +"Voit luoda ja hallinnoida tietoaineistokokonaisuuksia käyttämällä CKAN:in" +" ryhmiä. Voit koota yhteen ryhmään tietoaineistoja esimerkiksi projektin," +" käyttäjäryhmän tai teeman mukaisesti ja siten helpottaa aineistojen " "löytymistä." #: ckan/templates/group/snippets/history_revisions.html:10 @@ -3382,13 +3378,14 @@ msgid "" "

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

" "

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

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3398,21 +3395,22 @@ msgid "" "overview: http://ckan.org/features/

" msgstr "" -"

CKAN on maailman johtava avoimen lähdekoodin dataportaaliratkaisu.

" -"

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

" +"

CKAN on maailman johtava avoimen lähdekoodin " +"dataportaaliratkaisu.

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

" "

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

CKAN: data.gov.uk, Euroopan " +"unionin publicdata.eu, Brasilian dados.gov.br, Saksan ja Alankomaiden " +"portaalit sekä kaupunkien ja kuntien palveluja Yhdysvalloissa, " +"Britanniassa, Argentinassa ja muualla.

CKAN: http://ckan.org/
CKAN Tour: http://ckan.org/tour/
Features " "overview: Markdown formatting here" msgstr "" -"Voit käyttää tässä Markdown-muotoiluja" +"Voit käyttää tässä Markdown-muotoiluja" #: ckan/templates/macros/form.html:277 msgid "This field is required" @@ -3542,8 +3540,8 @@ msgstr "Luonnos" #: ckan/templates/package/read.html:11 #: ckan/templates/package/snippets/package_basic_fields.html:98 #: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 msgid "Private" msgstr "Yksityinen" @@ -3598,13 +3596,13 @@ msgid "" "

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

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

" -"

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

" +"

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

" msgstr "" "

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

" -"

Muokkaaja: Voi lisätä ja muokata tietoaineistoja.

" -"

Jäsen: Voi katsella oman organisaationsa yksityisiä " +"

Muokkaaja: Voi lisätä ja muokata tietoaineistoja.

" +"

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

" #: ckan/templates/organization/members.html:14 @@ -3639,30 +3637,31 @@ msgstr "Mitä organisaatiot ovat?" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

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

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

" +"

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

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

" msgstr "" "

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

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

" +"yksittäisten käyttäjien sijaan ko. organisaatiolle.

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

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" "CKAN:in organisaatioita käytetään tietoaineistojen ja " "aineistokokonaisuuksien luomiseen, hallinnointiin ja julkaisemiseen. " "Käyttäjillä voi olla organisaatioissa eri rooleja ja eri tasoisia " -"käyttöoikeuksia tietoaineistojen luomiseen, muokkaamiseen ja julkaisemiseen." +"käyttöoikeuksia tietoaineistojen luomiseen, muokkaamiseen ja " +"julkaisemiseen." #: ckan/templates/organization/snippets/organization_form.html:10 msgid "My Organization" @@ -3678,8 +3677,9 @@ msgstr "Hieman lisätietoa organisaatiostani..." #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3702,13 +3702,13 @@ msgstr "Mitä tietoaineistot ovat?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" -"Tietoaineisto tarkoittaa CKAN:issa kokoelmaa resursseja (esim. tiedostoja) " -"sekä niihin liittyvää kuvausta ja muuta metatietoa, kuten pysyvää URL-" -"osoitetta." +"Tietoaineisto tarkoittaa CKAN:issa kokoelmaa resursseja (esim. " +"tiedostoja) sekä niihin liittyvää kuvausta ja muuta metatietoa, kuten " +"pysyvää URL-osoitetta." #: ckan/templates/package/confirm_delete.html:12 msgid "Are you sure you want to delete dataset - {name}?" @@ -3788,15 +3788,15 @@ msgstr "Lisää näyttö" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" -"Data Explorer -näkymät voivat olla hitaita ja epäluotettavia, jos DataStore-" -"laajennus ei ole käytössä. Lisätietojen saamiseksi katso Data Explorer " -"-dokumentaatio. " +"Data Explorer -näkymät voivat olla hitaita ja epäluotettavia, jos " +"DataStore-laajennus ei ole käytössä. Lisätietojen saamiseksi katso Data Explorer" +" -dokumentaatio. " #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:83 @@ -3806,11 +3806,12 @@ msgstr "Lisää" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" -"Tämä on tietoaineiston vanha revisio, jota on muokattu %(timestamp)s. Se voi" -" poiketa merkittävästi nykyisestä revisiosta." +"Tämä on tietoaineiston vanha revisio, jota on muokattu %(timestamp)s. Se " +"voi poiketa merkittävästi nykyisestä revisiosta." #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" @@ -3876,18 +3877,18 @@ msgstr "Tälle resurssille ei ole luotu yhtään sopivaa näkymää" #: ckan/templates/package/resource_read.html:139 msgid "The site administrators may not have enabled the relevant view plugins" msgstr "" -"Voi olla, ettei järjestelmänhoitaja ole ottanut käyttöön asiaan liittyviä " -"liitännäisiä" +"Voi olla, ettei järjestelmänhoitaja ole ottanut käyttöön asiaan liittyviä" +" liitännäisiä" #: ckan/templates/package/resource_read.html:140 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" +"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" +"otettu käyttöön, tai ettei tietoja ole tallennettu DataStoreen, tai ettei" +" DataStore ole vielä saanut prosessointia valmiiksi" #: ckan/templates/package/resource_read.html:162 msgid "Additional Information" @@ -3954,8 +3955,8 @@ msgstr "Lisää uusi resurssi" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

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

" +"

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

" msgstr "" "

Tässä tietoaineistossa ei ole dataa, mikset lisäisi sitä? " @@ -4035,8 +4036,7 @@ msgstr "Viimeksi päivitetty" #: ckan/templates/package/snippets/cannot_create_package.html:10 msgid "Before you can create a dataset you need to create an organization." -msgstr "" -"Ennen kuin voit luoda tietoaineiston, sinun täytyy luoda organisaatio." +msgstr "Ennen kuin voit luoda tietoaineiston, sinun täytyy luoda organisaatio." #: ckan/templates/package/snippets/cannot_create_package.html:13 msgid "Create a new organization" @@ -4051,7 +4051,8 @@ msgid "" "Ask a system administrator to create an organization before you can " "continue." msgstr "" -"Pyydä järjestelmän ylläpitäjää luomaan organisaatio ennen kuin voit jatkaa." +"Pyydä järjestelmän ylläpitäjää luomaan organisaatio ennen kuin voit " +"jatkaa." #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 @@ -4105,15 +4106,16 @@ msgstr "Aktiivinen" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" -"Lisenssi, jonka valitset yllä olevasta valikosta, koskee ainoastaan " -"tähän tietoaineistoon liittämiäsi tiedostoja. Lähettämällä tämän lomakkeen " -"suostut julkaisemaan täyttämäsi metatiedot Lisenssi, jonka valitset yllä olevasta valikosta, koskee " +"ainoastaan tähän tietoaineistoon liittämiäsi tiedostoja. Lähettämällä " +"tämän lomakkeen suostut julkaisemaan täyttämäsi metatiedot Open Database " "Lisenssin mukaisesti." @@ -4438,8 +4440,8 @@ msgstr "

Kokeile toisenlaisia hakutermejä.

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

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

" +"

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

" msgstr "" "

Haussa tapahtui virhe. Yritä " "uudelleen.

" @@ -4588,9 +4590,9 @@ msgstr "Käyttäjätilin tiedot" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " -msgstr "" -"Profiilin avulla muut CKAN:in käyttäjät tietävät kuka olet ja mitä teet. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " +msgstr "Profiilin avulla muut CKAN:in käyttäjät tietävät kuka olet ja mitä teet. " #: ckan/templates/user/edit_user_form.html:7 msgid "Change details" @@ -4819,11 +4821,11 @@ msgstr "Pyydä uudelleenasettamista" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" -"Syötä käyttäjänimesi laatikkoon, niin lähetämme sinulle sähköpostin, jossa " -"on linkki uuden salasanan syöttämislomakkeeseen." +"Syötä käyttäjänimesi laatikkoon, niin lähetämme sinulle sähköpostin, " +"jossa on linkki uuden salasanan syöttämislomakkeeseen." #: ckan/templates/user/snippets/followee_dropdown.html:15 #: ckan/templates/user/snippets/followee_dropdown.html:16 @@ -4849,3 +4851,4 @@ msgstr "Etsi käyttäjiä" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/fr/LC_MESSAGES/ckan.po b/ckan/i18n/fr/LC_MESSAGES/ckan.po index 0e95ee88089..b587becd778 100644 --- a/ckan/i18n/fr/LC_MESSAGES/ckan.po +++ b/ckan/i18n/fr/LC_MESSAGES/ckan.po @@ -1,23 +1,26 @@ -# Translations template for ckan. +# French translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 +# Mayeul Kauffmann, 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Mayeul Kauffmann, 2018\n" +"Language: fr\n" "Language-Team: French (https://www.transifex.com/okfn/teams/11162/fr/)\n" +"Plural-Forms: nplurals=2; plural=(n > 1)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,17 +131,17 @@ msgstr "Ressource de magasin de données non trouvée" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" -"Les données étaient invalides (par exemple, une valeur numérique est hors de" -" portée ou a été insérée dans un champ de texte)." +"Les données étaient invalides (par exemple, une valeur numérique est hors" +" de portée ou a été insérée dans un champ de texte)." #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 #: ckanext/datastore/logic/action.py:344 ckanext/datastore/logic/action.py:457 @@ -158,14 +161,15 @@ msgstr "API de données CKAN" #: ckanext/datastore/templates/ajax_snippets/api_info.html:25 msgid "Access resource data via a web API with powerful query support" msgstr "" -"Accédez aux données de la ressource via une API web supportant des requêtes " -"puissantes " +"Accédez aux données de la ressource via une API web supportant des " +"requêtes puissantes " #: ckanext/datastore/templates/ajax_snippets/api_info.html:26 msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -176,11 +180,11 @@ msgstr "Points d'accès" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "" -"L'API pour les données peut être accéder via les actions suivantes de l'API " -"CKAN pour les actions" +"L'API pour les données peut être accéder via les actions suivantes de " +"l'API CKAN pour les actions" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 #: ckanext/datastore/templates/ajax_snippets/api_info.html:44 @@ -230,8 +234,7 @@ msgstr "Exemple : Javascript" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 #: ckanext/datastore/templates/ajax_snippets/api_info.html:97 msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "" -"Une requête ajax simple (JSONP) à l'API des données en utilisant jQuery." +msgstr "Une requête ajax simple (JSONP) à l'API des données en utilisant jQuery." #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 #: ckanext/datastore/templates/ajax_snippets/api_info.html:118 @@ -318,12 +321,13 @@ msgstr "API de données" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

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

" +"target=\"_blank\">documentation principale de l'API CKAN pour les données" +" et le magasin de données.

" #: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 msgid "Table" @@ -494,8 +498,8 @@ msgstr "URL de l'image" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -"p. ex. http://example.com/image.jpg (si elle est vide utiliser l'URL de la " -"ressource)" +"p. ex. http://example.com/image.jpg (si elle est vide utiliser l'URL de " +"la ressource)" #: ckanext/reclineview/plugin.py:101 msgid "Data Explorer" @@ -731,7 +735,8 @@ msgstr "URL de la page Web" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "eg. http://example.com (if blank uses resource url)" msgstr "" -"p. ex. http://example.com (si elle est vide utiliser l'URL de la ressource)" +"p. ex. http://example.com (si elle est vide utiliser l'URL de la " +"ressource)" #: ckan/templates/dataviewer/snippets/data_preview.html:23 #: ckan/templates/package/snippets/resource_view.html:64 @@ -816,8 +821,8 @@ msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "" -"Impossible de purger le paquet %s car la révision %s associée contient les " -"paquets %s non supprimés" +"Impossible de purger le paquet %s car la révision %s associée contient " +"les paquets %s non supprimés" #: ckan/controllers/admin.py:183 ckan/views/admin.py:197 #, python-format @@ -878,8 +883,7 @@ msgstr "La révision %s n'existe pas" #: ckan/controllers/api.py:297 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "" -"Terme de recherche manquant ('since_id=UUID' ou 'since_time=TIMESTAMP')" +msgstr "Terme de recherche manquant ('since_id=UUID' ou 'since_time=TIMESTAMP')" #: ckan/controllers/api.py:309 #, python-format @@ -1089,15 +1093,15 @@ msgstr "" #, python-format msgid "Please update your profile and add your email address. " msgstr "" -"Merci de mettre à jour votre profil et d'ajouter votre " -"adresse e-mail. " +"Merci de mettre à jour votre profil et d'ajouter votre" +" adresse e-mail. " #: ckan/controllers/home.py:75 ckan/views/home.py:60 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "" -"%s utilise votre adresse e-mail si vous avez besoin de réinitialiser votre " -"mot de passe." +"%s utilise votre adresse e-mail si vous avez besoin de réinitialiser " +"votre mot de passe." #: ckan/controllers/package.py:304 msgid "Invalid search query: {error_message}" @@ -1128,8 +1132,8 @@ msgstr "Le format de révision %r est invalide" #: ckan/controllers/package.py:415 msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." msgstr "" -"La visualisation des ensemble de données de type \"{package_type}\" n'est " -"pas supportée ({file_!r})." +"La visualisation des ensemble de données de type \"{package_type}\" n'est" +" pas supportée ({file_!r})." #: ckan/controllers/package.py:454 ckan/controllers/package.py:839 #: ckan/controllers/package.py:940 ckan/controllers/package.py:988 @@ -1357,8 +1361,7 @@ msgstr "Authentification échouée. Mauvais login ou mot de passe." #: ckan/controllers/user.py:460 ckan/views/user.py:504 msgid "Unauthorized to request reset password." -msgstr "" -"Vous n'êtes pas autorisé à demander une réinitialisation de mot de passe." +msgstr "Vous n'êtes pas autorisé à demander une réinitialisation de mot de passe." #: ckan/controllers/user.py:489 ckan/views/user.py:530 #, python-format @@ -1448,8 +1451,7 @@ msgstr "{actor} a modifié l'extra {extra} du jeu de données {dataset}" #: ckan/lib/activity_streams.py:75 msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "" -"{actor} a mis à jour la ressource {resource} du jeu de données {dataset}" +msgstr "{actor} a mis à jour la ressource {resource} du jeu de données {dataset}" #: ckan/lib/activity_streams.py:78 msgid "{actor} updated their profile" @@ -1473,8 +1475,7 @@ msgstr "{actor} a supprimé l'extra {extra} du jeu de données {dataset}" #: ckan/lib/activity_streams.py:93 msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "" -"{actor} a supprimé la ressource {resource} du jeu de données {dataset}" +msgstr "{actor} a supprimé la ressource {resource} du jeu de données {dataset}" #: ckan/lib/activity_streams.py:97 msgid "{actor} created the group {group}" @@ -1494,8 +1495,7 @@ msgstr "{actor} a ajouté l'extra {extra} au jeu de données {dataset}" #: ckan/lib/activity_streams.py:109 msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "" -"{actor} a ajouté la ressource {resource} au jeu de données {dataset}" +msgstr "{actor} a ajouté la ressource {resource} au jeu de données {dataset}" #: ckan/lib/activity_streams.py:112 msgid "{actor} signed up" @@ -1842,8 +1842,8 @@ msgstr "Le nom doit être d'une longueur inférieur à %i caractères" #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "" "Doit contenir uniquement des caractères alphanumériques en minuscules " "(ascii) et ces symboles : -_" @@ -1890,8 +1890,8 @@ msgstr "La longueur du mot-clé \"%s\" est supérieure à la longueur maximale % #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "" -"Le mot-clé \"%s\" ne peut contenir que des lettres minuscules, des chiffres " -"ou les symboles : -_." +"Le mot-clé \"%s\" ne peut contenir que des lettres minuscules, des " +"chiffres ou les symboles : -_." #: ckan/logic/validators.py:438 #, python-format @@ -1979,8 +1979,8 @@ msgstr "Ce rôle n'existe pas" #: ckan/logic/validators.py:749 msgid "Datasets with no organization can't be private." msgstr "" -"Les jeux de données n'appartenant pas à une organisation ne peuvent pas être" -" privés." +"Les jeux de données n'appartenant pas à une organisation ne peuvent pas " +"être privés." #: ckan/logic/validators.py:755 msgid "Not a list" @@ -2139,8 +2139,7 @@ msgstr "Ressource introuvable." #: ckan/logic/action/get.py:2037 msgid "Do not specify if using \"query\" parameter" -msgstr "" -"Ne sélectionnez pas cette option si vous utilisez le paramètre \"requête\"" +msgstr "Ne sélectionnez pas cette option si vous utilisez le paramètre \"requête\"" #: ckan/logic/action/get.py:2046 msgid "Must be : pair(s)" @@ -2200,14 +2199,15 @@ msgstr "" #: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 msgid "No package found for this resource, cannot check auth." msgstr "" -"Pas de jeu de données trouvé pour cette ressource, impossible de vérifier " -"l'authentification." +"Pas de jeu de données trouvé pour cette ressource, impossible de vérifier" +" l'authentification." #: ckan/logic/auth/create.py:76 #, python-format msgid "User %s not authorized to create resources on dataset %s" msgstr "" -"Utilisateur %s non autorisé à créer des ressources sur le jeu de données %s" +"Utilisateur %s non autorisé à créer des ressources sur le jeu de données " +"%s" #: ckan/logic/auth/create.py:108 #, python-format @@ -2226,8 +2226,7 @@ msgstr "L'utilisateur %s n'est pas autorisé à créé des organisations" #: ckan/logic/auth/create.py:145 msgid "User {user} not authorized to create users via the API" -msgstr "" -"L'utilisateur {user} n'est pas autorisé à créer des utilisateurs via l'API" +msgstr "L'utilisateur {user} n'est pas autorisé à créer des utilisateurs via l'API" #: ckan/logic/auth/create.py:148 msgid "Not authorized to create users" @@ -2329,8 +2328,7 @@ msgstr "L'utilisateur %s n'est pas autorisé à modifier la ressource %s" #: ckan/logic/auth/update.py:100 #, python-format msgid "User %s not authorized to change state of package %s" -msgstr "" -"L'utilisateur %s n'est pas autorisé à modifier l'état du jeu de données %s" +msgstr "L'utilisateur %s n'est pas autorisé à modifier l'état du jeu de données %s" #: ckan/logic/auth/update.py:128 #, python-format @@ -2346,7 +2344,8 @@ msgstr "L'utilisateur %s n'est pas autorisé à modifier l'état du groupe %s" #, python-format msgid "User %s not authorized to edit permissions of group %s" msgstr "" -"L'utilisateur %s n'est pas autorisé à modifier les permissions du groupe %s" +"L'utilisateur %s n'est pas autorisé à modifier les permissions du groupe " +"%s" #: ckan/logic/auth/update.py:190 msgid "Have to be logged in to edit user" @@ -2369,8 +2368,7 @@ msgstr "L'utilisateur %s n'est pas autorisé à modifier l'état de révision" #: ckan/logic/auth/update.py:226 #, python-format msgid "User %s not authorized to update task_status table" -msgstr "" -"L'utilisateur %s n'est pas autorisé à mettre à jour la table task_status" +msgstr "L'utilisateur %s n'est pas autorisé à mettre à jour la table task_status" #: ckan/logic/auth/update.py:240 #, python-format @@ -2571,8 +2569,8 @@ msgstr "Lien" #: ckan/public/base/javascript/modules/image-upload.js:61 msgid "Link to a URL on the internet (you can also link to an API)" msgstr "" -"Lien vers une URL sur internet (vous pouvez aussi donner un lien vers une " -"API)" +"Lien vers une URL sur internet (vous pouvez aussi donner un lien vers une" +" API)" #: ckan/public-bs2/base/javascript/modules/image-upload.js:68 #: ckan/public/base/javascript/modules/image-upload.js:68 @@ -2659,8 +2657,8 @@ msgstr "Impossible d'accéder aux données du fichier déposé" #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "" "Vous êtes en train de transférer un fichier. Êtes-vous sûr de vouloir " "naviguer ailleurs et interrompre ce transfert ?" @@ -2940,39 +2938,41 @@ msgstr "CKAN options de configuration" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

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

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

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

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

Intro " +"

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

" +"

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

" +"

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

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

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

" "

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

" -"

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

" +"

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

" msgstr "" "

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

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

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

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

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

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

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

" +"variations de la principale palette de couleurs afin de mettre en place" +" très rapidement un thème personnalisé.

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

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

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

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

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

" #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 @@ -2987,12 +2987,13 @@ msgstr "Administrer CKAN" #, python-format msgid "" "

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

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

" +"Proceed with care!

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

" msgstr "" -"

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

Pour des conseils sur l'utilisation des " -"fonctionnalités d'administration, voir le Comme administrateur vous avez le plein contrôle de cette instance " +"CKAN. Procédez avec prudence!

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

" #: ckan/templates/admin/trash.html:20 @@ -3152,9 +3153,8 @@ msgstr "Êtes-vous sûr de vouloir supprimer le membre - {name}?" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "Éditer" @@ -3186,8 +3186,7 @@ msgstr "Rechercher les groupes..." msgid "There are currently no groups for this site" msgstr "Il n'y a actuellement aucun groupe pour ce site" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "Et si vous en créiez un ?" @@ -3236,25 +3235,21 @@ msgstr "Nouvel Utilisateur" #: ckan/templates/group/member_new.html:45 #: ckan/templates/organization/member_new.html:46 msgid "If you wish to invite a new user, enter their email address." -msgstr "" -"Si vous désirez inviter un nouvel utilisateur, entrez son adresse email." +msgstr "Si vous désirez inviter un nouvel utilisateur, entrez son adresse email." -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr " Rôle" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "Etes-vous sûr de vouloir supprimer ce membre?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3275,13 +3270,14 @@ msgstr "Que sont les rôles ?" #: ckan/templates/group/member_new.html:80 msgid "" -"

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

Member: Can add/remove " +"

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

Member: Can add/remove " "datasets from groups

" msgstr "" -"

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

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

" +"

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

" +"

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

" #: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 #: ckan/templates/group/new.html:7 @@ -3351,16 +3347,16 @@ msgstr "Que sont les groupes ?" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" -"Vous pouvez utiliser les groupes CKAN pour créer et gérer des collections de" -" jeux de données. Cela peut être pour cataloguer des jeux de données pour un" -" projet ou une équipe en particulier, ou autour d'un thème spécifique, ou " -"comme moyen très simple d'aider à parcourir et découvrir vos jeux de données" -" publiés." +"Vous pouvez utiliser les groupes CKAN pour créer et gérer des collections" +" de jeux de données. Cela peut être pour cataloguer des jeux de données " +"pour un projet ou une équipe en particulier, ou autour d'un thème " +"spécifique, ou comme moyen très simple d'aider à parcourir et découvrir " +"vos jeux de données publiés." #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 @@ -3423,13 +3419,14 @@ msgid "" "

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

" "

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

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3440,25 +3437,26 @@ msgid "" "href=\"http://ckan.org/features/\">http://ckan.org/features/

" msgstr "" "CKAN est la plateforme portail leader mondial en termes de données " -"accessibles en code source ouvert.

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

CKAN est utilisé" -" par des gouvernements et des groupes d’utilisateurs dans le monde entier " -"et permet le fonctionnement d’une variété de portails officiels et " -"communautaires , notamment des portails pour des gouvernements locaux, " -"nationaux et internationaux, comme

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

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

CKAN: http://ckan.org/
" -"Visitez CKAN: http://ckan.org/tour/ Présentation des Fonctionnalités: dados.gov.br au Brésil," +" des portails gouvernementaux hollandais et aux Pays Bas, ainsi que " +"des sites municipaux aux Etats Unis, Royaume Uni, Argentine, et " +"Finlande entre autres.

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

" #: ckan/templates/home/snippets/promoted.html:8 @@ -3467,12 +3465,12 @@ msgstr "Bienvenue sur CKAN" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" "Ceci est un paragraphe d'introduction à propos de CKAN ou du site en " -"général. Nous n'avons pas encore de rédactionnel à mettre ici, mais nous en " -"aurons bientôt" +"général. Nous n'avons pas encore de rédactionnel à mettre ici, mais nous " +"en aurons bientôt" #: ckan/templates/home/snippets/promoted.html:19 msgid "This is a featured section" @@ -3517,13 +3515,13 @@ msgstr "groupes" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" "Vous pouvez utiliser le langage Markdown ici" +"reference\" data-target=\"popover\" data-content=\"%(markdown_tooltip)s\"" +" data-html=\"true\">le langage Markdown ici" #: ckan/templates/macros/form.html:277 msgid "This field is required" @@ -3588,8 +3586,8 @@ msgstr "Brouillon" #: ckan/templates/package/read.html:11 #: ckan/templates/package/snippets/package_basic_fields.html:98 #: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 msgid "Private" msgstr "Privée" @@ -3644,15 +3642,15 @@ msgid "" "

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

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

" -"

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

" +"

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

" msgstr "" -"

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

" -"

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

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

" +"

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

" +"

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

" +"

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

" #: ckan/templates/organization/members.html:14 msgid "{count} member" @@ -3686,32 +3684,33 @@ msgstr "Que sont les organisations ?" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

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

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

" +"

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

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

" msgstr "" "

Les organisations agissent comme des responsables de l'édition " "d'ensembles de données (par exemple, le ministère de la Santé). Cela " -"signifie que les ensembles de données appartiennent et peuvent être publiées" -" par une organisation à la place d'un utilisateur individuel.

Au sein" -" des organisations, les administrateurs peuvent attribuer des rôles et " -"autoriser leurs membres, donnant ainsi aux utilisateurs individuels le droit" -" de publier des ensembles de données de cette organisation en particulier " -"(par exemple, Office des statistiques nationales).

" +"signifie que les ensembles de données appartiennent et peuvent être " +"publiées par une organisation à la place d'un utilisateur individuel.

" +"

Au sein des organisations, les administrateurs peuvent attribuer des " +"rôles et autoriser leurs membres, donnant ainsi aux utilisateurs " +"individuels le droit de publier des ensembles de données de cette " +"organisation en particulier (par exemple, Office des statistiques " +"nationales).

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" "Les Organisations CKAN sont utilisées pour créer, gérer et publier des " -"collections de jeux de données. Les utilisateurs peuvent avoir différents " -"rôles au sein d'une Organisation, en fonction de leur niveau d'autorisation " -"pour créer, éditer et publier." +"collections de jeux de données. Les utilisateurs peuvent avoir différents" +" rôles au sein d'une Organisation, en fonction de leur niveau " +"d'autorisation pour créer, éditer et publier." #: ckan/templates/organization/snippets/organization_form.html:10 msgid "My Organization" @@ -3727,8 +3726,9 @@ msgstr "Un peu d'information au sujet de mon organisation..." #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3751,14 +3751,14 @@ msgstr "Que sont les jeux de données ?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" "Un jeu de données CKAN est une collection de ressources (telles que des " -"fichiers), ainsi qu'une description et d'autres information, avec une URL " -"fixe. Les jeux de données sont ce que l'utilisateur voit lorsqu'il effectue " -"une recherche de données." +"fichiers), ainsi qu'une description et d'autres information, avec une URL" +" fixe. Les jeux de données sont ce que l'utilisateur voit lorsqu'il " +"effectue une recherche de données." #: ckan/templates/package/confirm_delete.html:12 msgid "Are you sure you want to delete dataset - {name}?" @@ -3838,16 +3838,16 @@ msgstr "Ajouter une vue" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" -"Les vues de l'Explorateur de données peuvent être lentes et peu fiables à " -"moins que l'extension du magasin de données soit activée. Pour plus " +"Les vues de l'Explorateur de données peuvent être lentes et peu fiables à" +" moins que l'extension du magasin de données soit activée. Pour plus " "d'informations, s'il vous plaît voir la documentation de l'Explorateur de " -"données. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Explorateur " +"de données. " #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:83 @@ -3857,8 +3857,9 @@ msgstr "Ajouter" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" "Ceci est une ancienne révision de ce jeu de données, telle qu'éditée à " "%(timestamp)s. Elle peut différer significativement de la This dataset has no data, why not " -"add some?

" +"

This dataset has no data, why not" +" add some?

" msgstr "" "

Ce jeu de données n'a pas de données, pourquoi ne pas en ajouter?

" @@ -4042,8 +4043,8 @@ msgid "" " You can also access this registry using the %(api_link)s (see " "%(api_doc_link)s). " msgstr "" -"Vous pouvez également accéder à ce catalogue en utilisant %(api_link)s (cf " -"%(api_doc_link)s). " +"Vous pouvez également accéder à ce catalogue en utilisant %(api_link)s " +"(cf %(api_doc_link)s). " #: ckan/templates/package/view_edit_base.html:9 msgid "All views" @@ -4091,7 +4092,8 @@ msgstr "Dernière modification" #: ckan/templates/package/snippets/cannot_create_package.html:10 msgid "Before you can create a dataset you need to create an organization." msgstr "" -"Vous devez créer une organisation avant de pouvoir créer un jeu de données." +"Vous devez créer une organisation avant de pouvoir créer un jeu de " +"données." #: ckan/templates/package/snippets/cannot_create_package.html:13 msgid "Create a new organization" @@ -4100,16 +4102,16 @@ msgstr "Créez un nouvelle organisation" #: ckan/templates/package/snippets/cannot_create_package.html:18 msgid "There are no organizations to which you can assign this dataset." msgstr "" -"Il n'existe pas actuellement d'organisation à laquelle assigner ce jeu de " -"données." +"Il n'existe pas actuellement d'organisation à laquelle assigner ce jeu de" +" données." #: ckan/templates/package/snippets/cannot_create_package.html:19 msgid "" "Ask a system administrator to create an organization before you can " "continue." msgstr "" -"Demandez à un administrateur de l'application de vous créer une organisation" -" avant de poursuivre." +"Demandez à un administrateur de l'application de vous créer une " +"organisation avant de poursuivre." #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 @@ -4137,8 +4139,8 @@ msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "" -"Les définitions de la licence et des informations complémentaires peuvent " -"être trouvées chez opendefinition.org" #: ckan/templates/package/snippets/package_basic_fields.html:76 @@ -4164,19 +4166,20 @@ msgstr "Actif" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" -"La licence des données que vous sélectionnez ci-dessus ne vaut que " -"pour le contenu de tous les fichiers de ressources que vous ajoutez à cet " -"ensemble de données. En soumettant ce formulaire, vous vous engagez à " -"libérer les valeurs des métadonnées que vous entrez dans le " +"La licence des données que vous sélectionnez ci-dessus ne vaut " +"que pour le contenu de tous les fichiers de ressources que vous ajoutez à" +" cet ensemble de données. En soumettant ce formulaire, vous vous engagez " +"à libérer les valeurs des métadonnées que vous entrez dans le " "formulaire en vertu de la Licence de base de " -"données ouvertes." +"href=\"http://opendatacommons.org/licenses/odbl/1-0/\">Licence de base de" +" données ouvertes." #: ckan/templates/package/snippets/package_form.html:39 msgid "Are you sure you want to delete this dataset?" @@ -4241,7 +4244,8 @@ msgstr "par exemple : CSV, XML ou JSON" #: ckan/templates/package/snippets/resource_form.html:42 msgid "This will be guessed automatically. Leave blank if you wish" msgstr "" -"Ceci sera généré automatiquement. Laissez ce champ vide si vous le souhaitez" +"Ceci sera généré automatiquement. Laissez ce champ vide si vous le " +"souhaitez" #: ckan/templates/package/snippets/resource_form.html:53 msgid "eg. 2012-06-05" @@ -4288,8 +4292,8 @@ msgstr "Qu'est-ce qu'une ressource ?" #: ckan/templates/package/snippets/resource_help.html:4 msgid "A resource can be any file or link to a file containing useful data." msgstr "" -"Une ressource peut-être un fichier ou un lien vers un fichier contenant des " -"données utiles." +"Une ressource peut-être un fichier ou un lien vers un fichier contenant " +"des données utiles." #: ckan/templates/package/snippets/resource_item.html:23 msgid "Explore" @@ -4320,8 +4324,8 @@ msgid "" "You can copy and paste the embed code into a CMS or blog software that " "supports raw HTML" msgstr "" -"Vous pouvez copier et coller le code intégré dans un système de gestion de " -"contenu ou un logiciel de blogue qui prend en charge le HTML brut" +"Vous pouvez copier et coller le code intégré dans un système de gestion " +"de contenu ou un logiciel de blogue qui prend en charge le HTML brut" #: ckan/templates/package/snippets/resource_view.html:80 msgid "Width" @@ -4500,8 +4504,8 @@ msgstr "

Veuillez essayer une autre recherche.

" #: ckan/templates/snippets/search_form.html:87 msgid "" -"

There was an error while searching." -" Please try again.

" +"

There was an error while " +"searching. Please try again.

" msgstr "" "

Une erreur est survenue pendant votre " "recherche. Merci d'essayer de la soumettre à nouveau.

" @@ -4650,10 +4654,11 @@ msgstr "Info sur le compte" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" -"Votre profil permet aux autres utilisateurs de CKAN de savoir qui vous êtes " -"et ce que vous faites" +"Votre profil permet aux autres utilisateurs de CKAN de savoir qui vous " +"êtes et ce que vous faites" #: ckan/templates/user/edit_user_form.html:7 msgid "Change details" @@ -4745,8 +4750,8 @@ msgstr "Mot de passe oublié ?" #: ckan/templates/user/login.html:44 msgid "No problem, use our password recovery form to reset it." msgstr "" -"Aucun problème, utilisez notre formulaire de regénération du mot de passe " -"pour le réinitialiser." +"Aucun problème, utilisez notre formulaire de regénération du mot de passe" +" pour le réinitialiser." #: ckan/templates/user/login.html:47 msgid "Forgot your password?" @@ -4779,8 +4784,7 @@ msgstr "Vous êtes déjà connecté " #: ckan/templates/user/logout_first.html:22 msgid "You need to log out before you can log in with another account." -msgstr "" -"Vous devez vous déconnecter avant de vous identifier avec un autre compte." +msgstr "Vous devez vous déconnecter avant de vous identifier avec un autre compte." #: ckan/templates/user/logout_first.html:23 msgid "Log out now" @@ -4800,8 +4804,7 @@ msgstr "Pourquoi s'inscrire ?" #: ckan/templates/user/new.html:28 msgid "Create datasets, groups and other exciting things" -msgstr "" -"Créer des jeux de données, des groupes et d'autres choses passionnantes" +msgstr "Créer des jeux de données, des groupes et d'autres choses passionnantes" #: ckan/templates/user/new_user_form.html:5 msgid "username" @@ -4827,8 +4830,8 @@ msgstr "Réinitialisation du mot de passe" #: ckan/templates/user/perform_reset.html:21 msgid "You can also change username. It can not be modified later." msgstr "" -"Vous pouvez aussi changer le nom d'utilisateur. Il ne peut pas être modifié " -"ultérieurement." +"Vous pouvez aussi changer le nom d'utilisateur. Il ne peut pas être " +"modifié ultérieurement." #: ckan/templates/user/perform_reset.html:29 msgid "Update Password" @@ -4842,8 +4845,8 @@ msgstr "Comment ça marche ?" #: ckan/templates/user/perform_reset.html:45 msgid "Simply enter a new password and we'll update your account" msgstr "" -"Fournissez simplement un nouveau mot de passe et nous actualiserons votre " -"compte" +"Fournissez simplement un nouveau mot de passe et nous actualiserons votre" +" compte" #: ckan/templates/user/read.html:27 msgid "User hasn't created any datasets." @@ -4888,11 +4891,11 @@ msgstr "Réinitialisation de la demande" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" -"Entrez votre identifiant utilisateur dans la boite et nous vous enverrons un" -" courriel contenant un lien pour entrer un nouveau mot de passe." +"Entrez votre identifiant utilisateur dans la boite et nous vous enverrons" +" un courriel contenant un lien pour entrer un nouveau mot de passe." #: ckan/templates/user/snippets/followee_dropdown.html:15 #: ckan/templates/user/snippets/followee_dropdown.html:16 @@ -4918,3 +4921,4 @@ msgstr "Rechercher des utilisateurs" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "Votre mot de passe doit comporter au moins 8 caractères." + diff --git a/ckan/i18n/gl/LC_MESSAGES/ckan.po b/ckan/i18n/gl/LC_MESSAGES/ckan.po index 0320e8507bd..5c23cbc6a52 100644 --- a/ckan/i18n/gl/LC_MESSAGES/ckan.po +++ b/ckan/i18n/gl/LC_MESSAGES/ckan.po @@ -1,23 +1,25 @@ -# Translations template for ckan. +# Galician translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Adrià Mercader , 2018\n" +"Language: gl\n" "Language-Team: Galician (https://www.transifex.com/okfn/teams/11162/gl/)\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,14 +130,14 @@ msgstr "Non se atopou o recurso «Almacén de datos»" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" "Os datos eran incorrectos (por exemplo: un valor numérico estaba fora do " "intervalo ou foi inserido nun campo de texto)." @@ -165,7 +167,8 @@ msgstr "" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -176,11 +179,11 @@ msgstr "Puntos de acceso" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "" -"A API de Datos é accesíbel mediante as seguintes accións da API de acción do" -" CKAN." +"A API de Datos é accesíbel mediante as seguintes accións da API de acción" +" do CKAN." #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 #: ckanext/datastore/templates/ajax_snippets/api_info.html:44 @@ -317,7 +320,8 @@ msgstr "API de datos" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" " Pode obter máis información na Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " +"

Site Title: This is the title of this CKAN instance " +"It appears in various places throughout CKAN.

" +"

Style: Choose from a list of simple variations of the" +" main colour scheme to get a very quick custom theme working.

" +"

Site Tag Logo: This is the logo that appears in the " +"header of all the CKAN instance templates.

About:" +" This text will appear on this CKAN instances about page.

Intro " "Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" "

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend <head> tag of every page. If you wish to customize the" +" templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" +"

Homepage: This is for choosing a predefined layout " +"for the modules that appear on your homepage.

" msgstr "" #: ckan/templates/admin/confirm_reset.html:3 @@ -2922,8 +2928,9 @@ msgstr "" #, python-format msgid "" "

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" +"Proceed with care!

For guidance on using sysadmin features, see " +"the CKAN sysadmin " +"guide

" msgstr "" #: ckan/templates/admin/trash.html:20 @@ -3083,9 +3090,8 @@ msgstr "" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "" @@ -3117,8 +3123,7 @@ msgstr "" msgid "There are currently no groups for this site" msgstr "" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "" @@ -3167,22 +3172,19 @@ msgstr "" msgid "If you wish to invite a new user, enter their email address." msgstr "" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3203,8 +3205,8 @@ msgstr "" #: ckan/templates/group/member_new.html:80 msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " +"

Admin: Can edit group information, as well as manage" +" organization members.

Member: Can add/remove " "datasets from groups

" msgstr "" @@ -3276,10 +3278,10 @@ msgstr "" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" #: ckan/templates/group/snippets/history_revisions.html:10 @@ -3343,13 +3345,14 @@ msgid "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3366,8 +3369,8 @@ msgstr "" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" #: ckan/templates/home/snippets/promoted.html:19 @@ -3413,8 +3416,8 @@ msgstr "" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" @@ -3481,8 +3484,8 @@ msgstr "" #: ckan/templates/package/read.html:11 #: ckan/templates/package/snippets/package_basic_fields.html:98 #: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 msgid "Private" msgstr "" @@ -3537,8 +3540,8 @@ msgid "" "

Admin: Can add/edit and delete datasets, as well as " "manage organization members.

Editor: Can add and " "edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" +"

Member: Can view the organization's private datasets," +" but not add new datasets.

" msgstr "" #: ckan/templates/organization/members.html:14 @@ -3573,19 +3576,19 @@ msgstr "" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" +"

Organizations act like publishing departments for datasets (for " +"example, the Department of Health). This means that datasets can be " +"published by and belong to a department instead of an individual " +"user.

Within organizations, admins can assign roles and authorise " +"its members, giving individual users the right to publish datasets from " +"that particular organisation (e.g. Office of National Statistics).

" msgstr "" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" #: ckan/templates/organization/snippets/organization_form.html:10 @@ -3602,8 +3605,9 @@ msgstr "" #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3626,9 +3630,9 @@ msgstr "" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" #: ckan/templates/package/confirm_delete.html:12 @@ -3709,9 +3713,9 @@ msgstr "" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" #: ckan/templates/package/new_view.html:29 @@ -3722,8 +3726,9 @@ msgstr "" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" #: ckan/templates/package/resource_edit_base.html:17 @@ -3793,9 +3798,9 @@ msgstr "" #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" #: ckan/templates/package/resource_read.html:162 @@ -3863,8 +3868,8 @@ msgstr "" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

This dataset has no data, why not " -"add some?

" +"

This dataset has no data, why not" +" add some?

" msgstr "" #: ckan/templates/package/search.html:52 @@ -4004,11 +4009,12 @@ msgstr "" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" #: ckan/templates/package/snippets/package_form.html:39 @@ -4328,8 +4334,8 @@ msgstr "" #: ckan/templates/snippets/search_form.html:87 msgid "" -"

There was an error while searching." -" Please try again.

" +"

There was an error while " +"searching. Please try again.

" msgstr "" #: ckan/templates/snippets/search_result_text.html:15 @@ -4476,7 +4482,8 @@ msgstr "" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" #: ckan/templates/user/edit_user_form.html:7 @@ -4704,8 +4711,8 @@ msgstr "" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" #: ckan/templates/user/snippets/followee_dropdown.html:15 @@ -4732,3 +4739,4 @@ msgstr "" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/he/LC_MESSAGES/ckan.po b/ckan/i18n/he/LC_MESSAGES/ckan.po index cfba87d03bb..558ddfb8114 100644 --- a/ckan/i18n/he/LC_MESSAGES/ckan.po +++ b/ckan/i18n/he/LC_MESSAGES/ckan.po @@ -1,23 +1,26 @@ -# Translations template for ckan. +# Hebrew translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Adrià Mercader , 2018\n" +"Language: he\n" "Language-Team: Hebrew (https://www.transifex.com/okfn/teams/11162/he/)\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && " +"n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: he\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,16 +131,17 @@ msgstr "משאב DataStore לא נמצא" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" -"לנתונים אין משמעות (לדוגמה: ערך מספרי מחוץ לטווח או שהוכנס אל תוך שדה טקסט)." +"לנתונים אין משמעות (לדוגמה: ערך מספרי מחוץ לטווח או שהוכנס אל תוך שדה " +"טקסט)." #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 #: ckanext/datastore/logic/action.py:344 ckanext/datastore/logic/action.py:457 @@ -162,7 +166,8 @@ msgstr "גשו למשאב מידע דרך API מקוון עם תמיכה בשא msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -173,10 +178,9 @@ msgstr "נקודות קצה" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "" -"ה-API של המידע יכול להתקבל באמצעות הפעולות הבאות של API פעולות של CKAN. " +"The Data API can be accessed via the following actions of the CKAN action" +" API." +msgstr "ה-API של המידע יכול להתקבל באמצעות הפעולות הבאות של API פעולות של CKAN. " #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 #: ckanext/datastore/templates/ajax_snippets/api_info.html:44 @@ -313,7 +317,8 @@ msgstr "מידע API" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 @@ -803,8 +808,7 @@ msgstr "עמוד הבית" msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" -msgstr "" -"אין אפשרות למחוק את חבילה %s מכיוון שגרסה %s כוללת חבילות שטרם נמחקו %s " +msgstr "אין אפשרות למחוק את חבילה %s מכיוון שגרסה %s כוללת חבילות שטרם נמחקו %s " #: ckan/controllers/admin.py:183 ckan/views/admin.py:197 #, python-format @@ -1828,8 +1832,8 @@ msgstr "אורך השם אינו יכול לעלות על %i תווים" #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "" #: ckan/logic/validators.py:363 @@ -2613,10 +2617,9 @@ msgstr "איני מצליחה לקבל נתונים מהקובץ שהועלה" #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" -"אתם מעלים קובץ. האם אתם בטוחים שברצונכם לצאת מהעמוד ולהפסיק את ההעלאה?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" +msgstr "אתם מעלים קובץ. האם אתם בטוחים שברצונכם לצאת מהעמוד ולהפסיק את ההעלאה?" #: ckan/public-bs2/base/javascript/modules/resource-view-filters.js:9 #: ckan/public/base/javascript/modules/resource-view-filters.js:9 @@ -2907,35 +2910,36 @@ msgstr "הגדרות התצורה של תביאתה" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " +"

Site Title: This is the title of this CKAN instance " +"It appears in various places throughout CKAN.

" +"

Style: Choose from a list of simple variations of the" +" main colour scheme to get a very quick custom theme working.

" +"

Site Tag Logo: This is the logo that appears in the " +"header of all the CKAN instance templates.

About:" +" This text will appear on this CKAN instances about page.

Intro " "Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" "

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend <head> tag of every page. If you wish to customize the" +" templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" +"

Homepage: This is for choosing a predefined layout " +"for the modules that appear on your homepage.

" msgstr "" "

כותרת האתר זוהי הכותרת של מופע CKAN כפי שהוא מוצג " -"במקומות ב-CKAN.

סגנון: בחרו מרשימה של סוגים שונים של" -" תבניות צבע כדי להפעיל במהירות תבנית מותאמת אישית.

לוגו תגית" -" האתר: זה הלוגו שמופיע בכותרת של כל התבניות של CKAN.

" -"

אודות: הטקסט הזה יופיע במופעי CKAN הללו עמוד אודות.

טקסט מקדים: " -"הטקסט הזה יופיע במופעי CKAN הללו ביתpage כהקדמה" -" למבקרים.

CSS מותאם אישית: זהו קטע של CSS שיופיע ב " -"<head> תגית של כל עמוד. אם אתם מעוניינים להתאים את " -"התבניות יותר אנחנו ממליצים על המדריכים המפורטים שלנו.

עמוד " -"הבית: זה על מנת לבחור סידור מותאם מראש לתבניות שיופיעו בדף " -"הבית.

" +"במקומות ב-CKAN.

סגנון: בחרו מרשימה של סוגים שונים" +" של תבניות צבע כדי להפעיל במהירות תבנית מותאמת אישית.

" +"

לוגו תגית האתר: זה הלוגו שמופיע בכותרת של כל התבניות" +" של CKAN.

אודות: הטקסט הזה יופיע במופעי CKAN הללו" +" עמוד אודות.

טקסט " +"מקדים: הטקסט הזה יופיע במופעי CKAN הללו ביתpage כהקדמה למבקרים.

CSS " +"מותאם אישית: זהו קטע של CSS שיופיע ב <head> " +"תגית של כל עמוד. אם אתם מעוניינים להתאים את התבניות יותר אנחנו ממליצים על" +" המדריכים המפורטים " +"שלנו.

עמוד הבית: זה על מנת לבחור סידור מותאם " +"מראש לתבניות שיופיעו בדף הבית.

" #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 @@ -2950,8 +2954,9 @@ msgstr "ניהול CKAN" #, python-format msgid "" "

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" +"Proceed with care!

For guidance on using sysadmin features, see " +"the CKAN sysadmin " +"guide

" msgstr "" #: ckan/templates/admin/trash.html:20 @@ -3111,9 +3116,8 @@ msgstr "האם אתם בטוחים שאתם רוצים למחוק את חבר ה #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "ניהול" @@ -3145,8 +3149,7 @@ msgstr "חיפוש קבוצות..." msgid "There are currently no groups for this site" msgstr "אין כרגע קבוצות לאתר הזה" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "מה דעתכם ליצור קבוצה?" @@ -3195,22 +3198,19 @@ msgstr "משתמש חדש" msgid "If you wish to invite a new user, enter their email address." msgstr "אם אתם רוצים להזמין משתמש חדש, הקלידו את כתובת הדואר האלקטרוני שלהם." -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "תפקיד" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "האם אתם בטוחים שאתם רוצים למחוק את חבר הקבוצה הזה?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3231,13 +3231,13 @@ msgstr " מה הם התפקידים" #: ckan/templates/group/member_new.html:80 msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " +"

Admin: Can edit group information, as well as manage" +" organization members.

Member: Can add/remove " "datasets from groups

" msgstr "" -"

מנהל:יכול לערוך את מידע הקבוצה, וכן לנהל את חברי הארגון" -" members.

חבר קבוצה: יכול להוסיף/להסיר צבירי נתונים " -"מקבוצות

" +"

מנהל:יכול לערוך את מידע הקבוצה, וכן לנהל את חברי " +"הארגון members.

חבר קבוצה: יכול להוסיף/להסיר " +"צבירי נתונים מקבוצות

" #: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 #: ckan/templates/group/new.html:7 @@ -3307,15 +3307,15 @@ msgstr "מה הן קבוצות?" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" -"אתם יכולים להשתמש בקבוצות של CKAN כדי ליצור ולנהל אוספים של צבירי נתונים. זה" -" יכול להיות לשמש לקטלג צבירי נתונים לצורך פרויקט או קבוצה מסוימת, לצבירים " -"בנושא מסוים, או כדרך פשוטה כדי לעזור לאנשים למצוא ולחפש מידע בצבירי הנתונים " -"שפרסמתם. " +"אתם יכולים להשתמש בקבוצות של CKAN כדי ליצור ולנהל אוספים של צבירי נתונים." +" זה יכול להיות לשמש לקטלג צבירי נתונים לצורך פרויקט או קבוצה מסוימת, " +"לצבירים בנושא מסוים, או כדרך פשוטה כדי לעזור לאנשים למצוא ולחפש מידע " +"בצבירי הנתונים שפרסמתם. " #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 @@ -3378,13 +3378,14 @@ msgid "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3394,18 +3395,18 @@ msgid "" "overview: http://ckan.org/features/

" msgstr "" -"

CKAN היא פלטפורמת המידע הפתוחה המובילה בעולם

CKAN היא פתרון שלם " -"ישר מהקופסה שהופך מידע לנגיש ושימושי - על ידי כלים שמאפשרים פרסום, שיתוף " -"חיפוש ושימוש במידע (כולל אחסון המידע וכלי API מתקדמים). CKAN מיועדת לגופים " -"המפרסמים מידע (ברמה הלאומית והאזורית, חברות וארגונים) שמעונינים להפוך את " -"המידע שלהם לפתוח וזמין.

CKAN נמצאות בשימוש ממשלות וקבוצות משתמשים " -"ברחבי העולם ומפעילה מגוון אתרים רשמיים וקהילתיים כולל מידע מקומי, לאומי " -"ובינלאומי. בין היתר ניתן למצוא את CKAN היא פלטפורמת המידע הפתוחה המובילה בעולם

CKAN היא פתרון " +"שלם ישר מהקופסה שהופך מידע לנגיש ושימושי - על ידי כלים שמאפשרים פרסום, " +"שיתוף חיפוש ושימוש במידע (כולל אחסון המידע וכלי API מתקדמים). CKAN מיועדת" +" לגופים המפרסמים מידע (ברמה הלאומית והאזורית, חברות וארגונים) שמעונינים " +"להפוך את המידע שלהם לפתוח וזמין.

CKAN נמצאות בשימוש ממשלות וקבוצות" +" משתמשים ברחבי העולם ומפעילה מגוון אתרים רשמיים וקהילתיים כולל מידע " +"מקומי, לאומי ובינלאומי. בין היתר ניתן למצוא את data.gov.uk ואת האיחוד האירופי publicdata.eu, הברזילאיdados.gov.br, אתרים ממשלתיים של גרמניה " -"והולנד, כמו למשל אתרים עירוניים ואזוריים בארה\"ב, בריטניה, ארגנטינה, פינלנד " -"ומקומות רבים אחרים.

CKAN:

CKAN: http://ckan.org/
סיור ב-CKAN: http://ckan.org/tour/
אפשרויות " "המערכת: Markdown formatting here" msgstr "" -"ניתן להשתמש כאן בתחביר Markdown" #: ckan/templates/macros/form.html:277 @@ -3537,8 +3538,8 @@ msgstr "טיוטא" #: ckan/templates/package/read.html:11 #: ckan/templates/package/snippets/package_basic_fields.html:98 #: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 msgid "Private" msgstr "פרטי" @@ -3593,14 +3594,14 @@ msgid "" "

Admin: Can add/edit and delete datasets, as well as " "manage organization members.

Editor: Can add and " "edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" +"

Member: Can view the organization's private datasets," +" but not add new datasets.

" msgstr "" -"

מנהל/ת (אדמין): יכולים להוסיף/לערוך צבירי נתונים ולנהל" -" את החברים בארגון.

עורכ/ת (editor): יכולים " -"להוסיף ולערוך צבירי נתונים, אך לא יכולים לערוך את החברים בארגון.

" -"

חבר/ה: (member) יכולים לראות את צבירי הנתונים הפרטיים " -"של הארגון, אך לא יכולים להוסיף צבירי נתונים חדשים.

" +"

מנהל/ת (אדמין): יכולים להוסיף/לערוך צבירי נתונים " +"ולנהל את החברים בארגון.

עורכ/ת (editor): " +"יכולים להוסיף ולערוך צבירי נתונים, אך לא יכולים לערוך את החברים בארגון. " +"

חבר/ה: (member) יכולים לראות את צבירי הנתונים " +"הפרטיים של הארגון, אך לא יכולים להוסיף צבירי נתונים חדשים.

" #: ckan/templates/organization/members.html:14 msgid "{count} member" @@ -3636,19 +3637,19 @@ msgstr "מה הם ארגונים?" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" +"

Organizations act like publishing departments for datasets (for " +"example, the Department of Health). This means that datasets can be " +"published by and belong to a department instead of an individual " +"user.

Within organizations, admins can assign roles and authorise " +"its members, giving individual users the right to publish datasets from " +"that particular organisation (e.g. Office of National Statistics).

" msgstr "" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" "ארגונים ב-CKAN משמשים כדי ליצור, לנהל ולפרסם אוספים של צבירי נתונים. " "למשתמשים יכולים תפקידים שונםי בארגון, בהתאם לרמת ההרשאות ליצור, לערוך " @@ -3668,8 +3669,9 @@ msgstr "מידע קצר על הארגון שלי..." #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3692,13 +3694,13 @@ msgstr "מה הם צבירי נתונים?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" -"צביר נתונים של CKAN הוא אוסף של משאבי מידע (כמו קבצים) המופיע בקישור קבוע. " -"הצביר כולל גם תיאור ומידע נוסף. צבירי נתונים הם מה שמשתמשים רואים כאשר הם " -"מחפשים מידע. " +"צביר נתונים של CKAN הוא אוסף של משאבי מידע (כמו קבצים) המופיע בקישור " +"קבוע. הצביר כולל גם תיאור ומידע נוסף. צבירי נתונים הם מה שמשתמשים רואים " +"כאשר הם מחפשים מידע. " #: ckan/templates/package/confirm_delete.html:12 msgid "Are you sure you want to delete dataset - {name}?" @@ -3778,9 +3780,9 @@ msgstr "הוספת תצוגה" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" #: ckan/templates/package/new_view.html:29 @@ -3791,11 +3793,12 @@ msgstr "הוספה" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" -"זהו עדכון ישן של צביר נתונים זה, כפי שנערך ב-%(timestamp)s. הוא עשוי להיות " -"שונה מאוד מהגרסה הנוכחית." +"זהו עדכון ישן של צביר נתונים זה, כפי שנערך ב-%(timestamp)s. הוא עשוי " +"להיות שונה מאוד מהגרסה הנוכחית." #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" @@ -3864,9 +3867,9 @@ msgstr "" #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" #: ckan/templates/package/resource_read.html:162 @@ -3934,11 +3937,11 @@ msgstr "הוסף משאב נוסף" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

This dataset has no data, why not " -"add some?

" +"

This dataset has no data, why not" +" add some?

" msgstr "" -"

אין נתונים בצביר נתונים זה, מדוע " -"שלא תוסיפו כמה?

" +"

אין נתונים בצביר נתונים זה, מדוע" +" שלא תוסיפו כמה?

" #: ckan/templates/package/search.html:52 msgid "API" @@ -4083,11 +4086,12 @@ msgstr "פעיל/ה" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" #: ckan/templates/package/snippets/package_form.html:39 @@ -4409,11 +4413,11 @@ msgstr "

אנא נסו חיפוש נוסף.

" #: ckan/templates/snippets/search_form.html:87 msgid "" -"

There was an error while searching." -" Please try again.

" +"

There was an error while " +"searching. Please try again.

" msgstr "" -"

אירעה שגיאה בעת החיפוש. נא לנסות " -"שוב.

" +"

אירעה שגיאה בעת החיפוש. נא לנסות" +" שוב.

" #: ckan/templates/snippets/search_result_text.html:15 msgid "{number} dataset found for \"{query}\"" @@ -4571,7 +4575,8 @@ msgstr "מידע על חשבון" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "הפרופיל שלך מאפשר למשתמשי CKAN אחרים לדעת מי את/ה ומה אתם עושים." #: ckan/templates/user/edit_user_form.html:7 @@ -4799,11 +4804,11 @@ msgstr "בקשת איפוס" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" -"הזינו את שם המשתמש/ת שלך לתוך התיבה ואנחנו נשלח לכם דוא\"ל עם קישור להזין " -"סיסמא חדשה." +"הזינו את שם המשתמש/ת שלך לתוך התיבה ואנחנו נשלח לכם דוא\"ל עם קישור להזין" +" סיסמא חדשה." #: ckan/templates/user/snippets/followee_dropdown.html:15 #: ckan/templates/user/snippets/followee_dropdown.html:16 @@ -4829,3 +4834,4 @@ msgstr "חיפוש משתמשים" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/hr/LC_MESSAGES/ckan.po b/ckan/i18n/hr/LC_MESSAGES/ckan.po index 4d65664dd18..99985e2b348 100644 --- a/ckan/i18n/hr/LC_MESSAGES/ckan.po +++ b/ckan/i18n/hr/LC_MESSAGES/ckan.po @@ -1,23 +1,26 @@ -# Translations template for ckan. +# Croatian translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Adrià Mercader , 2018\n" +"Language: hr\n" "Language-Team: Croatian (https://www.transifex.com/okfn/teams/11162/hr/)\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: hr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,14 +131,14 @@ msgstr "DataStore resurs nije pronаđen" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "Neispravni unos (npr. uneseni broj je prevelik ili se očekuje tekst)" #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 @@ -161,7 +164,8 @@ msgstr "Pristup resursima podataka kroz web API uz široku podršku upita" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -172,8 +176,8 @@ msgstr "Završne točke" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "API-ju podataka je moguće pristupiti korištenjem CKAN API akcija" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 @@ -224,8 +228,7 @@ msgstr "Primjer: Javascript" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 #: ckanext/datastore/templates/ajax_snippets/api_info.html:97 msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "" -"Jednostavan ajax (JSONP) upit prema API-ju podataka korištenjem jQuery." +msgstr "Jednostavan ajax (JSONP) upit prema API-ju podataka korištenjem jQuery." #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 #: ckanext/datastore/templates/ajax_snippets/api_info.html:118 @@ -312,7 +315,8 @@ msgstr "API podаtаkа" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 @@ -802,8 +806,8 @@ msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "" -"Nemoguće odbаcivаnje pаketа %s jer pridruženа verzijа %s sаdrži pаkete koji " -"se ne mogu obrisаti %s" +"Nemoguće odbаcivаnje pаketа %s jer pridruženа verzijа %s sаdrži pаkete " +"koji se ne mogu obrisаti %s" #: ckan/controllers/admin.py:183 ckan/views/admin.py:197 #, python-format @@ -1072,8 +1076,8 @@ msgstr "Stranica je trenutno nedostupna. Bаzа nije inicijаlizirana." #, python-format msgid "Please update your profile and add your email address. " msgstr "" -"Molimo Vаs, аžurirаjte Vаš profil i dodаjte svoju emаil " -"аdresu." +"Molimo Vаs, аžurirаjte Vаš profil i dodаjte svoju " +"emаil аdresu." #: ckan/controllers/home.py:75 ckan/views/home.py:60 #, python-format @@ -1351,8 +1355,7 @@ msgstr "Ne postoji korisnik: %s" #: ckan/controllers/user.py:498 ckan/views/user.py:542 msgid "Please check your inbox for a reset code." -msgstr "" -"Molimo Vаs pronаđite kod za resetiranje lozinke u vašoj ulaznoj pošti." +msgstr "Molimo Vаs pronаđite kod za resetiranje lozinke u vašoj ulaznoj pošti." #: ckan/controllers/user.py:502 ckan/views/user.py:546 #, python-format @@ -1824,8 +1827,8 @@ msgstr "Ime morа biti duljine najviše %i znakova" #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "" #: ckan/logic/validators.py:363 @@ -1870,8 +1873,8 @@ msgstr "Duljinа oznake \"%s\" je većа od mаksimаlne (%i)" #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "" -"Oznaka \"%s\" morа biti sаstаvljen od аlfаnumeričkih znakova ili simbolа: " -"-_." +"Oznaka \"%s\" morа biti sаstаvljen od аlfаnumeričkih znakova ili simbolа:" +" -_." #: ckan/logic/validators.py:438 #, python-format @@ -1911,8 +1914,8 @@ msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "" -"Izmjena nije dozvoljena, jer izgledа kao neželjena. Izbjegаvаjte linkove u " -"Vаšem opisu." +"Izmjena nije dozvoljena, jer izgledа kao neželjena. Izbjegаvаjte linkove " +"u Vаšem opisu." #: ckan/logic/validators.py:628 #, python-format @@ -1927,8 +1930,8 @@ msgstr "To ime riječnikа je već u upotrebi." #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "" -"Nemoguće je promijeniti vrijednost ključа sа %s nа %s. Ovаj ključ je sаmo zа" -" čitаnje" +"Nemoguće je promijeniti vrijednost ključа sа %s nа %s. Ovаj ključ je sаmo" +" zа čitаnje" #: ckan/logic/validators.py:651 msgid "Tag vocabulary was not found." @@ -2157,8 +2160,7 @@ msgstr "Korisnik %s nije ovlаšten dа mijenjа ove grupe" #: ckan/logic/auth/create.py:38 #, python-format msgid "User %s not authorized to add dataset to this organization" -msgstr "" -"Korisnik %s nije ovlašten za dodavanje skupa podataka ovoj organizaciji" +msgstr "Korisnik %s nije ovlašten za dodavanje skupa podataka ovoj organizaciji" #: ckan/logic/auth/create.py:61 msgid "No dataset id provided, cannot check auth." @@ -2168,7 +2170,8 @@ msgstr "" #: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 msgid "No package found for this resource, cannot check auth." msgstr "" -"Nemа pronаđenih pаketa zа ovаj resurs, nije moguća provjera autentifikacije." +"Nemа pronаđenih pаketa zа ovаj resurs, nije moguća provjera " +"autentifikacije." #: ckan/logic/auth/create.py:76 #, python-format @@ -2529,8 +2532,7 @@ msgstr "Veza" #: ckan/public-bs2/base/javascript/modules/image-upload.js:61 #: ckan/public/base/javascript/modules/image-upload.js:61 msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "" -"Kreirajte link na URL na internetu (također možete kreirati link na API)" +msgstr "Kreirajte link na URL na internetu (također možete kreirati link na API)" #: ckan/public-bs2/base/javascript/modules/image-upload.js:68 #: ckan/public/base/javascript/modules/image-upload.js:68 @@ -2617,8 +2619,8 @@ msgstr "Nije moguće dohvatiti podatke za učitanu datoteku" #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "" "U tijeku je učitavanje datoteke. Jeste li sigurni da želite otići sa ove " "stranice i prekinuti učitavanje?" @@ -2905,37 +2907,39 @@ msgstr "CKAN opcije konfiguracije" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " +"

Site Title: This is the title of this CKAN instance " +"It appears in various places throughout CKAN.

" +"

Style: Choose from a list of simple variations of the" +" main colour scheme to get a very quick custom theme working.

" +"

Site Tag Logo: This is the logo that appears in the " +"header of all the CKAN instance templates.

About:" +" This text will appear on this CKAN instances about page.

Intro " "Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" "

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend <head> tag of every page. If you wish to customize the" +" templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" -msgstr "" -"

Naslov stranice: Ovo je naslov CKAN instance koji se " -"pojavljuje na različitim mjestima kroz CKAN.

Stil: " -"Odaberite listu jednostavnih varijacija standardne sheme boja za brzo " -"postavljanje korisničke teme.

Logo stranice: Ovo je " -"logo koji se pojavljuje u zaglavlju svih predložaka CKAN instance.

" -"

O stranici: Ovaj tekst će se pojavljivati na CKAN " -"instanci o stranici.

Uvodni " +"

Homepage: This is for choosing a predefined layout " +"for the modules that appear on your homepage.

" +msgstr "" +"

Naslov stranice: Ovo je naslov CKAN instance koji se" +" pojavljuje na različitim mjestima kroz CKAN.

" +"

Stil: Odaberite listu jednostavnih varijacija " +"standardne sheme boja za brzo postavljanje korisničke teme.

" +"

Logo stranice: Ovo je logo koji se pojavljuje u " +"zaglavlju svih predložaka CKAN instance.

O " +"stranici: Ovaj tekst će se pojavljivati na CKAN instanci o stranici.

Uvodni " "tekst: Ovaj tekst će se pojaviti na CKAN instanci početna stranica kao pozdravna poruka " -"posjetiteljima.

Korisnički CSS: Ovo je CSS blok koji" -" se pojavljuje u <head> oznaci svake stranice. Ako želite" -" potpunije izmjene predložaka predlažemo da pročitate dokumentaciju.

" -"

Početna: Ovo služi za odabir predefiniranog predloška za" -" module koji se pojavljuju na vašoj početnoj stranici.

" +"posjetiteljima.

Korisnički CSS: Ovo je CSS blok " +"koji se pojavljuje u <head> oznaci svake stranice. Ako" +" želite potpunije izmjene predložaka predlažemo da pročitate dokumentaciju.

" +"

Početna: Ovo služi za odabir predefiniranog predloška" +" za module koji se pojavljuju na vašoj početnoj stranici.

" #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 @@ -2950,8 +2954,9 @@ msgstr "Administriraj CKAN" #, python-format msgid "" "

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" +"Proceed with care!

For guidance on using sysadmin features, see " +"the CKAN sysadmin " +"guide

" msgstr "" #: ckan/templates/admin/trash.html:20 @@ -3111,9 +3116,8 @@ msgstr "Jeste li sigurni da želite izbrisati član - {name}?" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "Uredi" @@ -3145,8 +3149,7 @@ msgstr "Traži grupe..." msgid "There are currently no groups for this site" msgstr "Trenutno ne postoje grupe za ovu stranicu" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "A da kreirate?" @@ -3178,8 +3181,7 @@ msgstr "Postojeći korisnik" #: ckan/templates/group/member_new.html:21 #: ckan/templates/organization/member_new.html:22 msgid "If you wish to add an existing user, search for their username below." -msgstr "" -"Ako želite dodati postojećeg korisnika, potražite korisničko ime ispod." +msgstr "Ako želite dodati postojećeg korisnika, potražite korisničko ime ispod." #: ckan/templates/group/member_new.html:38 #: ckan/templates/organization/member_new.html:39 @@ -3196,22 +3198,19 @@ msgstr "Novi korisnik" msgid "If you wish to invite a new user, enter their email address." msgstr "Ako želite pozvati nove korisnike, unesite njihove e-mail adrese." -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "Uloga" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "Jeste li sigurni da želite izbrisati ovaj član?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3232,12 +3231,12 @@ msgstr "Što su uloge?" #: ckan/templates/group/member_new.html:80 msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " +"

Admin: Can edit group information, as well as manage" +" organization members.

Member: Can add/remove " "datasets from groups

" msgstr "" -"

Administrator: Može izmijeniti informacije o grupi i " -"upravljati članovima organizacije.

Član: Može " +"

Administrator: Može izmijeniti informacije o grupi i" +" upravljati članovima organizacije.

Član: Može " "dodati/maknuti setove podataka iz grupa

" #: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 @@ -3308,15 +3307,16 @@ msgstr "Što su grupe?" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" "Možete koristiti CKAN Grupe za kreiranje i upravljanje kolekcija skupova " "podataka. Ovo može biti katalog skupova podataka za određeni projekt ili " -"tim, ili za određenu temu, ili jednostavno služi za olakšavanje korisnicima " -"pretraživanje i pronalazak vaših objavljenih skupova podataka." +"tim, ili za određenu temu, ili jednostavno služi za olakšavanje " +"korisnicima pretraživanje i pronalazak vaših objavljenih skupova " +"podataka." #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 @@ -3379,13 +3379,14 @@ msgid "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3395,21 +3396,21 @@ msgid "" "overview: http://ckan.org/features/

" msgstr "" -"

CKAN je vodeća svjetka open-source platforma za podatkovni portal.

" -"

CKAN je kompletno out-of-the-box softversko rješenje koje čini podatke " -"dostupnima i upotrebljivima – dajući na raspolaganje alate za efikasno " -"objavljivanje, dijeljenje, pretragu i korištenje podatka (uključujući " -"pohranu podataka i pristup robusnim API-ima za podatke). CKAN je namijenjen " -"tijelima koja objavljuju podatke (državna i lokalna uprava, poduzeća i " -"organizacije) za koje žele te da su javni i dostupni.

CKAN koriste " -"vlade i grupe korisnika širom svijeta. On pokreće raznovrsne službene i " -"društvene podatkovne portale za lokalnu, državnu i internacionalnu upravu, " -"kao što su Vlada Velike Britanije CKAN je vodeća svjetka open-source platforma za podatkovni portal.

" +"

CKAN je kompletno out-of-the-box softversko rješenje koje čini " +"podatke dostupnima i upotrebljivima – dajući na raspolaganje alate za " +"efikasno objavljivanje, dijeljenje, pretragu i korištenje podatka " +"(uključujući pohranu podataka i pristup robusnim API-ima za podatke). " +"CKAN je namijenjen tijelima koja objavljuju podatke (državna i lokalna " +"uprava, poduzeća i organizacije) za koje žele te da su javni i " +"dostupni.

CKAN koriste vlade i grupe korisnika širom svijeta. On " +"pokreće raznovrsne službene i društvene podatkovne portale za lokalnu, " +"državnu i internacionalnu upravu, kao što su Vlada Velike Britanije data.gov.uk Europska Unija publicdata.eu, Brazilska vlada dados.gov.br, Portal Nizozemske Vlade, kao" -" i gradske i međugradske web stranice u Ujedinjenom Kraljevstvu, SAD-u, " -"Argentini, Finskoj...

CKAN: dados.gov.br, Portal Nizozemske Vlade, " +"kao i gradske i međugradske web stranice u Ujedinjenom Kraljevstvu, " +"SAD-u, Argentini, Finskoj...

CKAN: http://ckan.org/
CKAN Obilazak: http://ckan.org/tour/
Istaknuti " "pregled: Markdown formatting here" msgstr "" @@ -3538,8 +3539,8 @@ msgstr "Skica" #: ckan/templates/package/read.html:11 #: ckan/templates/package/snippets/package_basic_fields.html:98 #: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 msgid "Private" msgstr "Privatno" @@ -3594,15 +3595,15 @@ msgid "" "

Admin: Can add/edit and delete datasets, as well as " "manage organization members.

Editor: Can add and " "edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" +"

Member: Can view the organization's private datasets," +" but not add new datasets.

" msgstr "" "

Administrator: Može dodati/izmijeniti i obrisati " "skupove podataka, te upravljati članovima organizacije.

" -"

Urednik: Može dodati i izmijeniti skupove podataka, ali " -"ne može upravljati članovima organizacije.

Član: " -"Može vidjeti privatne skupove podataka organizacije, ali ne može dodavati " -"nove skupove podataka.

" +"

Urednik: Može dodati i izmijeniti skupove podataka, " +"ali ne može upravljati članovima organizacije.

" +"

Član: Može vidjeti privatne skupove podataka " +"organizacije, ali ne može dodavati nove skupove podataka.

" #: ckan/templates/organization/members.html:14 msgid "{count} member" @@ -3637,23 +3638,24 @@ msgstr "Što su Organizacije?" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" +"

Organizations act like publishing departments for datasets (for " +"example, the Department of Health). This means that datasets can be " +"published by and belong to a department instead of an individual " +"user.

Within organizations, admins can assign roles and authorise " +"its members, giving individual users the right to publish datasets from " +"that particular organisation (e.g. Office of National Statistics).

" msgstr "" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" -"CKAN Organizacije se koriste za kreiranje, upravljanje i objavu kolekcija " -"skupova podataka. Korisnici mogu imati različite uloge unutar Organizacije. " -"ovisno o njihovoj razini prava za kreiranje, izmjenu i objavu." +"CKAN Organizacije se koriste za kreiranje, upravljanje i objavu kolekcija" +" skupova podataka. Korisnici mogu imati različite uloge unutar " +"Organizacije. ovisno o njihovoj razini prava za kreiranje, izmjenu i " +"objavu." #: ckan/templates/organization/snippets/organization_form.html:10 msgid "My Organization" @@ -3669,8 +3671,9 @@ msgstr "Malo informacija o mojoj Organizaciji" #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3693,13 +3696,13 @@ msgstr "Što su skupovi podataka?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" -"CKAN skup podataka je kolekcija resursa podataka (kao što su datoteke), sa " -"opisom i ostalim informacijama, na fiksnom URL-u. Skupovi podataka su ono " -"što korisnici vide kad pretražuju podatke." +"CKAN skup podataka je kolekcija resursa podataka (kao što su datoteke), " +"sa opisom i ostalim informacijama, na fiksnom URL-u. Skupovi podataka su " +"ono što korisnici vide kad pretražuju podatke." #: ckan/templates/package/confirm_delete.html:12 msgid "Are you sure you want to delete dataset - {name}?" @@ -3779,9 +3782,9 @@ msgstr "Dodaj pogled" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" #: ckan/templates/package/new_view.html:29 @@ -3792,11 +3795,13 @@ msgstr "Dodаj" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" -"Ovo je stara verzija ovog Skupa podataka, ažurirana %(timestamp)s. Moguće su" -" značajne razlike u odnosu na aktualnu verziju." +"Ovo je stara verzija ovog Skupa podataka, ažurirana %(timestamp)s. Moguće" +" su značajne razlike u odnosu na aktualnu " +"verziju." #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" @@ -3865,9 +3870,9 @@ msgstr "" #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" #: ckan/templates/package/resource_read.html:162 @@ -3935,8 +3940,8 @@ msgstr "Dodaj novi resurs" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

This dataset has no data, why not " -"add some?

" +"

This dataset has no data, why not" +" add some?

" msgstr "" "

Ovaj Skup podataka nema podataka, zašto ne biste dodali neke?

" @@ -4084,11 +4089,12 @@ msgstr "Aktivno" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" #: ckan/templates/package/snippets/package_form.html:39 @@ -4200,8 +4206,8 @@ msgstr "Što je resurs?" #: ckan/templates/package/snippets/resource_help.html:4 msgid "A resource can be any file or link to a file containing useful data." msgstr "" -"Resurs može biti bilo koja datoteka ili link na datoteku koja sadrži korisne" -" podatke" +"Resurs može biti bilo koja datoteka ili link na datoteku koja sadrži " +"korisne podatke" #: ckan/templates/package/snippets/resource_item.html:23 msgid "Explore" @@ -4410,8 +4416,8 @@ msgstr "

Molimo pokušajte drugu pretragu.

" #: ckan/templates/snippets/search_form.html:87 msgid "" -"

There was an error while searching." -" Please try again.

" +"

There was an error while " +"searching. Please try again.

" msgstr "" #: ckan/templates/snippets/search_result_text.html:15 @@ -4564,7 +4570,8 @@ msgstr "Informacije o korisničkom računu" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" "Vaš profil omogućava drugim CKAN korisnicima da znaju tko ste i čime se " "bavite" @@ -4794,11 +4801,11 @@ msgstr "Zahtjev" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" -"Upišite korisničko ime u polje i poslat ćemo vam e-mail sa linkom za unos " -"nove lozinke" +"Upišite korisničko ime u polje i poslat ćemo vam e-mail sa linkom za unos" +" nove lozinke" #: ckan/templates/user/snippets/followee_dropdown.html:15 #: ckan/templates/user/snippets/followee_dropdown.html:16 @@ -4824,3 +4831,4 @@ msgstr "Traži korisnike" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/hu/LC_MESSAGES/ckan.po b/ckan/i18n/hu/LC_MESSAGES/ckan.po index 3b942f3784a..4ab6bc053d6 100644 --- a/ckan/i18n/hu/LC_MESSAGES/ckan.po +++ b/ckan/i18n/hu/LC_MESSAGES/ckan.po @@ -1,23 +1,26 @@ -# Translations template for ckan. +# Hungarian translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Adrià Mercader , 2018\n" -"Language-Team: Hungarian (https://www.transifex.com/okfn/teams/11162/hu/)\n" +"Language: hu\n" +"Language-Team: Hungarian (https://www.transifex.com/okfn/teams/11162/hu/)" +"\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,14 +131,14 @@ msgstr "" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 @@ -161,7 +164,8 @@ msgstr "" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -172,8 +176,8 @@ msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 @@ -311,7 +315,8 @@ msgstr "" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 @@ -1809,8 +1814,8 @@ msgstr "" #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "" #: ckan/logic/validators.py:363 @@ -1854,8 +1859,7 @@ msgstr "" #: ckan/logic/validators.py:430 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "" -"A '%s' cimke csak betűket és számokat '-' és '_' jeleket tartalmazhat." +msgstr "A '%s' cimke csak betűket és számokat '-' és '_' jeleket tartalmazhat." #: ckan/logic/validators.py:438 #, python-format @@ -2593,8 +2597,8 @@ msgstr "" #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "" #: ckan/public-bs2/base/javascript/modules/resource-view-filters.js:9 @@ -2870,21 +2874,22 @@ msgstr "" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " +"

Site Title: This is the title of this CKAN instance " +"It appears in various places throughout CKAN.

" +"

Style: Choose from a list of simple variations of the" +" main colour scheme to get a very quick custom theme working.

" +"

Site Tag Logo: This is the logo that appears in the " +"header of all the CKAN instance templates.

About:" +" This text will appear on this CKAN instances about page.

Intro " "Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" "

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend <head> tag of every page. If you wish to customize the" +" templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" +"

Homepage: This is for choosing a predefined layout " +"for the modules that appear on your homepage.

" msgstr "" #: ckan/templates/admin/confirm_reset.html:3 @@ -2900,8 +2905,9 @@ msgstr "" #, python-format msgid "" "

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" +"Proceed with care!

For guidance on using sysadmin features, see " +"the CKAN sysadmin " +"guide

" msgstr "" #: ckan/templates/admin/trash.html:20 @@ -3061,9 +3067,8 @@ msgstr "" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "" @@ -3095,8 +3100,7 @@ msgstr "" msgid "There are currently no groups for this site" msgstr "" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "" @@ -3145,22 +3149,19 @@ msgstr "" msgid "If you wish to invite a new user, enter their email address." msgstr "" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3181,8 +3182,8 @@ msgstr "" #: ckan/templates/group/member_new.html:80 msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " +"

Admin: Can edit group information, as well as manage" +" organization members.

Member: Can add/remove " "datasets from groups

" msgstr "" @@ -3254,10 +3255,10 @@ msgstr "" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" #: ckan/templates/group/snippets/history_revisions.html:10 @@ -3321,13 +3322,14 @@ msgid "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3344,8 +3346,8 @@ msgstr "" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" #: ckan/templates/home/snippets/promoted.html:19 @@ -3391,8 +3393,8 @@ msgstr "csoportok" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" @@ -3459,8 +3461,8 @@ msgstr "Vázlat" #: ckan/templates/package/read.html:11 #: ckan/templates/package/snippets/package_basic_fields.html:98 #: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 msgid "Private" msgstr "Privát" @@ -3515,8 +3517,8 @@ msgid "" "

Admin: Can add/edit and delete datasets, as well as " "manage organization members.

Editor: Can add and " "edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" +"

Member: Can view the organization's private datasets," +" but not add new datasets.

" msgstr "" #: ckan/templates/organization/members.html:14 @@ -3551,19 +3553,19 @@ msgstr "Mik a Szervezetek?" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" +"

Organizations act like publishing departments for datasets (for " +"example, the Department of Health). This means that datasets can be " +"published by and belong to a department instead of an individual " +"user.

Within organizations, admins can assign roles and authorise " +"its members, giving individual users the right to publish datasets from " +"that particular organisation (e.g. Office of National Statistics).

" msgstr "" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" #: ckan/templates/organization/snippets/organization_form.html:10 @@ -3580,8 +3582,9 @@ msgstr "Kevés információ a szervezetemről..." #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3604,9 +3607,9 @@ msgstr "" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" #: ckan/templates/package/confirm_delete.html:12 @@ -3687,9 +3690,9 @@ msgstr "" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" #: ckan/templates/package/new_view.html:29 @@ -3700,8 +3703,9 @@ msgstr "Hozzáadás" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" #: ckan/templates/package/resource_edit_base.html:17 @@ -3771,9 +3775,9 @@ msgstr "" #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" #: ckan/templates/package/resource_read.html:162 @@ -3841,8 +3845,8 @@ msgstr "" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

This dataset has no data, why not " -"add some?

" +"

This dataset has no data, why not" +" add some?

" msgstr "" #: ckan/templates/package/search.html:52 @@ -3982,11 +3986,12 @@ msgstr "" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" #: ckan/templates/package/snippets/package_form.html:39 @@ -4306,8 +4311,8 @@ msgstr "" #: ckan/templates/snippets/search_form.html:87 msgid "" -"

There was an error while searching." -" Please try again.

" +"

There was an error while " +"searching. Please try again.

" msgstr "" #: ckan/templates/snippets/search_result_text.html:15 @@ -4454,7 +4459,8 @@ msgstr "" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" #: ckan/templates/user/edit_user_form.html:7 @@ -4682,8 +4688,8 @@ msgstr "" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" #: ckan/templates/user/snippets/followee_dropdown.html:15 @@ -4710,3 +4716,4 @@ msgstr "" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/id/LC_MESSAGES/ckan.po b/ckan/i18n/id/LC_MESSAGES/ckan.po index 0f12c5c9710..21950fc916b 100644 --- a/ckan/i18n/id/LC_MESSAGES/ckan.po +++ b/ckan/i18n/id/LC_MESSAGES/ckan.po @@ -1,23 +1,26 @@ -# Translations template for ckan. +# Indonesian translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Adrià Mercader , 2018\n" -"Language-Team: Indonesian (https://www.transifex.com/okfn/teams/11162/id/)\n" +"Language: id\n" +"Language-Team: Indonesian " +"(https://www.transifex.com/okfn/teams/11162/id/)\n" +"Plural-Forms: nplurals=1; plural=0\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,14 +131,14 @@ msgstr "Sumber kumpulan data tidak ditemukan" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 @@ -161,7 +164,8 @@ msgstr "" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -172,8 +176,8 @@ msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 @@ -311,7 +315,8 @@ msgstr "API data" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 @@ -479,8 +484,7 @@ msgstr "Tautan gambar" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "" -"contoh: http://example.com/image.jpg (jika kosong, gunakan alamat data)" +msgstr "contoh: http://example.com/image.jpg (jika kosong, gunakan alamat data)" #: ckanext/reclineview/plugin.py:101 msgid "Data Explorer" @@ -862,8 +866,7 @@ msgstr "Tidak ada revisi dengan id: %s" #: ckan/controllers/api.py:297 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "" -"Istilah pencarian hilang ('since_id=UUID' atau 'since_time=TIMESTAMP')" +msgstr "Istilah pencarian hilang ('since_id=UUID' atau 'since_time=TIMESTAMP')" #: ckan/controllers/api.py:309 #, python-format @@ -1071,15 +1074,15 @@ msgstr "Situs ini sedang luring. Basisdata tidak diinisialisasikan." #, python-format msgid "Please update your profile and add your email address. " msgstr "" -"Silahkan perbarui profil anda dan tambahkan alamat email " -"anda. " +"Silahkan perbarui profil anda dan tambahkan alamat " +"email anda. " #: ckan/controllers/home.py:75 ckan/views/home.py:60 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "" -"%s menggunakan alamat email anda jika anda memerlukan untuk menyetel ulang " -"password anda." +"%s menggunakan alamat email anda jika anda memerlukan untuk menyetel " +"ulang password anda." #: ckan/controllers/package.py:304 msgid "Invalid search query: {error_message}" @@ -1306,8 +1309,8 @@ msgid "" "User \"%s\" is now registered but you are still logged in as \"%s\" from " "before" msgstr "" -"Pengguna \"%s\" sekarang terdaftar tetapu anda masih masuk sebagai \"%s\" " -"dari sebelumnya" +"Pengguna \"%s\" sekarang terdaftar tetapu anda masih masuk sebagai \"%s\"" +" dari sebelumnya" #: ckan/controllers/user.py:294 ckan/views/user.py:174 msgid "Unauthorized to edit a user." @@ -1808,8 +1811,8 @@ msgstr "Nama maksimal hingga %i karakter panjangnya" #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "" #: ckan/logic/validators.py:363 @@ -1893,8 +1896,8 @@ msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "" -"Pengeditan tidak diperkenankan karena mirip spam. Silahkan abaikan tautan " -"pada deskripsi anda." +"Pengeditan tidak diperkenankan karena mirip spam. Silahkan abaikan tautan" +" pada deskripsi anda." #: ckan/logic/validators.py:628 #, python-format @@ -2594,8 +2597,8 @@ msgstr "" #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "" #: ckan/public-bs2/base/javascript/modules/resource-view-filters.js:9 @@ -2864,21 +2867,22 @@ msgstr "" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " +"

Site Title: This is the title of this CKAN instance " +"It appears in various places throughout CKAN.

" +"

Style: Choose from a list of simple variations of the" +" main colour scheme to get a very quick custom theme working.

" +"

Site Tag Logo: This is the logo that appears in the " +"header of all the CKAN instance templates.

About:" +" This text will appear on this CKAN instances about page.

Intro " "Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" "

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend <head> tag of every page. If you wish to customize the" +" templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" +"

Homepage: This is for choosing a predefined layout " +"for the modules that appear on your homepage.

" msgstr "" #: ckan/templates/admin/confirm_reset.html:3 @@ -2894,8 +2898,9 @@ msgstr "" #, python-format msgid "" "

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" +"Proceed with care!

For guidance on using sysadmin features, see " +"the CKAN sysadmin " +"guide

" msgstr "" #: ckan/templates/admin/trash.html:20 @@ -3055,9 +3060,8 @@ msgstr "" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "" @@ -3089,8 +3093,7 @@ msgstr "" msgid "There are currently no groups for this site" msgstr "" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "" @@ -3139,22 +3142,19 @@ msgstr "" msgid "If you wish to invite a new user, enter their email address." msgstr "" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3175,8 +3175,8 @@ msgstr "" #: ckan/templates/group/member_new.html:80 msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " +"

Admin: Can edit group information, as well as manage" +" organization members.

Member: Can add/remove " "datasets from groups

" msgstr "" @@ -3248,10 +3248,10 @@ msgstr "" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" #: ckan/templates/group/snippets/history_revisions.html:10 @@ -3315,13 +3315,14 @@ msgid "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3338,8 +3339,8 @@ msgstr "" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" #: ckan/templates/home/snippets/promoted.html:19 @@ -3385,8 +3386,8 @@ msgstr "" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" @@ -3453,8 +3454,8 @@ msgstr "" #: ckan/templates/package/read.html:11 #: ckan/templates/package/snippets/package_basic_fields.html:98 #: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 msgid "Private" msgstr "Privat" @@ -3509,8 +3510,8 @@ msgid "" "

Admin: Can add/edit and delete datasets, as well as " "manage organization members.

Editor: Can add and " "edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" +"

Member: Can view the organization's private datasets," +" but not add new datasets.

" msgstr "" #: ckan/templates/organization/members.html:14 @@ -3544,19 +3545,19 @@ msgstr "" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" +"

Organizations act like publishing departments for datasets (for " +"example, the Department of Health). This means that datasets can be " +"published by and belong to a department instead of an individual " +"user.

Within organizations, admins can assign roles and authorise " +"its members, giving individual users the right to publish datasets from " +"that particular organisation (e.g. Office of National Statistics).

" msgstr "" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" #: ckan/templates/organization/snippets/organization_form.html:10 @@ -3573,8 +3574,9 @@ msgstr "" #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3597,9 +3599,9 @@ msgstr "" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" #: ckan/templates/package/confirm_delete.html:12 @@ -3680,9 +3682,9 @@ msgstr "" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" #: ckan/templates/package/new_view.html:29 @@ -3693,8 +3695,9 @@ msgstr "Tambah" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" #: ckan/templates/package/resource_edit_base.html:17 @@ -3764,9 +3767,9 @@ msgstr "" #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" #: ckan/templates/package/resource_read.html:162 @@ -3834,8 +3837,8 @@ msgstr "" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

This dataset has no data, why not " -"add some?

" +"

This dataset has no data, why not" +" add some?

" msgstr "" #: ckan/templates/package/search.html:52 @@ -3975,11 +3978,12 @@ msgstr "" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" #: ckan/templates/package/snippets/package_form.html:39 @@ -4299,8 +4303,8 @@ msgstr "" #: ckan/templates/snippets/search_form.html:87 msgid "" -"

There was an error while searching." -" Please try again.

" +"

There was an error while " +"searching. Please try again.

" msgstr "" #: ckan/templates/snippets/search_result_text.html:15 @@ -4441,7 +4445,8 @@ msgstr "" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" #: ckan/templates/user/edit_user_form.html:7 @@ -4669,8 +4674,8 @@ msgstr "Meminta setel ulang sandi" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" "Masukan nama pengguna ke dalam kolom dan kami akan mengirimkan surat " "elektronik beserta tautan untuk mengisi sandi baru" @@ -4699,3 +4704,4 @@ msgstr "Cari Pengguna" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/is/LC_MESSAGES/ckan.po b/ckan/i18n/is/LC_MESSAGES/ckan.po index a3f9888fddd..18c0cc65896 100644 --- a/ckan/i18n/is/LC_MESSAGES/ckan.po +++ b/ckan/i18n/is/LC_MESSAGES/ckan.po @@ -1,23 +1,26 @@ -# Translations template for ckan. +# Icelandic translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Adrià Mercader , 2018\n" -"Language-Team: Icelandic (https://www.transifex.com/okfn/teams/11162/is/)\n" +"Language: is\n" +"Language-Team: Icelandic (https://www.transifex.com/okfn/teams/11162/is/)" +"\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: is\n" -"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,14 +131,14 @@ msgstr "Tilfang DataStore fannst ekki" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" "Þessi gögn eru ógild (til dæmis: tölugildi er ekki innan marka eða var " "slegið inn í textareit)." @@ -163,7 +166,8 @@ msgstr "Opnaðu tilfangsgögn í gegnum nettengt API með öflugum leitarstuðni msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -174,8 +178,8 @@ msgstr "Viðmið" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "Hægt er opna Data API með eftirfarandi aðgerðum CKAN action API." #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 @@ -313,7 +317,8 @@ msgstr "Data API" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" "Ítarlegri upplýsingar má finna í Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " +"

Site Title: This is the title of this CKAN instance " +"It appears in various places throughout CKAN.

" +"

Style: Choose from a list of simple variations of the" +" main colour scheme to get a very quick custom theme working.

" +"

Site Tag Logo: This is the logo that appears in the " +"header of all the CKAN instance templates.

About:" +" This text will appear on this CKAN instances about page.

Intro " "Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" "

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend <head> tag of every page. If you wish to customize the" +" templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" +"

Homepage: This is for choosing a predefined layout " +"for the modules that appear on your homepage.

" msgstr "" -"

Titill svæðis: Þetta er heiti vefsvæðisins og er notað " -"víða innan CKAN uppsetningarinnar.

Útlit: Veldu úr " -"lista yfir fölbreytt litaþemu til að breyta útliti svæðisins með fljótlegum " -"hætti.

Merki svæðisins: Þetta er myndin sem birtist" -" í haus vefsvæðisins á öllum síðum.

Um: Þessi texti " -"er notaður á síðunni um vefinn.

" +"

Titill svæðis: Þetta er heiti vefsvæðisins og er " +"notað víða innan CKAN uppsetningarinnar.

Útlit: " +"Veldu úr lista yfir fölbreytt litaþemu til að breyta útliti svæðisins með" +" fljótlegum hætti.

Merki svæðisins: Þetta er " +"myndin sem birtist í haus vefsvæðisins á öllum síðum.

" +"

Um: Þessi texti er notaður á síðunni um vefinn.

" "

Kynningartexti: Þessi texti birtist á forsíðunni til að bjóða gesti velkomna.

" "

Sérsniðið CSS: Þessi kóði birtist í " @@ -2936,12 +2940,13 @@ msgstr "Stjórna CKAN" #, python-format msgid "" "

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" +"Proceed with care!

For guidance on using sysadmin features, see " +"the CKAN sysadmin " +"guide

" msgstr "" -"

Sem kerfisstjóri hefur þú fulla stjórn á þessari CKAN-uppsetningu. Farðu " -"mjög varlega!

Fyrir aðstoð við að nota kerfisstjórnarmöguleika, " -"skoðaðu CKAN Sem kerfisstjóri hefur þú fulla stjórn á þessari CKAN-uppsetningu. " +"Farðu mjög varlega!

Fyrir aðstoð við að nota " +"kerfisstjórnarmöguleika, skoðaðu CKAN kerfisstjóraleiðbeiningarnar

" #: ckan/templates/admin/trash.html:20 @@ -3101,9 +3106,8 @@ msgstr "Ertu viss um að þú viljir eyða meðlimi - {name}?" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "Stjórna" @@ -3135,8 +3139,7 @@ msgstr "Leita í söfnum..." msgid "There are currently no groups for this site" msgstr "Það eru engin söfn skráð" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "Væri ekki ráð að gera eitthvað í því?" @@ -3187,22 +3190,19 @@ msgstr "Nýr notandi" msgid "If you wish to invite a new user, enter their email address." msgstr "Ef þú vilt bjóða nýjum notanda skaltu slá inn netfang hans." -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "Hlutverk" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "Ertu viss um að þú viljir eyða þessum meðlim?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3223,8 +3223,8 @@ msgstr "Hvað eru hlutverk?" #: ckan/templates/group/member_new.html:80 msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " +"

Admin: Can edit group information, as well as manage" +" organization members.

Member: Can add/remove " "datasets from groups

" msgstr "" "

Sjórnandi: Getur breytt upplýsingum safns og stýrt " @@ -3299,15 +3299,15 @@ msgstr "Hvað eru söfn?" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" -"Þú getur notað CKAN söfn til að búa til og stjórna gagnapakkasöfnum. Þannig " -"er hægt að skrá gagnapakka fyrir tiltekið verkefni eða lið, eða í tilteknu " -"þema, og þannig geturðu einnig hjálpað fólki við að finna og leita að þínum " -"útgefnu gagnapökkum." +"Þú getur notað CKAN söfn til að búa til og stjórna gagnapakkasöfnum. " +"Þannig er hægt að skrá gagnapakka fyrir tiltekið verkefni eða lið, eða í " +"tilteknu þema, og þannig geturðu einnig hjálpað fólki við að finna og " +"leita að þínum útgefnu gagnapökkum." #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 @@ -3370,13 +3370,14 @@ msgid "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3386,21 +3387,22 @@ msgid "" "overview: http://ckan.org/features/

" msgstr "" -"

CKAN er leiðandi opinn hugbúnaður fyrir hýsingu á gögnum.

CKAN er" -" heildarlausn tilbúin til uppsetningar og gerir gögn bæði aðgengileg og " -"gagnleg - með því að bjóða upp á lausn sem einfaldar útgáfu, deilingu, leit " -"og notkun á gögnum (þ.m.t. geymslu gagna). CKAN er hannað fyrir útgefendur " -"gagna (ríki og sveitarfélög, fyrirtæki og stofnanir) sem vilja gera eigin " -"gögn opinber og aðgengileg.

CKAN er notað af ríkisstjórnum og öðrum " -"aðilum víðs vegar um heiminn og keyrir alls konar opinberar og " -"samfélagslegar gagnaveitur, þ.m.t. gagnagáttir fyrir staðbundna og " -"alþjóðlega stjórnsýslu, t.d. data.gov.uk " -"í Bretlandi og publicdata.eu fyrir " -"ESB, dados.gov.br í Brasilíu og " -"hollenskar stjórnsýslugáttir, og auk þess vefsíður fyrir borgir og " -"sveitarfélög í BNA, Bretlandi, Argentínu, Finnlandi og annars staðar.

" -"

CKAN: http://ckan.org/
CKAN Tour: " -"http://ckan.org/tour/
Yfirlit " +"

CKAN er leiðandi opinn hugbúnaður fyrir hýsingu á gögnum.

CKAN" +" er heildarlausn tilbúin til uppsetningar og gerir gögn bæði aðgengileg " +"og gagnleg - með því að bjóða upp á lausn sem einfaldar útgáfu, deilingu," +" leit og notkun á gögnum (þ.m.t. geymslu gagna). CKAN er hannað fyrir " +"útgefendur gagna (ríki og sveitarfélög, fyrirtæki og stofnanir) sem vilja" +" gera eigin gögn opinber og aðgengileg.

CKAN er notað af " +"ríkisstjórnum og öðrum aðilum víðs vegar um heiminn og keyrir alls konar " +"opinberar og samfélagslegar gagnaveitur, þ.m.t. gagnagáttir fyrir " +"staðbundna og alþjóðlega stjórnsýslu, t.d. data.gov.uk í Bretlandi og publicdata.eu fyrir ESB, dados.gov.br í Brasilíu og hollenskar " +"stjórnsýslugáttir, og auk þess vefsíður fyrir borgir og sveitarfélög í " +"BNA, Bretlandi, Argentínu, Finnlandi og annars staðar.

CKAN: http://ckan.org/
CKAN Tour: http://ckan.org/tour/
Yfirlit " "yfir það helsta: http://ckan.org/features/

" @@ -3410,11 +3412,11 @@ msgstr "Velkomin(n) í CKAN" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" -"Þetta er fínn inngangstexti um CKAN. Við höfum ekkert til að setja hér ennþá" -" en það kemur" +"Þetta er fínn inngangstexti um CKAN. Við höfum ekkert til að setja hér " +"ennþá en það kemur" #: ckan/templates/home/snippets/promoted.html:19 msgid "This is a featured section" @@ -3459,8 +3461,8 @@ msgstr "söfn" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" "Þú getur notað Admin: Can add/edit and delete datasets, as well as " "manage organization members.

Editor: Can add and " "edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" +"

Member: Can view the organization's private datasets," +" but not add new datasets.

" msgstr "" -"

Stjórnandi: Getur bætt við, breytt og eytt gagnapökkum," -" auk þess að stýra aðgangi meðlima í stofnun.

" -"

Útgefandi: Getur bætt við og breytt gagnapökkum en ekki " -"stýrt aðgangi notenda.

Meðlimur: Getur skoðað " -"óútgefna gagnapakka stofnunar en ekki bætt við nýjum gagnapökkum.

" +"

Stjórnandi: Getur bætt við, breytt og eytt " +"gagnapökkum, auk þess að stýra aðgangi meðlima í stofnun.

" +"

Útgefandi: Getur bætt við og breytt gagnapökkum en " +"ekki stýrt aðgangi notenda.

Meðlimur: Getur " +"skoðað óútgefna gagnapakka stofnunar en ekki bætt við nýjum " +"gagnapökkum.

" #: ckan/templates/organization/members.html:14 msgid "{count} member" @@ -3627,28 +3630,29 @@ msgstr "Hvað eru stofnanir?" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" +"

Organizations act like publishing departments for datasets (for " +"example, the Department of Health). This means that datasets can be " +"published by and belong to a department instead of an individual " +"user.

Within organizations, admins can assign roles and authorise " +"its members, giving individual users the right to publish datasets from " +"that particular organisation (e.g. Office of National Statistics).

" msgstr "" "

Stofnanir eru útgefendur gagnapakka (til dæmis Fjármálaráðuneytið). " -"Gagnapakkar eru gefnir út undir stofnun frekar en í nafni einstaklinga.

" -"

Stjórnendur geta úthlutað hlutverkum og aðgangsheimildum innan stofnana " -"og þannig gefið notendum réttindi til að gefa út gagnapakka fyrir viðkomandi" -" stofnun.

" +"Gagnapakkar eru gefnir út undir stofnun frekar en í nafni " +"einstaklinga.

Stjórnendur geta úthlutað hlutverkum og " +"aðgangsheimildum innan stofnana og þannig gefið notendum réttindi til að " +"gefa út gagnapakka fyrir viðkomandi stofnun.

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" -"CKAN stofnanir eru notaðar til að búa til, stýra og gefa út gagnapakkasöfn. " -"Notendur geta gegnt mismunandi hlutverkum innan stofnanna, í samræmi við " -"heimildir sem þeir hafa til að búa til, breyta og gefa út." +"CKAN stofnanir eru notaðar til að búa til, stýra og gefa út " +"gagnapakkasöfn. Notendur geta gegnt mismunandi hlutverkum innan " +"stofnanna, í samræmi við heimildir sem þeir hafa til að búa til, breyta " +"og gefa út." #: ckan/templates/organization/snippets/organization_form.html:10 msgid "My Organization" @@ -3664,8 +3668,9 @@ msgstr "Stutt lýsing á stofnuninni..." #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3688,13 +3693,13 @@ msgstr "Hvað eru gagnapakkar?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" -"CKAN gagnapakki er safn tilfanga gagna (t.d. skrár), ásamt lýsingu og öðrum " -"upplýsingum, á ákveðinni vefslóð. Gagnapakkar eru það sem notendur sjá þegar" -" þeir leita að gögnum." +"CKAN gagnapakki er safn tilfanga gagna (t.d. skrár), ásamt lýsingu og " +"öðrum upplýsingum, á ákveðinni vefslóð. Gagnapakkar eru það sem notendur " +"sjá þegar þeir leita að gögnum." #: ckan/templates/package/confirm_delete.html:12 msgid "Are you sure you want to delete dataset - {name}?" @@ -3774,15 +3779,15 @@ msgstr "Bæta við sýn" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the
Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" "Gagnaskoðandasýnir getur verið hægar og óáreiðanlegar nema DataStore " "viðbótin sé virk. Fyrir frekari upplýsingar skoðaðu leiðbeiningar fyrir " -"gagnaskoðandann (Data Explorer). " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>leiðbeiningar" +" fyrir gagnaskoðandann (Data Explorer). " #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:83 @@ -3792,8 +3797,9 @@ msgstr "Bæta við" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" "Þetta er gömul útgáfa af gagnapakkanum, breytt %(timestamp)s. Hún getur " "verið töluvert frábrugðin núgildandi útgáfu." @@ -3865,13 +3871,13 @@ msgstr "Kerfisstjórar hafa mögulega ekki bætt við viðeigandi sýnisviðbót #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" -"Ef sýn býst við DataStore viðbótinni, gæti DataStore viðbótin verið óvirk, " -"gögnin ekki sett inn í gagnabankann eða gagnabankinn hefur ekki enn klárað " -"að vinna gögnin" +"Ef sýn býst við DataStore viðbótinni, gæti DataStore viðbótin verið " +"óvirk, gögnin ekki sett inn í gagnabankann eða gagnabankinn hefur ekki " +"enn klárað að vinna gögnin" #: ckan/templates/package/resource_read.html:162 msgid "Additional Information" @@ -3938,8 +3944,8 @@ msgstr "Bæta við nýju tilfangi" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

This dataset has no data, why not " -"add some?

" +"

This dataset has no data, why not" +" add some?

" msgstr "" "

Þessi gagnapakki er ekki með nein gögn. Viltu ekki bæta nokkrum við?

" @@ -4087,16 +4093,17 @@ msgstr "Virkt" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" -"Notkunarskilmálarnir sem þú valdir hér fyrir ofan eiga aðeins við um " -"innihald tilfangaskráa sem þú bætir við í gagnapakkann. Með því að senda inn" -" þessar upplýsingar samþykkir þú að birta lýsigögnin sem þú hefur " -"fyllt inn undir notkunarskilmálum Notkunarskilmálarnir
sem þú valdir hér fyrir ofan eiga aðeins við " +"um innihald tilfangaskráa sem þú bætir við í gagnapakkann. Með því að " +"senda inn þessar upplýsingar samþykkir þú að birta lýsigögnin sem " +"þú hefur fyllt inn undir notkunarskilmálum Open Database " "License." @@ -4421,8 +4428,8 @@ msgstr "

Reyndu aðra leit.

" #: ckan/templates/snippets/search_form.html:87 msgid "" -"

There was an error while searching." -" Please try again.

" +"

There was an error while " +"searching. Please try again.

" msgstr "" #: ckan/templates/snippets/search_result_text.html:15 @@ -4569,7 +4576,8 @@ msgstr "Notandaupplýsingar" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "Prófíllinn þinn gefur öðrum notendum kost á að kynnast þér betur." #: ckan/templates/user/edit_user_form.html:7 @@ -4799,8 +4807,8 @@ msgstr "Breyta aðgangsorði" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" "Sláðu notandanafnið þitt inn í svæðið. Við munum senda þér tölvupóst með " "tengil á síðu þar sem þú getur valið nýtt aðgangsorð." @@ -4829,3 +4837,4 @@ msgstr "Leita að notanda" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/it/LC_MESSAGES/ckan.po b/ckan/i18n/it/LC_MESSAGES/ckan.po index 23272b07847..e8516019558 100644 --- a/ckan/i18n/it/LC_MESSAGES/ckan.po +++ b/ckan/i18n/it/LC_MESSAGES/ckan.po @@ -1,23 +1,25 @@ -# Translations template for ckan. +# Italian translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Adrià Mercader , 2018\n" +"Language: it\n" "Language-Team: Italian (https://www.transifex.com/okfn/teams/11162/it/)\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,14 +130,14 @@ msgstr "Risorsa DataStore non trovata" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" "Dato non valido (per esempio: un valore numerico fuori intervallo od " "inserito in un campo di testo)." @@ -165,7 +167,8 @@ msgstr "" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -176,11 +179,11 @@ msgstr "Endpoints" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "" -"L'interfaccia Data API può essere consultata attraverso le azioni seguenti " -"tra quelle a disposizione in CKAN API." +"L'interfaccia Data API può essere consultata attraverso le azioni " +"seguenti tra quelle a disposizione in CKAN API." #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 #: ckanext/datastore/templates/ajax_snippets/api_info.html:44 @@ -230,8 +233,7 @@ msgstr "Esempio: Javascript" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 #: ckanext/datastore/templates/ajax_snippets/api_info.html:97 msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "" -"Una richiesta ajax semplice (JSONP) verso l'API dati utilizzando jQuery." +msgstr "Una richiesta ajax semplice (JSONP) verso l'API dati utilizzando jQuery." #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 #: ckanext/datastore/templates/ajax_snippets/api_info.html:118 @@ -318,7 +320,8 @@ msgstr "Data API" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" "Ulteriori informazioni presso la Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " +"

Site Title: This is the title of this CKAN instance " +"It appears in various places throughout CKAN.

" +"

Style: Choose from a list of simple variations of the" +" main colour scheme to get a very quick custom theme working.

" +"

Site Tag Logo: This is the logo that appears in the " +"header of all the CKAN instance templates.

About:" +" This text will appear on this CKAN instances about page.

Intro " "Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" "

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend <head> tag of every page. If you wish to customize the" +" templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" +"

Homepage: This is for choosing a predefined layout " +"for the modules that appear on your homepage.

" msgstr "" -"

Titolo sito Questo e' il titolo di questa instanza di " -"CKAN che appare in diversi punti attraverso il CKAN.

" -"

Stile: Scegli dall'elenco una semplice variazioni del " -"colore principali del tema per impostare velocemente un diverso tema.

" -"

Logo: Questo è il logo che appare in alto nella testata " -"di tutti i template di CKAN.

Informazioni: Questo " -"testo comparirà in questa istanza di CKAN pagina " -"informazioni.

Testo presentazione: Questo testo " -"comparirà su questa istanza di CKAN home page " -"per dare il benvenuto ai visitatori.

CSS " -"Personalizzato: Questo e' il blocco di codice di personalizzazione " -"del CSS <head> che compare in ogni pagina. Se vuoi " -"modificare il template più in profondità ti consigliamo di leggere la documentazione.

" -"

Pagina iniziale: Questo è per scegliere il layout " -"predefinito dei moduli che appaiono nella tua pagina iniziale.

" +"

Titolo sito Questo e' il titolo di questa instanza " +"di CKAN che appare in diversi punti attraverso il CKAN.

" +"

Stile: Scegli dall'elenco una semplice variazioni del" +" colore principali del tema per impostare velocemente un diverso " +"tema.

Logo: Questo è il logo che appare in alto " +"nella testata di tutti i template di CKAN.

" +"

Informazioni: Questo testo comparirà in questa " +"istanza di CKAN pagina informazioni.

" +"

Testo presentazione: Questo testo comparirà su questa" +" istanza di CKAN home page per dare il " +"benvenuto ai visitatori.

CSS Personalizzato: " +"Questo e' il blocco di codice di personalizzazione del CSS " +"<head> che compare in ogni pagina. Se vuoi modificare " +"il template più in profondità ti consigliamo di leggere la documentazione.

Pagina " +"iniziale: Questo è per scegliere il layout predefinito dei " +"moduli che appaiono nella tua pagina iniziale.

" #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 @@ -2953,13 +2955,14 @@ msgstr "Amministra CKAN" #, python-format msgid "" "

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" +"Proceed with care!

For guidance on using sysadmin features, see " +"the CKAN sysadmin " +"guide

" msgstr "" -"

In qualità di utente amministratore di sistema hai pieno controllo su " -"questa istanza CKAN. Prosegui con attenzione!

Per informazioni e " -"consigli sulle funzionalità per l'amministratore di sistema, consulta la guida CKAN

" +"

In qualità di utente amministratore di sistema hai pieno controllo su" +" questa istanza CKAN. Prosegui con attenzione!

Per informazioni e " +"consigli sulle funzionalità per l'amministratore di sistema, consulta la " +"guida CKAN

" #: ckan/templates/admin/trash.html:20 msgid "Purge" @@ -2973,8 +2976,7 @@ msgstr "" #: ckan/templates/dataviewer/snippets/data_preview.html:9 msgid "This resource can not be previewed at the moment." -msgstr "" -"Questa risorsa non può essere visualizzata in anteprima in questo momento." +msgstr "Questa risorsa non può essere visualizzata in anteprima in questo momento." #: ckan/templates/dataviewer/snippets/data_preview.html:11 #: ckan/templates/package/resource_read.html:133 @@ -3121,9 +3123,8 @@ msgstr "Sei sicuro di voler eliminare il membro - {name}?" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "Gestisci" @@ -3155,8 +3156,7 @@ msgstr "Cerca gruppi..." msgid "There are currently no groups for this site" msgstr "Al momento non ci sono gruppi per questo sito" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "Come crearne uno?" @@ -3205,25 +3205,21 @@ msgstr "Nuovo utente" #: ckan/templates/group/member_new.html:45 #: ckan/templates/organization/member_new.html:46 msgid "If you wish to invite a new user, enter their email address." -msgstr "" -"Se desideri invitare un nuovo utente, inserisci il suo indirizzo email." +msgstr "Se desideri invitare un nuovo utente, inserisci il suo indirizzo email." -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "Ruolo" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "Sei sicuro di voler cancellare questo membro?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3244,8 +3240,8 @@ msgstr "Cosa sono i ruoli?" #: ckan/templates/group/member_new.html:80 msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " +"

Admin: Can edit group information, as well as manage" +" organization members.

Member: Can add/remove " "datasets from groups

" msgstr "" "

Amministratore: Può modificare le informazioni del " @@ -3321,15 +3317,15 @@ msgstr "Cosa sono i Gruppi?" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" -"Puoi usare i gruppi di CKAN per creare e gestire collezioni di dataset, come" -" un catalogo di dataset di un progetto o di un team, su un particolare " -"argomento o semplicemente come un modo semplice per consentire di trovare e " -"cercare i dataset che hai pubblicato." +"Puoi usare i gruppi di CKAN per creare e gestire collezioni di dataset, " +"come un catalogo di dataset di un progetto o di un team, su un " +"particolare argomento o semplicemente come un modo semplice per " +"consentire di trovare e cercare i dataset che hai pubblicato." #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 @@ -3392,13 +3388,14 @@ msgid "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3409,24 +3406,24 @@ msgid "" "href=\"http://ckan.org/features/\">http://ckan.org/features/

" msgstr "" "

CKAN è la piattaforma leader mondiale per i portali di dati open-" -"source.

CKAN è una soluzione software completa e pronta all'uso che " -"rende accessibili e utilizzabili i dati – fornendo strumenti per " +"source.

CKAN è una soluzione software completa e pronta all'uso " +"che rende accessibili e utilizzabili i dati – fornendo strumenti per " "ottimizzarne la pubblicazione, la ricerca e l'utilizzo (inclusa " -"l'archiviazione dei dati e la disponibilità di solide API). CKAN si rivolge " -"alle organizzazioni che pubblicano dati (governi nazionali e locali, aziende" -" ed istituzioni) e desiderano renderli aperti e accessibili a tutti.

" -"

CKAN è usato da governi e gruppi di utenti in tutto il mondo per gestire " -"una vasta serie di portali di dati di enti ufficiali e di comunità, tra cui " -"portali per governi locali, nazionali e internazionali, come data.gov.uk nel Regno Unito e publicdata.eu dell'Unione Europea, dados.gov.br in Brasile, portali di " -"governo dell'Olanda e dei Paesi Bassi, oltre a siti di amministrazione " -"cittadine e municipali negli USA, nel Regno Unito, Argentina, Finlandia e " -"altri paesi.

CKAN:

CKAN è usato da governi e gruppi di utenti in" +" tutto il mondo per gestire una vasta serie di portali di dati di enti " +"ufficiali e di comunità, tra cui portali per governi locali, nazionali e " +"internazionali, come data.gov.uk nel " +"Regno Unito e publicdata.eu " +"dell'Unione Europea, dados.gov.br in" +" Brasile, portali di governo dell'Olanda e dei Paesi Bassi, oltre a siti " +"di amministrazione cittadine e municipali negli USA, nel Regno Unito, " +"Argentina, Finlandia e altri paesi.

CKAN: http://ckan.org/
Tour di CKAN: http://ckan.org/tour/
Panoramica " -"delle funzioni: http://ckan.org/tour/
Panoramica" +" delle funzioni: http://ckan.org/features/

" #: ckan/templates/home/snippets/promoted.html:8 @@ -3435,11 +3432,11 @@ msgstr "Benvenuto su CKAN" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" -"Questo è un bel paragrafo introduttivo su CKAN o il sito in generale. Noi " -"non abbiamo nessun testo d'aggiungere, ma presto lo faremo" +"Questo è un bel paragrafo introduttivo su CKAN o il sito in generale. Noi" +" non abbiamo nessun testo d'aggiungere, ma presto lo faremo" #: ckan/templates/home/snippets/promoted.html:19 msgid "This is a featured section" @@ -3484,13 +3481,13 @@ msgstr "gruppi" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" -"Puoi utilizzare la sintassi Markdown qui" +"Puoi utilizzare la sintassi Markdown qui" #: ckan/templates/macros/form.html:277 msgid "This field is required" @@ -3555,8 +3552,8 @@ msgstr "Bozza" #: ckan/templates/package/read.html:11 #: ckan/templates/package/snippets/package_basic_fields.html:98 #: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 msgid "Private" msgstr "Privato" @@ -3611,15 +3608,15 @@ msgid "" "

Admin: Can add/edit and delete datasets, as well as " "manage organization members.

Editor: Can add and " "edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" +"

Member: Can view the organization's private datasets," +" but not add new datasets.

" msgstr "" -"

Amministratore: può aggiungere/modificare ed eliminare " -"i dataset, oltre a gestire i membri dell'organizzazione.

" -"

Curatore: può aggiungere e modificare i dataset, ma non " -"può gestire i membri dell'organizzazione.

Membro: " -"può visualizzare i dataset privati dell'organizzazione, ma non può " -"aggiungerne di nuovi.

" +"

Amministratore: può aggiungere/modificare ed " +"eliminare i dataset, oltre a gestire i membri dell'organizzazione.

" +"

Curatore: può aggiungere e modificare i dataset, ma " +"non può gestire i membri dell'organizzazione.

" +"

Membro: può visualizzare i dataset privati " +"dell'organizzazione, ma non può aggiungerne di nuovi.

" #: ckan/templates/organization/members.html:14 msgid "{count} member" @@ -3653,30 +3650,31 @@ msgstr "Cosa sono le organizzazioni?" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" +"

Organizations act like publishing departments for datasets (for " +"example, the Department of Health). This means that datasets can be " +"published by and belong to a department instead of an individual " +"user.

Within organizations, admins can assign roles and authorise " +"its members, giving individual users the right to publish datasets from " +"that particular organisation (e.g. Office of National Statistics).

" msgstr "" -"

Le Organizzazioni si comportano come dipartimenti che pubblicano dataset" -" (per esempio, Dipartimento della Salute). Questo significa che i dataset " -"sono pubblicati ed appartengono ad un dipartimento piuttosto che ad un " -"singolo utente.

All'interno di organizzazioni, gli amministratori " -"possono assegnare ruoli ed autorizzare i propri membri, fornendo ai singoli " -"utenti diritti di pubblicazione di dataset per conto di quella particolare " -"organizzazione (e.g. Istituto Nazionale di Statistica).

" +"

Le Organizzazioni si comportano come dipartimenti che pubblicano " +"dataset (per esempio, Dipartimento della Salute). Questo significa che i " +"dataset sono pubblicati ed appartengono ad un dipartimento piuttosto che " +"ad un singolo utente.

All'interno di organizzazioni, gli " +"amministratori possono assegnare ruoli ed autorizzare i propri membri, " +"fornendo ai singoli utenti diritti di pubblicazione di dataset per conto " +"di quella particolare organizzazione (e.g. Istituto Nazionale di " +"Statistica).

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" "Le Organizzazioni di CKAN sono usate per creare, gestire e pubblicare " -"raccolte di dataset. Gli utenti possono avere diverse ruoli all'interno di " -"un'Organizzazione, in relazione al loro livello di autorizzazione nel " +"raccolte di dataset. Gli utenti possono avere diverse ruoli all'interno " +"di un'Organizzazione, in relazione al loro livello di autorizzazione nel " "creare, modificare e pubblicare." #: ckan/templates/organization/snippets/organization_form.html:10 @@ -3693,8 +3691,9 @@ msgstr "Qualche informazioni sulla mia organizzazione..." #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3717,13 +3716,14 @@ msgstr "Cosa sono i dataset?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" -"Un dataset di CKAN è una raccolta di risorse dati (come un insieme di file)," -" corredato da una descrizione e altre informazioni, a un indirizzo fisso. I " -"dataset sono quello che gli utenti visualizzano quando cercano dei dati." +"Un dataset di CKAN è una raccolta di risorse dati (come un insieme di " +"file), corredato da una descrizione e altre informazioni, a un indirizzo " +"fisso. I dataset sono quello che gli utenti visualizzano quando cercano " +"dei dati." #: ckan/templates/package/confirm_delete.html:12 msgid "Are you sure you want to delete dataset - {name}?" @@ -3803,15 +3803,15 @@ msgstr "Aggiungi vista" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" -"Le viste di Esploratore Dati possono essere lente ed inefficaci fintanto che" -" l'estensione non è abilitata. Per maggiori informazioni, consulta la documentazione " -"Esploratore Dati. " +"Le viste di Esploratore Dati possono essere lente ed inefficaci fintanto " +"che l'estensione non è abilitata. Per maggiori informazioni, consulta la " +"documentazione Esploratore Dati. " #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:83 @@ -3821,8 +3821,9 @@ msgstr "Aggiungi" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" "Questa è una revisione precedente del dataset, come modificato in data " "%(timestamp)s. Potrebbe differire in modo significativo dalla This dataset has no data, why not " -"add some?

" +"

This dataset has no data, why not" +" add some?

" msgstr "" "

Questo dataset non possiede dati, perché non aggiungerne?

" @@ -4094,8 +4097,8 @@ msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "" -"Le definizioni delle licenze e ulteriori informazioni sono disponibili su opendefinition.org" +"Le definizioni delle licenze e ulteriori informazioni sono disponibili su" +" opendefinition.org" #: ckan/templates/package/snippets/package_basic_fields.html:76 #: ckan/templates/snippets/organization.html:23 @@ -4120,16 +4123,17 @@ msgstr "Attivo" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" -"La licenza sui dati scelta sopra si applica solamente ai contenuti di" -" qualsiasi file di risorsa aggiunto a questo dataset. Inviando questo " -"modulo, acconsenti a rilasciare i valori metadata inseriti attraverso" -" il modulo secondo quanto previsto nella licenza sui dati
scelta sopra si applica solamente ai contenuti" +" di qualsiasi file di risorsa aggiunto a questo dataset. Inviando questo " +"modulo, acconsenti a rilasciare i valori metadata inseriti " +"attraverso il modulo secondo quanto previsto nella Open Database " "License." @@ -4242,7 +4246,8 @@ msgstr "Cosa è una risorsa?" #: ckan/templates/package/snippets/resource_help.html:4 msgid "A resource can be any file or link to a file containing useful data." msgstr "" -"Una risorsa può essere qualsiasi file o link a file che contenga dati utili." +"Una risorsa può essere qualsiasi file o link a file che contenga dati " +"utili." #: ckan/templates/package/snippets/resource_item.html:23 msgid "Explore" @@ -4273,8 +4278,8 @@ msgid "" "You can copy and paste the embed code into a CMS or blog software that " "supports raw HTML" msgstr "" -"Puoi fare copia ed incolla del codice da incorporare in un CMS o programma " -"blog che supporta HTML grezzo" +"Puoi fare copia ed incolla del codice da incorporare in un CMS o " +"programma blog che supporta HTML grezzo" #: ckan/templates/package/snippets/resource_view.html:80 msgid "Width" @@ -4335,8 +4340,8 @@ msgstr "Cos'è una vista?" #: ckan/templates/package/snippets/view_help.html:4 msgid "A view is a representation of the data held against a resource" msgstr "" -"Una vista è una rappresentazione dei dati attribuita nei confronti di una " -"risorsa" +"Una vista è una rappresentazione dei dati attribuita nei confronti di una" +" risorsa" #: ckan/templates/revision/diff.html:6 msgid "Differences" @@ -4455,8 +4460,8 @@ msgstr "

Per favore effettua un'altra ricerca.

" #: ckan/templates/snippets/search_form.html:87 msgid "" -"

There was an error while searching." -" Please try again.

" +"

There was an error while " +"searching. Please try again.

" msgstr "" #: ckan/templates/snippets/search_result_text.html:15 @@ -4603,7 +4608,8 @@ msgstr "Informazioni sull'Account" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "Il tuo profilo racconta qualcosa di te agli altri utenti CKAN." #: ckan/templates/user/edit_user_form.html:7 @@ -4831,11 +4837,11 @@ msgstr "Richiedi azzeramento" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" -"Inserisci il tuo username e ti manderemo una e-mail con un link per inserire" -" la nuova password." +"Inserisci il tuo username e ti manderemo una e-mail con un link per " +"inserire la nuova password." #: ckan/templates/user/snippets/followee_dropdown.html:15 #: ckan/templates/user/snippets/followee_dropdown.html:16 @@ -4861,3 +4867,4 @@ msgstr "Cerca Utenti" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/ja/LC_MESSAGES/ckan.po b/ckan/i18n/ja/LC_MESSAGES/ckan.po index e30042a1220..19fb250d784 100644 --- a/ckan/i18n/ja/LC_MESSAGES/ckan.po +++ b/ckan/i18n/ja/LC_MESSAGES/ckan.po @@ -1,23 +1,26 @@ -# Translations template for ckan. +# Japanese translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 +# Azusa Akiyama , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Azusa Akiyama , 2018\n" +"Language: ja\n" "Language-Team: Japanese (https://www.transifex.com/okfn/teams/11162/ja/)\n" +"Plural-Forms: nplurals=1; plural=0\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,14 +131,14 @@ msgstr "データストアリソースが見つかりません" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "データディクショナリを保存しました。再定義したタイプは、リソースが次回データストアにアップロードされたときに有効になります。" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "不正なデータです (例: 数値が範囲外かテキストフィールドに入力された)" #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 @@ -161,7 +164,8 @@ msgstr "パワフルなクエリサポートがあるweb APIを通してリソ msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" "より詳しい情報は main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" " より詳しい情報は Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " +"

Site Title: This is the title of this CKAN instance " +"It appears in various places throughout CKAN.

" +"

Style: Choose from a list of simple variations of the" +" main colour scheme to get a very quick custom theme working.

" +"

Site Tag Logo: This is the logo that appears in the " +"header of all the CKAN instance templates.

About:" +" This text will appear on this CKAN instances about page.

Intro " "Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" "

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend <head> tag of every page. If you wish to customize the" +" templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" +"

Homepage: This is for choosing a predefined layout " +"for the modules that appear on your homepage.

" msgstr "" "

サイトタイトル: このCKANインスタンスのタイトルで、CKANの様々な場所で表示されます。

" "

スタイル: 手短にテーマのカスタマイズをするために、主な配色の種類のリストから選択して下さい。

" @@ -2901,11 +2907,13 @@ msgstr "CKAN 管理者" #, python-format msgid "" "

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" +"Proceed with care!

For guidance on using sysadmin features, see " +"the CKAN sysadmin " +"guide

" msgstr "" "

一人のsysadmin ユーザとして、あなたはこのCKANインスタンスに対する完全な権限を持っています。注意して作業してください!

\n" -"

sysadmin機能の利用についての説明は、CKANsysadminガイドを参照してください。

" +"

sysadmin機能の利用についての説明は、CKANsysadminガイドを参照してください。

" #: ckan/templates/admin/trash.html:20 msgid "Purge" @@ -3064,9 +3072,8 @@ msgstr "メンバー - {name} を削除してもよろしいですか?" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "管理" @@ -3098,8 +3105,7 @@ msgstr "グループを検索..." msgid "There are currently no groups for this site" msgstr "このサイトに所属しているグループがありません" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "作成方法" @@ -3148,22 +3154,19 @@ msgstr "新規ユーザ" msgid "If you wish to invite a new user, enter their email address." msgstr "もし新規ユーザを招待したい場合は、そのメールアドレスを入力して下さい。" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "ロール" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "このメンバーを削除してよろしいですか?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3184,8 +3187,8 @@ msgstr "ロールとは?" #: ckan/templates/group/member_new.html:80 msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " +"

Admin: Can edit group information, as well as manage" +" organization members.

Member: Can add/remove " "datasets from groups

" msgstr "" "

管理者: グループ情報の編集や組織のメンバーの管理が可能です。

" @@ -3259,12 +3262,11 @@ msgstr "グループ機能とは" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " -msgstr "" -"あなたはデータセットの集合を作成・管理するためにCKANグループを使うことができます。これは特定のプロジェクトやチームあるいは特定のテーマのためのデータセットのカタログに成り得ますし、人々があなたの所有する公開データセットを発見し,検索するのを助ける簡単な方法として使えます。" +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " +msgstr "あなたはデータセットの集合を作成・管理するためにCKANグループを使うことができます。これは特定のプロジェクトやチームあるいは特定のテーマのためのデータセットのカタログに成り得ますし、人々があなたの所有する公開データセットを発見し,検索するのを助ける簡単な方法として使えます。" #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 @@ -3327,13 +3329,14 @@ msgid "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3357,8 +3360,8 @@ msgstr "CKANへようこそ" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "これはCKANあるいはサイト全般についての良い紹介文です。我々はまだここへ行くためのコピーがありませんが、すぐに行くでしょう。" #: ckan/templates/home/snippets/promoted.html:19 @@ -3404,8 +3407,8 @@ msgstr "グループ" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" "ここではAdmin: Can add/edit and delete datasets, as well as " "manage organization members.

Editor: Can add and " "edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" +"

Member: Can view the organization's private datasets," +" but not add new datasets.

" msgstr "" "

管理者: " "データセットの追加/削除や組織メンバーの管理が可能です。

編集者:データセットの追加や編集が可能ですが、組織メンバーの管理はできません。

メンバー:" @@ -3569,12 +3572,12 @@ msgstr "組織について" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" +"

Organizations act like publishing departments for datasets (for " +"example, the Department of Health). This means that datasets can be " +"published by and belong to a department instead of an individual " +"user.

Within organizations, admins can assign roles and authorise " +"its members, giving individual users the right to publish datasets from " +"that particular organisation (e.g. Office of National Statistics).

" msgstr "" "

組織はデータセットを公開する部門のように振る舞います(例: " "保健省)。データセットが個々のユーザではなく、部門が所有して、部門によって公開されるということになります。

組織内では、管理者はメンバーに役割や権限を割り当てることができます。例えば個々のユーザに特定の組織" @@ -3582,11 +3585,10 @@ msgstr "" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " -msgstr "" -"CKANの組織は、データセットの集合を作成・管理・公開するために使われます。作成・編集・公開の権限レベルに応じて、ユーザは組織内で異なる役割を持てます。" +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " +msgstr "CKANの組織は、データセットの集合を作成・管理・公開するために使われます。作成・編集・公開の権限レベルに応じて、ユーザは組織内で異なる役割を持てます。" #: ckan/templates/organization/snippets/organization_form.html:10 msgid "My Organization" @@ -3602,8 +3604,9 @@ msgstr "私の組織についての簡単な情報" #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "この組織を削除しても良いですか? Note:この組織がパブリックとプライベートのデータセットを持つ間は削除はできません。" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3626,9 +3629,9 @@ msgstr "データセットとは?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" "CKANのデータセットはデータリソース (例: ファイル) " "の集合です。データリソースはその説明とその他の情報と固定のURLを持ちます。データセットはユーザがデータを検索するときに目にするものです。" @@ -3711,13 +3714,14 @@ msgstr "ビューを追加" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" "データストア拡張が有効でない場合、データ探索ビューは遅くて信頼性がないかもしれません。より詳しい情報はデータ探索の文書 を参照してください。" +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>データ探索の文書 " +"を参照してください。" #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:83 @@ -3727,8 +3731,9 @@ msgstr "追加" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" "これはこのデータセットの古いリビジョンです。%(timestamp)sに編集されました。現在のリビジョンとはかなり異なるかもしれません。" @@ -3800,11 +3805,10 @@ msgstr "サイト管理者が関連ビューのプラグインを有効にして #: ckan/templates/package/resource_read.html:140 msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" -"ビューがデータストアを要求するなら、データストアプラグインが有効でないか、データがデータストアに入っていないか、データストアによるデータ処理がまだ終わっていないかもしれません" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" +msgstr "ビューがデータストアを要求するなら、データストアプラグインが有効でないか、データがデータストアに入っていないか、データストアによるデータ処理がまだ終わっていないかもしれません" #: ckan/templates/package/resource_read.html:162 msgid "Additional Information" @@ -3871,8 +3875,8 @@ msgstr "新しいリソースの追加" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

This dataset has no data, why not " -"add some?

" +"

This dataset has no data, why not" +" add some?

" msgstr "" "

このデータセットにはデータがありませんので、 データを追加しましょう

" @@ -4018,11 +4022,12 @@ msgstr "アクティブ" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" "データライセンス " "あなたが上で選択したライセンスは、あなたがこのデータセットに追加するリソースファイルの内容に対してのみ適用されます。このフォームで投稿することで、あなたはフォームに入力しているメタデータの値を他の検索を試してください。

" #: ckan/templates/snippets/search_form.html:87 msgid "" -"

There was an error while searching." -" Please try again.

" +"

There was an error while " +"searching. Please try again.

" msgstr "

検索でエラーが発生しました。もう一度試してください。

" #: ckan/templates/snippets/search_result_text.html:15 @@ -4488,7 +4493,8 @@ msgstr "アカウント情報" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "プロフィールによって、他のCKANユーザにあなたが何者で、何をしているのかを知らせることができます" #: ckan/templates/user/edit_user_form.html:7 @@ -4716,8 +4722,8 @@ msgstr "初期化を申請" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "ユーザ名をそのボックスに入力すれば、新しいパスワードを入力するためのリンクをメールで送ります。" #: ckan/templates/user/snippets/followee_dropdown.html:15 @@ -4744,3 +4750,4 @@ msgstr "ユーザを検索" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "パスワードは8文字以上でなければいけません。" + diff --git a/ckan/i18n/km/LC_MESSAGES/ckan.po b/ckan/i18n/km/LC_MESSAGES/ckan.po index ddcf21b4644..72b2eeb599a 100644 --- a/ckan/i18n/km/LC_MESSAGES/ckan.po +++ b/ckan/i18n/km/LC_MESSAGES/ckan.po @@ -1,23 +1,25 @@ -# Translations template for ckan. +# Khmer translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Adrià Mercader , 2018\n" +"Language: km\n" "Language-Team: Khmer (https://www.transifex.com/okfn/teams/11162/km/)\n" +"Plural-Forms: nplurals=1; plural=0\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: km\n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,14 +130,14 @@ msgstr "" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 @@ -161,7 +163,8 @@ msgstr "" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -172,8 +175,8 @@ msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 @@ -311,7 +314,8 @@ msgstr "" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 @@ -1075,8 +1079,7 @@ msgstr "" #: ckan/controllers/home.py:75 ckan/views/home.py:60 #, python-format msgid "%s uses your email address if you need to reset your password." -msgstr "" -"%s ប្រើអ៊ីម៉ែលរបស់អ្នកប្រសិនបើអ្នកត្រូវការកំណត់ពាក្យសម្ងាត់របស់អ្នកឡើងវិញ។" +msgstr "%s ប្រើអ៊ីម៉ែលរបស់អ្នកប្រសិនបើអ្នកត្រូវការកំណត់ពាក្យសម្ងាត់របស់អ្នកឡើងវិញ។" #: ckan/controllers/package.py:304 msgid "Invalid search query: {error_message}" @@ -1303,8 +1306,8 @@ msgid "" "User \"%s\" is now registered but you are still logged in as \"%s\" from " "before" msgstr "" -"អ្នកប្រើ \"%s\" ឥឡូវនេះបានចុះឈ្មោះហើយ ប៉ុន្តែអ្នកនៅតែត្រូវបានកត់ត្រាចូលជា " -"\"%s\" ពីមុនមក" +"អ្នកប្រើ \"%s\" ឥឡូវនេះបានចុះឈ្មោះហើយ ប៉ុន្តែអ្នកនៅតែត្រូវបានកត់ត្រាចូលជា" +" \"%s\" ពីមុនមក" #: ckan/controllers/user.py:294 ckan/views/user.py:174 msgid "Unauthorized to edit a user." @@ -1805,8 +1808,8 @@ msgstr "" #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "" #: ckan/logic/validators.py:363 @@ -2587,8 +2590,8 @@ msgstr "" #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "" #: ckan/public-bs2/base/javascript/modules/resource-view-filters.js:9 @@ -2857,21 +2860,22 @@ msgstr "" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " +"

Site Title: This is the title of this CKAN instance " +"It appears in various places throughout CKAN.

" +"

Style: Choose from a list of simple variations of the" +" main colour scheme to get a very quick custom theme working.

" +"

Site Tag Logo: This is the logo that appears in the " +"header of all the CKAN instance templates.

About:" +" This text will appear on this CKAN instances about page.

Intro " "Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" "

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend <head> tag of every page. If you wish to customize the" +" templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" +"

Homepage: This is for choosing a predefined layout " +"for the modules that appear on your homepage.

" msgstr "" #: ckan/templates/admin/confirm_reset.html:3 @@ -2887,8 +2891,9 @@ msgstr "" #, python-format msgid "" "

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" +"Proceed with care!

For guidance on using sysadmin features, see " +"the CKAN sysadmin " +"guide

" msgstr "" #: ckan/templates/admin/trash.html:20 @@ -3048,9 +3053,8 @@ msgstr "" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "" @@ -3082,8 +3086,7 @@ msgstr "" msgid "There are currently no groups for this site" msgstr "" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "" @@ -3132,22 +3135,19 @@ msgstr "" msgid "If you wish to invite a new user, enter their email address." msgstr "" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "តួនាទី" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3168,8 +3168,8 @@ msgstr "" #: ckan/templates/group/member_new.html:80 msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " +"

Admin: Can edit group information, as well as manage" +" organization members.

Member: Can add/remove " "datasets from groups

" msgstr "" @@ -3241,10 +3241,10 @@ msgstr "" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" #: ckan/templates/group/snippets/history_revisions.html:10 @@ -3308,13 +3308,14 @@ msgid "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3331,8 +3332,8 @@ msgstr "" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" #: ckan/templates/home/snippets/promoted.html:19 @@ -3378,8 +3379,8 @@ msgstr "" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" @@ -3446,8 +3447,8 @@ msgstr "" #: ckan/templates/package/read.html:11 #: ckan/templates/package/snippets/package_basic_fields.html:98 #: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 msgid "Private" msgstr "" @@ -3502,8 +3503,8 @@ msgid "" "

Admin: Can add/edit and delete datasets, as well as " "manage organization members.

Editor: Can add and " "edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" +"

Member: Can view the organization's private datasets," +" but not add new datasets.

" msgstr "" #: ckan/templates/organization/members.html:14 @@ -3537,19 +3538,19 @@ msgstr "" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" +"

Organizations act like publishing departments for datasets (for " +"example, the Department of Health). This means that datasets can be " +"published by and belong to a department instead of an individual " +"user.

Within organizations, admins can assign roles and authorise " +"its members, giving individual users the right to publish datasets from " +"that particular organisation (e.g. Office of National Statistics).

" msgstr "" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" #: ckan/templates/organization/snippets/organization_form.html:10 @@ -3566,8 +3567,9 @@ msgstr "" #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3590,9 +3592,9 @@ msgstr "" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" #: ckan/templates/package/confirm_delete.html:12 @@ -3673,9 +3675,9 @@ msgstr "" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" #: ckan/templates/package/new_view.html:29 @@ -3686,8 +3688,9 @@ msgstr "បន្ថែម" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" #: ckan/templates/package/resource_edit_base.html:17 @@ -3757,9 +3760,9 @@ msgstr "" #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" #: ckan/templates/package/resource_read.html:162 @@ -3827,8 +3830,8 @@ msgstr "" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

This dataset has no data, why not " -"add some?

" +"

This dataset has no data, why not" +" add some?

" msgstr "" #: ckan/templates/package/search.html:52 @@ -3968,11 +3971,12 @@ msgstr "" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" #: ckan/templates/package/snippets/package_form.html:39 @@ -4292,8 +4296,8 @@ msgstr "" #: ckan/templates/snippets/search_form.html:87 msgid "" -"

There was an error while searching." -" Please try again.

" +"

There was an error while " +"searching. Please try again.

" msgstr "" #: ckan/templates/snippets/search_result_text.html:15 @@ -4434,7 +4438,8 @@ msgstr "" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" #: ckan/templates/user/edit_user_form.html:7 @@ -4619,8 +4624,7 @@ msgstr "" #: ckan/templates/user/perform_reset.html:45 msgid "Simply enter a new password and we'll update your account" -msgstr "" -"គ្រាន់តែបញ្ចូលពាក្យសម្ងាត់ថ្មី ហើយយើងនឹងធ្វើបច្ចុប្បន្នភាពគណនីរបស់អ្នក" +msgstr "គ្រាន់តែបញ្ចូលពាក្យសម្ងាត់ថ្មី ហើយយើងនឹងធ្វើបច្ចុប្បន្នភាពគណនីរបស់អ្នក" #: ckan/templates/user/read.html:27 msgid "User hasn't created any datasets." @@ -4665,11 +4669,12 @@ msgstr "" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" -"សូមបញ្ចូលឈ្មោះអ្នកប្រើរបស់អ្នកចូលទៅក្នុងប្រអប់នេះ ហើយយើងនឹងផ្ញើកអ៊ីមែលទៅអ្នក" -" ដោយុមានតំណភ្ជាប់ដើម្បីបញ្ចូលពាក្យសម្ងាត់ជាថ្មី។" +"សូមបញ្ចូលឈ្មោះអ្នកប្រើរបស់អ្នកចូលទៅក្នុងប្រអប់នេះ " +"ហើយយើងនឹងផ្ញើកអ៊ីមែលទៅអ្នក " +"ដោយុមានតំណភ្ជាប់ដើម្បីបញ្ចូលពាក្យសម្ងាត់ជាថ្មី។" #: ckan/templates/user/snippets/followee_dropdown.html:15 #: ckan/templates/user/snippets/followee_dropdown.html:16 @@ -4695,3 +4700,4 @@ msgstr "" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/ko_KR/LC_MESSAGES/ckan.po b/ckan/i18n/ko_KR/LC_MESSAGES/ckan.po index 537f8018bba..af09b6169c5 100644 --- a/ckan/i18n/ko_KR/LC_MESSAGES/ckan.po +++ b/ckan/i18n/ko_KR/LC_MESSAGES/ckan.po @@ -1,23 +1,26 @@ -# Translations template for ckan. +# Korean (South Korea) translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Adrià Mercader , 2018\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/okfn/teams/11162/ko_KR/)\n" +"Language: ko_KR\n" +"Language-Team: Korean (Korea) " +"(https://www.transifex.com/okfn/teams/11162/ko_KR/)\n" +"Plural-Forms: nplurals=1; plural=0\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,14 +131,14 @@ msgstr "데이터스토어 리소스를 찾을 수 없음" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "데이터가 유효하지 않습니다 (예를 들어, 수치값이 범위를 벗어나거나 텍스트 필드에 입력되었습니다). " #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 @@ -161,7 +164,8 @@ msgstr "강력한 질의 지원을 하는 웹 API를 통해 리소스 데이터 msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -172,8 +176,8 @@ msgstr "엔드포인트" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "데이터 API는 CKAN 액션 API의 다음 액션들을 통해 접근할 수 있습니다." #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 @@ -311,9 +315,11 @@ msgstr "데이터 API" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" -"핵심 CKAN 데이터 API와 데이터스토어 문서 참고.

" #: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 @@ -1800,8 +1806,8 @@ msgstr "이름은 최대 %i 글자입니다" #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "완전한 소문자 알파벳 (ascii) 문자와 기호입니다: -_" #: ckan/logic/validators.py:363 @@ -2582,8 +2588,8 @@ msgstr "파일을 업로드하기 위한 데이터를 가져올 수 없음" #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "파일을 업로드중입니다. 탐색을 위해 업로드를 중지하겠습니까?" #: ckan/public-bs2/base/javascript/modules/resource-view-filters.js:9 @@ -2854,33 +2860,34 @@ msgstr "CKAN 구성 옵션" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " +"

Site Title: This is the title of this CKAN instance " +"It appears in various places throughout CKAN.

" +"

Style: Choose from a list of simple variations of the" +" main colour scheme to get a very quick custom theme working.

" +"

Site Tag Logo: This is the logo that appears in the " +"header of all the CKAN instance templates.

About:" +" This text will appear on this CKAN instances about page.

Intro " "Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" "

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend <head> tag of every page. If you wish to customize the" +" templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" +"

Homepage: This is for choosing a predefined layout " +"for the modules that appear on your homepage.

" msgstr "" "

사이트명: CKAN 인스턴스의 이름으로 다양한 곳에서 보여집니다.

" -"

스타일: Choose from a list of simple variations of the main" -" colour scheme to get a very quick custom theme working.

사이트 " -"태그 로고: CKAN 인스턴스 템플릿의 헤더에 보여지는 로고입니다.

" -"

About: 이 텍스트는 CKAN 인스턴스의 about" -" page에 보여집니다.

Intro Text: 이 텍스트는 방문자를 환영하는 의미로 " -"CKAN 인스턴스의 home page에 보여집니다.

" -"

Custom CSS: 모든 페이지의 <head>태그에 보여지는 " -"CSS 블록입니다. 템플릿을 수정하려면 문서를 읽는 것을 " -"추천합니다.

Homepage:홈페이지에 보여줄 모듈의 미리 정의된 레이아웃을 " -"선택합니다.

" +"

스타일: Choose from a list of simple variations of the " +"main colour scheme to get a very quick custom theme working.

" +"

사이트 태그 로고: CKAN 인스턴스 템플릿의 헤더에 보여지는 로고입니다.

" +"

About: 이 텍스트는 CKAN 인스턴스의 about page에 보여집니다.

Intro " +"Text: 이 텍스트는 방문자를 환영하는 의미로 CKAN 인스턴스의 home page에 보여집니다.

Custom " +"CSS: 모든 페이지의 <head>태그에 보여지는 CSS 블록입니다. 템플릿을 " +"수정하려면 문서를 읽는 것을 추천합니다.

" +"

Homepage:홈페이지에 보여줄 모듈의 미리 정의된 레이아웃을 선택합니다.

" #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 @@ -2895,12 +2902,13 @@ msgstr "CKAN 관리" #, python-format msgid "" "

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" +"Proceed with care!

For guidance on using sysadmin features, see " +"the CKAN sysadmin " +"guide

" msgstr "" -"

sysadmin 사용자로써 CKAN 인스턴스에 대한 모든 권한을 갖고 있습니다. 주의를 갖고 처리하세요!

For " -"guidance on using sysadmin 특징을 사용하기 위한 방법은 CKAN sysadmin guide을 참조하세

" +"

sysadmin 사용자로써 CKAN 인스턴스에 대한 모든 권한을 갖고 있습니다. 주의를 갖고 처리하세요!

For" +" guidance on using sysadmin 특징을 사용하기 위한 방법은 CKAN sysadmin guide을 참조하세

" #: ckan/templates/admin/trash.html:20 msgid "Purge" @@ -3059,9 +3067,8 @@ msgstr "멤버의 삭제를 원합니까 - {name}?" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "관리하기" @@ -3093,8 +3100,7 @@ msgstr "그룹 검색" msgid "There are currently no groups for this site" msgstr "현재 이 사이트에 그룹이 없습니다." -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "하나를 생성하겠습니까?" @@ -3143,22 +3149,19 @@ msgstr "신규 사용자" msgid "If you wish to invite a new user, enter their email address." msgstr "신규 사용자를 초대하려면, 이메일 주소를 입력하세요." -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "역할" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "이 멤버의 삭제를 원합니까?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3179,8 +3182,8 @@ msgstr "역할이란?" #: ckan/templates/group/member_new.html:80 msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " +"

Admin: Can edit group information, as well as manage" +" organization members.

Member: Can add/remove " "datasets from groups

" msgstr "" "

Admin: 그룹 정보를 편집할 수 있고 기관 멤버를 관리할 수 있습니다.

" @@ -3254,13 +3257,13 @@ msgstr "그룹이란?" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" -"데이터셋의 집합을 생성하고 관리하기 위해 CKAN 그룹을 사용할 수 있습니다. 그룹은 특정한 프로젝트 또는 팀을 위한 카탈로그 데이터셋일" -" 수 있고, 또는 특정한 주제입니다. 그룹을 통해 다른 사용자들은 출판된 데이터셋을 찾거나 검색할 수 있습니다. " +"데이터셋의 집합을 생성하고 관리하기 위해 CKAN 그룹을 사용할 수 있습니다. 그룹은 특정한 프로젝트 또는 팀을 위한 카탈로그 " +"데이터셋일 수 있고, 또는 특정한 주제입니다. 그룹을 통해 다른 사용자들은 출판된 데이터셋을 찾거나 검색할 수 있습니다. " #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 @@ -3323,13 +3326,14 @@ msgid "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3339,15 +3343,16 @@ msgid "" "overview: http://ckan.org/features/

" msgstr "" -"

CKAN is the world’s leading open-source data portal platform.

CKAN" -" is a complete out-of-the-box software solution that makes data accessible " -"and usable – by providing tools to streamline publishing, sharing, finding " -"and using data (including storage of data and provision of robust data " -"APIs). CKAN is aimed at data publishers (national and regional governments, " -"companies and organizations) wanting to make their data open and " -"available.

CKAN is used by governments and user groups worldwide and " -"powers a variety of official and community data portals including portals " -"for local, national and international government, such as the UK’s CKAN is the world’s leading open-source data portal platform.

" +"

CKAN is a complete out-of-the-box software solution that makes data " +"accessible and usable – by providing tools to streamline publishing, " +"sharing, finding and using data (including storage of data and provision " +"of robust data APIs). CKAN is aimed at data publishers (national and " +"regional governments, companies and organizations) wanting to make their " +"data open and available.

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " @@ -3364,8 +3369,8 @@ msgstr "CKAN에 오신 것을 환영합니다" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "CKAN이나 사이트에 대해 서문입니다. " #: ckan/templates/home/snippets/promoted.html:19 @@ -3411,8 +3416,8 @@ msgstr "그룹" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" "Admin: Can add/edit and delete datasets, as well as " "manage organization members.

Editor: Can add and " "edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" +"

Member: Can view the organization's private datasets," +" but not add new datasets.

" msgstr "" "

관리자: 데이터셋을 추가/삭제/삭제할 수 있고, 조직 멤버를 관리할 수 있습니다.

" "

편집자: 데이터셋을 추가/편집할 수 있지만, 조직 멤버를 관리하지 못합니다.

" @@ -3576,26 +3581,26 @@ msgstr "조직이란?" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" +"

Organizations act like publishing departments for datasets (for " +"example, the Department of Health). This means that datasets can be " +"published by and belong to a department instead of an individual " +"user.

Within organizations, admins can assign roles and authorise " +"its members, giving individual users the right to publish datasets from " +"that particular organisation (e.g. Office of National Statistics).

" msgstr "" -"

기관은 데이터셋을 출판하는 부서와 유사합니다 (예. the Department of Health). 데이터셋은 개인 사용자가 아닌" -" 부서에 의해 출판되거나 소유되는 것을 의미합니다.

기관 내에서 어드민은 멤버들에게 역할과 권한을 부여할 수 있습니다. " -"멤버는 특정 기관으로부터 데이터셋 출판을 위한 권리를 부여받은 개인사용자입니다 (e.g. Office of National " -"Statistics).

" +"

기관은 데이터셋을 출판하는 부서와 유사합니다 (예. the Department of Health). 데이터셋은 개인 사용자가" +" 아닌 부서에 의해 출판되거나 소유되는 것을 의미합니다.

기관 내에서 어드민은 멤버들에게 역할과 권한을 부여할 수 " +"있습니다. 멤버는 특정 기관으로부터 데이터셋 출판을 위한 권리를 부여받은 개인사용자입니다 (e.g. Office of " +"National Statistics).

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" -"CKAN 기관은 데이터셋의 집합을 생성, 관리, 출판하는데 사용됩니다. 사용자는 기관내에서 서로 다른 역할을 갖을 수 있으며, 권한의 " -"등급에 따라 생성, 편집, 출판이 다릅니다." +"CKAN 기관은 데이터셋의 집합을 생성, 관리, 출판하는데 사용됩니다. 사용자는 기관내에서 서로 다른 역할을 갖을 수 있으며, " +"권한의 등급에 따라 생성, 편집, 출판이 다릅니다." #: ckan/templates/organization/snippets/organization_form.html:10 msgid "My Organization" @@ -3611,8 +3616,9 @@ msgstr "내 조직에 대한 일부 정보..." #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3635,9 +3641,9 @@ msgstr "데이터셋이란?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" "CKAN 데이터셋은 리소스에 대한 설명과 추가적인 정보를 갖고 있는 리소스의 집합으로, 고정된 URL을 갖고 있습니다. 데이터셋은 " "데이터를 탐색할 때 사용자가 보는 결과입니다." @@ -3720,14 +3726,14 @@ msgstr "뷰 추가하기" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the
Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" -"데이터스토어 확장판이 활성화되지 않으면, 데이터 탐색기 뷰는 느리거나 신뢰하지 못할 수 있습니다. 추가적인 정보는 다음을 참조하세요 Data Explorer " -"documentation. " +"데이터스토어 확장판이 활성화되지 않으면, 데이터 탐색기 뷰는 느리거나 신뢰하지 못할 수 있습니다. 추가적인 정보는 다음을 참조하세요" +" Data Explorer" +" documentation. " #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:83 @@ -3737,11 +3743,12 @@ msgstr "추가하기" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" -"%(timestamp)s에 편집된 데이터의 이전 버전입니다. 현재 버전과 차이가 있을 수 " -"있습니다." +"%(timestamp)s에 편집된 데이터의 이전 버전입니다. 현재 버전과 차이가 있을 " +"수 있습니다." #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" @@ -3810,9 +3817,9 @@ msgstr "사이트 관리자가 관련 있는 뷰 플러그인을 활성화하지 #: ckan/templates/package/resource_read.html:140 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" +"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 "" "뷰가 데이터스토어를 필요할 경우, 데이터스토어 플러그인을 활성화되지 않을 수 있거나, 데이터가 데이터 스토어에 저정되지 않을 수 " "있습니다. 또는 데이터 스토어는 데이터를 처리하는 것을 완료하지 않은 상태일 수 있습니다." @@ -3882,9 +3889,11 @@ msgstr "새로운 리소스 추가" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

This dataset has no data, why not " -"add some?

" -msgstr "

이 데이터셋에 데이터가 없습니다, 추가해 보세요?

" +"

This dataset has no data, why not" +" add some?

" +msgstr "" +"

이 데이터셋에 데이터가 없습니다, 추가해 " +"보세요?

" #: ckan/templates/package/search.html:52 msgid "API" @@ -4002,8 +4011,8 @@ msgid "" "href=\"http://opendefinition.org/licenses/\">opendefinition.org " msgstr "" "라이센스 정의와 추가적인 정보는 opendefinition.org에서 찾을 수 " -"있습니다" +"href=\"http://opendefinition.org/licenses/\">opendefinition.org에서 찾을 " +"수 있습니다" #: ckan/templates/package/snippets/package_basic_fields.html:76 #: ckan/templates/snippets/organization.html:23 @@ -4028,14 +4037,15 @@ msgstr "Active" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." -msgstr "" -"선택한 data license는 이 데이터셋에 추가하는 리소스 파일의 컨텐트에만 적용됩니다. 이 양식을 제출하면, data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." +msgstr "" +"선택한 data license는 이 데이터셋에 추가하는 리소스 파일의 컨텐트에만 적용됩니다. 이 양식을 제출하면, " +"Open Database " "License에 따라 metadata 값을 배포하는데 동의하는 것입니다. " #: ckan/templates/package/snippets/package_form.html:39 @@ -4355,8 +4365,8 @@ msgstr "

다른 검색을 시도하세요.

" #: ckan/templates/snippets/search_form.html:87 msgid "" -"

There was an error while searching." -" Please try again.

" +"

There was an error while " +"searching. Please try again.

" msgstr "

검색 중 오류가 발생했습니다. 다시 시도해주세요.

" #: ckan/templates/snippets/search_result_text.html:15 @@ -4497,7 +4507,8 @@ msgstr "계정 정보" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "프로파일을 CKAN 사용자가 볼 수 있도록 해 주세요" #: ckan/templates/user/edit_user_form.html:7 @@ -4725,8 +4736,8 @@ msgstr "요청 초기화" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "텍스트박스에 사용자 이름을 넣으면 새로운 비밀번호를 입력하기 위한 링크를 이메일로 보내드립니다" #: ckan/templates/user/snippets/followee_dropdown.html:15 @@ -4753,3 +4764,4 @@ msgstr "사용자 검색하기" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/lt/LC_MESSAGES/ckan.po b/ckan/i18n/lt/LC_MESSAGES/ckan.po index 4f5022d01a4..cc32ca77bb3 100644 --- a/ckan/i18n/lt/LC_MESSAGES/ckan.po +++ b/ckan/i18n/lt/LC_MESSAGES/ckan.po @@ -1,23 +1,28 @@ -# Translations template for ckan. +# Lithuanian translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Adrià Mercader , 2018\n" -"Language-Team: Lithuanian (https://www.transifex.com/okfn/teams/11162/lt/)\n" +"Language: lt\n" +"Language-Team: Lithuanian " +"(https://www.transifex.com/okfn/teams/11162/lt/)\n" +"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100" +" < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < " +"11) ? 1 : n % 1 != 0 ? 2: 3)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: lt\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,14 +133,14 @@ msgstr "" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 @@ -161,7 +166,8 @@ msgstr "" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -172,8 +178,8 @@ msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 @@ -311,7 +317,8 @@ msgstr "Duomenų API" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 @@ -864,8 +871,7 @@ msgstr "Negzistuoja poversijis, kurio id: %s" #: ckan/controllers/api.py:297 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "" -"Trūkstamas paieškos termas ('since_id=UUID' arba 'since_time=TIMESTAMP')" +msgstr "Trūkstamas paieškos termas ('since_id=UUID' arba 'since_time=TIMESTAMP')" #: ckan/controllers/api.py:309 #, python-format @@ -1306,8 +1312,8 @@ msgid "" "User \"%s\" is now registered but you are still logged in as \"%s\" from " "before" msgstr "" -"Naudotojas \"%s\" jau yra priregistruotas, bet Jūs vis dar esate prisijungę " -"kaip \"%s\" iš anksčiau" +"Naudotojas \"%s\" jau yra priregistruotas, bet Jūs vis dar esate " +"prisijungę kaip \"%s\" iš anksčiau" #: ckan/controllers/user.py:294 ckan/views/user.py:174 msgid "Unauthorized to edit a user." @@ -1832,8 +1838,8 @@ msgstr "Vardas turi būti daugiausiai %i simbolių ilgio" #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "" #: ckan/logic/validators.py:363 @@ -1877,7 +1883,9 @@ msgstr "Gairės \"%s\" ilgis yra didesnis nei maksimalus %i" #: ckan/logic/validators.py:430 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "Gairė \"%s\" turi būti sudaryta iš raidinių-skaitinių arba \"-_\" simbolių." +msgstr "" +"Gairė \"%s\" turi būti sudaryta iš raidinių-skaitinių arba \"-_\" " +"simbolių." #: ckan/logic/validators.py:438 #, python-format @@ -1917,8 +1925,8 @@ msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "" -"Redagavimas neleidžiamas, nes panašus į brukalą. Prašome vengti nuorodų savo" -" aprašyme." +"Redagavimas neleidžiamas, nes panašus į brukalą. Prašome vengti nuorodų " +"savo aprašyme." #: ckan/logic/validators.py:628 #, python-format @@ -2619,8 +2627,8 @@ msgstr "Nepavyko gauti duomenų iš įkelto failo" #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "" #: ckan/public-bs2/base/javascript/modules/resource-view-filters.js:9 @@ -2912,21 +2920,22 @@ msgstr "CKAN konfigūracijos parinktys" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " +"

Site Title: This is the title of this CKAN instance " +"It appears in various places throughout CKAN.

" +"

Style: Choose from a list of simple variations of the" +" main colour scheme to get a very quick custom theme working.

" +"

Site Tag Logo: This is the logo that appears in the " +"header of all the CKAN instance templates.

About:" +" This text will appear on this CKAN instances about page.

Intro " "Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" "

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend <head> tag of every page. If you wish to customize the" +" templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" +"

Homepage: This is for choosing a predefined layout " +"for the modules that appear on your homepage.

" msgstr "" #: ckan/templates/admin/confirm_reset.html:3 @@ -2942,8 +2951,9 @@ msgstr "" #, python-format msgid "" "

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" +"Proceed with care!

For guidance on using sysadmin features, see " +"the CKAN sysadmin " +"guide

" msgstr "" #: ckan/templates/admin/trash.html:20 @@ -3105,9 +3115,8 @@ msgstr "Ar tikrai norite ištrinti narį - {name}?" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "" @@ -3139,8 +3148,7 @@ msgstr "" msgid "There are currently no groups for this site" msgstr "Grupių šiam tinklapiui kol kas nėra" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "Gal sukurkite vieną?" @@ -3189,22 +3197,19 @@ msgstr "" msgid "If you wish to invite a new user, enter their email address." msgstr "" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "Vaidmuo" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "Ar tikrai norite ištrinti šį narį?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3225,8 +3230,8 @@ msgstr "Kas yra vaidmenys?" #: ckan/templates/group/member_new.html:80 msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " +"

Admin: Can edit group information, as well as manage" +" organization members.

Member: Can add/remove " "datasets from groups

" msgstr "" @@ -3298,10 +3303,10 @@ msgstr "Kas yra grupės?" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" #: ckan/templates/group/snippets/history_revisions.html:10 @@ -3365,13 +3370,14 @@ msgid "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3381,24 +3387,25 @@ msgid "" "overview: http://ckan.org/features/

" msgstr "" -"

CKAN yra pasaulyje pirmaujanti atviro-kodo duomenų portalo platforma.

" -"

CKAN yra visiškai paruoštas darbui programinės įrangos sprendimas, kuris" -" padaro duomenis pasiekiamus ir panaudojamus, suteikdamas įrankius " -"srautiniam publikavimui, dalinimuisi, paieškai ir duomenų naudojimui " -"(įskaitant duomenų talpinimą ir stabilaus duomenų API suteikimą). CKAN " -"taikinys yra duomenų publikuotojai (nacionalinės ir regioninės valdžios, " -"kompanijos ir organizacijos), norinčios atverti ir padaryti prieinamais savo" -" duomenis.

CKAN naudoja valdžios ir naudotojų grupės pasaulio mastu " -"ir palaiko įvairovę oficialių ir bendruomeninių duomenų portalų, įskaitant " -"portalus, skirtus vietinei, nacionalinei ar tarptautinei valdžiai, tokiai " -"kaip UK data.gov.uk ir Europos sąjungos " -"publicdata.eu, Brazilijos CKAN yra pasaulyje pirmaujanti atviro-kodo duomenų portalo " +"platforma.

CKAN yra visiškai paruoštas darbui programinės įrangos " +"sprendimas, kuris padaro duomenis pasiekiamus ir panaudojamus, " +"suteikdamas įrankius srautiniam publikavimui, dalinimuisi, paieškai ir " +"duomenų naudojimui (įskaitant duomenų talpinimą ir stabilaus duomenų API " +"suteikimą). CKAN taikinys yra duomenų publikuotojai (nacionalinės ir " +"regioninės valdžios, kompanijos ir organizacijos), norinčios atverti ir " +"padaryti prieinamais savo duomenis.

CKAN naudoja valdžios ir " +"naudotojų grupės pasaulio mastu ir palaiko įvairovę oficialių ir " +"bendruomeninių duomenų portalų, įskaitant portalus, skirtus vietinei, " +"nacionalinei ar tarptautinei valdžiai, tokiai kaip UK data.gov.uk ir Europos sąjungos publicdata.eu, Brazilijos dados.gov.br, Olandijos ir Nyderlandų " -"valdžių portalams, taip pat ir miestų bei savivaldybių tinklapiams US, UK, " -"Argentinoje, Suomijoje ir kitur.

CKAN:

CKAN: http://ckan.org/
CKAN gidas: http://ckan.org/tour/
Funkcionalumo" -" apžvalga: http://ckan.org/tour/
" +"Funkcionalumo apžvalga: http://ckan.org/features/

" #: ckan/templates/home/snippets/promoted.html:8 @@ -3407,11 +3414,11 @@ msgstr "Sveiki atvykę į CKAN" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" -"Tai graži įžanginė pastraipa apie CKAN ar apskritai šį tinklapį. Mes kol kas" -" neturime jokios kopijos, kad patektumėme čia, bet greitai turėsime" +"Tai graži įžanginė pastraipa apie CKAN ar apskritai šį tinklapį. Mes kol " +"kas neturime jokios kopijos, kad patektumėme čia, bet greitai turėsime" #: ckan/templates/home/snippets/promoted.html:19 msgid "This is a featured section" @@ -3456,8 +3463,8 @@ msgstr "" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" @@ -3524,8 +3531,8 @@ msgstr "Eskizas" #: ckan/templates/package/read.html:11 #: ckan/templates/package/snippets/package_basic_fields.html:98 #: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 msgid "Private" msgstr "Privatus" @@ -3580,14 +3587,15 @@ msgid "" "

Admin: Can add/edit and delete datasets, as well as " "manage organization members.

Editor: Can add and " "edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" +"

Member: Can view the organization's private datasets," +" but not add new datasets.

" msgstr "" "

Administratorius: Gali pridėti/redaguoti ir trinti " "rinkmenas, taip pat valdyti organizacijos narius.

" -"

Redaguotojas: Gali pridėti ir redaguoti rinkmenas, bet " -"ne valdyti organizacijos narius.

Narys: Gali matyti " -"organizacijos privačias rinkmenas, bet ne pridėti naujas rinkmenas.

" +"

Redaguotojas: Gali pridėti ir redaguoti rinkmenas, " +"bet ne valdyti organizacijos narius.

Narys: Gali " +"matyti organizacijos privačias rinkmenas, bet ne pridėti naujas " +"rinkmenas.

" #: ckan/templates/organization/members.html:14 msgid "{count} member" @@ -3623,19 +3631,19 @@ msgstr "Kas yra organizacijos?" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" +"

Organizations act like publishing departments for datasets (for " +"example, the Department of Health). This means that datasets can be " +"published by and belong to a department instead of an individual " +"user.

Within organizations, admins can assign roles and authorise " +"its members, giving individual users the right to publish datasets from " +"that particular organisation (e.g. Office of National Statistics).

" msgstr "" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" #: ckan/templates/organization/snippets/organization_form.html:10 @@ -3652,8 +3660,9 @@ msgstr "Truputis informacijos apie mano organizaciją..." #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3676,9 +3685,9 @@ msgstr "Kas yra rinkmena?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" #: ckan/templates/package/confirm_delete.html:12 @@ -3759,9 +3768,9 @@ msgstr "" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" #: ckan/templates/package/new_view.html:29 @@ -3772,11 +3781,12 @@ msgstr "Pridėti" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" -"Tai senas rinkmenos poversijis, redaguojant %(timestamp)s. Jis gali stipriai" -" skirtis nuo naujausio poversijo." +"Tai senas rinkmenos poversijis, redaguojant %(timestamp)s. Jis gali " +"stipriai skirtis nuo naujausio poversijo." #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" @@ -3845,9 +3855,9 @@ msgstr "" #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" #: ckan/templates/package/resource_read.html:162 @@ -3915,8 +3925,8 @@ msgstr "" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

This dataset has no data, why not " -"add some?

" +"

This dataset has no data, why not" +" add some?

" msgstr "" #: ckan/templates/package/search.html:52 @@ -3937,8 +3947,8 @@ msgid "" " You can also access this registry using the %(api_link)s (see " "%(api_doc_link)s) or download a %(dump_link)s. " msgstr "" -"Šį registrą taip pat galite pasiekti naudodamiesi %(api_link)s (žiūrėkite " -"%(api_doc_link)s) arba parsisiųskite %(dump_link)s." +"Šį registrą taip pat galite pasiekti naudodamiesi %(api_link)s (žiūrėkite" +" %(api_doc_link)s) arba parsisiųskite %(dump_link)s." #: ckan/templates/package/search.html:60 #, python-format @@ -3946,8 +3956,8 @@ msgid "" " You can also access this registry using the %(api_link)s (see " "%(api_doc_link)s). " msgstr "" -"Šį registrą taip pat galite pasiekti pasinaudodami %(api_link)s (žiūrėkite " -"%(api_doc_link)s)." +"Šį registrą taip pat galite pasiekti pasinaudodami %(api_link)s " +"(žiūrėkite %(api_doc_link)s)." #: ckan/templates/package/view_edit_base.html:9 msgid "All views" @@ -4062,11 +4072,12 @@ msgstr "" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" #: ckan/templates/package/snippets/package_form.html:39 @@ -4388,8 +4399,8 @@ msgstr "

Prašome pabandyti kitą paiešką.

" #: ckan/templates/snippets/search_form.html:87 msgid "" -"

There was an error while searching." -" Please try again.

" +"

There was an error while " +"searching. Please try again.

" msgstr "" #: ckan/templates/snippets/search_result_text.html:15 @@ -4548,7 +4559,8 @@ msgstr "" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" #: ckan/templates/user/edit_user_form.html:7 @@ -4776,8 +4788,8 @@ msgstr "" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" #: ckan/templates/user/snippets/followee_dropdown.html:15 @@ -4804,3 +4816,4 @@ msgstr "Ieškoti naudotojų" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/lv/LC_MESSAGES/ckan.po b/ckan/i18n/lv/LC_MESSAGES/ckan.po index 3fd4670b715..ae3b5009f21 100644 --- a/ckan/i18n/lv/LC_MESSAGES/ckan.po +++ b/ckan/i18n/lv/LC_MESSAGES/ckan.po @@ -1,23 +1,26 @@ -# Translations template for ckan. +# Latvian translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Adrià Mercader , 2018\n" +"Language: lv\n" "Language-Team: Latvian (https://www.transifex.com/okfn/teams/11162/lv/)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 :" +" 2)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,17 +131,17 @@ msgstr "Datu glabātuves resurss nav atrasts" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" -"Dati bija nederīgi (piemēram: skaitliska vērtība ir ārpus diapazona vai tika" -" ievietots teksta laukā)." +"Dati bija nederīgi (piemēram: skaitliska vērtība ir ārpus diapazona vai " +"tika ievietots teksta laukā)." #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 #: ckanext/datastore/logic/action.py:344 ckanext/datastore/logic/action.py:457 @@ -158,13 +161,15 @@ msgstr "CKAN datu API" #: ckanext/datastore/templates/ajax_snippets/api_info.html:25 msgid "Access resource data via a web API with powerful query support" msgstr "" -"Piekļut resursu datiem izmantojot tīmekļa API ar spēcīgu vaicājumu atbalstu" +"Piekļut resursu datiem izmantojot tīmekļa API ar spēcīgu vaicājumu " +"atbalstu" #: ckanext/datastore/templates/ajax_snippets/api_info.html:26 msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -175,8 +180,8 @@ msgstr "Galapunkts" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "Data API var piekļūt, izmantojot sekojošas CKAN API darbības." #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 @@ -314,12 +319,13 @@ msgstr "Datu API" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" "Sīkāka informācija galvenā CKAN datu API un DataStore dokumentācija ." +"target=\"_blank\"> galvenā CKAN datu API un DataStore dokumentācija " +".

" #: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 msgid "Table" @@ -870,8 +876,7 @@ msgstr "Nav izmaiņu ar šādu identifikatoru: %s" #: ckan/controllers/api.py:297 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "" -"Trūkst meklēšanas termins ('since_id=UUID' vai 'since_time=TIMESTAMP')" +msgstr "Trūkst meklēšanas termins ('since_id=UUID' vai 'since_time=TIMESTAMP')" #: ckan/controllers/api.py:309 #, python-format @@ -1312,8 +1317,8 @@ msgid "" "User \"%s\" is now registered but you are still logged in as \"%s\" from " "before" msgstr "" -"Lietotājs \"%s\" ir reģistrēts, bet joprojām lietotājs pieteicies sistēmā ar" -" iepriekšējo lietotāju \"%s\"" +"Lietotājs \"%s\" ir reģistrēts, bet joprojām lietotājs pieteicies sistēmā" +" ar iepriekšējo lietotāju \"%s\"" #: ckan/controllers/user.py:294 ckan/views/user.py:174 msgid "Unauthorized to edit a user." @@ -1830,10 +1835,9 @@ msgstr "Nosaukumam jābūt maksimāli %i simbolus garam" #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" -msgstr "" -"Jābūt tikai mazo burtu un ciparu (ASCII) simboliem un šādiem simboliem: -_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" +msgstr "Jābūt tikai mazo burtu un ciparu (ASCII) simboliem un šādiem simboliem: -_" #: ckan/logic/validators.py:363 msgid "That URL is already in use." @@ -1916,8 +1920,8 @@ msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "" -"Rediģēšana nav atļauta, jo tas izskatās pēc suragātteksta. Izvairieties no " -"saitēm jūsu aprakstā." +"Rediģēšana nav atļauta, jo tas izskatās pēc suragātteksta. Izvairieties " +"no saitēm jūsu aprakstā." #: ckan/logic/validators.py:628 #, python-format @@ -2017,7 +2021,8 @@ msgstr "Mēģina izveidot organizāciju kā kategoriju" #: ckan/logic/action/create.py:896 msgid "You must supply a package id or name (parameter \"package\")." msgstr "" -"Jums ir jānorāda paketes identifikators vai nosaukums (rādītājs \"pakete\")." +"Jums ir jānorāda paketes identifikators vai nosaukums (rādītājs " +"\"pakete\")." #: ckan/logic/action/create.py:899 msgid "You must supply a rating (parameter \"rating\")." @@ -2161,8 +2166,7 @@ msgstr "Lietotājam %s nav tiesības lai rediģētu šīs kategorijas" #: ckan/logic/auth/create.py:38 #, python-format msgid "User %s not authorized to add dataset to this organization" -msgstr "" -"Lietotājam %s nav tiesību, lai pievienotu datu kopas šai organizācijai" +msgstr "Lietotājam %s nav tiesību, lai pievienotu datu kopas šai organizācijai" #: ckan/logic/auth/create.py:61 msgid "No dataset id provided, cannot check auth." @@ -2619,11 +2623,11 @@ msgstr "Nevar iegūt datus par augšupielādēto failu" #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "" -"Jūs augšupielādējat failu. Vai tiešām vēlaties doties prom, un apturēt šo " -"augšupielādi?" +"Jūs augšupielādējat failu. Vai tiešām vēlaties doties prom, un apturēt šo" +" augšupielādi?" #: ckan/public-bs2/base/javascript/modules/resource-view-filters.js:9 #: ckan/public/base/javascript/modules/resource-view-filters.js:9 @@ -2907,34 +2911,35 @@ msgstr "CKAN iestatījumu iespējas" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " +"

Site Title: This is the title of this CKAN instance " +"It appears in various places throughout CKAN.

" +"

Style: Choose from a list of simple variations of the" +" main colour scheme to get a very quick custom theme working.

" +"

Site Tag Logo: This is the logo that appears in the " +"header of all the CKAN instance templates.

About:" +" This text will appear on this CKAN instances about page.

Intro " "Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" "

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend <head> tag of every page. If you wish to customize the" +" templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" +"

Homepage: This is for choosing a predefined layout " +"for the modules that appear on your homepage.

" msgstr "" -"

Lapas virsraksts: Šis CKAN instances nosaukums parādās " -"vairākās vietās CKAN risinājumā.

Stils: Izvēlieties " -"no saraksta dažādu krāsu tēmas, lai ātri un vienkārši iegūtu pielāgotu " -"tēmu.

Site Tag Logo: Šis ir logo, kas parādās CKAN " -"instances galvenē.

Par: Teksts, kas parādīsies CKAN " -"instances ”Par” lapā.

" -"

Ievadteksts: Teksts, kas parādīsies CKAN instances sākumlapā kā sveiciens lapas apmeklētājiem.

" -"

Pielāgots CSS: Šis ir CSS bloks, kas parādīsies " -"<head> tagā katrā lapā. Ja jūs vēlaties plašāku " -"risinājuma izskata pielāgojumu mēs rekomendējam lasīt dokumentāciju .

" +"

Lapas virsraksts: Šis CKAN instances nosaukums " +"parādās vairākās vietās CKAN risinājumā.

Stils: " +"Izvēlieties no saraksta dažādu krāsu tēmas, lai ātri un vienkārši iegūtu " +"pielāgotu tēmu.

Site Tag Logo: Šis ir logo, kas " +"parādās CKAN instances galvenē.

Par: Teksts, kas " +"parādīsies CKAN instances ”Par” lapā.

" +"

Ievadteksts: Teksts, kas parādīsies CKAN instances sākumlapā kā sveiciens lapas " +"apmeklētājiem.

Pielāgots CSS: Šis ir CSS bloks, " +"kas parādīsies <head> tagā katrā lapā. Ja jūs vēlaties" +" plašāku risinājuma izskata pielāgojumu mēs rekomendējam lasīt " +"dokumentāciju .

" "

Sākumlapa: Paredzēts, lai veiktu sākumlapas " "iepriekšdefinēto moduļu izkārtojumu sākumlapā.

" @@ -2951,11 +2956,12 @@ msgstr "Administrēt CKAN" #, python-format msgid "" "

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" +"Proceed with care!

For guidance on using sysadmin features, see " +"the CKAN sysadmin " +"guide

" msgstr "" -"

Kā sistēmas administratora lietotājam, Jums ir pilnīga kontrole pār šo " -"CKAN instanci. Rīkojieties uzmanīgi!

Lai skaidrotu izmantojamās " +"

Kā sistēmas administratora lietotājam, Jums ir pilnīga kontrole pār šo" +" CKAN instanci. Rīkojieties uzmanīgi!

Lai skaidrotu izmantojamās " "sistēmas administratora iespējas, lasiet CKAN sistēmas administratora rokasgrāmatu " @@ -3116,9 +3122,8 @@ msgstr "Vai tiešām vēlaties dzēst biedru - {name}?" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "Pārvaldīt" @@ -3150,8 +3155,7 @@ msgstr "Meklē kategorijas..." msgid "There are currently no groups for this site" msgstr "Pašlaik nav kategorijas šajā vietnē" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "Kā būtu ar izveidošanu?" @@ -3183,8 +3187,7 @@ msgstr "Eksistējošs lietotājs" #: ckan/templates/group/member_new.html:21 #: ckan/templates/organization/member_new.html:22 msgid "If you wish to add an existing user, search for their username below." -msgstr "" -"Ja vēlaties pievienot esošu lietotāju, meklējiet tā lietotājvārdu zemāk." +msgstr "Ja vēlaties pievienot esošu lietotāju, meklējiet tā lietotājvārdu zemāk." #: ckan/templates/group/member_new.html:38 #: ckan/templates/organization/member_new.html:39 @@ -3201,22 +3204,19 @@ msgstr "Jauns lietotājs" msgid "If you wish to invite a new user, enter their email address." msgstr "Ja vēlaties uzaicināt jaunu lietotāju, ievadiet tā epasta adresi." -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "Loma" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "Vai tiešām vēlaties dzēst šo biedru?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3237,13 +3237,13 @@ msgstr "Kas ir lomas?" #: ckan/templates/group/member_new.html:80 msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " +"

Admin: Can edit group information, as well as manage" +" organization members.

Member: Can add/remove " "datasets from groups

" msgstr "" -"

Admin: , var rediģēt kategorijas informāciju, kā arī " -"pārvaldīt organizācijas biedrus

Biedrs. Var " -"pievienot/noņemt datu kopas no kategorijām " +"

Admin: , var rediģēt kategorijas informāciju, kā " +"arī pārvaldīt organizācijas biedrus

Biedrs. " +" Var pievienot/noņemt datu kopas no kategorijām " #: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 #: ckan/templates/group/new.html:7 @@ -3313,15 +3313,15 @@ msgstr "Kas ir kategorija?" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" -"Jūs varat izmantot kategorijas, lai izveidotu un pārvaldītu kolekcijas datu " -"kopām. Tās var būt katalogs datu kopām par konkrētu projektu vai komandu, " -"vai par konkrētu tēmu, vai arī kā ļoti vienkāršs veids, kā palīdzēt " -"cilvēkiem atrast un meklēt savas publicētās datu kopas." +"Jūs varat izmantot kategorijas, lai izveidotu un pārvaldītu kolekcijas " +"datu kopām. Tās var būt katalogs datu kopām par konkrētu projektu vai " +"komandu, vai par konkrētu tēmu, vai arī kā ļoti vienkāršs veids, kā " +"palīdzēt cilvēkiem atrast un meklēt savas publicētās datu kopas." #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 @@ -3384,13 +3384,14 @@ msgid "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3402,9 +3403,9 @@ msgid "" msgstr "" "

CKAN ir pasaulē vadošais atvērtā koda datu publicēšanas portāls.

" "

CKAN ir pilnīgs out-of-the-box programmatūras risinājums, kas padara " -"pieejamus un izmantojamus datus - nodrošinot instrumentus, lai racionalizētu" -" publicēšanu, koplietošanu, meklēšanu un datu izmantošanu (ieskaitot datu " -"uzglabāšanu un spēcīgu datu API).

" +"pieejamus un izmantojamus datus - nodrošinot instrumentus, lai " +"racionalizētu publicēšanu, koplietošanu, meklēšanu un datu izmantošanu " +"(ieskaitot datu uzglabāšanu un spēcīgu datu API).

" #: ckan/templates/home/snippets/promoted.html:8 msgid "Welcome to CKAN" @@ -3412,19 +3413,19 @@ msgstr "Laipni lūgti CKAN" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" "Lorem Ipsum – tas ir teksta salikums, kuru izmanto poligrāfijā un " "maketēšanas darbos. Lorem Ipsum ir kļuvis par vispārpieņemtu teksta " -"aizvietotāju kopš 16. gadsimta sākuma. Tajā laikā kāds nezināms iespiedējs " -"izveidoja teksta fragmentu, lai nodrukātu grāmatu ar burtu paraugiem. Tas ir" -" ne tikai pārdzīvojis piecus gadsimtus, bet bez ievērojamām izmaiņām " -"saglabājies arī mūsdienās, pārejot uz datorizētu teksta apstrādi. Tā " -"popularizēšanai 60-tajos gados kalpoja Letraset burtu paraugu publicēšana ar" -" Lorem Ipsum teksta fragmentiem un, nesenā pagātnē, tādas maketēšanas " -"programmas kā Aldus PageMaker, kuras šablonu paraugos ir izmantots Lorem " -"Ipsum teksts." +"aizvietotāju kopš 16. gadsimta sākuma. Tajā laikā kāds nezināms " +"iespiedējs izveidoja teksta fragmentu, lai nodrukātu grāmatu ar burtu " +"paraugiem. Tas ir ne tikai pārdzīvojis piecus gadsimtus, bet bez " +"ievērojamām izmaiņām saglabājies arī mūsdienās, pārejot uz datorizētu " +"teksta apstrādi. Tā popularizēšanai 60-tajos gados kalpoja Letraset burtu" +" paraugu publicēšana ar Lorem Ipsum teksta fragmentiem un, nesenā " +"pagātnē, tādas maketēšanas programmas kā Aldus PageMaker, kuras šablonu " +"paraugos ir izmantots Lorem Ipsum teksts." #: ckan/templates/home/snippets/promoted.html:19 msgid "This is a featured section" @@ -3469,13 +3470,13 @@ msgstr "kategorijas" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" "Šeit jūs varat izmantot samazināto formatējumu" +"reference\" data-target=\"popover\" data-content=\"%(markdown_tooltip)s\"" +" data-html=\"true\">samazināto formatējumu" #: ckan/templates/macros/form.html:277 msgid "This field is required" @@ -3540,8 +3541,8 @@ msgstr "Sagatave" #: ckan/templates/package/read.html:11 #: ckan/templates/package/snippets/package_basic_fields.html:98 #: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 msgid "Private" msgstr "Privāts" @@ -3596,17 +3597,17 @@ msgid "" "

Admin: Can add/edit and delete datasets, as well as " "manage organization members.

Editor: Can add and " "edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" +"

Member: Can view the organization's private datasets," +" but not add new datasets.

" msgstr "" "

Admin: Var pievienot, mainīt un dzēst datu kopas, " "pārvaldīt (pievienot, mainīt, dzēst) organizācijas biedru, skatīt un " "lejupielādēt datu kopas, sekot datu kopām, organizācijām, datu kopu " "grupām

Editor:−\tpievienot un mainīt datu kopas, " "skatīt un lejupielādēt datu kopas, sekot datu kopām, organizācijām, datu " -"kopu grupām

Member:\tskatīt organizācijas privātās " -"datu kopas, skatīt un lejupielādēt datu kopas, sekot datu kopām, " -"organizācijām, datu kopu grupām.

" +"kopu grupām

Member:\tskatīt organizācijas " +"privātās datu kopas, skatīt un lejupielādēt datu kopas, sekot datu kopām," +" organizācijām, datu kopu grupām.

" #: ckan/templates/organization/members.html:14 msgid "{count} member" @@ -3641,29 +3642,30 @@ msgstr "Kas ir organizācijas?" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" +"

Organizations act like publishing departments for datasets (for " +"example, the Department of Health). This means that datasets can be " +"published by and belong to a department instead of an individual " +"user.

Within organizations, admins can assign roles and authorise " +"its members, giving individual users the right to publish datasets from " +"that particular organisation (e.g. Office of National Statistics).

" msgstr "" "

Organizācija darbojās, kā datu kopu publicēšanas departaments (piem, " "veselības departaments). Tas nozīmē ka datu kopas var tik publicētas zem " "kāda departamenta nevis zem individuāla lietotāja.

Organizācijās, " -"administratori var piešķirt lomas un atļaut tās biedriem, piešķirt citiem " -"lietotājiem tiesības publicēt datu kopu no konkrētās organizācijas " +"administratori var piešķirt lomas un atļaut tās biedriem, piešķirt citiem" +" lietotājiem tiesības publicēt datu kopu no konkrētās organizācijas " "(piemēram, Valsts statistikas birojs).

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" -"CKAN organizācijas tiek izmantoti, lai izveidotu, pārvaldītu un publicētu " -"datu kopu kolekcijas. Lietotāji var būt ar dažādām lomām organizācijā, " -"atkarībā piešķirtajām tiesībām tie var izveidot, rediģēt un publicēt datus." +"CKAN organizācijas tiek izmantoti, lai izveidotu, pārvaldītu un publicētu" +" datu kopu kolekcijas. Lietotāji var būt ar dažādām lomām organizācijā, " +"atkarībā piešķirtajām tiesībām tie var izveidot, rediģēt un publicēt " +"datus." #: ckan/templates/organization/snippets/organization_form.html:10 msgid "My Organization" @@ -3679,8 +3681,9 @@ msgstr "Nedaudz informācijas par manu organizāciju ..." #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3703,12 +3706,13 @@ msgstr "Kas ir datu kopas?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" -"CKAN datu kopa ir datu resursu kolekcija (piemēram, faili), kopā ar aprakstu" -" un citu informāciju. Datu kopas ir tas, ko lietotāji redz, meklējot datus." +"CKAN datu kopa ir datu resursu kolekcija (piemēram, faili), kopā ar " +"aprakstu un citu informāciju. Datu kopas ir tas, ko lietotāji redz, " +"meklējot datus." #: ckan/templates/package/confirm_delete.html:12 msgid "Are you sure you want to delete dataset - {name}?" @@ -3788,15 +3792,15 @@ msgstr "Pievienot skatu" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" -"Datu pārlūka skats var būt lēns un neuzticams kamēr nav pieslēgts DataStore " -"paplašinājums. Lai iegūtu vairāk informācijas, lūdzu, skatīt Data Explorer " -"dokumentāciju ." +"Datu pārlūka skats var būt lēns un neuzticams kamēr nav pieslēgts " +"DataStore paplašinājums. Lai iegūtu vairāk informācijas, lūdzu, skatīt Data " +"Explorer dokumentāciju ." #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:83 @@ -3806,11 +3810,12 @@ msgstr "Pievienot" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" -"Šīs ir vecas datu kopas izmaiņas, kas tika rediģētas %(timestamp)s. Tās var " -"būtiski atšķirties no pašreizējām izmaiņām." +"Šīs ir vecas datu kopas izmaiņas, kas tika rediģētas %(timestamp)s. Tās " +"var būtiski atšķirties no pašreizējām izmaiņām." #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" @@ -3876,18 +3881,18 @@ msgstr "Nav izveidots skats, kas ir piemērots šim resursam" #: ckan/templates/package/resource_read.html:139 msgid "The site administrators may not have enabled the relevant view plugins" msgstr "" -"Šīs vietnes administrators, iespējams, nav iespējojis attiecīgos apskates " -"spraudni" +"Šīs vietnes administrators, iespējams, nav iespējojis attiecīgos apskates" +" spraudni" #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" "Ja skatam nepieciešama datu glabātuve, datu glabātuves spraudnis nav " -"iespējots vai dati nevar būt nogadāti datu glabātuvē, vai datu glabātuve vēl" -" nav pabeigusi datu apstrādi" +"iespējots vai dati nevar būt nogadāti datu glabātuvē, vai datu glabātuve " +"vēl nav pabeigusi datu apstrādi" #: ckan/templates/package/resource_read.html:162 msgid "Additional Information" @@ -3954,11 +3959,11 @@ msgstr "Pievienot jaunu resursu" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

This dataset has no data, why not " -"add some?

" +"

This dataset has no data, why not" +" add some?

" msgstr "" -"

Šai datu kopai nav datu, kādēļ gan " -"nepievienot?

" +"

Šai datu kopai nav datu, kādēļ gan" +" nepievienot?

" #: ckan/templates/package/search.html:52 msgid "API" @@ -4103,16 +4108,17 @@ msgstr "Aktīvs" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" -"Izvēlētā datu licence attiecas tikai uz resursu failu saturu, kuru " -"Jūs pievienojat šai datu kopai. Iesniedzot šo formu, Jūs piekrītat publicēt " -"metadatu vērtības, kuras Jūs ievadijāt šajā formā zem Atvērto datubāzu " +"Izvēlētā datu licence attiecas tikai uz resursu failu saturu, kuru" +" Jūs pievienojat šai datu kopai. Iesniedzot šo formu, Jūs piekrītat " +"publicēt metadatu vērtības, kuras Jūs ievadijāt šajā formā zem Atvērto datubāzu " "licences." #: ckan/templates/package/snippets/package_form.html:39 @@ -4436,8 +4442,8 @@ msgstr "

Lūdzu, mēģiniet citu meklēšanu.

" #: ckan/templates/snippets/search_form.html:87 msgid "" -"

There was an error while searching." -" Please try again.

" +"

There was an error while " +"searching. Please try again.

" msgstr "" "

Radās kļūda meklējot. Lūdzu " "mēģiniet vēlreiz.

" @@ -4592,10 +4598,11 @@ msgstr "Konta informācija" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" -"Jūsu profils ļauj citiem CKAN lietotājiem uzzināt par to, kas jūs esat un ko" -" jūs darāt." +"Jūsu profils ļauj citiem CKAN lietotājiem uzzināt par to, kas jūs esat un" +" ko jūs darāt." #: ckan/templates/user/edit_user_form.html:7 msgid "Change details" @@ -4687,7 +4694,8 @@ msgstr "Aizmirsi savu paroli?" #: ckan/templates/user/login.html:44 msgid "No problem, use our password recovery form to reset it." msgstr "" -"Nav problēmu, izmantojiet mūsu paroles atjaunošanas formu, lai atjaunotu to." +"Nav problēmu, izmantojiet mūsu paroles atjaunošanas formu, lai atjaunotu " +"to." #: ckan/templates/user/login.html:47 msgid "Forgot your password?" @@ -4720,8 +4728,7 @@ msgstr "Jūs esat jau pieteicies" #: ckan/templates/user/logout_first.html:22 msgid "You need to log out before you can log in with another account." -msgstr "" -"Jums ir nepieciešams atteikties no sistēmas, lai pieteiktos ar citu kontu." +msgstr "Jums ir nepieciešams atteikties no sistēmas, lai pieteiktos ar citu kontu." #: ckan/templates/user/logout_first.html:23 msgid "Log out now" @@ -4824,11 +4831,11 @@ msgstr "Pieprasīt atiestatīšanu" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" -"Ievadiet savu lietotājvārdu lodziņā, un mēs nosūtīsim jums e-pastu ar saiti," -" lai ievadītu jaunu paroli." +"Ievadiet savu lietotājvārdu lodziņā, un mēs nosūtīsim jums e-pastu ar " +"saiti, lai ievadītu jaunu paroli." #: ckan/templates/user/snippets/followee_dropdown.html:15 #: ckan/templates/user/snippets/followee_dropdown.html:16 @@ -4854,3 +4861,4 @@ msgstr "Meklēt lietotājus" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/mk/LC_MESSAGES/ckan.po b/ckan/i18n/mk/LC_MESSAGES/ckan.po index 9d055c6e98b..478f7cc3aa0 100644 --- a/ckan/i18n/mk/LC_MESSAGES/ckan.po +++ b/ckan/i18n/mk/LC_MESSAGES/ckan.po @@ -1,23 +1,28 @@ -# Translations template for ckan. +# Macedonian translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 +# Aleksandar Jovanov , 2018 +# Konstantin Sivakov , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Konstantin Sivakov , 2018\n" -"Language-Team: Macedonian (https://www.transifex.com/okfn/teams/11162/mk/)\n" +"Language: mk\n" +"Language-Team: Macedonian " +"(https://www.transifex.com/okfn/teams/11162/mk/)\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: mk\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,19 +133,19 @@ msgstr "Ресурсот не е пронајден во податочното #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" "Зачуван е Речникот на податоци. Секоја промена на типот на податок ќе се " "рефлектира кога ресурсот е повторно прикачен во податочното складиште." #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" -"Податоците не се валидни (на пример: бројна вредност е надвор од опсегот или" -" била внесена во поле за текст)." +"Податоците не се валидни (на пример: бројна вредност е надвор од опсегот " +"или била внесена во поле за текст)." #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 #: ckanext/datastore/logic/action.py:344 ckanext/datastore/logic/action.py:457 @@ -167,7 +172,8 @@ msgstr "" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" "Дополнителни информации во main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" "Дополнителни информации во главната документација на CKAN API за податоци и Складиште" -" на податоци .

" +"target=\"_blank\">главната документација на CKAN API за податоци и " +"Складиште на податоци .

" #: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 msgid "Table" @@ -734,8 +740,7 @@ msgstr "Линк до веб страна" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "eg. http://example.com (if blank uses resource url)" -msgstr "" -"пр. https://sajt.com (доколку остани празно се користи линк до ресурсот)" +msgstr "пр. https://sajt.com (доколку остани празно се користи линк до ресурсот)" #: ckan/templates/dataviewer/snippets/data_preview.html:23 #: ckan/templates/package/snippets/resource_view.html:64 @@ -820,8 +825,8 @@ msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "" -"Не може да се исчисти податочниот сет %s затоа што поврзаната ревизија %s " -"вклучува податочни сетови кои не се избришани %s" +"Не може да се исчисти податочниот сет %s затоа што поврзаната ревизија %s" +" вклучува податочни сетови кои не се избришани %s" #: ckan/controllers/admin.py:183 ckan/views/admin.py:197 #, python-format @@ -908,8 +913,7 @@ msgstr "Погрешна вредност на qjson: %r" #: ckan/controllers/api.py:392 msgid "Request params must be in form of a json encoded dictionary." -msgstr "" -"Параметрите за барањето мора да бидат во форма на json енкодиран речник." +msgstr "Параметрите за барањето мора да бидат во форма на json енкодиран речник." #: ckan/controllers/feed.py:234 ckan/controllers/group.py:128 #: ckan/controllers/group.py:226 ckan/controllers/group.py:394 @@ -1088,7 +1092,8 @@ msgstr "Не сте овластени за да ги погледнете сл #: ckan/controllers/home.py:35 msgid "This site is currently off-line. Database is not initialised." msgstr "" -"Овај сајт е моментално недостапен. Базата на податоци не е иницијализирана." +"Овај сајт е моментално недостапен. Базата на податоци не е " +"иницијализирана." #: ckan/controllers/home.py:73 ckan/views/home.py:58 #, python-format @@ -1133,8 +1138,8 @@ msgstr "Невалиден формат за ревизија: %r" #: ckan/controllers/package.py:415 msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." msgstr "" -"Прегледување на податочни сетови од тип \"{package_type}\" не е поддржано " -"({file_!r})." +"Прегледување на податочни сетови од тип \"{package_type}\" не е поддржано" +" ({file_!r})." #: ckan/controllers/package.py:454 ckan/controllers/package.py:839 #: ckan/controllers/package.py:940 ckan/controllers/package.py:988 @@ -1331,8 +1336,8 @@ msgid "" "User \"%s\" is now registered but you are still logged in as \"%s\" from " "before" msgstr "" -"Корисникот \"%s\" е сега регистриран, но сè уште сте најавени како \"%s\" " -"од претходно" +"Корисникот \"%s\" е сега регистриран, но сè уште сте најавени како " +"\"%s\" од претходно" #: ckan/controllers/user.py:294 ckan/views/user.py:174 msgid "Unauthorized to edit a user." @@ -1841,8 +1846,8 @@ msgstr "Името мора да биде најмногу %i карактери #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "Мора да бидат мали алфанумерички карактери (ascii) и овие симболи: -_" #: ckan/logic/validators.py:363 @@ -1886,8 +1891,7 @@ msgstr "Должината на тагот “%s“ е поголем од на #: ckan/logic/validators.py:430 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "" -"Тагот “%s“ мора да биде од алфанумерички карактери или од симболите: -_." +msgstr "Тагот “%s“ мора да биде од алфанумерички карактери или од симболите: -_." #: ckan/logic/validators.py:438 #, python-format @@ -1927,8 +1931,8 @@ msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "" -"Уредувањето не е дозволено бидејќи изгледа како спам. Ве молиме избегнувајте" -" линкови во вашиот опис." +"Уредувањето не е дозволено бидејќи изгледа како спам. Ве молиме " +"избегнувајте линкови во вашиот опис." #: ckan/logic/validators.py:628 #, python-format @@ -1943,8 +1947,8 @@ msgstr "Името на вокабуларот веќе постои." #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "" -"Не може да се промени вредноста на клучот од %s на %s. Овој клуч е само за " -"читање." +"Не може да се промени вредноста на клучот од %s на %s. Овој клуч е само " +"за читање." #: ckan/logic/validators.py:651 msgid "Tag vocabulary was not found." @@ -2096,8 +2100,7 @@ msgstr "REST API: Избришете член: %s" #: ckan/logic/action/delete.py:358 msgid "Organization cannot be deleted while it still has datasets" -msgstr "" -"Организацијата неможе да биде избришана додека поседува податочни сетови." +msgstr "Организацијата неможе да биде избришана додека поседува податочни сетови." #: ckan/logic/action/delete.py:560 ckan/logic/action/delete.py:586 #: ckan/logic/action/get.py:2432 ckan/logic/action/update.py:906 @@ -2177,12 +2180,12 @@ msgstr "Корисникот %s не е овластен да ги промен #, python-format msgid "User %s not authorized to add dataset to this organization" msgstr "" -"Корисникот %s не е овластен да додава податочни сетови за оваа организација" +"Корисникот %s не е овластен да додава податочни сетови за оваа " +"организација" #: ckan/logic/auth/create.py:61 msgid "No dataset id provided, cannot check auth." -msgstr "" -"ИД за податочниот сет не е обезбеден, неможе да се провери овласувањето" +msgstr "ИД за податочниот сет не е обезбеден, неможе да се провери овласувањето" #: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 #: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 @@ -2240,8 +2243,7 @@ msgstr "Корисникот %s не е овластен да го избриш #: ckan/logic/auth/delete.py:56 msgid "Resource view not found, cannot check auth." -msgstr "" -"Приказот за ресурсот не е пронајден, неможе да се провери овластувањето." +msgstr "Приказот за ресурсот не е пронајден, неможе да се провери овластувањето." #: ckan/logic/auth/delete.py:73 #, python-format @@ -2637,8 +2639,8 @@ msgstr "Не може да се добијат податоци за прика #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "" "Прикачувате датотека. Дали сте сигурни дека сакате да отидете и да " "престанете со прикачувањето?" @@ -2918,37 +2920,40 @@ msgstr "CKAN опции за конфигурација" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " +"

Site Title: This is the title of this CKAN instance " +"It appears in various places throughout CKAN.

" +"

Style: Choose from a list of simple variations of the" +" main colour scheme to get a very quick custom theme working.

" +"

Site Tag Logo: This is the logo that appears in the " +"header of all the CKAN instance templates.

About:" +" This text will appear on this CKAN instances about page.

Intro " "Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" "

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend <head> tag of every page. If you wish to customize the" +" templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" +"

Homepage: This is for choosing a predefined layout " +"for the modules that appear on your homepage.

" msgstr "" -"

Наслов на сајтот:Ова е насловот на оваа CKAN инстанца. " -"Се појавува на различни места низ CKAN.

Стил:Изберете" -" од листата на едноставни варијации на главната шема на бои за да добиете " -"многу брза прилагодлива тема да работи.

Таг лого на " -"сајтот:Ова е логото што се појавува во насловот на сите шаблони на " -"CKAN инстанци

ЗаОвој текст ќе се појави на овие CKAN " -"инстанци страницата за.

Воведен " -"текст:Овој текст ќе се појави на овие CKAN инстанци на главна страница како добредојде на " -"посетителите.

Прилагоден CSS:Ова е блок од CSS што се" -" појавува во<head>тагот од секоја страница. Ако сакате да" -" ги прилагодите шаблоните целосно, препорачуваме читање на документацијата

Главна " -"страница:Ова е за избор на предефиниран изглед за модулите кои се " -"појавуваат на вашата почетна страница

" +"

Наслов на сајтот:Ова е насловот на оваа CKAN " +"инстанца. Се појавува на различни места низ " +"CKAN.

Стил:Изберете од листата на едноставни " +"варијации на главната шема на бои за да добиете многу брза прилагодлива " +"тема да работи.

Таг лого на сајтот:Ова е логото " +"што се појавува во насловот на сите шаблони на CKAN " +"инстанци

ЗаОвој текст ќе се појави на овие CKAN " +"инстанци страницата " +"за.

Воведен текст:Овој текст ќе се појави на " +"овие CKAN инстанци на главна страница како " +"добредојде на посетителите.

Прилагоден CSS:Ова е " +"блок од CSS што се појавува во<head>тагот од секоја " +"страница. Ако сакате да ги прилагодите шаблоните целосно, препорачуваме " +"читање на " +"документацијата

Главна страница:Ова е за избор" +" на предефиниран изглед за модулите кои се појавуваат на вашата почетна " +"страница

" #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 @@ -2963,12 +2968,13 @@ msgstr "Администрирајте CKAN" #, python-format msgid "" "

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" +"Proceed with care!

For guidance on using sysadmin features, see " +"the CKAN sysadmin " +"guide

" msgstr "" -"

Како корисник на системски администратор имате целосна контрола врз оваа " -"CKAN инстанца. Продолжете со внимание!

а упатства за користење на " -"функциите на системскиот администратор, видете го CKAN Како корисник на системски администратор имате целосна контрола врз " +"оваа CKAN инстанца. Продолжете со внимание!

а упатства за користење" +" на функциите на системскиот администратор, видете го CKAN водичот за системски " "администратор

" @@ -2978,8 +2984,7 @@ msgstr "Исчистете" #: ckan/templates/admin/trash.html:32 msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" -"

Исчистете ги избришаните податочни сетови засекогаш и неповратно.

" +msgstr "

Исчистете ги избришаните податочни сетови засекогаш и неповратно.

" #: ckan/templates/dataviewer/snippets/data_preview.html:9 msgid "This resource can not be previewed at the moment." @@ -3130,9 +3135,8 @@ msgstr "Дали сте сигурни дека сакате да го избр #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "Управувај" @@ -3164,8 +3168,7 @@ msgstr "Пребарај групи..." msgid "There are currently no groups for this site" msgstr "Моментално, не постојат групи за оваа страна" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "Дали сакате да креирате?" @@ -3218,22 +3221,19 @@ msgstr "" "Доколку сакате да поканите нов корисник, внесете ја неговата електронска " "пошта." -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "Улога" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "Дали сте сигурни дека сакате да го избришете овој член?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3254,14 +3254,14 @@ msgstr "Што претставуваат улоги?" #: ckan/templates/group/member_new.html:80 msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " +"

Admin: Can edit group information, as well as manage" +" organization members.

Member: Can add/remove " "datasets from groups

" msgstr "" "

АдминистраторМоже да промени информација за групата, " "како и да управува со членовите на " -"организацијата.

Член:Може да додаде/избрише податочни" -" сетови од групите

" +"организацијата.

Член:Може да додаде/избрише " +"податочни сетови од групите

" #: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 #: ckan/templates/group/new.html:7 @@ -3331,16 +3331,16 @@ msgstr "Што претставуваат групи?" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" -"Можете да употребите CKAN групи за да креирате и управувате со колекција од " -"податочни сетови. Ова може да овозможи каталогно подредување на податочни " -"сетови за одреден проект или тим, или за одредена тема, или како едноставен " -"начин да овозможите на луѓето да ги пронајдат и пребараат вашите лично " -"објавени податочни сетови." +"Можете да употребите CKAN групи за да креирате и управувате со колекција " +"од податочни сетови. Ова може да овозможи каталогно подредување на " +"податочни сетови за одреден проект или тим, или за одредена тема, или " +"како едноставен начин да овозможите на луѓето да ги пронајдат и пребараат" +" вашите лично објавени податочни сетови." #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 @@ -3403,13 +3403,14 @@ msgid "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3420,20 +3421,21 @@ msgid "" "href=\"http://ckan.org/features/\">http://ckan.org/features/

" msgstr "" "

CKAN е водечка портал платформа за отворени податоци, во " -"светот.

CKAN е комплетно софтверско решение кое овозможува пристап до " -"податоци и нивно користење - преку обезбедување на алатки за поедноставување" -" на објавување, споделување, наоѓање и користење на податоци (вклучувајќи " -"складирање на податоци и обезбедување на цврсти API-ја на податоци ). CKAN е" -" наменета за издавачи на податоци (национални и регионални влади, компании и" -" организации) кои сакаат да ги направат своите податоци отворени и " -"достапни.

CKAN се користи од страна на влади и кориснички групи низ " -"целиот свет и поддржува различни официјални и општи портали за податоци, " -"вклучувајќи портали за локална, национална и меѓународна влада, како што е " -"Велика Британија data.gov.uk и Европската" -" Унија publicdata.eu, Бразилската dados.gov.br, Холандски владини портали, " -"како и градски и општински локации во САД, Велика Британија, Аргентина, " -"Финска и на други места.

CKAN:

CKAN е комплетно софтверско решение кое овозможува пристап " +"до податоци и нивно користење - преку обезбедување на алатки за " +"поедноставување на објавување, споделување, наоѓање и користење на " +"податоци (вклучувајќи складирање на податоци и обезбедување на цврсти " +"API-ја на податоци ). CKAN е наменета за издавачи на податоци (национални" +" и регионални влади, компании и организации) кои сакаат да ги направат " +"своите податоци отворени и достапни.

CKAN се користи од страна на " +"влади и кориснички групи низ целиот свет и поддржува различни официјални " +"и општи портали за податоци, вклучувајќи портали за локална, национална и" +" меѓународна влада, како што е Велика Британија data.gov.uk и Европската Унија publicdata.eu, Бразилската dados.gov.br, Холандски владини " +"портали, како и градски и општински локации во САД, Велика Британија, " +"Аргентина, Финска и на други места.

CKAN:http://ckan.org/
CKAN Тура:http://ckan.org/tour/
Преглед на " "карактеристики:Markdown formatting here" msgstr "" -"Можете да користите Означи форматирањетука" #: ckan/templates/macros/form.html:277 @@ -3565,8 +3567,8 @@ msgstr "Скица" #: ckan/templates/package/read.html:11 #: ckan/templates/package/snippets/package_basic_fields.html:98 #: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 msgid "Private" msgstr "Приватно" @@ -3621,16 +3623,16 @@ msgid "" "

Admin: Can add/edit and delete datasets, as well as " "manage organization members.

Editor: Can add and " "edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" +"

Member: Can view the organization's private datasets," +" but not add new datasets.

" msgstr "" -"

Администратор:Може да додава/уредува и брише податочни " -"сетови, како и да управува со членови на " +"

Администратор:Може да додава/уредува и брише " +"податочни сетови, како и да управува со членови на " "организацијата.

Уредувач:Може да додава и уредува " "податочни сетови, но не може да управува со членови на " -"организацијата.

Член:Може да ги прегледува приватните" -" податочни сетови на организацијата, но не и да додава нови податочни сетови" -"

" +"организацијата.

Член:Може да ги прегледува " +"приватните податочни сетови на организацијата, но не и да додава нови " +"податочни сетови

" #: ckan/templates/organization/members.html:14 msgid "{count} member" @@ -3664,31 +3666,32 @@ msgstr "Што се Организации?" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" +"

Organizations act like publishing departments for datasets (for " +"example, the Department of Health). This means that datasets can be " +"published by and belong to a department instead of an individual " +"user.

Within organizations, admins can assign roles and authorise " +"its members, giving individual users the right to publish datasets from " +"that particular organisation (e.g. Office of National Statistics).

" msgstr "" -"

Организациите дејствуваат како издавачки одделенија за податочни сетови " -"(на пример, Министерството за здравство). Ова значи дека податочните сетови " -"може да бидат објавени и припаѓаат на оддел наместо на поединечен корисник. " -"

Во рамките на организациите, администраторите можат да доделуваат " -"улоги и да ги овластуваат своите членови, давајќи им на индивидуалните " -"корисници право да објавуваат податочни сетови од таа одредена организација " -"(пр. Канцеларијата за национална статистика).

" +"

Организациите дејствуваат како издавачки одделенија за податочни " +"сетови (на пример, Министерството за здравство). Ова значи дека " +"податочните сетови може да бидат објавени и припаѓаат на оддел наместо на" +" поединечен корисник. 

Во рамките на организациите, " +"администраторите можат да доделуваат улоги и да ги овластуваат своите " +"членови, давајќи им на индивидуалните корисници право да објавуваат " +"податочни сетови од таа одредена организација (пр. Канцеларијата за " +"национална статистика).

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" "CKAN организациите се користат за креирање, управување и објавување на " "збирки на податочни сетови. Корисниците можат да имаат различни улоги во " -"рамките на една организација, во зависност од нивното ниво на овластување за" -" креирање, уредување и објавување" +"рамките на една организација, во зависност од нивното ниво на овластување" +" за креирање, уредување и објавување" #: ckan/templates/organization/snippets/organization_form.html:10 msgid "My Organization" @@ -3704,12 +3707,13 @@ msgstr "Малку информации за мојата организациј #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" -"Дали сте сигурни дека сакате да ја избришете оваа организација? Забелешка*: " -"Бришењето не може да се изврши додека јавните или приватните податочни " -"сетови припаѓаат на оваа организација." +"Дали сте сигурни дека сакате да ја избришете оваа организација? " +"Забелешка*: Бришењето не може да се изврши додека јавните или приватните " +"податочни сетови припаѓаат на оваа организација." #: ckan/templates/organization/snippets/organization_form.html:41 msgid "Save Organization" @@ -3731,18 +3735,17 @@ msgstr "Што се податочни сетови?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" -"CKAN податочен сет претставува колекција од ресурси (како датотеки), заедно " -"со опис и други информации, до постојан линк. Податочните сетови се она што " -"корисниците го гледаат кога бараат податоци." +"CKAN податочен сет претставува колекција од ресурси (како датотеки), " +"заедно со опис и други информации, до постојан линк. Податочните сетови " +"се она што корисниците го гледаат кога бараат податоци." #: ckan/templates/package/confirm_delete.html:12 msgid "Are you sure you want to delete dataset - {name}?" -msgstr "" -"Дали сте сигурни дека сакате да го избришете податочниот сет - {name}?" +msgstr "Дали сте сигурни дека сакате да го избришете податочниот сет - {name}?" #: ckan/templates/package/confirm_delete_resource.html:11 msgid "Are you sure you want to delete resource - {name}?" @@ -3818,12 +3821,12 @@ msgstr "Додадете приказ" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" -"Прегледите на Data Explorer може да бидат бавни и несигурни, освен ако не е " -"овозможена екстензијата за DataStore. За повеќе информации, ве молиме " +"Прегледите на Data Explorer може да бидат бавни и несигурни, освен ако не" +" е овозможена екстензијата за DataStore. За повеќе информации, ве молиме " "погледнете Документација на Data Explorer" @@ -3836,8 +3839,9 @@ msgstr "Додадете" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" "Ова е стара ревизија на овој податочен сет, како што е изменето во " "%(timestamp)s. Може да се разликува значително од This dataset has no data, why not " -"add some?

" +"

This dataset has no data, why not" +" add some?

" msgstr "" "

Овој податочен сет не содржи податоци,зошто не додадете?

" @@ -4074,8 +4078,7 @@ msgstr "Креирајте нова организација" #: ckan/templates/package/snippets/cannot_create_package.html:18 msgid "There are no organizations to which you can assign this dataset." -msgstr "" -"Не постои организација на која што можете да го додадете податочниот сет." +msgstr "Не постои организација на која што можете да го додадете податочниот сет." #: ckan/templates/package/snippets/cannot_create_package.html:19 msgid "" @@ -4137,18 +4140,19 @@ msgstr "Активно" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" "Лиценцата за податоцикоја ја избирате погоре се однесува само на " -"содржината на секоја датотека од ресурс која ја додавате на овој податочен " -"сет. Со поднесување на оваа форма, вие се согласувате да ги објавите мета" -" податочните вредности кои ги внесувате во формуларот под Лиценцата за отворени" -" податоци" +"содржината на секоја датотека од ресурс која ја додавате на овој " +"податочен сет. Со поднесување на оваа форма, вие се согласувате да ги " +"објавите мета податочните вредности кои ги внесувате во формуларот" +" под Лиценцата " +"за отворени податоци" #: ckan/templates/package/snippets/package_form.html:39 msgid "Are you sure you want to delete this dataset?" @@ -4259,8 +4263,8 @@ msgstr "Што претставува ресурс?" #: ckan/templates/package/snippets/resource_help.html:4 msgid "A resource can be any file or link to a file containing useful data." msgstr "" -"Ресурс може да биде секоја датотека или линк до датотека која содржи корисни" -" податоци." +"Ресурс може да биде секоја датотека или линк до датотека која содржи " +"корисни податоци." #: ckan/templates/package/snippets/resource_item.html:23 msgid "Explore" @@ -4291,8 +4295,8 @@ msgid "" "You can copy and paste the embed code into a CMS or blog software that " "supports raw HTML" msgstr "" -"Можете да го копирате и залепите вметнатиот код во системот за управување со" -" податоци или блог софтвер кој поддржува чист HTML" +"Можете да го копирате и залепите вметнатиот код во системот за управување" +" со податоци или блог софтвер кој поддржува чист HTML" #: ckan/templates/package/snippets/resource_view.html:80 msgid "Width" @@ -4352,8 +4356,7 @@ msgstr "Што означува приказ?" #: ckan/templates/package/snippets/view_help.html:4 msgid "A view is a representation of the data held against a resource" -msgstr "" -"Приказот претставува репрезентација на податоците содржани во ресурсот" +msgstr "Приказот претставува репрезентација на податоците содржани во ресурсот" #: ckan/templates/revision/diff.html:6 msgid "Differences" @@ -4472,8 +4475,8 @@ msgstr "

Ве молиме обидете се со ново #: ckan/templates/snippets/search_form.html:87 msgid "" -"

There was an error while searching." -" Please try again.

" +"

There was an error while " +"searching. Please try again.

" msgstr "" "

Се појави грешка при " "пребарувањето.Ве молиме обидете се повторно.

" @@ -4622,10 +4625,11 @@ msgstr "Информации за сметката" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" -"Вашиот профил доволува останатите корисници на CKAN да знаат кои сте Вие и " -"што правите." +"Вашиот профил доволува останатите корисници на CKAN да знаат кои сте Вие " +"и што правите." #: ckan/templates/user/edit_user_form.html:7 msgid "Change details" @@ -4716,8 +4720,7 @@ msgstr "Дали ја заборавивте Вашата лозинка?" #: ckan/templates/user/login.html:44 msgid "No problem, use our password recovery form to reset it." -msgstr "" -"Не грижете се, искористете ја нашата форма за ресетирање на лозинката." +msgstr "Не грижете се, искористете ја нашата форма за ресетирање на лозинката." #: ckan/templates/user/login.html:47 msgid "Forgot your password?" @@ -4750,8 +4753,7 @@ msgstr "Веќе сте логирани" #: ckan/templates/user/logout_first.html:22 msgid "You need to log out before you can log in with another account." -msgstr "" -"Потребно е да се одјавите пред да можете да се најавите со друга сметка." +msgstr "Потребно е да се одјавите пред да можете да се најавите со друга сметка." #: ckan/templates/user/logout_first.html:23 msgid "Log out now" @@ -4797,8 +4799,8 @@ msgstr "Ресетирање на лозинката" #: ckan/templates/user/perform_reset.html:21 msgid "You can also change username. It can not be modified later." msgstr "" -"Вие исто така можете да го промените вашето корисничко име. Истото нема да " -"може да биде променето подоцна." +"Вие исто така можете да го промените вашето корисничко име. Истото нема " +"да може да биде променето подоцна." #: ckan/templates/user/perform_reset.html:29 msgid "Update Password" @@ -4856,11 +4858,11 @@ msgstr "Ресетирај" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" -"Внесете го Вашето корисничко име во полето и ние ќе Ви испратиме електронска" -" порака со линк за влез и нова лозинка." +"Внесете го Вашето корисничко име во полето и ние ќе Ви испратиме " +"електронска порака со линк за влез и нова лозинка." #: ckan/templates/user/snippets/followee_dropdown.html:15 #: ckan/templates/user/snippets/followee_dropdown.html:16 @@ -4886,3 +4888,4 @@ msgstr "Пребарувај корисници" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "Вашата лозинка мора да е 8 карактери или повеќе." + diff --git a/ckan/i18n/mn_MN/LC_MESSAGES/ckan.po b/ckan/i18n/mn_MN/LC_MESSAGES/ckan.po index 5a08a7ad111..67d9f135537 100644 --- a/ckan/i18n/mn_MN/LC_MESSAGES/ckan.po +++ b/ckan/i18n/mn_MN/LC_MESSAGES/ckan.po @@ -1,23 +1,27 @@ -# Translations template for ckan. +# Mongolian (Mongolia) translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 +# Zoljargal Munkhjargal , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2018\n" -"Language-Team: Mongolian (Mongolia) (https://www.transifex.com/okfn/teams/11162/mn_MN/)\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" +"Last-Translator: Zoljargal Munkhjargal , 2018\n" +"Language: mn_MN\n" +"Language-Team: Mongolian (Mongolia) " +"(https://www.transifex.com/okfn/teams/11162/mn_MN/)\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: mn_MN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,14 +132,14 @@ msgstr "Өгөгдлийн агуулах нөөц олдсонгүй" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" "Өгөгдөл буруу байна (жишээ нь, тоон утга хязгаараас давсан эсвэл бичвэр " "талбарт тоо оруулсан)" @@ -157,14 +161,14 @@ msgstr "CKAN өгөгдлийн API" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 #: ckanext/datastore/templates/ajax_snippets/api_info.html:25 msgid "Access resource data via a web API with powerful query support" -msgstr "" -"Илүү нарийвчилсан хайлт хийх боломжтой веб API-аар нөөц өгөгдөлд хандах" +msgstr "Илүү нарийвчилсан хайлт хийх боломжтой веб API-аар нөөц өгөгдөлд хандах" #: ckanext/datastore/templates/ajax_snippets/api_info.html:26 msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -175,8 +179,8 @@ msgstr "Төгсгөлийн цэгүүд" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "API-н өгөгдөлд CKAN болон API-н үйлдлээр дамжиж хандах боломжтой." #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 @@ -314,11 +318,13 @@ msgstr "Өгөгдлийн API" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" -"CKAN Data API болон Өгөгдлийн нөөцийн баримт бичигт " -"нэмэлт мэдээллийг агуулж байгаа болно.

" +"CKAN Data API болон Өгөгдлийн нөөцийн баримт бичигт" +" нэмэлт мэдээллийг агуулж байгаа болно.

" #: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 msgid "Table" @@ -447,8 +453,7 @@ msgstr "0 Өгөгдлийн бүрдлүүд" #: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 msgid "CKAN's data previewing tool has many powerful features" -msgstr "" -"CKAN-ны өгөгдөл урьдчилан харах хэрэгсэл нь олон хүчирхэг боломжуудтай" +msgstr "CKAN-ны өгөгдөл урьдчилан харах хэрэгсэл нь олон хүчирхэг боломжуудтай" #: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 #: ckan/templates/group/snippets/info.html:32 @@ -893,8 +898,7 @@ msgstr "Буруу хэлбэржсэн qjson утга: %r" #: ckan/controllers/api.py:392 msgid "Request params must be in form of a json encoded dictionary." -msgstr "" -"Хүсэлтийн параметр нь json-оор шифрлэгдсэн үгсийн сан хэлбэрт байх ёстой" +msgstr "Хүсэлтийн параметр нь json-оор шифрлэгдсэн үгсийн сан хэлбэрт байх ёстой" #: ckan/controllers/feed.py:234 ckan/controllers/group.py:128 #: ckan/controllers/group.py:226 ckan/controllers/group.py:394 @@ -1072,8 +1076,7 @@ msgstr "Дагагчдыг харах эрхгүй байна %s" #: ckan/controllers/home.py:35 msgid "This site is currently off-line. Database is not initialised." -msgstr "" -"Тус сайт одоогоор хаалттай байна. Өгөгдлийн сангийн тохиргоо хийгдээгүй." +msgstr "Тус сайт одоогоор хаалттай байна. Өгөгдлийн сангийн тохиргоо хийгдээгүй." #: ckan/controllers/home.py:73 ckan/views/home.py:58 #, python-format @@ -1114,7 +1117,8 @@ msgstr "Засварын хэлбэр таарахгүй байна: %r" #: ckan/controllers/package.py:415 msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." msgstr "" -"\"{package_type}\" төрлийн өгөгдлийн бүрдлийг харах ({file_!r})-д боломжгүй." +"\"{package_type}\" төрлийн өгөгдлийн бүрдлийг харах ({file_!r})-д " +"боломжгүй." #: ckan/controllers/package.py:454 ckan/controllers/package.py:839 #: ckan/controllers/package.py:940 ckan/controllers/package.py:988 @@ -1311,8 +1315,8 @@ msgid "" "User \"%s\" is now registered but you are still logged in as \"%s\" from " "before" msgstr "" -"\"%s\" хэрэглэгч бүртгэгдсэн боловч өмнөх \"%s\" хэрэглэгчээр холбогдсон " -"хэвээор байна." +"\"%s\" хэрэглэгч бүртгэгдсэн боловч өмнөх \"%s\" хэрэглэгчээр холбогдсон" +" хэвээор байна." #: ckan/controllers/user.py:294 ckan/views/user.py:174 msgid "Unauthorized to edit a user." @@ -1426,8 +1430,7 @@ msgstr "{actor} {dataset} өгөгдлийн бүрдлийг шинэчлэлэ #: ckan/lib/activity_streams.py:72 msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "" -"{actor} {dataset} өгөгдлийн бүрдлийн нэмэлт {extra} хэсгийг шинэчлэлээ" +msgstr "{actor} {dataset} өгөгдлийн бүрдлийн нэмэлт {extra} хэсгийг шинэчлэлээ" #: ckan/lib/activity_streams.py:75 msgid "{actor} updated the resource {resource} in the dataset {dataset}" @@ -1822,8 +1825,8 @@ msgstr "Нэрийн урт хамгийн ихдээ %i тэмдэгт байх #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "" "Үсгийн жижиг хэлбэрээр бичигдэх үсэг, тоон тэмдэгтүүд болон -_ зэрэг " "тэмдэгтүүд байх ёстой" @@ -1924,8 +1927,7 @@ msgstr "Тухайн үг ашиглагдаж байна." #: ckan/logic/validators.py:642 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" -msgstr "" -"%s-н утгыг %s болгон өөрчлөх боломжгүй. Энэ нь зөвхөн унших боломжтой." +msgstr "%s-н утгыг %s болгон өөрчлөх боломжгүй. Энэ нь зөвхөн унших боломжтой." #: ckan/logic/validators.py:651 msgid "Tag vocabulary was not found." @@ -1975,11 +1977,15 @@ msgstr "\"filter_fields\" болон \"filter_values\" ижил урттай б #: ckan/logic/validators.py:811 msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "\"filter_values\" утгыг оруулсан бол \"filter_fields\" утга заавал байх ёстой" +msgstr "" +"\"filter_values\" утгыг оруулсан бол \"filter_fields\" утга заавал байх " +"ёстой" #: ckan/logic/validators.py:814 msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "\"filter_fields\" утга оруулсан бол \"filter_values\" утга заавал байх ёстой" +msgstr "" +"\"filter_fields\" утга оруулсан бол \"filter_values\" утга заавал байх " +"ёстой" #: ckan/logic/validators.py:828 msgid "There is a schema field with the same name" @@ -2095,8 +2101,7 @@ msgstr "\"%s\" шошго олдсонгүй." #: ckan/logic/action/delete.py:607 ckan/logic/action/delete.py:611 msgid "You must be logged in to unfollow something." -msgstr "" -"Та ямар нэгэн зүйлийг дагахаа болихын тулд нэвтэрсэн байх шаардлагатай." +msgstr "Та ямар нэгэн зүйлийг дагахаа болихын тулд нэвтэрсэн байх шаардлагатай." #: ckan/logic/action/delete.py:622 msgid "You are not following {0}." @@ -2273,8 +2278,7 @@ msgstr "%s хэрэглэгч %s бүлгийг унших эрхгүй байн #: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." -msgstr "" -"Та өөрийн хяналтын самбартаа хандахын тулд нэвтэрсэн байх шаардлагатай." +msgstr "Та өөрийн хяналтын самбартаа хандахын тулд нэвтэрсэн байх шаардлагатай." #: ckan/logic/auth/update.py:39 #, python-format @@ -2612,8 +2616,8 @@ msgstr "Хуулсан файлын мэдээллийг авах боломжг #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "" "Та яг одоо файл хуулж байна. Хуулж байгаа файлаа зогсоогоод гарахдаа " "итгэлтэй байна уу." @@ -2893,37 +2897,38 @@ msgstr "CKAN тохиргооны сонголтууд" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " +"

Site Title: This is the title of this CKAN instance " +"It appears in various places throughout CKAN.

" +"

Style: Choose from a list of simple variations of the" +" main colour scheme to get a very quick custom theme working.

" +"

Site Tag Logo: This is the logo that appears in the " +"header of all the CKAN instance templates.

About:" +" This text will appear on this CKAN instances about page.

Intro " "Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" "

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend <head> tag of every page. If you wish to customize the" +" templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" +"

Homepage: This is for choosing a predefined layout " +"for the modules that appear on your homepage.

" msgstr "" -"

Сайтын гарчиг: Энэ бол CKAN -ий гарчиг хэсэг жишээ нь " -"янз бүрийн ялгаатай газарын CKAN.

Загвар: Ашиглаж " -"байгаа загвараа маш хурдан солихийг хүсвэл үндсэн өнгөний схемийн " -"жагсаалтнаас сонгоно уу.

Сайтын шишгийн лого: Энэ " -"лого нь бүх CKAN -ий ялгаатай загваруудын толгой хэсэгт харагдана.

" -"

Тухай: Энэ текст нь CKAN дээр гарч байх болно жишээ нь " -"хуудасны тухай.

Нийтлэлийн " -"оршил текст: Энэ текст нь CKAN дээр гарч байх болно жишээ нь нүүр хуудас тавтай морилно уу.

" -"

Уламжлал CSS: Энэ нь CSS -ийн нэг хэсэг нь " -"<head> хуудас бүрийн шошго. Та загваруудыг илүү " -"өөрчилхийг хүсэж байгаа бол бид энийг зөвлөж байна баримт бичгийг унших.

Нүүр " -"хуудас: Энэ бол нүүр хуудас дээр харагдах зохион байгуулалтыг " -"урьдчилан тодорхойлсон модулиудаас сонгох.

" +"

Сайтын гарчиг: Энэ бол CKAN -ий гарчиг хэсэг жишээ нь" +" янз бүрийн ялгаатай газарын CKAN.

Загвар: " +"Ашиглаж байгаа загвараа маш хурдан солихийг хүсвэл үндсэн өнгөний схемийн" +" жагсаалтнаас сонгоно уу.

Сайтын шишгийн лого: " +"Энэ лого нь бүх CKAN -ий ялгаатай загваруудын толгой хэсэгт " +"харагдана.

Тухай: Энэ текст нь CKAN дээр гарч " +"байх болно жишээ нь хуудасны тухай.

" +"

Нийтлэлийн оршил текст: Энэ текст нь CKAN дээр гарч " +"байх болно жишээ нь нүүр хуудас тавтай " +"морилно уу.

Уламжлал CSS: Энэ нь CSS -ийн нэг " +"хэсэг нь <head> хуудас бүрийн шошго. Та загваруудыг " +"илүү өөрчилхийг хүсэж байгаа бол бид энийг зөвлөж байна баримт бичгийг унших.

" +"

Нүүр хуудас: Энэ бол нүүр хуудас дээр харагдах зохион" +" байгуулалтыг урьдчилан тодорхойлсон модулиудаас сонгох.

" #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 @@ -2938,13 +2943,14 @@ msgstr "CKAN удирдах" #, python-format msgid "" "

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" +"Proceed with care!

For guidance on using sysadmin features, see " +"the CKAN sysadmin " +"guide

" msgstr "" "

Та систем админ хэрэглэгч адил энэ CKAN-ыг бүрэн удирдах боломжтой " "байна. Болгоомжтой ажиллаарай!

Систем админы хийх үйлдлийн " -"боломжуудыг CKAN систем админы " -"гарын авлагаас үзнэ үү.

" +"боломжуудыг CKAN систем админы" +" гарын авлагаас үзнэ үү.

" #: ckan/templates/admin/trash.html:20 msgid "Purge" @@ -3105,9 +3111,8 @@ msgstr "Та {name} гишүүнийг устгахдаа илтгэлтэй б #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "Удирдах" @@ -3139,8 +3144,7 @@ msgstr "Бүлгүүд хайх..." msgid "There are currently no groups for this site" msgstr "Энэ сайтад одоогоор ямарч бүлэг байхгүй байна" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "Нэгийг үүсгэх үү?" @@ -3191,22 +3195,19 @@ msgstr "Шинэ хэрэглэгч" msgid "If you wish to invite a new user, enter their email address." msgstr "Та шинэ хэрэглэгч урих бол имэйл хаягийг нь оруулна уу" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "Хэрэглэгчийн төрөл" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "Та энэ гишүүнийг устгахдаа итгэлтэй байна уу?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3227,8 +3228,8 @@ msgstr "Хэрэглэгчийн төрөл гэж юу вэ?" #: ckan/templates/group/member_new.html:80 msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " +"

Admin: Can edit group information, as well as manage" +" organization members.

Member: Can add/remove " "datasets from groups

" msgstr "" "

Админ нь: Байгууллагын хэрэглчдийн тохиргоог хийхээс " @@ -3303,15 +3304,15 @@ msgstr "Бүлгүүд гэж юу вэ?" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" -"Өгөгдлийн бүрдлийн цуглуулгыг үүсгэх болон зохион байгуулахад CKAN-н Бүлгийг" -" ашиглах боломжтой. Ангилсан өгөгдлийн бүрдлийг ашиглах хэрэгцээтэй төслийн " -"баг, хэлэлцүүлгийн сэдэв, хувь хүн болон та өөрөө нээлттэй өгөгдлийн " -"бүрдлээс хялбараар хайх боломж олгоно." +"Өгөгдлийн бүрдлийн цуглуулгыг үүсгэх болон зохион байгуулахад CKAN-н " +"Бүлгийг ашиглах боломжтой. Ангилсан өгөгдлийн бүрдлийг ашиглах " +"хэрэгцээтэй төслийн баг, хэлэлцүүлгийн сэдэв, хувь хүн болон та өөрөө " +"нээлттэй өгөгдлийн бүрдлээс хялбараар хайх боломж олгоно." #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 @@ -3374,13 +3375,14 @@ msgid "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3391,22 +3393,22 @@ msgid "" "href=\"http://ckan.org/features/\">http://ckan.org/features/

" msgstr "" "

CKAN нь дэлхийн тэргүүлэх нээлттэй эхийн өгөгдлийн портал платформ " -"юм.

Мөн өгөгдлийг нийтлэх, хуваалцах, хайх, ашиглах боломжийг олгох " -"замаар өгөгдлийг эргэлтэнд оруулдаг програм хангамжийн шийдэл. (өгөгдөл " +"юм.

Мөн өгөгдлийг нийтлэх, хуваалцах, хайх, ашиглах боломжийг олгох" +" замаар өгөгдлийг эргэлтэнд оруулдаг програм хангамжийн шийдэл. (өгөгдөл " "хадгалах, API-ийн тусламжтай нийтлэх/нийлүүлэх ч мөн багтсан ). CKAN нь " -"өгөгдлөө нээлттэй болгохоор зорьж буй өгөгдөл түгээгчдэд ( улс болон орон " -"нутаг дахь төрийн байгууллага, компани, бусад байгууллага) зориулагдсан. " -"

CKAN-г засгийн газрууд, дэлхийн өнцөг булан бүрт буй хэрэглэгчдийн " -"бүлгүүд хэрэглэхээс гадна орон нутаг, улс, олон улсын засгийн газрууд албан " -"болон нийгмийн өгөгдлийг нийтлэхэд ашиглаж байна Тухайлбал: . Английн data.gov.uk, Европын холбооны publicdata.eu, Бразилийн dados.gov.br, Герман болон Нидерландын " -"засгийн газрын сайтуудаас гадна АНУ, Англи, Аргентин, Финланд болон бусад " -"улсын хотуудын сайт.

CKAN: http://ckan.org/
CKAN-тай танилцах: http://ckan.org/tour/
Онцлог: http://ckan.org/features/

" +"өгөгдлөө нээлттэй болгохоор зорьж буй өгөгдөл түгээгчдэд ( улс болон орон" +" нутаг дахь төрийн байгууллага, компани, бусад байгууллага) зориулагдсан." +"

CKAN-г засгийн газрууд, дэлхийн өнцөг булан бүрт буй " +"хэрэглэгчдийн бүлгүүд хэрэглэхээс гадна орон нутаг, улс, олон улсын " +"засгийн газрууд албан болон нийгмийн өгөгдлийг нийтлэхэд ашиглаж байна " +"Тухайлбал: . Английн data.gov.uk, " +"Европын холбооны publicdata.eu, " +"Бразилийн dados.gov.br, Герман болон" +" Нидерландын засгийн газрын сайтуудаас гадна АНУ, Англи, Аргентин, " +"Финланд болон бусад улсын хотуудын сайт.

CKAN: http://ckan.org/
CKAN-тай танилцах: " +"http://ckan.org/tour/
Онцлог:" +" http://ckan.org/features/

" #: ckan/templates/home/snippets/promoted.html:8 msgid "Welcome to CKAN" @@ -3414,11 +3416,11 @@ msgstr "CKAN-д тавтай морил" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" -"Энэ нь CKAN ны талаарх хураангуй мэдээлэл байна. Бидэнд энэ мэдээний хуулбар" -" байхгүй байна гэхдээ удахгүй хуулбартай болох болно." +"Энэ нь CKAN ны талаарх хураангуй мэдээлэл байна. Бидэнд энэ мэдээний " +"хуулбар байхгүй байна гэхдээ удахгүй хуулбартай болох болно." #: ckan/templates/home/snippets/promoted.html:19 msgid "This is a featured section" @@ -3463,8 +3465,8 @@ msgstr "бүлгүүд" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" "Admin: Can add/edit and delete datasets, as well as " "manage organization members.

Editor: Can add and " "edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" +"

Member: Can view the organization's private datasets," +" but not add new datasets.

" msgstr "" "

Админ нь: Байгууллагын гишүүдийг тохируулахаас гадна " "өгөгдлийн бүрдлүүдийг нэмэх болон устгах боломжтой.

" "

Засварлагч нь: Өгөгдлийн бүрдлийг нэмэх болон устгах " "боломжтой боловч байгууллагын гишүүдийг тохируулах боломжгүй.

" -"

Гишүүн нь: Байгууллагын хаалттай өгөгдлийн бүрдлийг үзэх" -" боломжтой боловч шинээр нэмэх боломжгүй.

" +"

Гишүүн нь: Байгууллагын хаалттай өгөгдлийн бүрдлийг " +"үзэх боломжтой боловч шинээр нэмэх боломжгүй.

" #: ckan/templates/organization/members.html:14 msgid "{count} member" @@ -3632,29 +3634,29 @@ msgstr "Байгууллага гэж юу вэ?" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" +"

Organizations act like publishing departments for datasets (for " +"example, the Department of Health). This means that datasets can be " +"published by and belong to a department instead of an individual " +"user.

Within organizations, admins can assign roles and authorise " +"its members, giving individual users the right to publish datasets from " +"that particular organisation (e.g. Office of National Statistics).

" msgstr "" "

Байгууллага нь өгөгдлийн бүрдэл нийтлэгч байгууллага байна (Жишээ нь, " -"Үндэсний Статистикийн Хороо). Энэ нь аливаа өгөгдлийн бүрдэл хэн нэгэн хүн " -"эсвэл ажилтанд хамаарах бус тухайн өгөгдлийг нийтлэгч байгууллагатай " +"Үндэсний Статистикийн Хороо). Энэ нь аливаа өгөгдлийн бүрдэл хэн нэгэн " +"хүн эсвэл ажилтанд хамаарах бус тухайн өгөгдлийг нийтлэгч байгууллагатай " "холбоотой.

Байгууллага дотор админ хэрэглэгчид нь гишүүдэд үүрэг " "оноох, эрх олгох, энгийн хэрэглэгчид тухайн байгууллагын өмнөөс өгөгдөл " "нийтлэх эрхийг өгөх боломжтой.

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" -"CKAN дахь байгууллагууд нь өгөгдлийн бүрдлийг үүсгэх, зоион байгуулах болон " -"нийтлэхэд ашиглагдана. Өгөгдлийн бүрдлийг үүсгэх, засварлах болон нийтлэх " -"эрхээс хамаарч байгууллагын хэрэглэгчдийн төрөл өөр байж болно." +"CKAN дахь байгууллагууд нь өгөгдлийн бүрдлийг үүсгэх, зоион байгуулах " +"болон нийтлэхэд ашиглагдана. Өгөгдлийн бүрдлийг үүсгэх, засварлах болон " +"нийтлэх эрхээс хамаарч байгууллагын хэрэглэгчдийн төрөл өөр байж болно." #: ckan/templates/organization/snippets/organization_form.html:10 msgid "My Organization" @@ -3670,8 +3672,9 @@ msgstr "Миний байгууллагийн талаар товч мэдээл #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3694,14 +3697,14 @@ msgstr "Өгөгдлийн бүрдэл гэж юу вэ?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" "CKAN Өгөгдлийн бүрдэл гэж тайлбар болон бусад дэлгэрэнгүй мэдээлэл бүхий " -"материалууд (файл гэх мэт) бөгөөд тогтсон зам дээр байршуулсан цуглуулга " -"юм. Хэрэглэгч өгөгдөл хайж байхдаа үзэх боломжтой зүйлийг өгөгдлийн бүрдэл " -"гэнэ." +"материалууд (файл гэх мэт) бөгөөд тогтсон зам дээр байршуулсан цуглуулга" +" юм. Хэрэглэгч өгөгдөл хайж байхдаа үзэх боломжтой зүйлийг өгөгдлийн " +"бүрдэл гэнэ." #: ckan/templates/package/confirm_delete.html:12 msgid "Are you sure you want to delete dataset - {name}?" @@ -3781,15 +3784,15 @@ msgstr "Харагдац нэмэх" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the
Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" -"Өгөгдлийн Хөтөч харагдац нь DataStore өргөтгөл идэвхжээгүй тохиолдолд удаан," -" найдваргүй ажиллаж болзошгүй. Дэлгэрэнгүй мэдээллийг Өгөгдлийн Хөтчийн " -"баримтаас танилцана уу." +"Өгөгдлийн Хөтөч харагдац нь DataStore өргөтгөл идэвхжээгүй тохиолдолд " +"удаан, найдваргүй ажиллаж болзошгүй. Дэлгэрэнгүй мэдээллийг Өгөгдлийн " +"Хөтчийн баримтаас танилцана уу." #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:83 @@ -3799,12 +3802,13 @@ msgstr "Нэмэх" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" "Энэ нь өгөгдлийн бүрдлийн өмнөх засвар бөгөөд %(timestamp)s -д " -"засварлагдсан. Иймд одоогийн хувилбараас зөрүүтэй " -"байж болно." +"засварлагдсан. Иймд одоогийн хувилбараас зөрүүтэй" +" байж болно." #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" @@ -3871,14 +3875,13 @@ msgstr "Энэ нөөцөд тохирох харагдаж үүсээгүй б #: ckan/templates/package/resource_read.html:139 msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" -"Энэ сайтын администраторууд харагдац плагинийг идэвхжүүлээгүй байгаа болно" +msgstr "Энэ сайтын администраторууд харагдац плагинийг идэвхжүүлээгүй байгаа болно" #: ckan/templates/package/resource_read.html:140 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" +"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 "" "Хэрэв харагдац нь Өгөгдлийн захыг шаардаж байвал, Өгөгдлийн захын плагин " "идэвхжүүлэгдээгүй, эсвэл өгөгдөл нь Өгөгдлийн зах дээр тавигдаагүй эсвэл " @@ -3949,8 +3952,8 @@ msgstr "Шинэ нөөц үүсгэх" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

This dataset has no data, why not " -"add some?

" +"

This dataset has no data, why not" +" add some?

" msgstr "" "

Тус өгөгдлийн бүрдэлд өгөгдөл байхгүй байна, энд дарж нэмэх боломжтой

" @@ -3973,8 +3976,8 @@ msgid "" " You can also access this registry using the %(api_link)s (see " "%(api_doc_link)s) or download a %(dump_link)s. " msgstr "" -"%(api_link)s -ийг ашиглан бүртгүүлж болно (%(api_doc_link)s -ээс харна уу) " -"эсвэл %(dump_link)s -ээс татаж авна уу." +"%(api_link)s -ийг ашиглан бүртгүүлж болно (%(api_doc_link)s -ээс харна " +"уу) эсвэл %(dump_link)s -ээс татаж авна уу." #: ckan/templates/package/search.html:60 #, python-format @@ -3982,8 +3985,8 @@ msgid "" " You can also access this registry using the %(api_link)s (see " "%(api_doc_link)s). " msgstr "" -"Та %(api_link)s -ийг ашиглан бүртгүүлж болно (%(api_doc_link)s -ээс харна " -"уу)." +"Та %(api_link)s -ийг ашиглан бүртгүүлж болно (%(api_doc_link)s -ээс харна" +" уу)." #: ckan/templates/package/view_edit_base.html:9 msgid "All views" @@ -4075,8 +4078,8 @@ msgid "" "href=\"http://opendefinition.org/licenses/\">opendefinition.org " msgstr "" "Лицензийн тодорхойлолт болон нэмэлт мэдээлллийг opendefinition.org-с авах " -"боломжтой." +"href=\"http://opendefinition.org/licenses/\">opendefinition.org-с " +"авах боломжтой." #: ckan/templates/package/snippets/package_basic_fields.html:76 #: ckan/templates/snippets/organization.html:23 @@ -4101,18 +4104,19 @@ msgstr "Идэвхитэй" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" -"Өгөгдлийн лиценз та дээрх нөөцүүдээс өөрийн тохирохыг сонгон энэхүү " -"өгөгдлийн бүрдэлд нэмж болно. Энэхүү формыг бөглөж илгээснээр та дараах " -"зөвшөөрлөөр нийтлэгдэж байгаа болно. мета өгөгдөл таны энэхүү форумд " -"оруулсан утга нь Нээлттэй өгөгдлийн " -"сангийн лицензтэй болно." +"Өгөгдлийн лиценз та дээрх нөөцүүдээс өөрийн тохирохыг сонгон " +"энэхүү өгөгдлийн бүрдэлд нэмж болно. Энэхүү формыг бөглөж илгээснээр та " +"дараах зөвшөөрлөөр нийтлэгдэж байгаа болно. мета өгөгдөл таны " +"энэхүү форумд оруулсан утга нь Нээлттэй өгөгдлийн" +" сангийн лицензтэй болно." #: ckan/templates/package/snippets/package_form.html:39 msgid "Are you sure you want to delete this dataset?" @@ -4164,7 +4168,7 @@ msgstr "http://example.com/external-data.csv" #: ckan/templates/package/snippets/resource_form.html:30 msgid "eg. January 2011 Gold Prices" -msgstr "Ж-нь: 2011-01 Алны үнэ" +msgstr "Ж-нь: 2011 оны 01 сарын алтны үнэ" #: ckan/templates/package/snippets/resource_form.html:34 msgid "Some useful notes about the data" @@ -4254,8 +4258,7 @@ msgstr "Шигтгээ нөөцийн харагдац" msgid "" "You can copy and paste the embed code into a CMS or blog software that " "supports raw HTML" -msgstr "" -"Хуулж авсан шигтгээ код оо та КМС эсвэл блог програм дотор оо нааж болно" +msgstr "Хуулж авсан шигтгээ код оо та КМС эсвэл блог програм дотор оо нааж болно" #: ckan/templates/package/snippets/resource_view.html:80 msgid "Width" @@ -4408,8 +4411,7 @@ msgstr "Ямар ч лиценз өгөгдөөгүй" #: ckan/templates/snippets/license.html:28 msgid "This dataset satisfies the Open Definition." -msgstr "" -"Энэ өгөгдлийн бүрдэл нь Нээлттэй тодорхойлолтын шаардлагыг хангаж байна." +msgstr "Энэ өгөгдлийн бүрдэл нь Нээлттэй тодорхойлолтын шаардлагыг хангаж байна." #: ckan/templates/snippets/organization.html:48 msgid "There is no description for this organization" @@ -4435,11 +4437,11 @@ msgstr "

Өөр хайлт хийнэ үү.

" #: ckan/templates/snippets/search_form.html:87 msgid "" -"

There was an error while searching." -" Please try again.

" +"

There was an error while " +"searching. Please try again.

" msgstr "" -"

Хайлт хийхэд алдаа гарлаа. дахин " -"хайлт хийнэ үү.

" +"

Хайлт хийхэд алдаа гарлаа. дахин" +" хайлт хийнэ үү.

" #: ckan/templates/snippets/search_result_text.html:15 msgid "{number} dataset found for \"{query}\"" @@ -4485,7 +4487,7 @@ msgstr "Бүлэг олдсонгүй" msgid "{number} organization found for \"{query}\"" msgid_plural "{number} organizations found for \"{query}\"" msgstr[0] "\"{query}\" холбогдолтой {number} - н байгууллага олдлоо" -msgstr[1] "\"{query}\" -н үр дүнд {number} -н байгууллага олдлоо" +msgstr[1] "\"{query}\" -н үр дүнд {number} байгууллага олдлоо" #: ckan/templates/snippets/search_result_text.html:28 msgid "No organizations found for \"{query}\"" @@ -4585,7 +4587,8 @@ msgstr "Бүртгэлийн мэдээлэл" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" "Таны мэдээлэл CKAN-ын хэрэглэгчдэд таны хэн болох, юу хийдэг талаарх " "мэдээлэл олгож өгнө." @@ -4815,11 +4818,11 @@ msgstr "Хүсэлтийг дахин эхлүүлэх" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" -"Тус талбарт хэрэглэгчийн нэрийг оруулснаар шинэ нууц үг оруулах боломж бүхий" -" холбоосыг таны имэйл хаяг руу илгээнэ." +"Тус талбарт хэрэглэгчийн нэрийг оруулснаар шинэ нууц үг оруулах боломж " +"бүхий холбоосыг таны имэйл хаяг руу илгээнэ." #: ckan/templates/user/snippets/followee_dropdown.html:15 #: ckan/templates/user/snippets/followee_dropdown.html:16 @@ -4845,3 +4848,4 @@ msgstr "Хэрэглэгчид хайх" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/ne/LC_MESSAGES/ckan.po b/ckan/i18n/ne/LC_MESSAGES/ckan.po index ed40974fbbd..e19bf51ff89 100644 --- a/ckan/i18n/ne/LC_MESSAGES/ckan.po +++ b/ckan/i18n/ne/LC_MESSAGES/ckan.po @@ -17,7 +17,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -4713,9 +4713,6 @@ msgid "Your password must be 8 characters or longer." msgstr "" #~ msgid "" -#~ "Viewing {package_type} datasets in {format}" -#~ " format is not supported (template " -#~ "file {file} not found)." #~ msgstr "" #~ msgid "Reorder resources" @@ -4766,13 +4763,6 @@ msgstr "" #~ msgid "Add dataset" #~ msgstr "" -#~ msgid "" -#~ "Are you sure you want to delete" -#~ " this Organization? This will delete " -#~ "all the public and private datasets " -#~ "belonging to this organization." -#~ msgstr "" - #~ msgid "Embed Data Viewer" #~ msgstr "" diff --git a/ckan/i18n/nl/LC_MESSAGES/ckan.po b/ckan/i18n/nl/LC_MESSAGES/ckan.po index 0c10f6a2ac8..f00490c2405 100644 --- a/ckan/i18n/nl/LC_MESSAGES/ckan.po +++ b/ckan/i18n/nl/LC_MESSAGES/ckan.po @@ -1,23 +1,25 @@ -# Translations template for ckan. +# Dutch translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Adrià Mercader , 2018\n" +"Language: nl\n" "Language-Team: Dutch (https://www.transifex.com/okfn/teams/11162/nl/)\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,14 +130,14 @@ msgstr "Datastore bron niet gevonden" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" "De data was ongeldig (bijvoorbeeld een numerieke waarde viel buiten de " "geldige reeks of was aan een tekstveld toegevoegd)." @@ -157,14 +159,14 @@ msgstr "CKAN Data API" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 #: ckanext/datastore/templates/ajax_snippets/api_info.html:25 msgid "Access resource data via a web API with powerful query support" -msgstr "" -"Toegang tot bron data via een web API met krachtige query ondersteuning" +msgstr "Toegang tot bron data via een web API met krachtige query ondersteuning" #: ckanext/datastore/templates/ajax_snippets/api_info.html:26 msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -175,11 +177,11 @@ msgstr "Eindpunten" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "" -"De Data API kan worden benaderd via de volgende acties van de CKAN action " -"API." +"De Data API kan worden benaderd via de volgende acties van de CKAN action" +" API." #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 #: ckanext/datastore/templates/ajax_snippets/api_info.html:44 @@ -316,7 +318,8 @@ msgstr "Data API" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" " Verdere informatie in de Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " +"

Site Title: This is the title of this CKAN instance " +"It appears in various places throughout CKAN.

" +"

Style: Choose from a list of simple variations of the" +" main colour scheme to get a very quick custom theme working.

" +"

Site Tag Logo: This is the logo that appears in the " +"header of all the CKAN instance templates.

About:" +" This text will appear on this CKAN instances about page.

Intro " "Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" "

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend <head> tag of every page. If you wish to customize the" +" templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" +"

Homepage: This is for choosing a predefined layout " +"for the modules that appear on your homepage.

" msgstr "" "

Titel: Dit is de titel van deze CKAN installatie. De " "titel verschijnt op verschillende plaatsen in de applicatie.

" "

Stijl: Kies uit een lijst met variaties van het " -"standaard kleurenschema.

Site Tag Logo: Dit is het " -"logo dat verschijnt in de kop van alle CKAN sjablonen.

" +"standaard kleurenschema.

Site Tag Logo: Dit is " +"het logo dat verschijnt in de kop van alle CKAN sjablonen.

" "

Over: Deze tekst verschijnt op de \"over\" pagina.

" "

Introductietekst: Deze tekst verschijnt op de \"home\" pagina als welkomstboodschap voor " -"bezoekers.

Custom CSS: Deze CSS verschijnt in de kop" -" (<head>) sectie van elke pagina. Voor het geavanceerd " -"aanpassen van de sjablonen van CKAN verwijzen we graag naar de documentatie.

" +"bezoekers.

Custom CSS: Deze CSS verschijnt in de " +"kop (<head>) sectie van elke pagina. Voor het " +"geavanceerd aanpassen van de sjablonen van CKAN verwijzen we graag naar " +"de documentatie.

" "

Home pagina: Hiermee kan worden aangegeven in welke " "layout en welke modules op de home pagina worden getoond.

" @@ -2947,13 +2946,14 @@ msgstr "Beheer CKAN" #, python-format msgid "" "

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" +"Proceed with care!

For guidance on using sysadmin features, see " +"the CKAN sysadmin " +"guide

" msgstr "" "

Als sysadmin gebruiker heeft u de volledige controle over deze CKAN " -"installatie. Wees voorzichtig!

Zie de CKAN sysadmin guide voor hulp bij het gebruik van sysadmin " -"functionaliteiten.

" +"installatie. Wees voorzichtig!

Zie de CKAN sysadmin guide voor hulp bij " +"het gebruik van sysadmin functionaliteiten.

" #: ckan/templates/admin/trash.html:20 msgid "Purge" @@ -3112,9 +3112,8 @@ msgstr "Weet u zeker dat u dit lid wilt deleten - {name}?" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "Beheer" @@ -3146,8 +3145,7 @@ msgstr "Zoek groepen..." msgid "There are currently no groups for this site" msgstr "Er zijn momenteel geen groepen voor deze site" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "Wil je er niet een maken?" @@ -3196,25 +3194,21 @@ msgstr "Nieuwe gebruiker" #: ckan/templates/group/member_new.html:45 #: ckan/templates/organization/member_new.html:46 msgid "If you wish to invite a new user, enter their email address." -msgstr "" -"Als je een nieuwe gebruiker wil uitnodigen, vul dan zijn mailadres in." +msgstr "Als je een nieuwe gebruiker wil uitnodigen, vul dan zijn mailadres in." -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "Rol" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "Weet u zeker dat u dit lid wil verwijderen?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3235,13 +3229,13 @@ msgstr "Wat zijn de rollen?" #: ckan/templates/group/member_new.html:80 msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " +"

Admin: Can edit group information, as well as manage" +" organization members.

Member: Can add/remove " "datasets from groups

" msgstr "" -"

Admin: Kan groepsinformatie wijzigen en organisatieleden" -" beheren.

Member: Kan datasets toevoegen/verwijderen" -" van groepen

" +"

Admin: Kan groepsinformatie wijzigen en " +"organisatieleden beheren.

Member: Kan datasets " +"toevoegen/verwijderen van groepen

" #: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 #: ckan/templates/group/new.html:7 @@ -3311,15 +3305,15 @@ msgstr "Wat zijn groepen?" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" -"U kunt een CKAN groep maken en collecties van datagroepen beheren. DIt kan " -"zijn om datasets te catalogiseren voor een project of een team, of op basis " -"van een thema, of als een eenvoudige weg om mensen jouw datasets te vinden " -"en te doorzoeken." +"U kunt een CKAN groep maken en collecties van datagroepen beheren. DIt " +"kan zijn om datasets te catalogiseren voor een project of een team, of op" +" basis van een thema, of als een eenvoudige weg om mensen jouw datasets " +"te vinden en te doorzoeken." #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 @@ -3382,13 +3376,14 @@ msgid "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3398,19 +3393,21 @@ msgid "" "overview: http://ckan.org/features/

" msgstr "" -"

CKAN is een toonaangevend open-source data portal platform.

CKAN " -"is een out-of-the-box software oplossing die data bruikbaar en open maakt. " -"CKAN biedt instrumenten aan die de mogelijkheden geven voor de publicatie, " -"het delen, het vinden en het gebruiken van data. (inclusief de opslag van " -"data). CKAN richt zich op data publishers (nationale en regionale overheden," -" bedrijven en organisaties) die hun data open en beschikbaar willen " -"maken.

CKAN wordt gebruikt door overheden en communities over de " -"hele wereld. Waaronder het Verenigd Koninkrijk de Verenigde StatenCKAN is een toonaangevend open-source data portal platform.

" +"

CKAN is een out-of-the-box software oplossing die data bruikbaar en " +"open maakt. CKAN biedt instrumenten aan die de mogelijkheden geven voor " +"de publicatie, het delen, het vinden en het gebruiken van data. " +"(inclusief de opslag van data). CKAN richt zich op data publishers " +"(nationale en regionale overheden, bedrijven en organisaties) die hun " +"data open en beschikbaar willen maken.

CKAN wordt gebruikt door " +"overheden en communities over de hele wereld. Waaronder het Verenigd " +"Koninkrijk de Verenigde Statendata.gov.uk de Europeese Unie publicdata.eu, de Braziliaanse dados.gov.br,en Nederlandse overheid.

" -"

CKAN: http://ckan.org/
CKAN Tour: " -"http://ckan.org/tour/
Features " +"href=\"http://dados.gov.br/\">dados.gov.br,en Nederlandse " +"overheid.

CKAN: http://ckan.org/
CKAN Tour: http://ckan.org/tour/
Features " "overzicht: http://ckan.org/features/

" @@ -3420,11 +3417,12 @@ msgstr "Welkom bij CKAN" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" -"Dit is een mooie inleidende pararaaf over CKAN of de site in het algemeen. " -"Tot op heden hebben we nog geen copy hier, maar dit zal binnenkort komen." +"Dit is een mooie inleidende pararaaf over CKAN of de site in het " +"algemeen. Tot op heden hebben we nog geen copy hier, maar dit zal " +"binnenkort komen." #: ckan/templates/home/snippets/promoted.html:19 msgid "This is a featured section" @@ -3469,8 +3467,8 @@ msgstr "groepen" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" "U kan hiet Admin: Can add/edit and delete datasets, as well as " "manage organization members.

Editor: Can add and " "edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" +"

Member: Can view the organization's private datasets," +" but not add new datasets.

" msgstr "" -"

Admin: Kan datasets toevoegen/bewerken/verwijderen en " -"leden van organisaties beheren.

Editor: Kan datasets" -" toevoegen en bewerken, maar kan de leden van organisaties niet beheren.

" -"

Member: Kan de datasets van organisaties bekijken , " -"maar niet toevoegen.

" +"

Admin: Kan datasets toevoegen/bewerken/verwijderen " +"en leden van organisaties beheren.

Editor: Kan " +"datasets toevoegen en bewerken, maar kan de leden van organisaties niet " +"beheren.

Member: Kan de datasets van organisaties" +" bekijken , maar niet toevoegen.

" #: ckan/templates/organization/members.html:14 msgid "{count} member" @@ -3637,29 +3635,29 @@ msgstr "Wat zijn organisaties?" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" +"

Organizations act like publishing departments for datasets (for " +"example, the Department of Health). This means that datasets can be " +"published by and belong to a department instead of an individual " +"user.

Within organizations, admins can assign roles and authorise " +"its members, giving individual users the right to publish datasets from " +"that particular organisation (e.g. Office of National Statistics).

" msgstr "" -"

Organisaties zijn afdelingen die datasets publiceren (bv. de afdeling " -"Volksgezondheid). Dit betekent dat de datasets gepubliceerd en beheerd " +"

Organisaties zijn afdelingen die datasets publiceren (bv. de afdeling" +" Volksgezondheid). Dit betekent dat de datasets gepubliceerd en beheerd " "kunnen worden door een afdeling in plaats van een enkele gebruiker.

" -"

Binnen organisaties kunnen beheerders rollen toewijzen aan leden. Hiermee" -" geven zij leden toestemming om datasets te publiceren (bv. Centraal Bureau " -"voor de Statistiek).

" +"

Binnen organisaties kunnen beheerders rollen toewijzen aan leden. " +"Hiermee geven zij leden toestemming om datasets te publiceren (bv. " +"Centraal Bureau voor de Statistiek).

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" "CKAN organisaties worden gebruikt om collecties van datasets te maken, " -"beheren en publiceren. Gebruikers kunnen meerdere rollen hebben binnen een " -"organisatie, afhankelijk van een autorisatielevel om toe te voegen, " +"beheren en publiceren. Gebruikers kunnen meerdere rollen hebben binnen " +"een organisatie, afhankelijk van een autorisatielevel om toe te voegen, " "wijzigen en publiceren." #: ckan/templates/organization/snippets/organization_form.html:10 @@ -3676,8 +3674,9 @@ msgstr "Informatie over de organisatie..." #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3700,13 +3699,13 @@ msgstr "Wat zijn datasets?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" "Een CKAN dataset is een verzameling van data bronnen (zoals bestanden), " -"samen met een beschrijving en andere informatie, op een vaste URL. Datasets " -"is datgene dat gebruikers zien wanneer ze zoeken voor data." +"samen met een beschrijving en andere informatie, op een vaste URL. " +"Datasets is datgene dat gebruikers zien wanneer ze zoeken voor data." #: ckan/templates/package/confirm_delete.html:12 msgid "Are you sure you want to delete dataset - {name}?" @@ -3786,15 +3785,15 @@ msgstr "Overzicht toevoegen" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the
Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" -"Data Explorer views kunnen traag en onbetrouwbaar zijn tenzij de DataStore " -"extensie actief is. Zie de Data Explorer " -"documentatie voor meer informatie. " +"Data Explorer views kunnen traag en onbetrouwbaar zijn tenzij de " +"DataStore extensie actief is. Zie de Data Explorer" +" documentatie voor meer informatie. " #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:83 @@ -3804,11 +3803,13 @@ msgstr "Toevoegen" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" -"Dit is een oude revisie van de dataset zoals bewerkt op %(timestamp)s. Het " -"kan aanzienlijk verschillen van de huidige revisie." +"Dit is een oude revisie van de dataset zoals bewerkt op %(timestamp)s. " +"Het kan aanzienlijk verschillen van de huidige " +"revisie." #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" @@ -3879,9 +3880,9 @@ msgstr "" #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" #: ckan/templates/package/resource_read.html:162 @@ -3949,11 +3950,11 @@ msgstr "Voeg een nieuwe bron toe" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

This dataset has no data, why not " -"add some?

" +"

This dataset has no data, why not" +" add some?

" msgstr "" -"

Deze dataset heeft geen data, Voeg " -"toe

" +"

Deze dataset heeft geen data, Voeg" +" toe

" #: ckan/templates/package/search.html:52 msgid "API" @@ -4044,8 +4045,7 @@ msgstr "Er zijn geen organisaties waaraan u deze dataset kan toewijzen." msgid "" "Ask a system administrator to create an organization before you can " "continue." -msgstr "" -"Vraag een systeembeheerder een organisatie te maken voor u verder gaat." +msgstr "Vraag een systeembeheerder een organisatie te maken voor u verder gaat." #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 @@ -4099,11 +4099,12 @@ msgstr "Actief" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" #: ckan/templates/package/snippets/package_form.html:39 @@ -4214,8 +4215,7 @@ msgstr "Wat is een bron?" #: ckan/templates/package/snippets/resource_help.html:4 msgid "A resource can be any file or link to a file containing useful data." -msgstr "" -"Een bron kan een bestand of link zijn die over nuttige informatie beschikt" +msgstr "Een bron kan een bestand of link zijn die over nuttige informatie beschikt" #: ckan/templates/package/snippets/resource_item.html:23 msgid "Explore" @@ -4424,8 +4424,8 @@ msgstr "

Probeer een andere zoekopdracht.

" #: ckan/templates/snippets/search_form.html:87 msgid "" -"

There was an error while searching." -" Please try again.

" +"

There was an error while " +"searching. Please try again.

" msgstr "" #: ckan/templates/snippets/search_result_text.html:15 @@ -4572,9 +4572,11 @@ msgstr "Accountinformatie" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" -"Jouw profiel laat andere CKAN gebruikers zien wie jij bent en wat jij doet." +"Jouw profiel laat andere CKAN gebruikers zien wie jij bent en wat jij " +"doet." #: ckan/templates/user/edit_user_form.html:7 msgid "Change details" @@ -4700,8 +4702,7 @@ msgstr "Je bent al ingelogd" #: ckan/templates/user/logout_first.html:22 msgid "You need to log out before you can log in with another account." -msgstr "" -"Je moet eerst uitloggen voordat je kan inloggen met een andere account." +msgstr "Je moet eerst uitloggen voordat je kan inloggen met een andere account." #: ckan/templates/user/logout_first.html:23 msgid "Log out now" @@ -4804,11 +4805,11 @@ msgstr "Herstel aanvragen" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" -"Voor je gebruikersnaam in en wij sturen je een e-mail met een link naar een " -"nieuw wachtwoord." +"Voor je gebruikersnaam in en wij sturen je een e-mail met een link naar " +"een nieuw wachtwoord." #: ckan/templates/user/snippets/followee_dropdown.html:15 #: ckan/templates/user/snippets/followee_dropdown.html:16 @@ -4834,3 +4835,4 @@ msgstr "Zoek Gebruikers" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/no/LC_MESSAGES/ckan.po b/ckan/i18n/no/LC_MESSAGES/ckan.po index 0f41328d837..1dfbc3d47d8 100644 --- a/ckan/i18n/no/LC_MESSAGES/ckan.po +++ b/ckan/i18n/no/LC_MESSAGES/ckan.po @@ -1,23 +1,26 @@ -# Translations template for ckan. +# Norwegian Bokmål (Norway) translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Adrià Mercader , 2018\n" -"Language-Team: Norwegian (https://www.transifex.com/okfn/teams/11162/no/)\n" +"Language: nb_NO\n" +"Language-Team: Norwegian (https://www.transifex.com/okfn/teams/11162/no/)" +"\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: no\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,17 +131,17 @@ msgstr "Fant ikke DataStore-ressurs" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" -"Ugyldige data (f.eks. et tall utenfor tillatt verdi eller tekst i et felt " -"for tall)." +"Ugyldige data (f.eks. et tall utenfor tillatt verdi eller tekst i et felt" +" for tall)." #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 #: ckanext/datastore/logic/action.py:344 ckanext/datastore/logic/action.py:457 @@ -163,7 +166,8 @@ msgstr "Få tilgang til ressursdata via et web-API med sterk query-støtte" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -174,8 +178,8 @@ msgstr "Endpoints" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "Data-APIet kan nås via disse handlingene til CKANs action-API." #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 @@ -313,11 +317,13 @@ msgstr "Data-API" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" "Les mer i dokumentasjonen for data-API i CKAN og DataStore.

" +"target=\"_blank\">dokumentasjonen for data-API i CKAN og " +"DataStore.

" #: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 msgid "Table" @@ -722,8 +728,7 @@ msgstr "Nettside-adresse" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "eg. http://example.com (if blank uses resource url)" -msgstr "" -"f.eks. http://example.com (hvis denne er tom brukes URL til ressursen)" +msgstr "f.eks. http://example.com (hvis denne er tom brukes URL til ressursen)" #: ckan/templates/dataviewer/snippets/data_preview.html:23 #: ckan/templates/package/snippets/resource_view.html:64 @@ -1083,8 +1088,8 @@ msgstr "Oppdater profilen din og legg til e-postadressen din. #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "" -"%s bruker e-postadressen din i tilfelle du trenger å tilbakestille passordet" -" ditt." +"%s bruker e-postadressen din i tilfelle du trenger å tilbakestille " +"passordet ditt." #: ckan/controllers/package.py:304 msgid "Invalid search query: {error_message}" @@ -1114,8 +1119,7 @@ msgstr "Ugyldig versjonsformat: %r" #: ckan/controllers/package.py:415 msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." -msgstr "" -"Støtter ikke visning av datasett av typen \"{package_type}\" ({file_!r})." +msgstr "Støtter ikke visning av datasett av typen \"{package_type}\" ({file_!r})." #: ckan/controllers/package.py:454 ckan/controllers/package.py:839 #: ckan/controllers/package.py:940 ckan/controllers/package.py:988 @@ -1312,8 +1316,8 @@ msgid "" "User \"%s\" is now registered but you are still logged in as \"%s\" from " "before" msgstr "" -"Bruker \"%s\" er nå registrert, men du er fortsatt logget inn som \"%s\" fra" -" før" +"Bruker \"%s\" er nå registrert, men du er fortsatt logget inn som \"%s\" " +"fra før" #: ckan/controllers/user.py:294 ckan/views/user.py:174 msgid "Unauthorized to edit a user." @@ -1822,8 +1826,8 @@ msgstr "Navnet må inneholde maksimalt %i tegn" #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "Må bestå av små bokstaver, tall og og disse symbolene: -_" #: ckan/logic/validators.py:363 @@ -1868,7 +1872,8 @@ msgstr "Lengden til stikkordet \"%s\" er mer enn maksimalt %i" #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "" -"Stikkordet \"%s\" må skrives med alfanumeriske tegn (ascii) og symboler: -_." +"Stikkordet \"%s\" må skrives med alfanumeriske tegn (ascii) og symboler: " +"-_." #: ckan/logic/validators.py:438 #, python-format @@ -1966,8 +1971,8 @@ msgstr "ikke en streng" #: ckan/logic/validators.py:790 msgid "This parent would create a loop in the hierarchy" msgstr "" -"Kan ikke sette dette elementet som overordnet, det ville føre til en sirkel " -"i hierarkiet" +"Kan ikke sette dette elementet som overordnet, det ville føre til en " +"sirkel i hierarkiet" #: ckan/logic/validators.py:800 msgid "\"filter_fields\" and \"filter_values\" should have the same length" @@ -2027,8 +2032,7 @@ msgstr "Rangeringen må være mellom %i og %i." #: ckan/logic/action/create.py:1078 msgid "Error sending the invite email, the user was not created: {0}" -msgstr "" -"Klarte ikke å sende invitasjons-e-post, brukeren ble ikke opprettet: {0}" +msgstr "Klarte ikke å sende invitasjons-e-post, brukeren ble ikke opprettet: {0}" #: ckan/logic/action/create.py:1254 ckan/logic/action/create.py:1261 msgid "You must be logged in to follow users" @@ -2169,8 +2173,7 @@ msgstr "Ingen datakilde funnet for denne ressursen, kan ikke sjekke aut." #: ckan/logic/auth/create.py:76 #, python-format msgid "User %s not authorized to create resources on dataset %s" -msgstr "" -"Bruker %s har ikke tillatelse til å opprette ressurser for datasettet %s" +msgstr "Bruker %s har ikke tillatelse til å opprette ressurser for datasettet %s" #: ckan/logic/auth/create.py:108 #, python-format @@ -2612,8 +2615,8 @@ msgstr "Finner ikke data for opplastet fil" #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "" "Du laster opp en fil. Er du sikker på at du vil forlate siden og stoppe " "denne opplastingen?" @@ -2893,36 +2896,37 @@ msgstr "Oppsett-valg for CKAN" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " +"

Site Title: This is the title of this CKAN instance " +"It appears in various places throughout CKAN.

" +"

Style: Choose from a list of simple variations of the" +" main colour scheme to get a very quick custom theme working.

" +"

Site Tag Logo: This is the logo that appears in the " +"header of all the CKAN instance templates.

About:" +" This text will appear on this CKAN instances about page.

Intro " "Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" "

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend <head> tag of every page. If you wish to customize the" +" templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" +"

Homepage: This is for choosing a predefined layout " +"for the modules that appear on your homepage.

" msgstr "" "

Nettstedets tittel: Dette er navnet på dette CKAN-" "nettstedet. Det dukker opp forskjellige steder rundt omkring i CKAN.

" -"

Stil: Velg blant flere varianter av fargekart for å få " -"en rask tilpasning av utseendet.

Logo: Dette er " -"logoen som vises i toppteksten på alle sidene.

Om: " -"Denne teksten vises på om-siden.

" -"

Introtekst: Denne teksten vises på hjemmesiden, og er en første informasjon til alle " -"besøkende.

Egendefinert CSS: Dette er en CSS-blokk " -"som settes inn i i <head>-tagten på alle sidene. Hvis du " -"vil styre utseendet mer fullstendig, les dokumentasjonen.

" -"

Hjemmeside: Her velger du en forhåndsdefinert layout for" -" modulene som vises på hjemmesiden.

" +"

Stil: Velg blant flere varianter av fargekart for å " +"få en rask tilpasning av utseendet.

Logo: Dette " +"er logoen som vises i toppteksten på alle sidene.

" +"

Om: Denne teksten vises på om-siden.

Introtekst: Denne teksten vises " +"på hjemmesiden, og er en første informasjon " +"til alle besøkende.

Egendefinert CSS: Dette er en" +" CSS-blokk som settes inn i i <head>-tagten på alle " +"sidene. Hvis du vil styre utseendet mer fullstendig, les dokumentasjonen.

" +"

Hjemmeside: Her velger du en forhåndsdefinert layout " +"for modulene som vises på hjemmesiden.

" #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 @@ -2937,12 +2941,13 @@ msgstr "Administrer CKAN" #, python-format msgid "" "

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" +"Proceed with care!

For guidance on using sysadmin features, see " +"the CKAN sysadmin " +"guide

" msgstr "" -"

Som sysadmin-bruker har du full kontroll over denne CKAN-installasjonen." -" Vær sikker på at du vet hva du gjør!

Du finner mer informasjon i " -"CKANs sysadmin-" +"

Som sysadmin-bruker har du full kontroll over denne CKAN-" +"installasjonen. Vær sikker på at du vet hva du gjør!

Du finner mer" +" informasjon i CKANs sysadmin-" "dokumentasjon

" #: ckan/templates/admin/trash.html:20 @@ -3102,9 +3107,8 @@ msgstr "Er du sikker på at du vil slette medlem - {name}?" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "Administrer" @@ -3136,8 +3140,7 @@ msgstr "Søk i grupper..." msgid "There are currently no groups for this site" msgstr "Det er for tiden ingen grupper for dette nettstedet" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "Hva med å opprette en?" @@ -3188,22 +3191,19 @@ msgstr "Ny bruker" msgid "If you wish to invite a new user, enter their email address." msgstr "Hvis du vil invitere en ny bruker, oppgi e-postadressen deres" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "Rolle" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "Er du sikker på at du vil slette dette medlemmet?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3224,13 +3224,13 @@ msgstr "Hva er roller?" #: ckan/templates/group/member_new.html:80 msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " +"

Admin: Can edit group information, as well as manage" +" organization members.

Member: Can add/remove " "datasets from groups

" msgstr "" "

Admin: Kan redigere informasjon om gruppa og " -"administrere medlemmer av organisasjonen.

Medlem: " -"Kan legge til og fjerne datasett fra grupper.

" +"administrere medlemmer av organisasjonen.

Medlem:" +" Kan legge til og fjerne datasett fra grupper.

" #: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 #: ckan/templates/group/new.html:7 @@ -3300,15 +3300,15 @@ msgstr "Hva er grupper?" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" "Du kan bruke grupper i CKAN for å opprette og administrere samlinger av " "datasett. Du kan for eksempel gruppere datasett for et bestemt prosjekt " -"eller en arbeidsgruppe, et bestemt emne, eller som en enkel måte å hjelpe " -"brukere til å finne fram til datasettene dine." +"eller en arbeidsgruppe, et bestemt emne, eller som en enkel måte å hjelpe" +" brukere til å finne fram til datasettene dine." #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 @@ -3371,13 +3371,14 @@ msgid "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3390,17 +3391,19 @@ msgstr "" "

CKAN er verdens ledende programvare for dataportaler, basert på åpen " "kildekode.

CKAN er en komplett programvareløsning som gjør data " "tilgjengelig og klar for bruk - ved å tilby verktøy som gjør det lett å " -"publisere, dele, finne og bruke data (inkludert lagring av data og robuste " -"data-APIer). CKAN er rettet mot dem som vil publisere data (nasjonale og " -"regionale myndigheter, bedrifter og organisasjoner) og åpne dem opp for " -"viderebruk.

CKAN brukes av myndigheter og brukergrupper verden over, " -"og brukes til en rekke offisielle og brukerdrevne dataportaler, som " -"Storbritannias data.gov.uk og EUs

CKAN brukes av myndigheter og " +"brukergrupper verden over, og brukes til en rekke offisielle og " +"brukerdrevne dataportaler, som Storbritannias data.gov.uk og EUs publicdata.eu, den brasilianske dados.gov.br, så vel som portaler for byer" -" og kommuner i USA, Storbritannia, Argentina, Finland og andre steder.

" -"

CKAN: http://ckan.org/
CKAN Tour: " -"http://ckan.org/tour/
Features " +"href=\"http://dados.gov.br/\">dados.gov.br, så vel som portaler for " +"byer og kommuner i USA, Storbritannia, Argentina, Finland og andre " +"steder.

CKAN: http://ckan.org/ CKAN Tour: http://ckan.org/tour/
Features " "overview: http://ckan.org/features/

" @@ -3410,11 +3413,11 @@ msgstr "Velkommen til CKAN" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" -"Dette er en fin innledning til CKAN eller om nettstedet. Snart har vi en bra" -" tekst klar her." +"Dette er en fin innledning til CKAN eller om nettstedet. Snart har vi en " +"bra tekst klar her." #: ckan/templates/home/snippets/promoted.html:19 msgid "This is a featured section" @@ -3459,13 +3462,13 @@ msgstr "grupper" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" -"Du kan bruke Markdown-formatering her" +"Du kan bruke Markdown-formatering her" #: ckan/templates/macros/form.html:277 msgid "This field is required" @@ -3530,8 +3533,8 @@ msgstr "Utkast" #: ckan/templates/package/read.html:11 #: ckan/templates/package/snippets/package_basic_fields.html:98 #: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 msgid "Private" msgstr "Privat" @@ -3586,14 +3589,14 @@ msgid "" "

Admin: Can add/edit and delete datasets, as well as " "manage organization members.

Editor: Can add and " "edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" +"

Member: Can view the organization's private datasets," +" but not add new datasets.

" msgstr "" -"

Admin: Kan legge til, redigere og slette datasett, og " -"administrere gruppemedlemmer.

Redaktør: Kan legge " -"til og redigere datasett, men ikke administrere gruppemedlemmer.

" -"

Medlem: Kan se gruppens private datasett, men ikke legge" -" til nye datasett.

" +"

Admin: Kan legge til, redigere og slette datasett, og" +" administrere gruppemedlemmer.

Redaktør: Kan " +"legge til og redigere datasett, men ikke administrere " +"gruppemedlemmer.

Medlem: Kan se gruppens private " +"datasett, men ikke legge til nye datasett.

" #: ckan/templates/organization/members.html:14 msgid "{count} member" @@ -3627,25 +3630,25 @@ msgstr "Hva er organisasjoner?" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" +"

Organizations act like publishing departments for datasets (for " +"example, the Department of Health). This means that datasets can be " +"published by and belong to a department instead of an individual " +"user.

Within organizations, admins can assign roles and authorise " +"its members, giving individual users the right to publish datasets from " +"that particular organisation (e.g. Office of National Statistics).

" msgstr "" "

Organisasjoner fungerer som publiserende enheter for datasett. Dette " "betyr at datasett kan bli publisert av og tilhøre en enhet (f.eks. " "Helsedirektoratet eller Statistisk sentralbyrå) i stedet for en enkelt " -"bruker.

Innen en organisasjon kan administratorer tildele roller og gi" -" tillatelser til medlemmene sine, slik at enkeltbrukere kan å publisere " -"datasett fra organisasjonen sin.

" +"bruker.

Innen en organisasjon kan administratorer tildele roller og" +" gi tillatelser til medlemmene sine, slik at enkeltbrukere kan å " +"publisere datasett fra organisasjonen sin.

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" "Organisasjoner i CKAN brukes for å opprette, administrere og publisere " "samlinger av datasett. Brukere kan ha forskjellige roller innen en " @@ -3666,8 +3669,9 @@ msgstr "Litt informasjon om min organisasjon..." #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3690,13 +3694,13 @@ msgstr "Hva er datasett?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" -"Datasett i CKAN er en samling av dataressurser (f.eks. filer), sammen med " -"beskrivelse og annen informasjon, på en fast URL. Datasett er det brukere " -"ser når de søker etter data." +"Datasett i CKAN er en samling av dataressurser (f.eks. filer), sammen med" +" beskrivelse og annen informasjon, på en fast URL. Datasett er det " +"brukere ser når de søker etter data." #: ckan/templates/package/confirm_delete.html:12 msgid "Are you sure you want to delete dataset - {name}?" @@ -3776,15 +3780,15 @@ msgstr "Opprett visning" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" -"Data Explorer-visninger kan være trege og upålitelige hvis ikke DataStore-" -"tillegget er installert. Les mer i dokumentasjonen for Data " -"Explorer. " +"Data Explorer-visninger kan være trege og upålitelige hvis ikke " +"DataStore-tillegget er installert. Les mer i dokumentasjonen for Data Explorer. " #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:83 @@ -3794,11 +3798,13 @@ msgstr "Legg til" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" -"Dette er en eldre versjon av dette datasettet, redigert %(timestamp)s. Det " -"kan være forskjellig fra den nåværende versjonen." +"Dette er en eldre versjon av dette datasettet, redigert %(timestamp)s. " +"Det kan være forskjellig fra den nåværende " +"versjonen." #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" @@ -3864,18 +3870,19 @@ msgstr "Det har ikke blitt laget noen visning som passer for denne ressursen" #: ckan/templates/package/resource_read.html:139 msgid "The site administrators may not have enabled the relevant view plugins" msgstr "" -"Nettstedsadministratorene har kanskje ikke aktivert de nødvendige tilleggene" -" for visningen." +"Nettstedsadministratorene har kanskje ikke aktivert de nødvendige " +"tilleggene for visningen." #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" -"Hvis en visning krever DataStore kan det hende at DataStore-tillegget ikke " -"er aktivert på nettstedet, eller dataene har ikke blitt importert inn i " -"DataStore ennå, eller DataStore er ikke ferdig med å behandle dataene." +"Hvis en visning krever DataStore kan det hende at DataStore-tillegget " +"ikke er aktivert på nettstedet, eller dataene har ikke blitt importert " +"inn i DataStore ennå, eller DataStore er ikke ferdig med å behandle " +"dataene." #: ckan/templates/package/resource_read.html:162 msgid "Additional Information" @@ -3942,11 +3949,11 @@ msgstr "Legg til ny ressurs" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

This dataset has no data, why not " -"add some?

" +"

This dataset has no data, why not" +" add some?

" msgstr "" -"

Dette datasettet har ingen data, hva" -" med å legge til noen?

" +"

Dette datasettet har ingen data, hva med å legge til noen?

" #: ckan/templates/package/search.html:52 msgid "API" @@ -4031,8 +4038,7 @@ msgstr "Opprett ny organisasjon" #: ckan/templates/package/snippets/cannot_create_package.html:18 msgid "There are no organizations to which you can assign this dataset." -msgstr "" -"Det finnes ikke noen organisasjoner som du kan knytte dette datasettet til" +msgstr "Det finnes ikke noen organisasjoner som du kan knytte dette datasettet til" #: ckan/templates/package/snippets/cannot_create_package.html:19 msgid "" @@ -4092,15 +4098,16 @@ msgstr "Aktiv" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" -"Datalisensen du velger over gjelder kun innholdet av ressursfilene du" -" legger til i dette datasettet. Ved å fylle ut dette skjemaet godtar du å " -"publisere metadataene under lisensen Datalisensen
du velger over gjelder kun innholdet av ressursfilene" +" du legger til i dette datasettet. Ved å fylle ut dette skjemaet godtar " +"du å publisere metadataene under lisensen Open Database " "License." @@ -4400,8 +4407,8 @@ msgstr "Lisens er ikke oppgitt" #: ckan/templates/snippets/license.html:28 msgid "This dataset satisfies the Open Definition." msgstr "" -"Dette datasettet tilfredsstiller \"Open Definition\", en definisjon av åpen " -"kunnskap." +"Dette datasettet tilfredsstiller \"Open Definition\", en definisjon av " +"åpen kunnskap." #: ckan/templates/snippets/organization.html:48 msgid "There is no description for this organization" @@ -4427,11 +4434,11 @@ msgstr "

Prøv et annet søk.

" #: ckan/templates/snippets/search_form.html:87 msgid "" -"

There was an error while searching." -" Please try again.

" +"

There was an error while " +"searching. Please try again.

" msgstr "" -"

Det oppstod en feil under søkinga. " -"Prøv igjen.

" +"

Det oppstod en feil under " +"søkinga. Prøv igjen.

" #: ckan/templates/snippets/search_result_text.html:15 msgid "{number} dataset found for \"{query}\"" @@ -4577,9 +4584,11 @@ msgstr "Kontoinformasjon" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" -"I profilen kan du fortelle andre CKAN-brukere om hvem du er og hva du gjør." +"I profilen kan du fortelle andre CKAN-brukere om hvem du er og hva du " +"gjør." #: ckan/templates/user/edit_user_form.html:7 msgid "Change details" @@ -4632,7 +4641,8 @@ msgstr "Er du sikker på at du vil slette denne brukeren?" #: ckan/templates/user/edit_user_form.html:50 msgid "Are you sure you want to regenerate the API key?" msgstr "" -"Er du sikker på at du vil lage ny API-nøkkel? (Den vil erstatte den gamle.)" +"Er du sikker på at du vil lage ny API-nøkkel? (Den vil erstatte den " +"gamle.)" #: ckan/templates/user/edit_user_form.html:50 msgid "Regenerate API Key" @@ -4807,8 +4817,8 @@ msgstr "Be om tilbakestilling" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" "Oppgi brukernavnet ditt, så sender vi deg en e-post med lenke som du kan " "bruke for å velge nytt passord." @@ -4837,3 +4847,4 @@ msgstr "Søk brukere" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/pl/LC_MESSAGES/ckan.po b/ckan/i18n/pl/LC_MESSAGES/ckan.po index 5075ee51049..c454750a793 100644 --- a/ckan/i18n/pl/LC_MESSAGES/ckan.po +++ b/ckan/i18n/pl/LC_MESSAGES/ckan.po @@ -1,23 +1,28 @@ -# Translations template for ckan. +# Polish translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 +# Teiron, 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2018\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" +"Last-Translator: Teiron, 2018\n" +"Language: pl\n" "Language-Team: Polish (https://www.transifex.com/okfn/teams/11162/pl/)\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && " +"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && " +"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -68,7 +73,7 @@ msgstr "" #: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 #: ckanext/datapusher/templates/datapusher/resource_data.html:19 msgid "Upload error:" -msgstr "" +msgstr "Błąd przesyłania:" #: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 #: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 @@ -80,12 +85,12 @@ msgstr "Błąd:" #: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 #: ckanext/datapusher/templates/datapusher/resource_data.html:36 msgid "Error traceback:" -msgstr "" +msgstr "Opis błędu:" #: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 #: ckanext/datapusher/templates/datapusher/resource_data.html:48 msgid "Status" -msgstr "" +msgstr "Status" #: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 #: ckanext/datapusher/templates/datapusher/resource_data.html:52 @@ -95,7 +100,7 @@ msgstr "Ostatnia modyfikacja" #: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 #: ckanext/datapusher/templates/datapusher/resource_data.html:56 msgid "Never" -msgstr "" +msgstr "Nigdy" #: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 #: ckanext/datapusher/templates/datapusher/resource_data.html:62 @@ -105,7 +110,7 @@ msgstr "" #: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 #: ckanext/datapusher/templates/datapusher/resource_data.html:76 msgid "Details" -msgstr "" +msgstr "Szczegóły" #: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 #: ckanext/datapusher/templates/datapusher/resource_data.html:83 @@ -128,14 +133,14 @@ msgstr "" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 @@ -161,7 +166,8 @@ msgstr "" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -172,8 +178,8 @@ msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 @@ -189,7 +195,7 @@ msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 #: ckanext/datastore/templates/ajax_snippets/api_info.html:52 msgid "Query" -msgstr "" +msgstr "Kwerenda" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 #: ckanext/datastore/templates/ajax_snippets/api_info.html:56 @@ -219,7 +225,7 @@ msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 #: ckanext/datastore/templates/ajax_snippets/api_info.html:93 msgid "Example: Javascript" -msgstr "" +msgstr "Przykład: Javascript" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 #: ckanext/datastore/templates/ajax_snippets/api_info.html:97 @@ -229,7 +235,7 @@ msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 #: ckanext/datastore/templates/ajax_snippets/api_info.html:118 msgid "Example: Python" -msgstr "" +msgstr "Przykład: Python" #: ckan/templates/group/member_new.html:60 #: ckanext/datastore/templates-bs2/datastore/dictionary.html:26 @@ -277,12 +283,12 @@ msgstr "" #: ckanext/datastore/templates/package/resource_read.html:19 #: ckanext/datatablesview/templates/datatables/datatables_form.html:17 msgid "Column" -msgstr "" +msgstr "Kolumna" #: ckanext/datastore/templates-bs2/package/resource_read.html:19 #: ckanext/datastore/templates/package/resource_read.html:20 msgid "Type" -msgstr "" +msgstr "Typ" #: ckan/public-bs2/base/javascript/modules/activity-stream.js:97 #: ckan/public-bs2/base/javascript/modules/popover-context.js:62 @@ -311,12 +317,13 @@ msgstr "" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 msgid "Table" -msgstr "" +msgstr "Tabela" #: ckanext/datatablesview/templates/datatables/datatables_form.html:6 msgid "Responsive display" @@ -394,7 +401,7 @@ msgstr "" #: ckan/templates/snippets/sort_by.html:19 #: ckanext/example_idatasetform/templates/package/search.html:18 msgid "Popular" -msgstr "" +msgstr "Popularne" #: ckanext/example_idatasetform/templates/package/snippets/additional_info.html:6 #: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 @@ -439,7 +446,7 @@ msgstr[3] "" #: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 #: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 msgid "0 Datasets" -msgstr "" +msgstr "0 zbiorów danych" #: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 msgid "CKAN's data previewing tool has many powerful features" @@ -474,11 +481,11 @@ msgstr "Zasoby" #: ckan/templates/macros/form.html:424 ckanext/imageview/plugin.py:27 #: ckanext/imageview/plugin.py:32 msgid "Image" -msgstr "" +msgstr "Obraz" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "Image url" -msgstr "" +msgstr "Adres URL obrazu" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "eg. http://example.com/image.jpg (if blank uses resource url)" @@ -594,7 +601,7 @@ msgstr "Liczba zbiorów danych" #: ckanext/stats/templates/ckanext/stats/index.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:40 msgid "Date" -msgstr "" +msgstr "Data" #: ckanext/stats/templates/ckanext/stats/index.html:18 msgid "Total datasets" @@ -611,7 +618,7 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:42 msgid "New datasets" -msgstr "" +msgstr "Nowe zbiory" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 @@ -680,7 +687,7 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:137 #: ckanext/stats/templates/ckanext/stats/index.html:157 msgid "Number of Datasets" -msgstr "" +msgstr "Liczba zbiorów" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 @@ -732,7 +739,7 @@ msgstr "Funkcja autoryzjacji nie została znaleziona: %s" #: ckan/authz.py:219 ckan/templates/header.html:11 msgid "Admin" -msgstr "" +msgstr "Administrator" #: ckan/authz.py:223 msgid "Editor" @@ -802,8 +809,8 @@ msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "" -"Nie można unicestwić pakietu %s ponieważ wersja %s posiada pakiety, które " -"nie zostały usunięte %s" +"Nie można unicestwić pakietu %s ponieważ wersja %s posiada pakiety, które" +" nie zostały usunięte %s" #: ckan/controllers/admin.py:183 ckan/views/admin.py:197 #, python-format @@ -888,8 +895,7 @@ msgstr "" #: ckan/controllers/api.py:392 msgid "Request params must be in form of a json encoded dictionary." -msgstr "" -"Parametry żądania muszą mieć postać tablicy asocjacyjnej w formacie json." +msgstr "Parametry żądania muszą mieć postać tablicy asocjacyjnej w formacie json." #: ckan/controllers/feed.py:234 ckan/controllers/group.py:128 #: ckan/controllers/group.py:226 ckan/controllers/group.py:394 @@ -924,7 +930,7 @@ msgstr "" #: ckan/templates/organization/read_base.html:6 #: ckan/templates/package/base.html:14 ckan/views/home.py:46 msgid "Organizations" -msgstr "" +msgstr "Organizacje" #: ckan/controllers/group.py:307 ckan/controllers/home.py:62 #: ckan/controllers/package.py:257 ckan/lib/helpers.py:1037 @@ -960,7 +966,7 @@ msgstr "" #: ckan/controllers/package.py:260 ckan/lib/helpers.py:1040 #: ckan/views/home.py:50 msgid "Licenses" -msgstr "" +msgstr "Licencje" #: ckan/controllers/group.py:396 ckan/controllers/group.py:513 #: ckan/controllers/package.py:345 ckan/controllers/package.py:576 @@ -998,11 +1004,11 @@ msgstr "" #: ckan/controllers/group.py:621 msgid "Organization has been deleted." -msgstr "" +msgstr "Organizacja została usunięta." #: ckan/controllers/group.py:623 msgid "Group has been deleted." -msgstr "" +msgstr "Grupa została usunięta" #: ckan/controllers/group.py:625 #, python-format @@ -1350,8 +1356,7 @@ msgstr "Brak użytkownika: %s" #: ckan/controllers/user.py:498 ckan/views/user.py:542 msgid "Please check your inbox for a reset code." -msgstr "" -"Kod resetujący powinien znajdować się w Twojej skrzyce e-mail. Sprawdź ją." +msgstr "Kod resetujący powinien znajdować się w Twojej skrzyce e-mail. Sprawdź ją." #: ckan/controllers/user.py:502 ckan/views/user.py:546 #, python-format @@ -1831,8 +1836,8 @@ msgstr "Nazwa może zawierać maksymalnie %i znaków" #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "" #: ckan/logic/validators.py:363 @@ -2017,7 +2022,8 @@ msgstr "" #: ckan/logic/action/create.py:896 msgid "You must supply a package id or name (parameter \"package\")." msgstr "" -"Musisz określić identyfikator pakietu lub jego nazwę (parametr \"pakiet\")." +"Musisz określić identyfikator pakietu lub jego nazwę (parametr " +"\"pakiet\")." #: ckan/logic/action/create.py:899 msgid "You must supply a rating (parameter \"rating\")." @@ -2170,8 +2176,7 @@ msgstr "" #: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 #: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 msgid "No package found for this resource, cannot check auth." -msgstr "" -"Nie znaleziono pakietu dla tego zasobu, nie można sprawdzić autoryzacji." +msgstr "Nie znaleziono pakietu dla tego zasobu, nie można sprawdzić autoryzacji." #: ckan/logic/auth/create.py:76 #, python-format @@ -2342,7 +2347,7 @@ msgstr "" #: ckan/model/license.py:223 msgid "License not specified" -msgstr "" +msgstr "Nie określono licencji" #: ckan/model/license.py:233 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" @@ -2378,7 +2383,7 @@ msgstr "" #: ckan/model/license.py:312 msgid "Other (Public Domain)" -msgstr "" +msgstr "Inne (domena publiczna)" #: ckan/model/license.py:322 msgid "Other (Attribution)" @@ -2571,7 +2576,7 @@ msgstr "URL" #: ckan/public/base/javascript/modules/image-upload.js:119 #: ckan/public/base/javascript/modules/image-upload.js:209 msgid "File" -msgstr "" +msgstr "Plik" #: ckan/public-bs2/base/javascript/modules/resource-reorder.js:56 #: ckan/public-bs2/base/javascript/modules/resource-view-reorder.js:50 @@ -2620,8 +2625,8 @@ msgstr "" #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "" #: ckan/public-bs2/base/javascript/modules/resource-view-filters.js:9 @@ -2775,7 +2780,7 @@ msgstr "" #: ckan/templates/footer.html:15 msgid "CKAN API" -msgstr "" +msgstr "CKAN API" #: ckan/templates/footer.html:16 msgid "CKAN Association" @@ -2822,7 +2827,7 @@ msgstr "Wyloguj się" #: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 msgid "Log in" -msgstr "" +msgstr "Zaloguj" #: ckan/templates/header.html:54 ckan/templates/user/new.html:3 msgid "Register" @@ -2847,7 +2852,7 @@ msgstr "Zbiory danych" #: ckan/templates/header.html:94 msgid "Search Datasets" -msgstr "" +msgstr "Wyszukaj zbiory danych" #: ckan/templates/header.html:95 ckan/templates/home/snippets/search.html:11 #: ckan/templates/snippets/simple_search.html:5 @@ -2889,7 +2894,7 @@ msgstr "Kosz" #: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 msgid "Site logo" -msgstr "" +msgstr "Logo strony" #: ckan/templates/admin/config.html:35 #: ckan/templates/admin/confirm_reset.html:7 @@ -2911,21 +2916,22 @@ msgstr "" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " +"

Site Title: This is the title of this CKAN instance " +"It appears in various places throughout CKAN.

" +"

Style: Choose from a list of simple variations of the" +" main colour scheme to get a very quick custom theme working.

" +"

Site Tag Logo: This is the logo that appears in the " +"header of all the CKAN instance templates.

About:" +" This text will appear on this CKAN instances about page.

Intro " "Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" "

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend <head> tag of every page. If you wish to customize the" +" templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" +"

Homepage: This is for choosing a predefined layout " +"for the modules that appear on your homepage.

" msgstr "" #: ckan/templates/admin/confirm_reset.html:3 @@ -2941,8 +2947,9 @@ msgstr "" #, python-format msgid "" "

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" +"Proceed with care!

For guidance on using sysadmin features, see " +"the CKAN sysadmin " +"guide

" msgstr "" #: ckan/templates/admin/trash.html:20 @@ -3102,9 +3109,8 @@ msgstr "" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "" @@ -3136,8 +3142,7 @@ msgstr "" msgid "There are currently no groups for this site" msgstr "" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "" @@ -3186,22 +3191,19 @@ msgstr "" msgid "If you wish to invite a new user, enter their email address." msgstr "" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3222,8 +3224,8 @@ msgstr "" #: ckan/templates/group/member_new.html:80 msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " +"

Admin: Can edit group information, as well as manage" +" organization members.

Member: Can add/remove " "datasets from groups

" msgstr "" @@ -3295,10 +3297,10 @@ msgstr "" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" #: ckan/templates/group/snippets/history_revisions.html:10 @@ -3362,13 +3364,14 @@ msgid "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3381,12 +3384,12 @@ msgstr "" #: ckan/templates/home/snippets/promoted.html:8 msgid "Welcome to CKAN" -msgstr "" +msgstr "Witaj w CKAN" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" #: ckan/templates/home/snippets/promoted.html:19 @@ -3415,7 +3418,7 @@ msgstr "" #: ckan/templates/home/snippets/stats.html:11 msgid "dataset" -msgstr "" +msgstr "zbiór danych" #: ckan/templates/home/snippets/stats.html:11 msgid "datasets" @@ -3432,8 +3435,8 @@ msgstr "" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" @@ -3500,8 +3503,8 @@ msgstr "" #: ckan/templates/package/read.html:11 #: ckan/templates/package/snippets/package_basic_fields.html:98 #: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 msgid "Private" msgstr "" @@ -3541,11 +3544,11 @@ msgstr "" #: ckan/templates/user/request_reset.html:16 #: ckan/templates/user/snippets/login_form.html:20 msgid "Username" -msgstr "" +msgstr "Nazwa użytkownika" #: ckan/templates/organization/member_new.html:49 msgid "Email address" -msgstr "" +msgstr "Adres email" #: ckan/templates/organization/member_new.html:59 msgid "Update Member" @@ -3556,8 +3559,8 @@ msgid "" "

Admin: Can add/edit and delete datasets, as well as " "manage organization members.

Editor: Can add and " "edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" +"

Member: Can view the organization's private datasets," +" but not add new datasets.

" msgstr "" #: ckan/templates/organization/members.html:14 @@ -3594,19 +3597,19 @@ msgstr "" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" +"

Organizations act like publishing departments for datasets (for " +"example, the Department of Health). This means that datasets can be " +"published by and belong to a department instead of an individual " +"user.

Within organizations, admins can assign roles and authorise " +"its members, giving individual users the right to publish datasets from " +"that particular organisation (e.g. Office of National Statistics).

" msgstr "" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" #: ckan/templates/organization/snippets/organization_form.html:10 @@ -3623,8 +3626,9 @@ msgstr "" #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3647,9 +3651,9 @@ msgstr "" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" #: ckan/templates/package/confirm_delete.html:12 @@ -3730,9 +3734,9 @@ msgstr "" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" #: ckan/templates/package/new_view.html:29 @@ -3743,8 +3747,9 @@ msgstr "Dodaj" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" #: ckan/templates/package/resource_edit_base.html:17 @@ -3814,9 +3819,9 @@ msgstr "" #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" #: ckan/templates/package/resource_read.html:162 @@ -3884,8 +3889,8 @@ msgstr "" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

This dataset has no data, why not " -"add some?

" +"

This dataset has no data, why not" +" add some?

" msgstr "" #: ckan/templates/package/search.html:52 @@ -4025,11 +4030,12 @@ msgstr "" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" #: ckan/templates/package/snippets/package_form.html:39 @@ -4174,11 +4180,11 @@ msgstr "" #: ckan/templates/package/snippets/resource_view.html:80 msgid "Width" -msgstr "" +msgstr "Szerokość" #: ckan/templates/package/snippets/resource_view.html:83 msgid "Height" -msgstr "" +msgstr "Wysokość" #: ckan/templates/package/snippets/resource_view.html:86 msgid "Code" @@ -4308,7 +4314,7 @@ msgstr "Strona startowa" #: ckan/templates/snippets/language_selector.html:3 msgid "Language" -msgstr "" +msgstr "Język" #: ckan/templates/snippets/language_selector.html:11 #: ckan/templates/snippets/search_form.html:42 @@ -4349,8 +4355,8 @@ msgstr "" #: ckan/templates/snippets/search_form.html:87 msgid "" -"

There was an error while searching." -" Please try again.

" +"

There was an error while " +"searching. Please try again.

" msgstr "" #: ckan/templates/snippets/search_result_text.html:15 @@ -4442,7 +4448,7 @@ msgstr "Adres e-mail" #: ckan/templates/snippets/subscribe.html:5 msgid "RSS" -msgstr "" +msgstr "RSS" #: ckan/templates/snippets/context/user.html:23 #: ckan/templates/user/read_base.html:57 @@ -4509,7 +4515,8 @@ msgstr "" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" #: ckan/templates/user/edit_user_form.html:7 @@ -4538,7 +4545,7 @@ msgstr "" #: ckan/templates/user/edit_user_form.html:26 msgid "Change password" -msgstr "" +msgstr "Zmień hasło" #: ckan/templates/user/edit_user_form.html:29 msgid "Sysadmin Password" @@ -4550,11 +4557,11 @@ msgstr "" #: ckan/templates/user/perform_reset.html:25 #: ckan/templates/user/snippets/login_form.html:22 msgid "Password" -msgstr "" +msgstr "Hasło" #: ckan/templates/user/edit_user_form.html:39 msgid "Confirm Password" -msgstr "" +msgstr "Powtórz hasło" #: ckan/templates/user/edit_user_form.html:45 msgid "Are you sure you want to delete this User?" @@ -4737,8 +4744,8 @@ msgstr "" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" #: ckan/templates/user/snippets/followee_dropdown.html:15 @@ -4765,3 +4772,4 @@ msgstr "" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/pt_BR/LC_MESSAGES/ckan.po b/ckan/i18n/pt_BR/LC_MESSAGES/ckan.po index eb4882cd814..a6146932d63 100644 --- a/ckan/i18n/pt_BR/LC_MESSAGES/ckan.po +++ b/ckan/i18n/pt_BR/LC_MESSAGES/ckan.po @@ -1,23 +1,26 @@ -# Translations template for ckan. +# Portuguese (Brazil) translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Adrià Mercader , 2018\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/okfn/teams/11162/pt_BR/)\n" +"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) " +"(https://www.transifex.com/okfn/teams/11162/pt_BR/)\n" +"Plural-Forms: nplurals=2; plural=(n > 1)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,17 +131,17 @@ msgstr "recurso DataStore não encontrado" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" -"Os dados são inválidos (por exemplo: um valor numérico está fora dos limites" -" ou foi inserido num campo de texto)." +"Os dados são inválidos (por exemplo: um valor numérico está fora dos " +"limites ou foi inserido num campo de texto)." #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 #: ckanext/datastore/logic/action.py:344 ckanext/datastore/logic/action.py:457 @@ -163,7 +166,8 @@ msgstr "Acesse recursos pela web API com poderoso suporte a consultas" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -174,8 +178,8 @@ msgstr "Pontos de acesso" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "A Data API pode ser acessada pelas seguintes ações da CKAN action API" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 @@ -313,12 +317,13 @@ msgstr "API de dados" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" " Maiores informações no documentação principal da API de dados do CKAN Data API e " -"do DataStore.

" +"target=\"_blank\">documentação principal da API de dados do CKAN Data API" +" e do DataStore.

" #: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 msgid "Table" @@ -448,8 +453,8 @@ msgstr "0 Conjunto de Dados" #: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 msgid "CKAN's data previewing tool has many powerful features" msgstr "" -"A ferramenta de pré-visualização de dados do CKAN tem muitas funcionalidades" -" poderosas" +"A ferramenta de pré-visualização de dados do CKAN tem muitas " +"funcionalidades poderosas" #: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 #: ckan/templates/group/snippets/info.html:32 @@ -897,8 +902,8 @@ msgstr "Valor qjson mal formado: %r" #: ckan/controllers/api.py:392 msgid "Request params must be in form of a json encoded dictionary." msgstr "" -"Parâmetros de requisição devem estar na forma de um dicionário codificado em" -" json." +"Parâmetros de requisição devem estar na forma de um dicionário codificado" +" em json." #: ckan/controllers/feed.py:234 ckan/controllers/group.py:128 #: ckan/controllers/group.py:226 ckan/controllers/group.py:394 @@ -1076,21 +1081,19 @@ msgstr "Não autorizado a visualizar os seguidores %s" #: ckan/controllers/home.py:35 msgid "This site is currently off-line. Database is not initialised." -msgstr "" -"Este site está fora do ar no momento. Base de dados não está inicializada." +msgstr "Este site está fora do ar no momento. Base de dados não está inicializada." #: ckan/controllers/home.py:73 ckan/views/home.py:58 #, python-format msgid "Please update your profile and add your email address. " msgstr "" -"Por favor atualize o seu perfil e adicione o seu endereço" -" de e-mail. " +"Por favor atualize o seu perfil e adicione o seu " +"endereço de e-mail. " #: ckan/controllers/home.py:75 ckan/views/home.py:60 #, python-format msgid "%s uses your email address if you need to reset your password." -msgstr "" -"%s usa o seu endereço de e-mail se você precisar redefinir a sua senha." +msgstr "%s usa o seu endereço de e-mail se você precisar redefinir a sua senha." #: ckan/controllers/package.py:304 msgid "Invalid search query: {error_message}" @@ -1365,8 +1368,7 @@ msgstr "Não existe usuário: %s" #: ckan/controllers/user.py:498 ckan/views/user.py:542 msgid "Please check your inbox for a reset code." -msgstr "" -"Por favor verifique sua caixa de entrada para um código de redefinição." +msgstr "Por favor verifique sua caixa de entrada para um código de redefinição." #: ckan/controllers/user.py:502 ckan/views/user.py:546 #, python-format @@ -1830,8 +1832,8 @@ msgstr "Nome tem que ter um máximo de %i caracteres" #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "" "Precisa conter apenas caracteres alfanuméricos (ascii) e os seguintes " "símbolos: -_" @@ -1933,8 +1935,8 @@ msgstr "Esse nome de vocabulário já está sendo utilizado." #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "" -"Não é possível alterar o valor da chave de %s para %s. Essa chave é somente " -"para leitura." +"Não é possível alterar o valor da chave de %s para %s. Essa chave é " +"somente para leitura." #: ckan/logic/validators.py:651 msgid "Tag vocabulary was not found." @@ -1984,7 +1986,9 @@ msgstr "\"filter_fields\" e \"filter_values\" devem ter o mesmo comprimento" #: ckan/logic/validators.py:811 msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "\"filter_fields\" é obrigatório quando \"filter_values\" estiver preenchido" +msgstr "" +"\"filter_fields\" é obrigatório quando \"filter_values\" estiver " +"preenchido" #: ckan/logic/validators.py:814 msgid "\"filter_values\" is required when \"filter_fields\" is filled" @@ -2036,8 +2040,7 @@ msgstr "Avaliação deve ser entre %i e %i." #: ckan/logic/action/create.py:1078 msgid "Error sending the invite email, the user was not created: {0}" -msgstr "" -"Houve um erro ao enviar o e-mail de convite, o usuário não foi criado: {0}" +msgstr "Houve um erro ao enviar o e-mail de convite, o usuário não foi criado: {0}" #: ckan/logic/action/create.py:1254 ckan/logic/action/create.py:1261 msgid "You must be logged in to follow users" @@ -2185,8 +2188,8 @@ msgstr "" #, python-format msgid "User %s not authorized to create resources on dataset %s" msgstr "" -"Usuário(a) %s não está autorizado(a) a criar recursos no conjunto de dados " -"%s" +"Usuário(a) %s não está autorizado(a) a criar recursos no conjunto de " +"dados %s" #: ckan/logic/auth/create.py:108 #, python-format @@ -2232,8 +2235,7 @@ msgstr "Usuário %s não está autorizado a excluir o recurso %s" #: ckan/logic/auth/delete.py:56 msgid "Resource view not found, cannot check auth." -msgstr "" -"Visão de recurso não encontrada, não é possível verificar a autenticação." +msgstr "Visão de recurso não encontrada, não é possível verificar a autenticação." #: ckan/logic/auth/delete.py:73 #, python-format @@ -2291,8 +2293,7 @@ msgstr "Usuário(a) %s não está autorizado(a) a ler o grupo %s" #: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." -msgstr "" -"Você precisa estar autenticado para acessar o seu painel de controle. " +msgstr "Você precisa estar autenticado para acessar o seu painel de controle. " #: ckan/logic/auth/update.py:39 #, python-format @@ -2350,8 +2351,7 @@ msgstr "Usuário %s não está autorizado a atualizar a tabela " #: ckan/logic/auth/update.py:240 #, python-format msgid "User %s not authorized to update term_translation table" -msgstr "" -"O usuário %s não está autorizado a atualizar a tabela term_translation" +msgstr "O usuário %s não está autorizado a atualizar a tabela term_translation" #: ckan/model/license.py:223 msgid "License not specified" @@ -2484,8 +2484,7 @@ msgstr "Nenhum resultado encontrado" msgid "Input is too short, must be at least one character" msgid_plural "Input is too short, must be at least %(num)d characters" msgstr[0] "A entrada é curta demais, deve possuir pelo menos um caractere" -msgstr[1] "" -"A entrada é curta demais, deve possuir pelo menos %(num)d caracteres" +msgstr[1] "A entrada é curta demais, deve possuir pelo menos %(num)d caracteres" #: ckan/public-bs2/base/javascript/modules/basic-form.js:4 #: ckan/public/base/javascript/modules/basic-form.js:4 @@ -2632,11 +2631,11 @@ msgstr "Não foi possível obter os dados do arquivo carregado" #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "" -"Você está enviando um arquivo. Tem certeza de que quer navegar para outra " -"página e parar esse envio?" +"Você está enviando um arquivo. Tem certeza de que quer navegar para outra" +" página e parar esse envio?" #: ckan/public-bs2/base/javascript/modules/resource-view-filters.js:9 #: ckan/public/base/javascript/modules/resource-view-filters.js:9 @@ -2788,8 +2787,8 @@ msgid "" "Powered by CKAN" msgstr "" -"Impulsionado por CKAN" +"Impulsionado por CKAN" #: ckan/templates/header.html:9 msgid "Sysadmin settings" @@ -2913,39 +2912,40 @@ msgstr "Opções de configuração do CKAN" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " +"

Site Title: This is the title of this CKAN instance " +"It appears in various places throughout CKAN.

" +"

Style: Choose from a list of simple variations of the" +" main colour scheme to get a very quick custom theme working.

" +"

Site Tag Logo: This is the logo that appears in the " +"header of all the CKAN instance templates.

About:" +" This text will appear on this CKAN instances about page.

Intro " "Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" "

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend <head> tag of every page. If you wish to customize the" +" templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" +"

Homepage: This is for choosing a predefined layout " +"for the modules that appear on your homepage.

" msgstr "" "

Título do sítio: Este é o título dessa instância do " "CKAN Ele aparece em vários lugares em todo o CKAN.

" "

Estilo: Escolha a partir de uma lista de variações " -"simples do esquema principal de cores para conseguir um tema personalizado " -"funcionando muito rapidamente.

Logomarca do sítio: " -"Esta é a logomarca que aparece no cabeçalho de todos os modelos dessa " -"instância do CKAN.

Sobre: Esse texto aparecerá na página sobre dessa instância do CKAN.

" -"

Texto introdutório: Esse texto aparecerá na página inicial dessa instância do CKAN como uma " -"mensagem de boas vindas aos visitantes.

CSS " -"Personalizado: Esse é o bloco de CSS que aparece na tag " -"<head> de cada página. Se você desejar personalizar os " -"modelos mais completamente, recomendamos ler a documentação.

Página " -"inicial: Isso é para escolher uma disposição pré-definida para os " -"módulos que aparecem na sua página inicial.

" +"simples do esquema principal de cores para conseguir um tema " +"personalizado funcionando muito rapidamente.

Logomarca do " +"sítio: Esta é a logomarca que aparece no cabeçalho de todos os " +"modelos dessa instância do CKAN.

Sobre: Esse " +"texto aparecerá na página sobre dessa " +"instância do CKAN.

Texto introdutório: Esse texto" +" aparecerá na página inicial dessa instância" +" do CKAN como uma mensagem de boas vindas aos visitantes.

" +"

CSS Personalizado: Esse é o bloco de CSS que aparece " +"na tag <head> de cada página. Se você desejar " +"personalizar os modelos mais completamente, recomendamos ler a documentação.

" +"

Página inicial: Isso é para escolher uma disposição " +"pré-definida para os módulos que aparecem na sua página inicial.

" #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 @@ -2960,14 +2960,15 @@ msgstr "Administrar o CKAN" #, python-format msgid "" "

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" +"Proceed with care!

For guidance on using sysadmin features, see " +"the CKAN sysadmin " +"guide

" msgstr "" "

Como um(a) usuário(a) administrador(a) do sistema você tem total " "controle sobre esta instância do CKAN. Proceda com cuidado!

Para " -"aconselhamento sobre o uso das funcionalidades de administrador do sistema, " -"vejao guia do administrador " -"do CKAN.

" +"aconselhamento sobre o uso das funcionalidades de administrador do " +"sistema, vejao guia do " +"administrador do CKAN.

" #: ckan/templates/admin/trash.html:20 msgid "Purge" @@ -3128,9 +3129,8 @@ msgstr "Você tem certeza de que deseja apagar o membro - {name}?" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "Gerenciar" @@ -3162,8 +3162,7 @@ msgstr "Buscar grupos..." msgid "There are currently no groups for this site" msgstr "Atualmente não há grupos neste sítio" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "Que tal criar um?" @@ -3212,25 +3211,21 @@ msgstr "Novo Usuário" #: ckan/templates/group/member_new.html:45 #: ckan/templates/organization/member_new.html:46 msgid "If you wish to invite a new user, enter their email address." -msgstr "" -"Se você quer convidar um novo usuário, inclua o endereço de email dele." +msgstr "Se você quer convidar um novo usuário, inclua o endereço de email dele." -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "Papel" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "Você tem certeza de que deseja apagar este usuário?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3251,13 +3246,13 @@ msgstr "O que são papeis?" #: ckan/templates/group/member_new.html:80 msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " +"

Admin: Can edit group information, as well as manage" +" organization members.

Member: Can add/remove " "datasets from groups

" msgstr "" "

Administrador: Pode editar informações do grupo, bem " -"como gerenciar os membros da organização.

Membro: " -"Pode adicionar ou remover conjuntos de dados dos grupos

" +"como gerenciar os membros da organização.

Membro:" +" Pode adicionar ou remover conjuntos de dados dos grupos

" #: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 #: ckan/templates/group/new.html:7 @@ -3327,16 +3322,16 @@ msgstr "O que são grupos?" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" -"Você pode usar Grupos do CKAN para criar e gerenciar coleções de conjuntos " -"de dados. Isso pode ser feito para catalogar conjuntos de dados de um " -"projeto ou time particular, ou em um tema particular, ou como uma forma " -"simples de ajudar as pessoas a encontrar e buscar seus próprios conjuntos de" -" dados." +"Você pode usar Grupos do CKAN para criar e gerenciar coleções de " +"conjuntos de dados. Isso pode ser feito para catalogar conjuntos de dados" +" de um projeto ou time particular, ou em um tema particular, ou como uma " +"forma simples de ajudar as pessoas a encontrar e buscar seus próprios " +"conjuntos de dados." #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 @@ -3399,13 +3394,14 @@ msgid "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3416,23 +3412,24 @@ msgid "" "href=\"http://ckan.org/features/\">http://ckan.org/features/

" msgstr "" "

CKAN é a maior plataforma para portal de dados em software livre do " -"mundo.

CKAN é uma solução completa e pronta para usar que torna os " -"dados acessíveis e utilizáveis – ao prover ferramentas para simplificar a " -"publicação, o compartilhamento, o encontro e a utilização dos dados " +"mundo.

CKAN é uma solução completa e pronta para usar que torna os" +" dados acessíveis e utilizáveis – ao prover ferramentas para simplificar " +"a publicação, o compartilhamento, o encontro e a utilização dos dados " "(incluindo o armazenamento de dados e o provimento de robustas APIs de " -"dados). CKAN está direcionado a publicadores de dados (governos nacionais e " -"regionais, companhias e organizações) que querem tornar seus dados abertos e" -" disponíveis.

CKAN é usado por governos e grupos de usuários em todo " -"o mundo e impulsiona vários portais oficiais e da comunidade, incluindo " -"portais governamentais locais, nacionais e internacionais, tais como o

CKAN é usado por governos e grupos de " +"usuários em todo o mundo e impulsiona vários portais oficiais e da " +"comunidade, incluindo portais governamentais locais, nacionais e " +"internacionais, tais como o data.gov.uk do Reino Unido, o publicdata.eu da União Europeia, o dados.gov.br do Brasil, o portal do " -"governo da Holanda, assim como sítios de cidades e municípios nos EUA, Reino" -" Unido, Argentina, Finlândia e em outros lugares.

CKAN:

CKAN: http://ckan.org/
Tour do CKAN: http://ckan.org/tour/
Visão geral " -"das funcionalidades: http://ckan.org/tour/
Visão " +"geral das funcionalidades: http://ckan.org/features/

" #: ckan/templates/home/snippets/promoted.html:8 @@ -3441,8 +3438,8 @@ msgstr "Bem-vindo ao CKAN" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" "Este é um belo parágrafo introdutório sobre o CKAN ou sobre o sítio em " "geral. Nós não temos uma cópia para colocar aqui, mas em breve teremos" @@ -3490,13 +3487,13 @@ msgstr "grupos" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" -"Você pode usar formatação Markdown aqui" +"Você pode usar formatação Markdown aqui" #: ckan/templates/macros/form.html:277 msgid "This field is required" @@ -3561,8 +3558,8 @@ msgstr "Rascunho" #: ckan/templates/package/read.html:11 #: ckan/templates/package/snippets/package_basic_fields.html:98 #: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 msgid "Private" msgstr "Privada" @@ -3617,15 +3614,15 @@ msgid "" "

Admin: Can add/edit and delete datasets, as well as " "manage organization members.

Editor: Can add and " "edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" +"

Member: Can view the organization's private datasets," +" but not add new datasets.

" msgstr "" "

Administrador: Pode adicionar/editar e excluir " "conjuntos de dados, assim como gerenciar membros da organização.

" -"

Editor: Pode adicionar e editar conjuntos de dados, mas " -"não gerenciar membros da organização.

Membro: Pode " -"ver os conjuntos de dados privados da organização, mas não adicionar novos " -"conjuntos de dados.

" +"

Editor: Pode adicionar e editar conjuntos de dados, " +"mas não gerenciar membros da organização.

Membro:" +" Pode ver os conjuntos de dados privados da organização, mas não " +"adicionar novos conjuntos de dados.

" #: ckan/templates/organization/members.html:14 msgid "{count} member" @@ -3659,29 +3656,29 @@ msgstr "O que são Organizações?" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" +"

Organizations act like publishing departments for datasets (for " +"example, the Department of Health). This means that datasets can be " +"published by and belong to a department instead of an individual " +"user.

Within organizations, admins can assign roles and authorise " +"its members, giving individual users the right to publish datasets from " +"that particular organisation (e.g. Office of National Statistics).

" msgstr "" -"

Organizações funcionam como órgãos de publicação para conjuntos de dados" -" (por exemplo, o Ministério da Saúde). Isso significa que conjuntos de dados" -" podem ser publicados por e pertencer a um órgão em vez de um usuário " -"individual.

Dentro de organizações, os administradores podem atribuir" -" papeis e autorizar seus membros, dando a usuários individuais o direito de " -"publicar conjuntos de dados daquela organização específica (ex.: Instituto " -"Brasileiro de Geografia e Estatística).

" +"

Organizações funcionam como órgãos de publicação para conjuntos de " +"dados (por exemplo, o Ministério da Saúde). Isso significa que conjuntos " +"de dados podem ser publicados por e pertencer a um órgão em vez de um " +"usuário individual.

Dentro de organizações, os administradores " +"podem atribuir papeis e autorizar seus membros, dando a usuários " +"individuais o direito de publicar conjuntos de dados daquela organização " +"específica (ex.: Instituto Brasileiro de Geografia e Estatística).

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" -"Organizações do CKAN são usadas para criar, gerenciar e publicar coleções de" -" conjuntos de dados. Usuários podem possuir diferentes papéis em uma " +"Organizações do CKAN são usadas para criar, gerenciar e publicar coleções" +" de conjuntos de dados. Usuários podem possuir diferentes papéis em uma " "organização, dependendo do seu level de autorização para criar, editar e " "publicar." @@ -3699,8 +3696,9 @@ msgstr "Um pouco de informações sobre a minha organização..." #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3723,14 +3721,14 @@ msgstr "O que são conjuntos de dados?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" "Um conjunto de dados do CKAN é uma coleção de recursos de dados (como " -"arquivos), unidos com uma descrição e outras informações, em uma URL fixa. " -"Conjuntos de dados são o que usuários visualizam quando estão buscando " -"dados." +"arquivos), unidos com uma descrição e outras informações, em uma URL " +"fixa. Conjuntos de dados são o que usuários visualizam quando estão " +"buscando dados." #: ckan/templates/package/confirm_delete.html:12 msgid "Are you sure you want to delete dataset - {name}?" @@ -3810,15 +3808,15 @@ msgstr "Adicionar visão" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" " As visões do Data Explorer podem ser lentas e instáveis se a extensão " -"DataStore não estiver habilitada. Para mais informações, por favor veja a documentação do Data " -"Explorer. " +"DataStore não estiver habilitada. Para mais informações, por favor veja a" +" documentação " +"do Data Explorer. " #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:83 @@ -3828,8 +3826,9 @@ msgstr "Adicionar" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" "Esta é uma revisão velha deste conjunto de dados, conforme editada em " "%(timestamp)s. Ela pode diferir significativamente da This dataset has no data, why not " -"add some?

" +"

This dataset has no data, why not" +" add some?

" msgstr "" "

Esse conjunto de dados não possui dados, por que não adicionar alguns?

" @@ -4002,8 +4002,8 @@ msgid "" " You can also access this registry using the %(api_link)s (see " "%(api_doc_link)s) or download a %(dump_link)s. " msgstr "" -" Você também pode ter acesso a esses registros usando a %(api_link)s (veja " -"%(api_doc_link)s) ou descarregar um %(dump_link)s. " +" Você também pode ter acesso a esses registros usando a %(api_link)s " +"(veja %(api_doc_link)s) ou descarregar um %(dump_link)s. " #: ckan/templates/package/search.html:60 #, python-format @@ -4011,8 +4011,8 @@ msgid "" " You can also access this registry using the %(api_link)s (see " "%(api_doc_link)s). " msgstr "" -" Você também pode ter acesso a esses registros usando a %(api_link)s (veja " -"%(api_doc_link)s). " +" Você também pode ter acesso a esses registros usando a %(api_link)s " +"(veja %(api_doc_link)s). " #: ckan/templates/package/view_edit_base.html:9 msgid "All views" @@ -4078,8 +4078,8 @@ msgid "" "Ask a system administrator to create an organization before you can " "continue." msgstr "" -"Peça a um administrador do sistema para criar uma organização antes que você" -" possa continuar." +"Peça a um administrador do sistema para criar uma organização antes que " +"você possa continuar." #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 @@ -4107,8 +4107,8 @@ msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "" -" Definições de licenças e informações adicionais podem ser encontradas em opendefinition.org " +" Definições de licenças e informações adicionais podem ser encontradas em" +" opendefinition.org " #: ckan/templates/package/snippets/package_basic_fields.html:76 #: ckan/templates/snippets/organization.html:23 @@ -4133,11 +4133,12 @@ msgstr "Ativo" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" "A licença de dados que você escolher acima aplica-se somente ao " "conteúdo de quaisquer recursos de arquivos que você adicionar a este " @@ -4255,8 +4256,8 @@ msgstr "O que é um recurso?" #: ckan/templates/package/snippets/resource_help.html:4 msgid "A resource can be any file or link to a file containing useful data." msgstr "" -"Um recurso pode ser um arquivo ou um link para um arquivo que contenha dados" -" úteis" +"Um recurso pode ser um arquivo ou um link para um arquivo que contenha " +"dados úteis" #: ckan/templates/package/snippets/resource_item.html:23 msgid "Explore" @@ -4287,8 +4288,8 @@ msgid "" "You can copy and paste the embed code into a CMS or blog software that " "supports raw HTML" msgstr "" -"Você pode copiar e colar o código para embutir em um CMS ou software de blog" -" que suporte HTML puro" +"Você pode copiar e colar o código para embutir em um CMS ou software de " +"blog que suporte HTML puro" #: ckan/templates/package/snippets/resource_view.html:80 msgid "Width" @@ -4441,8 +4442,7 @@ msgstr "Nenhuma Licença Fornecida" #: ckan/templates/snippets/license.html:28 msgid "This dataset satisfies the Open Definition." -msgstr "" -"Este conjunto de dados satisfaz a Definição de Aberto - Open Definition." +msgstr "Este conjunto de dados satisfaz a Definição de Aberto - Open Definition." #: ckan/templates/snippets/organization.html:48 msgid "There is no description for this organization" @@ -4468,8 +4468,8 @@ msgstr "

Por favor tente uma nova pesquisa.

" #: ckan/templates/snippets/search_form.html:87 msgid "" -"

There was an error while searching." -" Please try again.

" +"

There was an error while " +"searching. Please try again.

" msgstr "" "

Houve um erro ao pesquisar. Por " "favor tente novamente.

" @@ -4618,10 +4618,11 @@ msgstr "Informações da Conta" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" -"Seu perfil permite que outros usuários do CKAN saibam quem você é o que você" -" faz." +"Seu perfil permite que outros usuários do CKAN saibam quem você é o que " +"você faz." #: ckan/templates/user/edit_user_form.html:7 msgid "Change details" @@ -4713,7 +4714,8 @@ msgstr "Esqueceu sua senha ?" #: ckan/templates/user/login.html:44 msgid "No problem, use our password recovery form to reset it." msgstr "" -"Sem problema, use nosso formulário de recuperação de senha para redefiní-la." +"Sem problema, use nosso formulário de recuperação de senha para " +"redefiní-la." #: ckan/templates/user/login.html:47 msgid "Forgot your password?" @@ -4849,11 +4851,11 @@ msgstr "Solicitação reiniciada" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" -"Entre seu nome de usuário para que um email seja enviado com um link para " -"restaurar sua senha" +"Entre seu nome de usuário para que um email seja enviado com um link para" +" restaurar sua senha" #: ckan/templates/user/snippets/followee_dropdown.html:15 #: ckan/templates/user/snippets/followee_dropdown.html:16 @@ -4879,3 +4881,4 @@ msgstr "Buscar Usuários" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/pt_PT/LC_MESSAGES/ckan.po b/ckan/i18n/pt_PT/LC_MESSAGES/ckan.po index be230590892..31f992be6e4 100644 --- a/ckan/i18n/pt_PT/LC_MESSAGES/ckan.po +++ b/ckan/i18n/pt_PT/LC_MESSAGES/ckan.po @@ -1,23 +1,27 @@ -# Translations template for ckan. +# Portuguese (Portugal) translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 +# Rui , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2018\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/okfn/teams/11162/pt_PT/)\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" +"Last-Translator: Rui , 2018\n" +"Language: pt_PT\n" +"Language-Team: Portuguese (Portugal) " +"(https://www.transifex.com/okfn/teams/11162/pt_PT/)\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -120,7 +124,7 @@ msgstr "DataStore" #: ckanext/datastore/controller.py:53 #, python-format msgid "format: must be one of %s" -msgstr "" +msgstr "formato: tem de ser um de %s" #: ckanext/datastore/controller.py:65 msgid "DataStore resource not found" @@ -128,14 +132,14 @@ msgstr "O recurso DataStore não foi encontrado" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" "Os dados eram inválidos (por exemplo: um valor numérico está fora do " "intervalo ou foi inserido num campo de texto)." @@ -165,7 +169,8 @@ msgstr "" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -176,8 +181,8 @@ msgstr "Pontos de acesso" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "É possivel aceder aos dados API seguindo as ações API no CKAN." #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 @@ -244,7 +249,7 @@ msgstr "Guardar" #: ckanext/datastore/templates-bs2/datastore/dictionary.html:16 #: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 msgid "Field {num}." -msgstr "" +msgstr "Campo {num}." #: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 msgid "Type Override" @@ -275,18 +280,18 @@ msgstr "Descrição" #: ckanext/datastore/templates/package/resource_edit_base.html:6 #: ckanext/datastore/templates/package/resource_read.html:14 msgid "Data Dictionary" -msgstr "" +msgstr "Dicionário de Dados" #: ckanext/datastore/templates-bs2/package/resource_read.html:18 #: ckanext/datastore/templates/package/resource_read.html:19 #: ckanext/datatablesview/templates/datatables/datatables_form.html:17 msgid "Column" -msgstr "" +msgstr "Coluna" #: ckanext/datastore/templates-bs2/package/resource_read.html:19 #: ckanext/datastore/templates/package/resource_read.html:20 msgid "Type" -msgstr "" +msgstr "Tipo" #: ckan/public-bs2/base/javascript/modules/activity-stream.js:97 #: ckan/public-bs2/base/javascript/modules/popover-context.js:62 @@ -315,12 +320,13 @@ msgstr "Dados API" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" "Mais informações sobre o API principal dos dados CKAN e a documentação sobre o " -"armazenamento de dados.

" +"target=\"_blank\"> o API principal dos dados CKAN e a documentação sobre " +"o armazenamento de dados.

" #: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 msgid "Table" @@ -332,11 +338,11 @@ msgstr "" #: ckanext/datatablesview/templates/datatables/datatables_form.html:12 msgid "Show Columns" -msgstr "" +msgstr "Mostrar Colunas" #: ckanext/datatablesview/templates/datatables/datatables_view.html:28 msgid "Hide/Unhide Columns" -msgstr "" +msgstr "Ocultar/Mostrar Colunas" #: ckanext/example_iconfigurer/templates/admin/config.html:11 msgid "Datasets per page" @@ -424,7 +430,7 @@ msgstr "personalizar o texto do recurso" #: ckanext/example_itranslation/templates/home/index.html:4 msgid "This is an untranslated string" -msgstr "" +msgstr "Isto é uma expressão não traduzida" #: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 @@ -513,12 +519,12 @@ msgstr "Mapa" #: ckanext/reclineview/theme/public/recline_view.js:28 #: ckanext/reclineview/theme/public/recline_view.min.js:1 msgid "error loading view" -msgstr "" +msgstr "erro a carregar a vista" #: ckanext/reclineview/theme/public/recline_view.js:75 #: ckanext/reclineview/theme/public/recline_view.min.js:5 msgid "Could not load view" -msgstr "" +msgstr "Não foi possível carregar a vista" #: ckanext/reclineview/theme/public/recline_view.js:77 #: ckanext/reclineview/theme/public/recline_view.min.js:5 @@ -533,7 +539,7 @@ msgstr "" #: ckanext/reclineview/theme/public/recline_view.js:193 #: ckanext/reclineview/theme/public/recline_view.min.js:14 msgid "Grid" -msgstr "" +msgstr "Grelha" #: ckan/templates/package/snippets/view_form_filters.html:46 #: ckanext/reclineview/theme/public/recline_view.js:215 @@ -899,7 +905,8 @@ msgstr "Valor qjson mal gerado: %r" #: ckan/controllers/api.py:392 msgid "Request params must be in form of a json encoded dictionary." msgstr "" -"A solicitação de parâmetros ao dicionário deve ser na forma de código json." +"A solicitação de parâmetros ao dicionário deve ser na forma de código " +"json." #: ckan/controllers/feed.py:234 ckan/controllers/group.py:128 #: ckan/controllers/group.py:226 ckan/controllers/group.py:394 @@ -1092,7 +1099,8 @@ msgstr "" #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "" -"%s use o seu endereço de email se precisar de redefinir a sua palavra-passe." +"%s use o seu endereço de email se precisar de redefinir a sua palavra-" +"passe." #: ckan/controllers/package.py:304 msgid "Invalid search query: {error_message}" @@ -1365,8 +1373,7 @@ msgstr "Não existe tal utilizador: %s" #: ckan/controllers/user.py:498 ckan/views/user.py:542 msgid "Please check your inbox for a reset code." -msgstr "" -"Por favor, verifique a sua caixa de correio para o código de reposição." +msgstr "Por favor, verifique a sua caixa de correio para o código de reposição." #: ckan/controllers/user.py:502 ckan/views/user.py:546 #, python-format @@ -1435,13 +1442,11 @@ msgstr "O {actor} atualizou o conjunto de dados {dataset}" #: ckan/lib/activity_streams.py:72 msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "" -"O {actor} alterou o campo extra {extra} do conjunto de dados {dataset}" +msgstr "O {actor} alterou o campo extra {extra} do conjunto de dados {dataset}" #: ckan/lib/activity_streams.py:75 msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "" -"O {actor} atualizou o recurso {resource} no conjunto de dados {dataset}" +msgstr "O {actor} atualizou o recurso {resource} no conjunto de dados {dataset}" #: ckan/lib/activity_streams.py:78 msgid "{actor} updated their profile" @@ -1465,8 +1470,7 @@ msgstr "O {actor} apagou o campo extra {extra} do conjunto de dados {dataset}" #: ckan/lib/activity_streams.py:93 msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "" -"O {actor} eliminou o recurso {resource} do conjunto de dados {dataset}" +msgstr "O {actor} eliminou o recurso {resource} do conjunto de dados {dataset}" #: ckan/lib/activity_streams.py:97 msgid "{actor} created the group {group}" @@ -1482,13 +1486,11 @@ msgstr "O {actor} criou o conjunto de dados {dataset}" #: ckan/lib/activity_streams.py:106 msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "" -"O {actor} adicionou o campo extra {extra} ao conjunto de dados {dataset}" +msgstr "O {actor} adicionou o campo extra {extra} ao conjunto de dados {dataset}" #: ckan/lib/activity_streams.py:109 msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "" -"O {actor} adicionou o recurso {resource} ao conjunto de dados {dataset}" +msgstr "O {actor} adicionou o recurso {resource} ao conjunto de dados {dataset}" #: ckan/lib/activity_streams.py:112 msgid "{actor} signed up" @@ -1747,7 +1749,7 @@ msgstr "Por favor, insira um número de valor inteiro." #: ckan/lib/navl/validators.py:126 msgid "Must be a Unicode string value" -msgstr "" +msgstr "Tem de ser um valor de expressão Unicode" #: ckan/logic/__init__.py:99 ckan/logic/action/__init__.py:60 msgid "Package resource(s) invalid" @@ -1769,7 +1771,7 @@ msgstr "Não foi possível analisar como um JSON válido" #: ckan/logic/validators.py:35 ckan/logic/validators.py:44 msgid "An organization must be provided" -msgstr "" +msgstr "Tem de ser fornecida uma organização" #: ckan/logic/validators.py:49 msgid "Organization does not exist" @@ -1835,8 +1837,8 @@ msgstr "O nome deve ter no máximo %i caracteres" #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "" "Deverão ser, unicamente, carateres alfanuméricos minúsculos (ascii) e os " "símbolos: - _ ." @@ -1938,8 +1940,8 @@ msgstr "Esse nome de vocabulário já está em uso." #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "" -"Não é possivel alterar o numero da chave de %s para %s. Esta é somente de " -"leitura." +"Não é possivel alterar o numero da chave de %s para %s. Esta é somente de" +" leitura." #: ckan/logic/validators.py:651 msgid "Tag vocabulary was not found." @@ -2059,7 +2061,8 @@ msgstr "Já está a seguir {0}" #: ckan/logic/action/create.py:1313 ckan/logic/action/create.py:1321 msgid "You must be logged in to follow a dataset." msgstr "" -"É necessário ter a sessão iniciada para poder seguir um conjunto de dados. " +"É necessário ter a sessão iniciada para poder seguir um conjunto de " +"dados. " #: ckan/logic/action/create.py:1379 msgid "User {username} does not exist." @@ -2071,7 +2074,7 @@ msgstr "É necessário ter a sessão iniciada para poder seguir um grupo." #: ckan/logic/action/delete.py:54 msgid " Delete User: {0}" -msgstr "" +msgstr "Eliminar Utilizador: {0}" #: ckan/logic/action/delete.py:92 #, python-format @@ -2189,8 +2192,7 @@ msgstr "" #: ckan/logic/auth/create.py:76 #, python-format msgid "User %s not authorized to create resources on dataset %s" -msgstr "" -"Utilizador %s não está autorizado a criar recursos no conjunto de dados %s" +msgstr "Utilizador %s não está autorizado a criar recursos no conjunto de dados %s" #: ckan/logic/auth/create.py:108 #, python-format @@ -2210,8 +2212,8 @@ msgstr "Utilizador %s não está autorizado a criar organizações" #: ckan/logic/auth/create.py:145 msgid "User {user} not authorized to create users via the API" msgstr "" -"Utilizador {user} não está autorizado a criar novos perfis de utilizadores " -"via API" +"Utilizador {user} não está autorizado a criar novos perfis de " +"utilizadores via API" #: ckan/logic/auth/create.py:148 msgid "Not authorized to create users" @@ -2238,8 +2240,7 @@ msgstr "Utilizador %s não está autorizado a eliminar o recurso %s" #: ckan/logic/auth/delete.py:56 msgid "Resource view not found, cannot check auth." -msgstr "" -"Visualização de recurso não encontrado, não é possível verificar autor." +msgstr "Visualização de recurso não encontrado, não é possível verificar autor." #: ckan/logic/auth/delete.py:73 #, python-format @@ -2298,7 +2299,8 @@ msgstr "Utilizador %s não está autorizado a ler o grupo %s" #: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "" -"Necessita de iniciar a sessão para poder ter acesso ao painel de controlo. " +"Necessita de iniciar a sessão para poder ter acesso ao painel de " +"controlo. " #: ckan/logic/auth/update.py:39 #, python-format @@ -2356,8 +2358,7 @@ msgstr "Utilizador %s não está autorizado a atualizar a tabela task_status" #: ckan/logic/auth/update.py:240 #, python-format msgid "User %s not authorized to update term_translation table" -msgstr "" -"Utilizador %s não está autorizado a atualizar a tabela term_translation" +msgstr "Utilizador %s não está autorizado a atualizar a tabela term_translation" #: ckan/model/license.py:223 msgid "License not specified" @@ -2637,10 +2638,11 @@ msgstr "Não foi possivel obter dados a partir do ficheiro enviado" #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "" -"Está a enviar um ficheiro. Tem a certeza de que deseja sair e parar o envio?" +"Está a enviar um ficheiro. Tem a certeza de que deseja sair e parar o " +"envio?" #: ckan/public-bs2/base/javascript/modules/resource-view-filters.js:9 #: ckan/public/base/javascript/modules/resource-view-filters.js:9 @@ -2651,7 +2653,7 @@ msgstr "Adicionar Filtro" #: ckan/public-bs2/base/javascript/modules/resource-view-filters.js:52 #: ckan/public/base/javascript/modules/resource-view-filters.js:52 msgid "Select a field" -msgstr "" +msgstr "Selecione um campo" #: ckan/public-bs2/base/javascript/modules/slug-preview.js:57 #: ckan/public/base/javascript/modules/slug-preview.js:57 @@ -2694,14 +2696,14 @@ msgstr "" #: ckan/public/base/test/spec/i18n.spec.js:54 msgid "no translation" msgid_plural "no translations" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "sem tradução" +msgstr[1] "sem traduções" #: ckan/public-bs2/base/test/spec/i18n.spec.js:22 #: ckan/public/base/test/spec/i18n.spec.js:22 #, python-format msgid "hello %(name)s!" -msgstr "" +msgstr "olá %(name)s!" #: ckan/public-bs2/base/test/spec/i18n.spec.js:29 #: ckan/public-bs2/base/test/spec/i18n.spec.js:76 @@ -2755,8 +2757,8 @@ msgstr[1] "" #, python-format msgid "%(num)d item" msgid_plural "%(num)d items" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%(num)d item" +msgstr[1] "%(num)d itens" #: ckan/public-bs2/base/test/spec/i18n.spec.js:100 #: ckan/public-bs2/base/test/spec/i18n.spec.js:105 @@ -2917,39 +2919,40 @@ msgstr "Opções da configuração CKAN" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " +"

Site Title: This is the title of this CKAN instance " +"It appears in various places throughout CKAN.

" +"

Style: Choose from a list of simple variations of the" +" main colour scheme to get a very quick custom theme working.

" +"

Site Tag Logo: This is the logo that appears in the " +"header of all the CKAN instance templates.

About:" +" This text will appear on this CKAN instances about page.

Intro " "Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" "

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend <head> tag of every page. If you wish to customize the" +" templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" +"

Homepage: This is for choosing a predefined layout " +"for the modules that appear on your homepage.

" msgstr "" "

Título do portal: Este é o título desta instância " -"CKAN. Aparece em vários pontos do CKAN.

Estilo: " -"Escolha de uma lista de esquemas de cores com variações simples do esquema " -"principal para conseguir uma personalização rápida do tema do portal.

" -"

Logótipo do portal: Este é o logótipo que aparece no " -"cabeçalho de todos os modelos de instância CKAN.

Sobre: " -" Texto descritivo sobre a página será " -"exibido nesta instância CKAN .

Texto Introdutório: " -" Este texto será exibido nesta instância CKAN home page como uma nota de boas vindas aos " -"visitantes.

CSS personalizado: O bloco CSS " -"aparece na <head> etiqueta de cada página. Se deseja " -"personalizar os estilos e os conteúdos da página de uma forma mais completa," -" recomendamos a leitura da " -"seguinte documentação .

Página Inicial: " -"Permite escolher o layout pré-definido dos módulos que surgem na página " -"inicial.

" +"CKAN. Aparece em vários pontos do CKAN.

Estilo: " +" Escolha de uma lista de esquemas de cores com variações simples" +" do esquema principal para conseguir uma personalização rápida do tema do" +" portal.

Logótipo do portal: Este é o logótipo" +" que aparece no cabeçalho de todos os modelos de instância CKAN.

" +"

Sobre: Texto descritivo sobre a página será exibido nesta instância CKAN .

" +"

Texto Introdutório: Este texto será exibido nesta " +"instância CKAN home page como uma nota de " +"boas vindas aos visitantes.

CSS personalizado: " +" O bloco CSS aparece na <head> etiqueta de cada " +"página. Se deseja personalizar os estilos e os conteúdos da página de uma" +" forma mais completa, recomendamos a leitura da seguinte documentação .

" +"

Página Inicial: Permite escolher o layout " +"pré-definido dos módulos que surgem na página inicial.

" #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 @@ -2964,13 +2967,14 @@ msgstr "Administrador CKAN" #, python-format msgid "" "

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" +"Proceed with care!

For guidance on using sysadmin features, see " +"the CKAN sysadmin " +"guide

" msgstr "" -"

Como Administrador do Sistema tem total controlo sobre o CKAN. Proceda " -"com CUIDADO!

Para obter mais informações para um uso correto, " -"consulte no CKAN o guia " -"Administrador do Sistema

" +"

Como Administrador do Sistema tem total controlo sobre o CKAN. " +"Proceda com CUIDADO!

Para obter mais informações para um uso " +"correto, consulte no CKAN o " +"guia Administrador do Sistema

" #: ckan/templates/admin/trash.html:20 msgid "Purge" @@ -3131,9 +3135,8 @@ msgstr "Tem a certeza que deseja apagar o membro - {name}?" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "Gerir" @@ -3165,8 +3168,7 @@ msgstr "Procurar grupos ..." msgid "There are currently no groups for this site" msgstr "Atualmente, este site não tem grupos" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "E que tal criar um?" @@ -3216,24 +3218,22 @@ msgstr "Novo Utilizador" #: ckan/templates/organization/member_new.html:46 msgid "If you wish to invite a new user, enter their email address." msgstr "" -"Se pretende convidar um novo membro, escreva o respetivo contacto de email. " +"Se pretende convidar um novo membro, escreva o respetivo contacto de " +"email. " -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "Função" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "Tem a certeza que deseja apagar este membro?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3254,13 +3254,14 @@ msgstr "O que são as funções?" #: ckan/templates/group/member_new.html:80 msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " +"

Admin: Can edit group information, as well as manage" +" organization members.

Member: Can add/remove " "datasets from groups

" msgstr "" -"

Administrador: Pode editar as informações do grupo, " -"bem como gerir os membros da organização.

Membro: " -" Pode adicionar e remover conjuntos de dados provenientes de grupos

" +"

Administrador: Pode editar as informações do grupo," +" bem como gerir os membros da organização.

Membro: " +" Pode adicionar e remover conjuntos de dados provenientes de " +"grupos

" #: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 #: ckan/templates/group/new.html:7 @@ -3330,16 +3331,16 @@ msgstr "O que são os Grupos?" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" "Pode usar Grupos CKAN para criar e gerir coleções de conjuntos de dados. " -"Poderão servir para catalogar conjuntos de dados de um projeto ou equipa em " -"particular, ou sobre um tema especifico, ou como uma forma simples de ajudar" -" os utilizadores a encontrar e pesquisar os seus próprios conjuntos de dados" -" publicados." +"Poderão servir para catalogar conjuntos de dados de um projeto ou equipa " +"em particular, ou sobre um tema especifico, ou como uma forma simples de " +"ajudar os utilizadores a encontrar e pesquisar os seus próprios conjuntos" +" de dados publicados." #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 @@ -3402,13 +3403,14 @@ msgid "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3418,23 +3420,25 @@ msgid "" "overview: http://ckan.org/features/

" msgstr "" -"

A plataforma CKAN é líder mundial em portais de dados abertos.

" -"CKAN é um software revolucionário, uma solução que torna dados acessíveis e " -"utilizáveis - fornecendo ferramentas para agilizar a publicação, partilha, " -"encontrar e utilizar dados (incluindo o armazenamento de dados e prestação " -"de dados APIs). CKAN é dirigido a editores de dados (governos nacionais e " -"regionais, empresas e organizações) que querem fazer dos seus dados, dados " -"abertos e disponíveis.

CKAN é usado pelos governos e grupos de " -"utilizadores em todo o mundo em portais de dados da comunidade, incluindo " -"portais para o governo local, nacional e internacional, tais como o Reino " -"Unido data.gov.uk e União Europeia publicdata.eu, os brasileiros dados.gov.br, os portais governamentais " -"holandeses e dos países baixos, bem como das cidades e locais municipais dos" -" EUA, Reino Unido, Argentina, Finlândia, entre outros.

CKAN: A plataforma CKAN é líder mundial em portais de dados abertos.

" +"

CKAN é um software revolucionário, uma solução que torna dados " +"acessíveis e utilizáveis - fornecendo ferramentas para agilizar a " +"publicação, partilha, encontrar e utilizar dados (incluindo o " +"armazenamento de dados e prestação de dados APIs). CKAN é dirigido a " +"editores de dados (governos nacionais e regionais, empresas e " +"organizações) que querem fazer dos seus dados, dados abertos e " +"disponíveis.

CKAN é usado pelos governos e grupos de " +"utilizadores em todo o mundo em portais de dados da comunidade, incluindo" +" portais para o governo local, nacional e internacional, tais como o " +"Reino Unido data.gov.uk e União " +"Europeia publicdata.eu, os " +"brasileiros dados.gov.br, os portais" +" governamentais holandeses e dos países baixos, bem como das cidades e " +"locais municipais dos EUA, Reino Unido, Argentina, Finlândia, entre " +"outros.

CKAN: http://ckan.org/
CKAN Tour: http://ckan.org/tour/
Vista geral " -"das características: http://ckan.org/tour/
Vista " +"geral das características: http://ckan.org/features/

" #: ckan/templates/home/snippets/promoted.html:8 @@ -3443,11 +3447,12 @@ msgstr "Bem-vindo ao CKAN" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" -"Este é um parágrafo introdutório agradável sobre o CKAN ou sobre o site em " -"geral. Ainda não temos qualquer cópia para ir aqui, mas em breve vamos ter" +"Este é um parágrafo introdutório agradável sobre o CKAN ou sobre o site " +"em geral. Ainda não temos qualquer cópia para ir aqui, mas em breve vamos" +" ter" #: ckan/templates/home/snippets/promoted.html:19 msgid "This is a featured section" @@ -3492,13 +3497,13 @@ msgstr "grupos" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" "Aqui, pode usar o formato Markdown " +"reference\" data-target=\"popover\" data-content=\"%(markdown_tooltip)s\"" +" data-html=\"true\"> Markdown " #: ckan/templates/macros/form.html:277 msgid "This field is required" @@ -3544,7 +3549,8 @@ msgstr "encontrados para \"{query}\"" #: ckan/templates/organization/bulk_process.html:18 msgid "Sorry no datasets found for \"{query}\"" msgstr "" -"Pedimos desculpa, não foram encontrados conjuntos de dados para \"{query}\"" +"Pedimos desculpa, não foram encontrados conjuntos de dados para " +"\"{query}\"" #: ckan/templates/organization/bulk_process.html:37 msgid "Make public" @@ -3564,8 +3570,8 @@ msgstr "Rascunho" #: ckan/templates/package/read.html:11 #: ckan/templates/package/snippets/package_basic_fields.html:98 #: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 msgid "Private" msgstr "Privado" @@ -3620,15 +3626,15 @@ msgid "" "

Admin: Can add/edit and delete datasets, as well as " "manage organization members.

Editor: Can add and " "edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" +"

Member: Can view the organization's private datasets," +" but not add new datasets.

" msgstr "" "

Administrador: Pode adicionar, editar e excluir " -"conjuntos de dados, bem como gerir os membros da organização

" -" Editor: Pode adicionar e editar conjuntos de dados, mas não pode " -"girir os membros da organização.

Membro: Pode " -"visualizar os conjuntos de dados privados da organização, mas não pode " -"adicionar novos conjuntos de dados.

" +"conjuntos de dados, bem como gerir os membros da organização

" +"

Editor: Pode adicionar e editar conjuntos de dados," +" mas não pode girir os membros da organização.

Membro: " +" Pode visualizar os conjuntos de dados privados da organização, " +"mas não pode adicionar novos conjuntos de dados.

" #: ckan/templates/organization/members.html:14 msgid "{count} member" @@ -3662,26 +3668,32 @@ msgstr "O que são as Organizações?" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" +"

Organizations act like publishing departments for datasets (for " +"example, the Department of Health). This means that datasets can be " +"published by and belong to a department instead of an individual " +"user.

Within organizations, admins can assign roles and authorise " +"its members, giving individual users the right to publish datasets from " +"that particular organisation (e.g. Office of National Statistics).

" msgstr "" -"

As organizações agem como departamentos de publicação para conjuntos de dados (p.ex., o Departamento de Saúde).\n" -"Isto significa que os conjuntos de dados podem ser publicados e pertencem a um departamento em vez de a um utilizador individual.

Dentro das organizações, os administradores podem atribuir funções e autorizar os seus membros, dando aos utilizadores individuais, o direito de publicar conjuntos de dados de determinada organização (p.ex., Instituto Nacional de Estatística).

" +"

As organizações agem como departamentos de publicação para conjuntos " +"de dados (p.ex., o Departamento de Saúde).\n" +"Isto significa que os conjuntos de dados podem ser publicados e pertencem" +" a um departamento em vez de a um utilizador individual.

Dentro " +"das organizações, os administradores podem atribuir funções e autorizar " +"os seus membros, dando aos utilizadores individuais, o direito de " +"publicar conjuntos de dados de determinada organização (p.ex., Instituto " +"Nacional de Estatística).

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" "Organizações CKAN são usadas para criar, gerir e publicar coleções de " -"conjuntos de dados. Os utilizadores podem ter diferentes funções dentro de " -"uma organização, dependendo do nível de autorização cedido para criar, " -"editar e publicar." +"conjuntos de dados. Os utilizadores podem ter diferentes funções dentro " +"de uma organização, dependendo do nível de autorização cedido para criar," +" editar e publicar." #: ckan/templates/organization/snippets/organization_form.html:10 msgid "My Organization" @@ -3697,8 +3709,9 @@ msgstr "Alguma informação sobre a minha organização ..." #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3721,14 +3734,14 @@ msgstr "O que são conjuntos de dados?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" "Um conjunto de dados CKAN é uma coleção de recursos de dados (como p.ex. " -"ficheiros), juntamente com uma descrição, entre outras informações, num URL " -"fixo. Os conjuntos de dados são os que os utilizadores vêem quando pesquisam" -" por dados." +"ficheiros), juntamente com uma descrição, entre outras informações, num " +"URL fixo. Os conjuntos de dados são os que os utilizadores vêem quando " +"pesquisam por dados." #: ckan/templates/package/confirm_delete.html:12 msgid "Are you sure you want to delete dataset - {name}?" @@ -3808,15 +3821,15 @@ msgstr "Adicionar vista" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" -"Vistas do tipo Data Explorer podem ser lentas e falíveis, a não ser que a " -"extensão DataStore seja ativada. Para mais informação, consulte por favor a " -"documentação do " -"Data Explorer . " +"Vistas do tipo Data Explorer podem ser lentas e falíveis, a não ser que a" +" extensão DataStore seja ativada. Para mais informação, consulte por " +"favor a documentação do Data Explorer . " #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:83 @@ -3826,11 +3839,12 @@ msgstr "Adicionar" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" -"Esta é uma revisão antiga deste conjunto de dados, está tal como editado a " -"%(timestamp)s. Pode divergir significativamente da revisão atual. " #: ckan/templates/package/resource_edit_base.html:17 @@ -3897,14 +3911,14 @@ msgstr "Não foi criada nenhuma vista que seja adequada a este recurso" #: ckan/templates/package/resource_read.html:139 msgid "The site administrators may not have enabled the relevant view plugins" msgstr "" -"Os administradores do site podem não ter ativado os plugins de visualização " -"relevantes" +"Os administradores do site podem não ter ativado os plugins de " +"visualização relevantes" #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" "Se a visualização requer o DataStore, o plugin DataStore pode não estar " "ativo, ou os dados podem não ter sidos carregados no DataStore, ou o " @@ -3975,8 +3989,8 @@ msgstr "Adicionar novo recurso" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

This dataset has no data, why not " -"add some?

" +"

This dataset has no data, why not" +" add some?

" msgstr "" "

Este conjunto de dados não tem dados, não gostaria de acrescentar alguns?

" @@ -4007,8 +4021,7 @@ msgstr "" msgid "" " You can also access this registry using the %(api_link)s (see " "%(api_doc_link)s). " -msgstr "" -"Pode aceder a este registo usando %(api_link)s (ver %(api_doc_link)s)." +msgstr "Pode aceder a este registo usando %(api_link)s (ver %(api_doc_link)s)." #: ckan/templates/package/view_edit_base.html:9 msgid "All views" @@ -4097,10 +4110,10 @@ msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "" -"As definições das licenças e mais informações adicionais sobre as mesmas, " -"podem ser encontradas em " -"creativecommons.org e em opendefinition.org" +"As definições das licenças e mais informações adicionais sobre as mesmas," +" podem ser encontradas em creativecommons.org e " +"em opendefinition.org" #: ckan/templates/package/snippets/package_basic_fields.html:76 #: ckan/templates/snippets/organization.html:23 @@ -4125,16 +4138,17 @@ msgstr "Ativo" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" "A licença escolhida acima só se aplica aos conteúdos de todos os " -"ficheiros de recursos que se adicionem a este conjunto de dados. Ao submeter" -" este formulário, está a concordar em ceder livremente os
metadados " -"que inseriu, sob a forma metadados que inseriu, sob a forma Open Database " "License ." @@ -4180,7 +4194,7 @@ msgstr "Atualizar Recurso" #: ckan/templates/package/snippets/resource_form.html:26 msgid "Data" -msgstr "" +msgstr "Dados" #: ckan/templates/package/snippets/resource_form.html:26 msgid "http://example.com/external-data.csv" @@ -4260,7 +4274,7 @@ msgstr "Mais informação" #: ckan/templates/package/snippets/resource_view.html:10 msgid "Fullscreen" -msgstr "" +msgstr "Ecrã cheio" #: ckan/templates/package/snippets/resource_view.html:18 msgid "Embed" @@ -4279,8 +4293,8 @@ msgid "" "You can copy and paste the embed code into a CMS or blog software that " "supports raw HTML" msgstr "" -"Pode copiar e colar o código para embutir num CMS ou blogue que suporte a " -"escrita de HTML" +"Pode copiar e colar o código para embutir num CMS ou blogue que suporte a" +" escrita de HTML" #: ckan/templates/package/snippets/resource_view.html:80 msgid "Width" @@ -4459,8 +4473,8 @@ msgstr "

Por favor, tente um novo termo de pesquisa.

" #: ckan/templates/snippets/search_form.html:87 msgid "" -"

There was an error while searching." -" Please try again.

" +"

There was an error while " +"searching. Please try again.

" msgstr "" #: ckan/templates/snippets/search_result_text.html:15 @@ -4607,10 +4621,11 @@ msgstr "Informação sobre a conta" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" -"O seu perfil permite que outros utilizadores CKAN saibam quem é e o que faz." -" " +"O seu perfil permite que outros utilizadores CKAN saibam quem é e o que " +"faz. " #: ckan/templates/user/edit_user_form.html:7 msgid "Change details" @@ -4737,8 +4752,8 @@ msgstr "Já está com a sessão iniciada" #: ckan/templates/user/logout_first.html:22 msgid "You need to log out before you can log in with another account." msgstr "" -"Precisa de terminar a sua sessão para poder iniciar uma sessão com uma conta" -" diferente." +"Precisa de terminar a sua sessão para poder iniciar uma sessão com uma " +"conta diferente." #: ckan/templates/user/logout_first.html:23 msgid "Log out now" @@ -4796,8 +4811,7 @@ msgstr "Como é que isto funciona?" #: ckan/templates/user/perform_reset.html:45 msgid "Simply enter a new password and we'll update your account" -msgstr "" -"Basta escrever uma nova palavra-passe que nós atualizaremos a sua conta" +msgstr "Basta escrever uma nova palavra-passe que nós atualizaremos a sua conta" #: ckan/templates/user/read.html:27 msgid "User hasn't created any datasets." @@ -4842,11 +4856,11 @@ msgstr "Pedir redefinição" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" -"Escreva o seu nome de utilizador que nós lhe enviamos de seguida um email " -"com um link de acesso, onde poderá inserir a sua nova palavra-passe." +"Escreva o seu nome de utilizador que nós lhe enviamos de seguida um email" +" com um link de acesso, onde poderá inserir a sua nova palavra-passe." #: ckan/templates/user/snippets/followee_dropdown.html:15 #: ckan/templates/user/snippets/followee_dropdown.html:16 @@ -4872,3 +4886,4 @@ msgstr "Pesquisar por utilizadores" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/ro/LC_MESSAGES/ckan.po b/ckan/i18n/ro/LC_MESSAGES/ckan.po index 61f80cad741..295ce09d650 100644 --- a/ckan/i18n/ro/LC_MESSAGES/ckan.po +++ b/ckan/i18n/ro/LC_MESSAGES/ckan.po @@ -1,23 +1,27 @@ -# Translations template for ckan. +# Romanian translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 +# Bogdan Mateescu, 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Bogdan Mateescu, 2018\n" +"Language: ro\n" "Language-Team: Romanian (https://www.transifex.com/okfn/teams/11162/ro/)\n" +"Plural-Forms: nplurals=3; " +"plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,14 +132,14 @@ msgstr "" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 @@ -156,14 +160,15 @@ msgstr "Date API CKAN" #: ckanext/datastore/templates/ajax_snippets/api_info.html:25 msgid "Access resource data via a web API with powerful query support" msgstr "" -"Acces la datele de resurse prin intermediul unui API cu suport de interogare" -" puternic" +"Acces la datele de resurse prin intermediul unui API cu suport de " +"interogare puternic" #: ckanext/datastore/templates/ajax_snippets/api_info.html:26 msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -174,8 +179,8 @@ msgstr "obiective" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 @@ -313,7 +318,8 @@ msgstr "Date API" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 @@ -1075,7 +1081,8 @@ msgstr "Acest site este momentan off-line. Nu este inițializată baza de date." #, python-format msgid "Please update your profile and add your email address. " msgstr "" -"Vă rog Actualizați profilul și indicați adresa de e-mail." +"Vă rog Actualizați profilul și indicați adresa de " +"e-mail." #: ckan/controllers/home.py:75 ckan/views/home.py:60 #, python-format @@ -1825,8 +1832,8 @@ msgstr "Numele trebuie să conțină maximum %i caractere" #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "" #: ckan/logic/validators.py:363 @@ -1871,8 +1878,8 @@ msgstr "Lungimea etichetei \"%s\" este mai mare decît maximul necesar %i" #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "" -"Eticheta \"%s\" trebuie să conţină caractere alfanumerice sau simboluri: -_." -" " +"Eticheta \"%s\" trebuie să conţină caractere alfanumerice sau simboluri: " +"-_. " #: ckan/logic/validators.py:438 #, python-format @@ -1912,8 +1919,8 @@ msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "" -"Editarea nu este permisă, fiind privită ca spam. Vă rugăm să evitați link-" -"uri în descriere." +"Editarea nu este permisă, fiind privită ca spam. Vă rugăm să evitați " +"link-uri în descriere." #: ckan/logic/validators.py:628 #, python-format @@ -2014,8 +2021,7 @@ msgstr "Încercarea de a crea o organizație ca un grup" #: ckan/logic/action/create.py:896 msgid "You must supply a package id or name (parameter \"package\")." -msgstr "" -"Trebuie să furnizaţi un id de pachet sau nume (parametrul ''package'')." +msgstr "Trebuie să furnizaţi un id de pachet sau nume (parametrul ''package'')." #: ckan/logic/action/create.py:899 msgid "You must supply a rating (parameter \"rating\")." @@ -2624,8 +2630,8 @@ msgstr "Incapabil să obțin date din fișierul încărcat" #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "" "Sunteți în proces de încărcare a fișierului. Sunteți sigur să doriți să " "navigați mai departe și să opriți încărcarea fișierului?" @@ -2912,21 +2918,22 @@ msgstr "CKAN opțiuni configurare" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " +"

Site Title: This is the title of this CKAN instance " +"It appears in various places throughout CKAN.

" +"

Style: Choose from a list of simple variations of the" +" main colour scheme to get a very quick custom theme working.

" +"

Site Tag Logo: This is the logo that appears in the " +"header of all the CKAN instance templates.

About:" +" This text will appear on this CKAN instances about page.

Intro " "Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" "

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend <head> tag of every page. If you wish to customize the" +" templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" +"

Homepage: This is for choosing a predefined layout " +"for the modules that appear on your homepage.

" msgstr "" #: ckan/templates/admin/confirm_reset.html:3 @@ -2942,8 +2949,9 @@ msgstr "" #, python-format msgid "" "

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" +"Proceed with care!

For guidance on using sysadmin features, see " +"the CKAN sysadmin " +"guide

" msgstr "" #: ckan/templates/admin/trash.html:20 @@ -3103,9 +3111,8 @@ msgstr "Sunteți sigur că doriți să ștergeți membrul - {name}?" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "" @@ -3137,8 +3144,7 @@ msgstr "Caută grupuri..." msgid "There are currently no groups for this site" msgstr "" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "Creăm unul nou?" @@ -3187,22 +3193,19 @@ msgstr "" msgid "If you wish to invite a new user, enter their email address." msgstr "" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "Rolul" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "Sunteți sigur că doriți să ștergeți acest membru?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3223,8 +3226,8 @@ msgstr "Ce sunt roluri?" #: ckan/templates/group/member_new.html:80 msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " +"

Admin: Can edit group information, as well as manage" +" organization members.

Member: Can add/remove " "datasets from groups

" msgstr "" @@ -3296,10 +3299,10 @@ msgstr "Ce sunt Grupuri?" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" #: ckan/templates/group/snippets/history_revisions.html:10 @@ -3363,13 +3366,14 @@ msgid "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3382,21 +3386,22 @@ msgstr "" "

CKAN este principala platformă open-source pentru portalul de date " "deschise CKAN este o soluție completă de software care face datele " "accesibile și ușor de utilizat - prin furnizarea instrumentelor pentru a " -"simplifica publicarea, partajarea , găsirea și utilizarea de date (inclusiv " -"stocarea de date și furnizarea de API-uri robuste de date). CKAN se " -"adresează editorilor de date (guverne, companii și organizații naționale și " -"regionale), care doresc să facă datele lor deschise și disponibile. " -"CKAN este utilizat de către guverne și grupuri de utilizatori din întreaga " -"lume și fortifică o varietate de portaluri de date oficiale și comunitare, " -"inclusiv portaluri pentru guvernul local, național și internațional, cum ar " -"fi data.gov.uk și publicdata.eu , dados.gov.br , " -"portalurile Guvernului Olandei, precum și site-urile orașelor și " -"municipalităților din SUA, Marea Britanie, Argentina, Finlanda și în alte " -"parți CKAN:. http://ckan . org / " -"
CKAN Tur:
http://ckan.org/tour/
Prezentarea caracteristicilor :
CKAN este utilizat de către guverne și grupuri de " +"utilizatori din întreaga lume și fortifică o varietate de portaluri de " +"date oficiale și comunitare, inclusiv portaluri pentru guvernul local, " +"național și internațional, cum ar fi data.gov.uk și publicdata.eu , dados.gov.br , portalurile " +"Guvernului Olandei, precum și site-urile orașelor și municipalităților " +"din SUA, Marea Britanie, Argentina, Finlanda și în alte parți " +"CKAN:. http://ckan . org /
" +"CKAN Tur:
http://ckan.org/tour/ " +"
Prezentarea caracteristicilor :
http://ckan.org/features/ " #: ckan/templates/home/snippets/promoted.html:8 @@ -3405,11 +3410,11 @@ msgstr "Bun venit la CKAN" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" -"Acesta este un paragraf introductiv despre CKAN sau site-ul în general. Noi " -"încă nu avem o copie care ar merge aici, dar în curând o vom avea." +"Acesta este un paragraf introductiv despre CKAN sau site-ul în general. " +"Noi încă nu avem o copie care ar merge aici, dar în curând o vom avea." #: ckan/templates/home/snippets/promoted.html:19 msgid "This is a featured section" @@ -3454,8 +3459,8 @@ msgstr "" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" @@ -3522,8 +3527,8 @@ msgstr "Proiect" #: ckan/templates/package/read.html:11 #: ckan/templates/package/snippets/package_basic_fields.html:98 #: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 msgid "Private" msgstr "Privat" @@ -3578,8 +3583,8 @@ msgid "" "

Admin: Can add/edit and delete datasets, as well as " "manage organization members.

Editor: Can add and " "edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" +"

Member: Can view the organization's private datasets," +" but not add new datasets.

" msgstr "" #: ckan/templates/organization/members.html:14 @@ -3615,19 +3620,19 @@ msgstr "Ce sunt Organizații?" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" +"

Organizations act like publishing departments for datasets (for " +"example, the Department of Health). This means that datasets can be " +"published by and belong to a department instead of an individual " +"user.

Within organizations, admins can assign roles and authorise " +"its members, giving individual users the right to publish datasets from " +"that particular organisation (e.g. Office of National Statistics).

" msgstr "" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" #: ckan/templates/organization/snippets/organization_form.html:10 @@ -3644,8 +3649,9 @@ msgstr "Informație scurtă despre organizația mea" #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3668,9 +3674,9 @@ msgstr "Ce sunt seturile de date?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" #: ckan/templates/package/confirm_delete.html:12 @@ -3751,9 +3757,9 @@ msgstr "" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" #: ckan/templates/package/new_view.html:29 @@ -3764,8 +3770,9 @@ msgstr "Adaugă" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" #: ckan/templates/package/resource_edit_base.html:17 @@ -3835,9 +3842,9 @@ msgstr "" #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" #: ckan/templates/package/resource_read.html:162 @@ -3905,8 +3912,8 @@ msgstr "" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

This dataset has no data, why not " -"add some?

" +"

This dataset has no data, why not" +" add some?

" msgstr "" #: ckan/templates/package/search.html:52 @@ -4046,11 +4053,12 @@ msgstr "" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" #: ckan/templates/package/snippets/package_form.html:39 @@ -4370,8 +4378,8 @@ msgstr "" #: ckan/templates/snippets/search_form.html:87 msgid "" -"

There was an error while searching." -" Please try again.

" +"

There was an error while " +"searching. Please try again.

" msgstr "" #: ckan/templates/snippets/search_result_text.html:15 @@ -4524,7 +4532,8 @@ msgstr "" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" #: ckan/templates/user/edit_user_form.html:7 @@ -4752,8 +4761,8 @@ msgstr "" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" #: ckan/templates/user/snippets/followee_dropdown.html:15 @@ -4780,3 +4789,4 @@ msgstr "Caută Utilizatori" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/ru/LC_MESSAGES/ckan.po b/ckan/i18n/ru/LC_MESSAGES/ckan.po index a156ddd3183..a7aa2c0d57e 100644 --- a/ckan/i18n/ru/LC_MESSAGES/ckan.po +++ b/ckan/i18n/ru/LC_MESSAGES/ckan.po @@ -1,23 +1,29 @@ -# Translations template for ckan. +# Russian translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 +# tuffnatty , 2018 +# Ivan Begtin , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Ivan Begtin , 2018\n" +"Language: ru\n" "Language-Team: Russian (https://www.transifex.com/okfn/teams/11162/ru/)\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) " +"|| (n%100>=11 && n%100<=14)? 2 : 3)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,19 +134,19 @@ msgstr "Ресурс DataStore не найден" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" "Дата словарь сохранён. Любая перезапись будет действовать когда ресурс в " "следующий раз будет загружен в хранилище данных" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" -"Данные некорректны (например: численное значение за пределами ограничений " -"или введено в текстовое поле)." +"Данные некорректны (например: численное значение за пределами ограничений" +" или введено в текстовое поле)." #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 #: ckanext/datastore/logic/action.py:344 ckanext/datastore/logic/action.py:457 @@ -165,7 +171,8 @@ msgstr "Доступ к данным ресурса через web API с под msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -176,10 +183,11 @@ msgstr "Endpoints" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "" -"Data API может использоваться через следующие действия в API действий CKAN." +"Data API может использоваться через следующие действия в API действий " +"CKAN." #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 #: ckanext/datastore/templates/ajax_snippets/api_info.html:44 @@ -316,7 +324,8 @@ msgstr "Данные API" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 @@ -449,7 +458,8 @@ msgstr "0 Пакеты данных" #: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 msgid "CKAN's data previewing tool has many powerful features" msgstr "" -"Инструмент предварительного просмотра данных CKAN имеет ряд мощных функций. " +"Инструмент предварительного просмотра данных CKAN имеет ряд мощных " +"функций. " #: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 #: ckan/templates/group/snippets/info.html:32 @@ -1317,8 +1327,8 @@ msgid "" "User \"%s\" is now registered but you are still logged in as \"%s\" from " "before" msgstr "" -"Пользователь \"%s\" зарегистрирован, но вы все еще находитесь в сессии как " -"пользователь \"%s\" " +"Пользователь \"%s\" зарегистрирован, но вы все еще находитесь в сессии " +"как пользователь \"%s\" " #: ckan/controllers/user.py:294 ckan/views/user.py:174 msgid "Unauthorized to edit a user." @@ -1611,11 +1621,11 @@ msgstr[3] "больше {years} лет назад" #: ckan/lib/formatters.py:146 msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -msgstr "{месяц} {день}, {год}, {часов:02}:{минут:02} ({timezone})" +msgstr "{day} {month} {year}, {hour:02}:{min:02} ({timezone})" #: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" -msgstr "{месяц} {день}, {год}" +msgstr "{day} {month} {year}" #: ckan/lib/formatters.py:167 msgid "{bytes} bytes" @@ -1843,8 +1853,8 @@ msgstr "Имя должно содержать максимум %i символ #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "" #: ckan/logic/validators.py:363 @@ -1944,7 +1954,8 @@ msgstr "Это название словаря уже используется." #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "" -"Невозможно изменить значение ключа %s на %s. Ключ доступен только для чтения" +"Невозможно изменить значение ключа %s на %s. Ключ доступен только для " +"чтения" #: ckan/logic/validators.py:651 msgid "Tag vocabulary was not found." @@ -2046,8 +2057,7 @@ msgstr "Значение рейтинга должно быть в предел #: ckan/logic/action/create.py:1078 msgid "Error sending the invite email, the user was not created: {0}" -msgstr "" -"Ошибка при отправке email-приглашения. Пользователь не был создан: {0}" +msgstr "Ошибка при отправке email-приглашения. Пользователь не был создан: {0}" #: ckan/logic/action/create.py:1254 ckan/logic/action/create.py:1261 msgid "You must be logged in to follow users" @@ -2169,8 +2179,7 @@ msgstr "Пользователь %s не имеет достаточно пра #: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 #, python-format msgid "User %s not authorized to edit these groups" -msgstr "" -"Пользователь %s не имеет достаточно прав для редактирования этих группы" +msgstr "Пользователь %s не имеет достаточно прав для редактирования этих группы" #: ckan/logic/auth/create.py:38 #, python-format @@ -2186,15 +2195,14 @@ msgstr "ID пакета данных не предоставлен, невозм #: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 #: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 msgid "No package found for this resource, cannot check auth." -msgstr "" -"Для этого ресурса не найдено пакетов. Невозможно проверить подлинность." +msgstr "Для этого ресурса не найдено пакетов. Невозможно проверить подлинность." #: ckan/logic/auth/create.py:76 #, python-format msgid "User %s not authorized to create resources on dataset %s" msgstr "" -"Пользователь %s не имеет достаточно прав для добавления ресурсов к пакету " -"данных %s" +"Пользователь %s не имеет достаточно прав для добавления ресурсов к пакету" +" данных %s" #: ckan/logic/auth/create.py:108 #, python-format @@ -2333,7 +2341,8 @@ msgstr "Пользователь %s не имеет прав для измене #, python-format msgid "User %s not authorized to edit permissions of group %s" msgstr "" -"Пользователь %s не имеет прав для редактирования прав доступа для группы %s" +"Пользователь %s не имеет прав для редактирования прав доступа для группы " +"%s" #: ckan/logic/auth/update.py:190 msgid "Have to be logged in to edit user" @@ -2343,7 +2352,8 @@ msgstr "Необходимо авторизоваться чтобы редак #, python-format msgid "User %s not authorized to edit user %s" msgstr "" -"Пользователь %s не имеет достаточно прав для редактирования пользователя %s" +"Пользователь %s не имеет достаточно прав для редактирования пользователя " +"%s" #: ckan/logic/auth/update.py:209 msgid "User {0} not authorized to update user {1}" @@ -2648,8 +2658,8 @@ msgstr "Невозможно получить данные для загружа #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "Вы загружаете файл. Вы уверены что хотите прервать ?" #: ckan/public-bs2/base/javascript/modules/resource-view-filters.js:9 @@ -2941,21 +2951,22 @@ msgstr "Опции настроек CKAN" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " +"

Site Title: This is the title of this CKAN instance " +"It appears in various places throughout CKAN.

" +"

Style: Choose from a list of simple variations of the" +" main colour scheme to get a very quick custom theme working.

" +"

Site Tag Logo: This is the logo that appears in the " +"header of all the CKAN instance templates.

About:" +" This text will appear on this CKAN instances about page.

Intro " "Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" "

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend <head> tag of every page. If you wish to customize the" +" templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" +"

Homepage: This is for choosing a predefined layout " +"for the modules that appear on your homepage.

" msgstr "" #: ckan/templates/admin/confirm_reset.html:3 @@ -2971,8 +2982,9 @@ msgstr "" #, python-format msgid "" "

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" +"Proceed with care!

For guidance on using sysadmin features, see " +"the CKAN sysadmin " +"guide

" msgstr "" #: ckan/templates/admin/trash.html:20 @@ -3132,9 +3144,8 @@ msgstr "Вы уверены, что хотите удалить участник #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "" @@ -3166,8 +3177,7 @@ msgstr "Поиск групп..." msgid "There are currently no groups for this site" msgstr "В настоящее время нет групп для этого сайта" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "Может создать?" @@ -3199,8 +3209,7 @@ msgstr "Существующий Пользователь" #: ckan/templates/group/member_new.html:21 #: ckan/templates/organization/member_new.html:22 msgid "If you wish to add an existing user, search for their username below." -msgstr "" -"Чтобы добавить существующего пользователя, воспользуйтесь поиском ниже" +msgstr "Чтобы добавить существующего пользователя, воспользуйтесь поиском ниже" #: ckan/templates/group/member_new.html:38 #: ckan/templates/organization/member_new.html:39 @@ -3216,25 +3225,22 @@ msgstr "Новый Пользователь" #: ckan/templates/organization/member_new.html:46 msgid "If you wish to invite a new user, enter their email address." msgstr "" -"Если Вы хотите пригласить нового пользователя, введите его адрес электронной" -" почты." +"Если Вы хотите пригласить нового пользователя, введите его адрес " +"электронной почты." -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "Роль" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "Вы уверены, что хотите удалить этого участника?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3255,8 +3261,8 @@ msgstr "Какие роли?" #: ckan/templates/group/member_new.html:80 msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " +"

Admin: Can edit group information, as well as manage" +" organization members.

Member: Can add/remove " "datasets from groups

" msgstr "" @@ -3328,10 +3334,10 @@ msgstr "Что такое группы?" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" #: ckan/templates/group/snippets/history_revisions.html:10 @@ -3395,13 +3401,14 @@ msgid "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3413,21 +3420,23 @@ msgid "" msgstr "" "

CKAN является ведущей платформой в мире для публикации открытых " "данных.

CKAN является готовым программным решением из коробки, " -"которое делает данные доступными и используемыми - предоставляя инструменты " -"для упорядочения, публикации, обмена, поиска и использования данных (включая" -" хранение данных и предоставление надежных API). CKAN предназначен для " -"издателей данных (национальных и региональных правительств, компаний и " -"организаций), помогая сделать их данные открытыми и доступными.

CKAN " -"используется правительствами и сообществами по всему миру, включая порталы " -"для местных, национальных и международных правительственных организаций, " -"таких как Великобритания data.gov.uk и " -"Европейский Союз publicdata.eu, " -"Бразилия dados.gov.br, Голландия и " -"Нидерланды, а также городские и муниципальные сайты в США, Великобритании, " -"Аргентине, Финляндии и других странах

CKAN:

CKAN используется правительствами и " +"сообществами по всему миру, включая порталы для местных, национальных и " +"международных правительственных организаций, таких как Великобритания data.gov.uk и Европейский Союз publicdata.eu, Бразилия dados.gov.br, Голландия и Нидерланды, а" +" также городские и муниципальные сайты в США, Великобритании, Аргентине, " +"Финляндии и других странах

CKAN: http://ckan.org/
CKAN Тур: http://ckan.org/tour/
Особенности: " -"http://ckan.org/features/

" +"href=\"http://ckan.org/tour/\">http://ckan.org/tour/
" +"Особенности: http://ckan.org/features/

" #: ckan/templates/home/snippets/promoted.html:8 msgid "Welcome to CKAN" @@ -3435,8 +3444,8 @@ msgstr "Добро пожаловать в CKAN" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" "Это хороший вводный абзац о CKAN или для сайта в целом. Мы еще не " "выкладывали сюда копий, но скоро мы это сделаем" @@ -3484,8 +3493,8 @@ msgstr "группы" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" @@ -3552,8 +3561,8 @@ msgstr "Черновик" #: ckan/templates/package/read.html:11 #: ckan/templates/package/snippets/package_basic_fields.html:98 #: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 msgid "Private" msgstr "Личный" @@ -3608,12 +3617,15 @@ msgid "" "

Admin: Can add/edit and delete datasets, as well as " "manage organization members.

Editor: Can add and " "edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" +"

Member: Can view the organization's private datasets," +" but not add new datasets.

" msgstr "" -"

Администратор:Может добавлять/редактировать и удалять данные, а также управлять участниками организации.

\n" -"

Редактор: Может добавлять/редактировать данные, но не управлять участниками организации.

\n" -"

Участник: Может просматривать приватные данные организации, но не может добавлять данные

" +"

Администратор:Может добавлять/редактировать и удалять" +" данные, а также управлять участниками организации.

\n" +"

Редактор: Может добавлять/редактировать данные, но не" +" управлять участниками организации.

\n" +"

Участник: Может просматривать приватные данные " +"организации, но не может добавлять данные

" #: ckan/templates/organization/members.html:14 msgid "{count} member" @@ -3649,19 +3661,19 @@ msgstr "Какие Организации?" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" +"

Organizations act like publishing departments for datasets (for " +"example, the Department of Health). This means that datasets can be " +"published by and belong to a department instead of an individual " +"user.

Within organizations, admins can assign roles and authorise " +"its members, giving individual users the right to publish datasets from " +"that particular organisation (e.g. Office of National Statistics).

" msgstr "" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" #: ckan/templates/organization/snippets/organization_form.html:10 @@ -3678,8 +3690,9 @@ msgstr "Кратко о моей организации..." #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3702,9 +3715,9 @@ msgstr "Какие пакеты данных?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" #: ckan/templates/package/confirm_delete.html:12 @@ -3785,9 +3798,9 @@ msgstr "" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" #: ckan/templates/package/new_view.html:29 @@ -3798,8 +3811,9 @@ msgstr "Добавить" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" "Это старая версия пакета данных, в редакции по %(timestamp)s. Она может " "отличаться от текущей версии." @@ -3871,9 +3885,9 @@ msgstr "" #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" #: ckan/templates/package/resource_read.html:162 @@ -3941,8 +3955,8 @@ msgstr "Добавить новый ресурс" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

This dataset has no data, why not " -"add some?

" +"

This dataset has no data, why not" +" add some?

" msgstr "" #: ckan/templates/package/search.html:52 @@ -4020,8 +4034,7 @@ msgstr "Последнее обновление" #: ckan/templates/package/snippets/cannot_create_package.html:10 msgid "Before you can create a dataset you need to create an organization." -msgstr "" -"Для того, чтобы создать набор данных, Вам необходимо создать организацию" +msgstr "Для того, чтобы создать набор данных, Вам необходимо создать организацию" #: ckan/templates/package/snippets/cannot_create_package.html:13 msgid "Create a new organization" @@ -4091,11 +4104,12 @@ msgstr "Активный" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" #: ckan/templates/package/snippets/package_form.html:39 @@ -4417,8 +4431,8 @@ msgstr "

Попробуйте поискать еще.

" #: ckan/templates/snippets/search_form.html:87 msgid "" -"

There was an error while searching." -" Please try again.

" +"

There was an error while " +"searching. Please try again.

" msgstr "" #: ckan/templates/snippets/search_result_text.html:15 @@ -4577,10 +4591,11 @@ msgstr "Информация об аккаунте" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" -"Ваш профиль позволяет другим CKAN-пользователям знать кто Вы есть и что Вы " -"делаете" +"Ваш профиль позволяет другим CKAN-пользователям знать кто Вы есть и что " +"Вы делаете" #: ckan/templates/user/edit_user_form.html:7 msgid "Change details" @@ -4672,7 +4687,8 @@ msgstr "Забыли пароль?" #: ckan/templates/user/login.html:44 msgid "No problem, use our password recovery form to reset it." msgstr "" -"Все в порядке, используйте нашу форму восстановления пароля для его сброса." +"Все в порядке, используйте нашу форму восстановления пароля для его " +"сброса." #: ckan/templates/user/login.html:47 msgid "Forgot your password?" @@ -4808,11 +4824,11 @@ msgstr "Запросить сброс пароля" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" -"Введите имя пользователя в поле, и мы вышлем Вам письмо с ссылкой для ввода " -"нового пароля." +"Введите имя пользователя в поле, и мы вышлем Вам письмо с ссылкой для " +"ввода нового пароля." #: ckan/templates/user/snippets/followee_dropdown.html:15 #: ckan/templates/user/snippets/followee_dropdown.html:16 @@ -4838,3 +4854,4 @@ msgstr "Поиск пользователей" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/sk/LC_MESSAGES/ckan.po b/ckan/i18n/sk/LC_MESSAGES/ckan.po index 16b0ef70eec..4963f2f90c3 100644 --- a/ckan/i18n/sk/LC_MESSAGES/ckan.po +++ b/ckan/i18n/sk/LC_MESSAGES/ckan.po @@ -1,23 +1,26 @@ -# Translations template for ckan. +# Slovak translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Adrià Mercader , 2018\n" +"Language: sk\n" "Language-Team: Slovak (https://www.transifex.com/okfn/teams/11162/sk/)\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 " +"&& n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,17 +131,17 @@ msgstr "Požadovaný zdroj z DataStore nebol nájdený" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" -"Dáta boli neplatné (napríklad: číselná hodnota je mimo rozsah alebo bola " -"vložená do textového poľa)." +"Dáta boli neplatné (napríklad: číselná hodnota je mimo rozsah alebo bola" +" vložená do textového poľa)." #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 #: ckanext/datastore/logic/action.py:344 ckanext/datastore/logic/action.py:457 @@ -157,14 +160,14 @@ msgstr "CKAN dátové API" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 #: ckanext/datastore/templates/ajax_snippets/api_info.html:25 msgid "Access resource data via a web API with powerful query support" -msgstr "" -"Prístup k zdrojom dát prostredníctvom webového API s podporou dopytovania" +msgstr "Prístup k zdrojom dát prostredníctvom webového API s podporou dopytovania" #: ckanext/datastore/templates/ajax_snippets/api_info.html:26 msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -175,8 +178,8 @@ msgstr "Koncové body" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "Prístup k dátovému API prostredníctvom nasledujúcich CKAN akcií API" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 @@ -227,8 +230,7 @@ msgstr "Ukážka: JavaScript" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 #: ckanext/datastore/templates/ajax_snippets/api_info.html:97 msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "" -"Jednoduchá ajaxová (JSONP) požiadavka pre dátovú API využívajúcu jQuery" +msgstr "Jednoduchá ajaxová (JSONP) požiadavka pre dátovú API využívajúcu jQuery" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 #: ckanext/datastore/templates/ajax_snippets/api_info.html:118 @@ -315,7 +317,8 @@ msgstr "Data API" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" "Viac informácií na Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " +"

Site Title: This is the title of this CKAN instance " +"It appears in various places throughout CKAN.

" +"

Style: Choose from a list of simple variations of the" +" main colour scheme to get a very quick custom theme working.

" +"

Site Tag Logo: This is the logo that appears in the " +"header of all the CKAN instance templates.

About:" +" This text will appear on this CKAN instances about page.

Intro " "Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" "

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend <head> tag of every page. If you wish to customize the" +" templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" +"

Homepage: This is for choosing a predefined layout " +"for the modules that appear on your homepage.

" msgstr "" "

Názov stránky: Názov CKAN objektu sa vyskytuje na " -"viacerých miestach prostredníctvom CKAN

Štýl: Zvoľte" -" niektorú z jednoduchších kombinácií farebných schém pre vytvorenie " -"jednoduchej témy.

Logo stránky: Toto logo " -"vyskytujúce sa v hlavičkých každej CKAN šablóny.

Informácie " -"o: Tento text sa zobrazí v CKAN objektoch o stránke.

Intro Text: " -"Tento text sa objaví na domovskej stránke tento" -" CKAN objekt pre privítání návštěvníkov.

Vlastné alebo " -"upravené CSS: Toto je blok pre CSS, ktorý sa objaví v " -"<head> tagu každej stránky. Ak si želáte upraviť šablóny " -"viac, prečítajte si dokumentáciu.

Hlavná stránka: " -"Touto voľbou sa určí predpripravené rozloženie modulu, ktoré se zobrazuje na" -" hlavnej stránke.

" +"viacerých miestach prostredníctvom CKAN

Štýl: " +"Zvoľte niektorú z jednoduchších kombinácií farebných schém pre vytvorenie" +" jednoduchej témy.

Logo stránky: Toto logo " +"vyskytujúce sa v hlavičkých každej CKAN šablóny.

" +"

Informácie o: Tento text sa zobrazí v CKAN objektoch " +"o stránke.

Intro " +"Text: Tento text sa objaví na domovskej" +" stránke tento CKAN objekt pre privítání návštěvníkov.

" +"

Vlastné alebo upravené CSS: Toto je blok pre CSS, " +"ktorý sa objaví v <head> tagu každej stránky. Ak si " +"želáte upraviť šablóny viac, prečítajte si dokumentáciu.

Hlavná " +"stránka: Touto voľbou sa určí predpripravené rozloženie modulu, " +"ktoré se zobrazuje na hlavnej stránke.

" #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 @@ -2977,11 +2980,14 @@ msgstr "Spravovať CKAN" #, python-format msgid "" "

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" +"Proceed with care!

For guidance on using sysadmin features, see " +"the CKAN sysadmin " +"guide

" msgstr "" -"

Ako používateľ sysadmin máte plnú kontrolu nad touto inštanciou CKAN. Pokračujte opatrne!\n" -"

Pre informácie o používaní sysadmin funkcií, pozrite odkaz sysadmin sprievodca

" +"

Ako používateľ sysadmin máte plnú kontrolu nad touto inštanciou CKAN. " +"Pokračujte opatrne!\n" +"

Pre informácie o používaní sysadmin funkcií, pozrite odkaz sysadmin sprievodca

" #: ckan/templates/admin/trash.html:20 msgid "Purge" @@ -3140,9 +3146,8 @@ msgstr "Naozaj chcete odstrániť člena - {name}?" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "Spravovať" @@ -3174,8 +3179,7 @@ msgstr "Prehľadávať skupiny..." msgid "There are currently no groups for this site" msgstr "Na tejto stranke aktuálne nie sú žiadne skupiny" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "Čo tak jednu vytvoriť?" @@ -3226,22 +3230,19 @@ msgstr "Nový používateľ" msgid "If you wish to invite a new user, enter their email address." msgstr "Pokiaľ chcete pozvať nového používateľa, zadajte jeho e-mail" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "Rola" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "Skutočne chcete odstrániť tohto člena?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3262,13 +3263,13 @@ msgstr "Čo sú role?" #: ckan/templates/group/member_new.html:80 msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " +"

Admin: Can edit group information, as well as manage" +" organization members.

Member: Can add/remove " "datasets from groups

" msgstr "" -"

Administrátor: Môže upravovať informácie o skupine, tak" -" ako aj spravovať členov organizácie.

Člen: Môže " -"pridávať/mazať datasety zo skupín

" +"

Administrátor: Môže upravovať informácie o skupine, " +"tak ako aj spravovať členov organizácie.

Člen: " +"Môže pridávať/mazať datasety zo skupín

" #: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 #: ckan/templates/group/new.html:7 @@ -3338,15 +3339,15 @@ msgstr "Čo sú skupiny?" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" -" Možeš využiť CKAN Groups na vytvorenie a spravovanie kolekcií datasetov. " -"This could be to catalogue datasets for a particular project or team, or on " -"a particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" Možeš využiť CKAN Groups na vytvorenie a spravovanie kolekcií datasetov." +" This could be to catalogue datasets for a particular project or team, or" +" on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 @@ -3409,13 +3410,14 @@ msgid "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3425,23 +3427,24 @@ msgid "" "overview: http://ckan.org/features/

" msgstr "" -"

CKAN je celosvetovo vedúca open-source dátová platforma.

CKAN je " -"kompletné out-of-box softvérové ​​riešenie, ktoré robí dáta prístupné a " -"použiteľné - poskytuje nástroje pre zefektívnenie ich publikovania a " -"katalogizáciu, zdieľanie, vyhľadávanie a používanie dát (ako úložisko dát s " -"robustným dátovým rozhraním API). CKAN je určený pre všetkých poskytovateľov" -" dát (národné a regionálne vlády, spoločnosti a organizácie), ktorí chcú, " -"aby ich dáta boli otvorené a dostupné.

CKAN je používaný vládami a " -"skupinami používateľov po celom svete na prevádzku rôznych oficiálnych a " -"komunitných dátových portálov, vrátane portálov pre miestne, národné a " -"medzinárodné vlády, ako napríklad vo Veľkej Británii data.gov.uk a Európskej únii publicdata.eu , Brazílii dados.gov.br , Holandsku, ale aj stránky " -"miest a obcií v USA, Veľkej Británii, Argentíne, Fínsku a inde " -"

CKAN: http://ckan.org/
CKAN " -"prehliadka: http://ckan.org/tour/
Prehľad funkcii: CKAN je celosvetovo vedúca open-source dátová platforma.

CKAN " +"je kompletné out-of-box softvérové ​​riešenie, ktoré robí dáta prístupné " +"a použiteľné - poskytuje nástroje pre zefektívnenie ich publikovania a " +"katalogizáciu, zdieľanie, vyhľadávanie a používanie dát (ako úložisko dát" +" s robustným dátovým rozhraním API). CKAN je určený pre všetkých " +"poskytovateľov dát (národné a regionálne vlády, spoločnosti a " +"organizácie), ktorí chcú, aby ich dáta boli otvorené a dostupné.

" +"

CKAN je používaný vládami a skupinami používateľov po celom svete na " +"prevádzku rôznych oficiálnych a komunitných dátových portálov, vrátane " +"portálov pre miestne, národné a medzinárodné vlády, ako napríklad vo " +"Veľkej Británii data.gov.uk a " +"Európskej únii publicdata.eu , " +"Brazílii dados.gov.br , Holandsku, " +"ale aj stránky miest a obcií v USA, Veľkej Británii, Argentíne, Fínsku a " +"inde

CKAN: http://ckan.org/
CKAN prehliadka: http://ckan.org/tour/
Prehľad " +"funkcii: http://ckan.org/features/

" #: ckan/templates/home/snippets/promoted.html:8 @@ -3450,11 +3453,11 @@ msgstr "Vitajte v CKAN" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" -"Toto je milý úvodný paragraf o CKAN vo všeobecnosti. Nemáme sem zatiaľ čo " -"dať, ale čoskoro sa to zmení" +"Toto je milý úvodný paragraf o CKAN vo všeobecnosti. Nemáme sem zatiaľ čo" +" dať, ale čoskoro sa to zmení" #: ckan/templates/home/snippets/promoted.html:19 msgid "This is a featured section" @@ -3499,12 +3502,12 @@ msgstr "skupiny" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" -"Tu môžete použiť Markdown formátovanie" #: ckan/templates/macros/form.html:277 @@ -3570,8 +3573,8 @@ msgstr "Predbežný návrh" #: ckan/templates/package/read.html:11 #: ckan/templates/package/snippets/package_basic_fields.html:98 #: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 msgid "Private" msgstr "Súkromný" @@ -3626,14 +3629,15 @@ msgid "" "

Admin: Can add/edit and delete datasets, as well as " "manage organization members.

Editor: Can add and " "edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" +"

Member: Can view the organization's private datasets," +" but not add new datasets.

" msgstr "" -"

Administrátor: Môže pridávať, upravovať a mazať datasety" -" a môže taktiež spravovat členov organizácie.

" -"

Editor: Môže pridávať, upravovať a mazať datasety, ale " -"nemôže spravovať členov organizácie.

Člen: Môže si " -"zobraziť súkromné datasety organizácie, ale nemôže přidávať datasety.

" +"

Administrátor: Môže pridávať, upravovať a mazať " +"datasety a môže taktiež spravovat členov organizácie.

" +"

Editor: Môže pridávať, upravovať a mazať datasety, " +"ale nemôže spravovať členov organizácie.

Člen: " +"Môže si zobraziť súkromné datasety organizácie, ale nemôže přidávať " +"datasety.

" #: ckan/templates/organization/members.html:14 msgid "{count} member" @@ -3669,22 +3673,23 @@ msgstr "Čo sú to Organizácie" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" +"

Organizations act like publishing departments for datasets (for " +"example, the Department of Health). This means that datasets can be " +"published by and belong to a department instead of an individual " +"user.

Within organizations, admins can assign roles and authorise " +"its members, giving individual users the right to publish datasets from " +"that particular organisation (e.g. Office of National Statistics).

" msgstr "" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" "Organizácie sú používané na vytváranie, spravovanie a publikovanie \"\n" -"\"zbierok datasetov. Používatelia môžu mať rozličné role v Organizácii, v závislosti \"\n" +"\"zbierok datasetov. Používatelia môžu mať rozličné role v Organizácii, v" +" závislosti \"\n" "\"od ich úrovne autorizácie vytvárať, upravovať a pulikovať" #: ckan/templates/organization/snippets/organization_form.html:10 @@ -3701,8 +3706,9 @@ msgstr "Zopár informácií o mojej organizácií" #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3725,9 +3731,9 @@ msgstr "Čo sú to datasety?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" "CKAN dataset je súbor dátových zdrojov (ako napríklad súbory), spolu s " "popisom a ďalšími informáciami na pevnej URL. Datasety sú to, čo " @@ -3811,15 +3817,15 @@ msgstr "Pridať náhľad" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" "Náhľady Data Explorer môžu byť pomalé a nespoľahlivé, ak nie je povolené " "DataStore rozšírenie. Ďalšie informácie nájdete v Data Explorer " -"dokumentácii." +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" dokumentácii." #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:83 @@ -3829,11 +3835,12 @@ msgstr "Pridať" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" -"Toto je staré spracovanie tohto datasetu upravované v %(timestamp)s. Môže sa" -" výrazne líšiť od aktuálnej verzie." +"Toto je staré spracovanie tohto datasetu upravované v %(timestamp)s. Môže" +" sa výrazne líšiť od aktuálnej verzie." #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" @@ -3902,12 +3909,12 @@ msgstr "Je možné, že správca stránky nepovolil príslušný plugin pre náh #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" -"Ak náhľad vyžaduje DataStore, DataStore plugin nemusí byť povolený, alebo " -"dáta neboli odoslané do DataStore, alebo DataStore doposiaľ neukončil " +"Ak náhľad vyžaduje DataStore, DataStore plugin nemusí byť povolený, alebo" +" dáta neboli odoslané do DataStore, alebo DataStore doposiaľ neukončil " "spracovanie dát" #: ckan/templates/package/resource_read.html:162 @@ -3975,11 +3982,11 @@ msgstr "Pridať nový zdroj" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

This dataset has no data, why not " -"add some?

" +"

This dataset has no data, why not" +" add some?

" msgstr "" -"

Dataset neobsahuje dáta, prečo nejaké" -" nepridať?

" +"

Dataset neobsahuje dáta, prečo " +"nejaké nepridať?

" #: ckan/templates/package/search.html:52 msgid "API" @@ -4008,8 +4015,8 @@ msgid "" " You can also access this registry using the %(api_link)s (see " "%(api_doc_link)s). " msgstr "" -"Prístup do tohto zoznamu je možný aj cez API rozhranie %(api_link)s (viď. " -"dokumentácia API %(api_doc_link)s)." +"Prístup do tohto zoznamu je možný aj cez API rozhranie %(api_link)s (viď." +" dokumentácia API %(api_doc_link)s)." #: ckan/templates/package/view_edit_base.html:9 msgid "All views" @@ -4124,17 +4131,18 @@ msgstr "Aktívny" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" -"Licencia zvolená vyššie sa vzťahuje len na obsah zdrojových súborov, " -"ktoré pridáte do tohto datasetu. Odoslaním tohto formulára súhlasíte s " -"publikovaním metadát, ktoré zadáte do formulára pod Otvorená databázová " -"licencia." +"Licencia zvolená vyššie sa vzťahuje len na obsah zdrojových " +"súborov, ktoré pridáte do tohto datasetu. Odoslaním tohto formulára " +"súhlasíte s publikovaním metadát, ktoré zadáte do formulára pod Otvorená " +"databázová licencia." #: ckan/templates/package/snippets/package_form.html:39 msgid "Are you sure you want to delete this dataset?" @@ -4277,8 +4285,8 @@ msgid "" "You can copy and paste the embed code into a CMS or blog software that " "supports raw HTML" msgstr "" -"Môžete skopírovať a vložiť pridaný kód do CMS alebo do blog softvéru, ktorý " -"podporuje raw HTML" +"Môžete skopírovať a vložiť pridaný kód do CMS alebo do blog softvéru, " +"ktorý podporuje raw HTML" #: ckan/templates/package/snippets/resource_view.html:80 msgid "Width" @@ -4457,8 +4465,8 @@ msgstr "

Prosím vyskúšajte iný vyhľadávací výraz.

#: ckan/templates/snippets/search_form.html:87 msgid "" -"

There was an error while searching." -" Please try again.

" +"

There was an error while " +"searching. Please try again.

" msgstr "" #: ckan/templates/snippets/search_result_text.html:15 @@ -4617,10 +4625,11 @@ msgstr "Informácie o účte" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" -"Pomocou vášho CKAN profilu môžete povedať ostatným používateľom niečo o sebe" -" a o tom čo robíte." +"Pomocou vášho CKAN profilu môžete povedať ostatným používateľom niečo o " +"sebe a o tom čo robíte." #: ckan/templates/user/edit_user_form.html:7 msgid "Change details" @@ -4766,8 +4775,7 @@ msgstr "Prečo by som sa mal prihlásiť?" #: ckan/templates/user/new.html:28 msgid "Create datasets, groups and other exciting things" -msgstr "" -"Aby ste mohli vytvárať datasety, skupiny a veľa ďalších zaujímavých vecí" +msgstr "Aby ste mohli vytvárať datasety, skupiny a veľa ďalších zaujímavých vecí" #: ckan/templates/user/new_user_form.html:5 msgid "username" @@ -4850,11 +4858,11 @@ msgstr "Požiadať o obnovenie" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" -"Zadajte svoje používateľské meno do poľa a bude Vám zaslaný email s odkazom " -"pre zadanie nového hesla." +"Zadajte svoje používateľské meno do poľa a bude Vám zaslaný email s " +"odkazom pre zadanie nového hesla." #: ckan/templates/user/snippets/followee_dropdown.html:15 #: ckan/templates/user/snippets/followee_dropdown.html:16 @@ -4880,3 +4888,4 @@ msgstr "Hľadať používateľov" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/sl/LC_MESSAGES/ckan.po b/ckan/i18n/sl/LC_MESSAGES/ckan.po index 6833220a38a..ac1ca859a79 100644 --- a/ckan/i18n/sl/LC_MESSAGES/ckan.po +++ b/ckan/i18n/sl/LC_MESSAGES/ckan.po @@ -1,23 +1,27 @@ -# Translations template for ckan. +# Slovenian translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Adrià Mercader , 2018\n" -"Language-Team: Slovenian (https://www.transifex.com/okfn/teams/11162/sl/)\n" +"Language: sl\n" +"Language-Team: Slovenian (https://www.transifex.com/okfn/teams/11162/sl/)" +"\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 " +"|| n%100==4 ? 2 : 3)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,14 +132,14 @@ msgstr "DataStore vir ni na voljo" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" "Podatki so napačni (na primer: numerična vrednost je izven dovoljenega " "obsega ali pa je bila vnešena v tekstovno polje)." @@ -157,14 +161,14 @@ msgstr "CKAN podatkovni API" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 #: ckanext/datastore/templates/ajax_snippets/api_info.html:25 msgid "Access resource data via a web API with powerful query support" -msgstr "" -"Dostopaj do podatkov virov preko spletnega API-ja z močno query podporo" +msgstr "Dostopaj do podatkov virov preko spletnega API-ja z močno query podporo" #: ckanext/datastore/templates/ajax_snippets/api_info.html:26 msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -175,11 +179,11 @@ msgstr "Končne točke" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "" -"Do podatkovnega API-ja se lahko dostopa preko naslednjih ukazov iz CKAN API-" -"ja." +"Do podatkovnega API-ja se lahko dostopa preko naslednjih ukazov iz CKAN " +"API-ja." #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 #: ckanext/datastore/templates/ajax_snippets/api_info.html:44 @@ -316,7 +320,8 @@ msgstr "Podatkovni API" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" " Več informacij o Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " +"

Site Title: This is the title of this CKAN instance " +"It appears in various places throughout CKAN.

" +"

Style: Choose from a list of simple variations of the" +" main colour scheme to get a very quick custom theme working.

" +"

Site Tag Logo: This is the logo that appears in the " +"header of all the CKAN instance templates.

About:" +" This text will appear on this CKAN instances about page.

Intro " "Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" "

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend <head> tag of every page. If you wish to customize the" +" templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" +"

Homepage: This is for choosing a predefined layout " +"for the modules that appear on your homepage.

" msgstr "" -"

Naslov strani: To je naslov te CKAN instance Pojavi se " -"na različnih mestih po CKANu.

Stil: Izberite s " -"seznama preprostih variacij glavne barvne sheme za hitro menjavo teme.

" -"

Logo strani: Ta logo se pojavi v glavi vseh osnutkov the" -" CKAN instance.

O strani: Ta tekst se pojavi na O strani te CKAN instance

Intro " -"Tekst: Ta tekst se pojavi na domači " -"strani te CKAN instance kot pozdrav obiskovalcem.

Lasten " -"CSS: Ta blok CSS-a se pojave v <glavi> vsake " -"strani. Če želite bolj spremeniti podobo te strani , potem priporoačmo da " -"preberete dokumentacijo.

" +"

Naslov strani: To je naslov te CKAN instance Pojavi " +"se na različnih mestih po CKANu.

Stil: Izberite s" +" seznama preprostih variacij glavne barvne sheme za hitro menjavo " +"teme.

Logo strani: Ta logo se pojavi v glavi vseh" +" osnutkov the CKAN instance.

O strani: Ta tekst " +"se pojavi na O strani te CKAN instance

" +"

Intro Tekst: Ta tekst se pojavi na domači strani te CKAN instance kot pozdrav " +"obiskovalcem.

Lasten CSS: Ta blok CSS-a se pojave" +" v <glavi> vsake strani. Če želite bolj spremeniti " +"podobo te strani , potem priporoačmo da preberete dokumentacijo.

" "

Domača stran: To je za izbiranje vnaprej določenih " "osnutkov za module, ki se pojavijo na domači strani.

" @@ -2972,12 +2978,13 @@ msgstr "Administriraj CKAN" #, python-format msgid "" "

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" +"Proceed with care!

For guidance on using sysadmin features, see " +"the CKAN sysadmin " +"guide

" msgstr "" "

Kot skrbnik sistema imaš poln nadzor nad to CKAN instanco. Nadaljuj " -"skrbno!

Za nasvete o uporabi skrbniških natavitev, si poglej CKAN skrbniška navodila

" +"skrbno!

Za nasvete o uporabi skrbniških natavitev, si poglej CKAN " +"skrbniška navodila

" #: ckan/templates/admin/trash.html:20 msgid "Purge" @@ -3136,9 +3143,8 @@ msgstr "Ali ste prepričani, da želite izbrisati člana - {name}?" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "Oskrbi" @@ -3170,8 +3176,7 @@ msgstr "Išči po skupinah..." msgid "There are currently no groups for this site" msgstr "Trenutno ni skupin za to stran" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "Ali bi naredili novo?" @@ -3204,7 +3209,8 @@ msgstr "Obstoječi član" #: ckan/templates/organization/member_new.html:22 msgid "If you wish to add an existing user, search for their username below." msgstr "" -"Če želite dodati obstoječega člana, poiščite njihovo uporabniško ime spodaj." +"Če želite dodati obstoječega člana, poiščite njihovo uporabniško ime " +"spodaj." #: ckan/templates/group/member_new.html:38 #: ckan/templates/organization/member_new.html:39 @@ -3221,22 +3227,19 @@ msgstr "Nov uporabnik" msgid "If you wish to invite a new user, enter their email address." msgstr "Če želite povabiti novega člana, vnesite njihov email naslov." -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "Vloga" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "Ste preprićani da želite izbrisati tega člana?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3257,12 +3260,12 @@ msgstr "Kaj so vloge?" #: ckan/templates/group/member_new.html:80 msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " +"

Admin: Can edit group information, as well as manage" +" organization members.

Member: Can add/remove " "datasets from groups

" msgstr "" -"

Skrbnik: Lahko ureja informacijo o skupini, kot tudi " -"upravlja s člani organizacije.

Član: Lahko " +"

Skrbnik: Lahko ureja informacijo o skupini, kot tudi" +" upravlja s člani organizacije.

Član: Lahko " "doda/odstrani nabore podatkov iz skupin

" #: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 @@ -3333,13 +3336,13 @@ msgstr "Kaj so skupine?" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" -" CKAN skupine lahko uporabite za ustvarjanje in upravljanje zbirk naborov " -"podatkov. To so lahko katalogi naborov podatkov za določen projekt ali " +" CKAN skupine lahko uporabite za ustvarjanje in upravljanje zbirk naborov" +" podatkov. To so lahko katalogi naborov podatkov za določen projekt ali " "ekipo, ali za določeno tematiko, ali kot preprost način da drugi ljudje " "najdejo in uporabijo vaše objavljene nabore podatkov. " @@ -3404,13 +3407,14 @@ msgid "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3421,20 +3425,20 @@ msgid "" "href=\"http://ckan.org/features/\">http://ckan.org/features/

" msgstr "" "

CKAN je vodilna odprto-kodna platforma za podatkovne portale na " -"svetu.

CKAN je popolnoma 'out-of-the-box' rešitev, ki naredi podatke " -"dostopne in uporabne – tako da ponudi orodja za preprosto objavo, izmenjavo," -" iskanje in uporabo podatkov (vključno s shrambo podatkov in ponudbo " -"robustnih podatkovnih API-jev). CKAN je namenjen objavljalcem podatkov " -"(državne in regionalne uprave, podjetja in organizacije), ki želijo narediti" -" svoje podatke odprte in dostopne.

CKAN uporabljajo državne vlade ter" -" uporabniške skupine po celem svetu in tudi omogoča številne portale uradnim" -" in skupnostnim skupinam, kot tudi portale za lokalne, državne, in " -"mednarodne vlade, kot je npr. za Združeno kraljestvo data.gov.uk za Evropsko unijo

CKAN je popolnoma 'out-of-the-box' rešitev, ki naredi " +"podatke dostopne in uporabne – tako da ponudi orodja za preprosto objavo," +" izmenjavo, iskanje in uporabo podatkov (vključno s shrambo podatkov in " +"ponudbo robustnih podatkovnih API-jev). CKAN je namenjen objavljalcem " +"podatkov (državne in regionalne uprave, podjetja in organizacije), ki " +"želijo narediti svoje podatke odprte in dostopne.

CKAN uporabljajo" +" državne vlade ter uporabniške skupine po celem svetu in tudi omogoča " +"številne portale uradnim in skupnostnim skupinam, kot tudi portale za " +"lokalne, državne, in mednarodne vlade, kot je npr. za Združeno kraljestvo" +" data.gov.uk za Evropsko unijo publicdata.eu, za Brazilski dados.gov.br, Nizozemski vladni portal, " -"kot tudi za mesta in občine v ZDA, združenem kraljestvu, Argentini, Finski " -"in še drugod.

CKAN: dados.gov.br, Nizozemski vladni portal," +" kot tudi za mesta in občine v ZDA, združenem kraljestvu, Argentini, " +"Finski in še drugod.

CKAN: http://ckan.org/
CKAN Ogled: http://ckan.org/tour/
Lastnosti " "overview: Markdown formatting here" msgstr "" "Uporabite lahko Admin: Can add/edit and delete datasets, as well as " "manage organization members.

Editor: Can add and " "edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" +"

Member: Can view the organization's private datasets," +" but not add new datasets.

" msgstr "" -"

Skrbnik: Lahko doda/uredi in izbriše nabore podatkov, " -"kot tudi upravlja s člani organizacije.

Urejevalec: " -"Lahko doda in uredi nabore poadtkov, tuda ne more upravljati s člani " -"organizacije.

Član: Lahko vidi zasebne nabore " -"podatkov organizacije, vendar ne more dodati novih naborov podatkov.

" +"

Skrbnik: Lahko doda/uredi in izbriše nabore " +"podatkov, kot tudi upravlja s člani organizacije.

" +"

Urejevalec: Lahko doda in uredi nabore poadtkov, tuda" +" ne more upravljati s člani organizacije.

Član: " +"Lahko vidi zasebne nabore podatkov organizacije, vendar ne more dodati " +"novih naborov podatkov.

" #: ckan/templates/organization/members.html:14 msgid "{count} member" @@ -3665,29 +3670,30 @@ msgstr "Kaj so organizacije?" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" +"

Organizations act like publishing departments for datasets (for " +"example, the Department of Health). This means that datasets can be " +"published by and belong to a department instead of an individual " +"user.

Within organizations, admins can assign roles and authorise " +"its members, giving individual users the right to publish datasets from " +"that particular organisation (e.g. Office of National Statistics).

" msgstr "" -"

Organizations delujejo kot oddelki za izdajanje naborov podatkov (npr. " -"oddelek za zdravstvo). To pomeni da se lahko nabori podatkov izdajo in " -"pripadajo oddelku namesto posamezenm uporabniku.

Skrbniki lahko " -"določijo vloge in omogočijo članom znotraj organizacije, da lahko objavijo " -"nabore podatkov njihove organizacije (npr. Urad za državno statistiko).

" +"

Organizations delujejo kot oddelki za izdajanje naborov podatkov " +"(npr. oddelek za zdravstvo). To pomeni da se lahko nabori podatkov " +"izdajo in pripadajo oddelku namesto posamezenm uporabniku.

" +"

Skrbniki lahko določijo vloge in omogočijo članom znotraj " +"organizacije, da lahko objavijo nabore podatkov njihove organizacije " +"(npr. Urad za državno statistiko).

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" " CKAN organizacije se uporabljajo da ustvarijo, upravljajo in izdajajo " "zbrike naborov podatkov. Uporabniki lahko imajo različne vloge znotraj " -"organizacije, glede na njihovo raven avtorizacije za ustvarjanje, urejanje " -"in izdajanje podatkov. " +"organizacije, glede na njihovo raven avtorizacije za ustvarjanje, " +"urejanje in izdajanje podatkov. " #: ckan/templates/organization/snippets/organization_form.html:10 msgid "My Organization" @@ -3703,8 +3709,9 @@ msgstr "Nekaj informacij o moji organizaciji..." #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3727,12 +3734,12 @@ msgstr "Kaj so nabori podatkov?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" -" CKAN nabor podatkov je zbirka podatkovnih virov (npr. datotek), z opisom in" -" drugimi informaciji, na stalnem URL naslovu. Nabore podatkov vidijo " +" CKAN nabor podatkov je zbirka podatkovnih virov (npr. datotek), z opisom" +" in drugimi informaciji, na stalnem URL naslovu. Nabore podatkov vidijo " "uporabniki ko iščejo podatke. " #: ckan/templates/package/confirm_delete.html:12 @@ -3813,15 +3820,15 @@ msgstr "Dodaj pogled" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the
Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" " Data Explorer pogledi so lahko počasni in nezanesljivi, razen če je " "omogočena DataStore razširitev. Za več informacij, prosim poglejte Data Explorer " -"dokumentacijo. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" dokumentacijo. " #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:83 @@ -3831,8 +3838,9 @@ msgstr "Dodaj" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" "To je starejša različica tega nabora podatkov, kot je bila urejena " "%(timestamp)s. Lahko se zelo razlikuje od trenutne " @@ -3905,9 +3913,9 @@ msgstr "Skrbniki sistema mogoče niso omogočili vtičnikov za ustrezne poglede" #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" "Če pogled potrebuje DataStore, lahko da njegov vtičnik ni vključen , ali " "podatki še niso na voljo v DataStore, ali pa DataStore še ni dokončal s " @@ -3978,8 +3986,8 @@ msgstr "Dodaj nov vir" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

This dataset has no data, why not " -"add some?

" +"

This dataset has no data, why not" +" add some?

" msgstr "" "

Ta nabor podatkov nima podatkov, zakaj jih ne bi nekaj dodali?

" @@ -4127,17 +4135,19 @@ msgstr "Aktivno" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" "Licenca ki ste jo izbrali zgoraj se nanaša samo na vsebino " -"virov/datotek, ki ste jih dodali k temu naboru podatkov. Ob predložitvi tega" -" obrazca, se strinjate z objavo meta podatkov, ki ste jih vnesli v " -"obrazec pod Open " -"Database License." +"virov/datotek, ki ste jih dodali k temu naboru podatkov. Ob predložitvi " +"tega obrazca, se strinjate z objavo meta podatkov, ki ste jih " +"vnesli v obrazec pod Open Database " +"License." #: ckan/templates/package/snippets/package_form.html:39 msgid "Are you sure you want to delete this dataset?" @@ -4248,8 +4258,8 @@ msgstr "Kaj je vir?" #: ckan/templates/package/snippets/resource_help.html:4 msgid "A resource can be any file or link to a file containing useful data." msgstr "" -"Vir je lahko vsaka datoteka ali povezava na datoteko, ki vsebuje uporabne " -"podatke." +"Vir je lahko vsaka datoteka ali povezava na datoteko, ki vsebuje uporabne" +" podatke." #: ckan/templates/package/snippets/resource_item.html:23 msgid "Explore" @@ -4280,8 +4290,8 @@ msgid "" "You can copy and paste the embed code into a CMS or blog software that " "supports raw HTML" msgstr "" -"Vključitveno kodo lahko kopirate in prilepite v CMS ali blog software, ki " -"podpira surov HTML zapis" +"Vključitveno kodo lahko kopirate in prilepite v CMS ali blog software, ki" +" podpira surov HTML zapis" #: ckan/templates/package/snippets/resource_view.html:80 msgid "Width" @@ -4460,8 +4470,8 @@ msgstr "

Poskusite drugačno iskanje.

" #: ckan/templates/snippets/search_form.html:87 msgid "" -"

There was an error while searching." -" Please try again.

" +"

There was an error while " +"searching. Please try again.

" msgstr "" #: ckan/templates/snippets/search_result_text.html:15 @@ -4620,10 +4630,11 @@ msgstr "Informacije o računu" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" -" Vaš profil omogoča durgim CKAN uporabnikom, da spoznajo kdo ste in s čim se" -" ukvarjate. " +" Vaš profil omogoča durgim CKAN uporabnikom, da spoznajo kdo ste in s čim" +" se ukvarjate. " #: ckan/templates/user/edit_user_form.html:7 msgid "Change details" @@ -4850,11 +4861,11 @@ msgstr "Zahtevajte ponastavitev" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" -"Vnesite uporabniško ime v polje in vam bomo poslali email s povezavo, kjer " -"boste vnesli novo geslo." +"Vnesite uporabniško ime v polje in vam bomo poslali email s povezavo, " +"kjer boste vnesli novo geslo." #: ckan/templates/user/snippets/followee_dropdown.html:15 #: ckan/templates/user/snippets/followee_dropdown.html:16 @@ -4880,3 +4891,4 @@ msgstr "Preišči uporabnike" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/sq/LC_MESSAGES/ckan.po b/ckan/i18n/sq/LC_MESSAGES/ckan.po index a71ede0c8f3..db1c6f14d6c 100644 --- a/ckan/i18n/sq/LC_MESSAGES/ckan.po +++ b/ckan/i18n/sq/LC_MESSAGES/ckan.po @@ -1,23 +1,25 @@ -# Translations template for ckan. +# Albanian translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Adrià Mercader , 2018\n" +"Language: sq\n" "Language-Team: Albanian (https://www.transifex.com/okfn/teams/11162/sq/)\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,14 +130,14 @@ msgstr "Burimi i depove të të dhënave nuk u gjet" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" "Të dhënat ishin të pavlefshme (si për shembull: një vlerë numerike është " "jashtë rangut ose është futur në një fushë të tekstit)." @@ -165,7 +167,8 @@ msgstr "" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -176,8 +179,8 @@ msgstr "Pika të fundit" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "" "API i të dhënave mund të qaset përmes veprimeve në vijim të API-s të " "veprimit të CKAN-it" @@ -317,12 +320,13 @@ msgstr "API i të dhënave" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" "Informata shtesë në API kryesor të të dhënave të CKAN dhe dokumentimi i depos " -"të të dhënave.

" +"target=\"_blank\">API kryesor të të dhënave të CKAN dhe dokumentimi i " +"depos të të dhënave.

" #: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 msgid "Table" @@ -452,7 +456,8 @@ msgstr "0 sete të të dhënave" #: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 msgid "CKAN's data previewing tool has many powerful features" msgstr "" -"Mjeti i CKAN për rishikimin e të dhënave ka shumë karakteristika të fuqishme" +"Mjeti i CKAN për rishikimin e të dhënave ka shumë karakteristika të " +"fuqishme" #: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 #: ckan/templates/group/snippets/info.html:32 @@ -492,7 +497,8 @@ msgstr "Url e imazhit" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -"p.sh. http://example.com/image.jpg (nëse vendi bosh përdor url-në e burimit)" +"p.sh. http://example.com/image.jpg (nëse vendi bosh përdor url-në e " +"burimit)" #: ckanext/reclineview/plugin.py:101 msgid "Data Explorer" @@ -1078,21 +1084,19 @@ msgstr "Të paautorizuar për të shikuar ndjekësit %s" #: ckan/controllers/home.py:35 msgid "This site is currently off-line. Database is not initialised." -msgstr "" -"Kjo faqe është aktualisht off-line. Baza e të dhënave nuk është ndezur." +msgstr "Kjo faqe është aktualisht off-line. Baza e të dhënave nuk është ndezur." #: ckan/controllers/home.py:73 ckan/views/home.py:58 #, python-format msgid "Please update your profile and add your email address. " msgstr "" -"Ju lutem ndryshoni profilin tuaj, si dhe shtoni email " -"adresën " +"Ju lutem ndryshoni profilin tuaj, si dhe shtoni email" +" adresën " #: ckan/controllers/home.py:75 ckan/views/home.py:60 #, python-format msgid "%s uses your email address if you need to reset your password." -msgstr "" -"%s përdor email adresën tuaj nëse ju nevojitet ndryshimi i fjalëkalimit." +msgstr "%s përdor email adresën tuaj nëse ju nevojitet ndryshimi i fjalëkalimit." #: ckan/controllers/package.py:304 msgid "Invalid search query: {error_message}" @@ -1319,8 +1323,8 @@ msgid "" "User \"%s\" is now registered but you are still logged in as \"%s\" from " "before" msgstr "" -"Përdoruesi \"%s\" është i regjistruar tani, mirëpo ju jeni ende të kyçur si " -"\"%s\", nga më parë" +"Përdoruesi \"%s\" është i regjistruar tani, mirëpo ju jeni ende të kyçur " +"si \"%s\", nga më parë" #: ckan/controllers/user.py:294 ckan/views/user.py:174 msgid "Unauthorized to edit a user." @@ -1829,10 +1833,9 @@ msgstr "Emri duhet të jetë një maksimum prej %i karaktere i gjatë" #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" -msgstr "" -"Duhet të jenë karaktere aflanumerike të vogla (ascii) dhe këto simbole: -_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" +msgstr "Duhet të jenë karaktere aflanumerike të vogla (ascii) dhe këto simbole: -_" #: ckan/logic/validators.py:363 msgid "That URL is already in use." @@ -2174,15 +2177,14 @@ msgstr "" #: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 #: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 msgid "No package found for this resource, cannot check auth." -msgstr "" -"Asnjë paketë nuk u gjet për këtë burim, autentifkimi nuk mund të kryhet." +msgstr "Asnjë paketë nuk u gjet për këtë burim, autentifkimi nuk mund të kryhet." #: ckan/logic/auth/create.py:76 #, python-format msgid "User %s not authorized to create resources on dataset %s" msgstr "" -"Përdoruesi %s nuk është i autorizuar të krijoj burime në setin e të dhënave " -"%s" +"Përdoruesi %s nuk është i autorizuar të krijoj burime në setin e të " +"dhënave %s" #: ckan/logic/auth/create.py:108 #, python-format @@ -2201,8 +2203,7 @@ msgstr "Përdoruesi %s nuk është i autorizuar të krijoj organizata" #: ckan/logic/auth/create.py:145 msgid "User {user} not authorized to create users via the API" -msgstr "" -"Përdoruesi {user} nuk është i autorizuar të krijoj përdorues përmes API" +msgstr "Përdoruesi {user} nuk është i autorizuar të krijoj përdorues përmes API" #: ckan/logic/auth/create.py:148 msgid "Not authorized to create users" @@ -2302,8 +2303,7 @@ msgstr "Përdoruesi %s nuk është i autorizuar të redaktoj burimin %s" #: ckan/logic/auth/update.py:100 #, python-format msgid "User %s not authorized to change state of package %s" -msgstr "" -"Përdoruesi %s nuk është i autorizuar të ndryshoj gjendjen e paketës %s" +msgstr "Përdoruesi %s nuk është i autorizuar të ndryshoj gjendjen e paketës %s" #: ckan/logic/auth/update.py:128 #, python-format @@ -2343,14 +2343,14 @@ msgstr "" #: ckan/logic/auth/update.py:226 #, python-format msgid "User %s not authorized to update task_status table" -msgstr "" -"Përdoruesi %s nuk është i autorizuar të ndryshoj tabelën e task_status" +msgstr "Përdoruesi %s nuk është i autorizuar të ndryshoj tabelën e task_status" #: ckan/logic/auth/update.py:240 #, python-format msgid "User %s not authorized to update term_translation table" msgstr "" -"Përdoruesi %s nuk është i autorizuar të ndryshoj tabelën e term_translation" +"Përdoruesi %s nuk është i autorizuar të ndryshoj tabelën e " +"term_translation" #: ckan/model/license.py:223 msgid "License not specified" @@ -2630,11 +2630,11 @@ msgstr "E pamundur të nxirren të dhënat për dosjen e ngarkuar" #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "" -"Ju jeni duke ngarkuar një skedar. A jeni të sigurt që doni të largoheni dhe " -"t'a ndalni këtë ngarkim?" +"Ju jeni duke ngarkuar një skedar. A jeni të sigurt që doni të largoheni " +"dhe t'a ndalni këtë ngarkim?" #: ckan/public-bs2/base/javascript/modules/resource-view-filters.js:9 #: ckan/public/base/javascript/modules/resource-view-filters.js:9 @@ -2911,21 +2911,22 @@ msgstr "Opcionet e konfigurimit të CKAN" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " +"

Site Title: This is the title of this CKAN instance " +"It appears in various places throughout CKAN.

" +"

Style: Choose from a list of simple variations of the" +" main colour scheme to get a very quick custom theme working.

" +"

Site Tag Logo: This is the logo that appears in the " +"header of all the CKAN instance templates.

About:" +" This text will appear on this CKAN instances about page.

Intro " "Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" "

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend <head> tag of every page. If you wish to customize the" +" templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" +"

Homepage: This is for choosing a predefined layout " +"for the modules that appear on your homepage.

" msgstr "" #: ckan/templates/admin/confirm_reset.html:3 @@ -2941,14 +2942,15 @@ msgstr "Administratro CKAN-in " #, python-format msgid "" "

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" +"Proceed with care!

For guidance on using sysadmin features, see " +"the CKAN sysadmin " +"guide

" msgstr "" "

Si një adiminstrator i sistemit ju keni kontroll të plotë mbi këtë " -"instancë të CKAN-it. Vazhdoni me kujdes!

Për udhëzime mbi përdorimin " -"e karakteristikave të adimnstratorit të sistemit, shikoni CKANudhërrëfyesin e adiminstratorit të " -"sistemit

" +"instancë të CKAN-it. Vazhdoni me kujdes!

Për udhëzime mbi " +"përdorimin e karakteristikave të adimnstratorit të sistemit, shikoni " +"CKANudhërrëfyesin e " +"adiminstratorit të sistemit

" #: ckan/templates/admin/trash.html:20 msgid "Purge" @@ -3109,9 +3111,8 @@ msgstr "A jeni të sigurtë që doni të fshini anëtarin - {name}?" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "Menaxho" @@ -3143,8 +3144,7 @@ msgstr "Kërko grupin..." msgid "There are currently no groups for this site" msgstr "Momentalisht nuk ka grupe për këtë faqe" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "Dëshironi të krijoni një të re?" @@ -3194,24 +3194,22 @@ msgstr "Përdorues i ri" #: ckan/templates/organization/member_new.html:46 msgid "If you wish to invite a new user, enter their email address." msgstr "" -"Nëse dëshrioni të shtoni një përdorues të ri, shtypni elmain adresën e tyre." +"Nëse dëshrioni të shtoni një përdorues të ri, shtypni elmain adresën e " +"tyre." -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "Roli" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "A jeni i sigurtë që dëshironi të fshini këtë anëtar?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3232,12 +3230,12 @@ msgstr "Çka janë rolet?" #: ckan/templates/group/member_new.html:80 msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " +"

Admin: Can edit group information, as well as manage" +" organization members.

Member: Can add/remove " "datasets from groups

" msgstr "" -"

Administratori:Mund të redaktoj informacionet e grupit, " -"gjithashtu të menagjoj me antarët e organizatës

" +"

Administratori:Mund të redaktoj informacionet e " +"grupit, gjithashtu të menagjoj me antarët e organizatës

" "

Anëtari:Mund të shtoj/fshij setet e të dhënave prej " "grupeve

" @@ -3309,16 +3307,16 @@ msgstr "Çfarë janë Grupet?" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" -"Grupet e CKAN-it mund t'i përdorni për të krijuar dhe menaxhuar koleksionet" -" e seteve të të dhënave. Këto përdoren me qëllim të grumbullimit të seteve " -"të të dhënave për një projekt apo ekip të veçantë, ose temë të caktuar, ose " -"edhe si një mënyrë më e lehtë për t'i ndihmuar të tjerët për të gjetur e " -"kërkuar setet e publikuara të të dhënave." +"Grupet e CKAN-it mund t'i përdorni për të krijuar dhe menaxhuar " +"koleksionet e seteve të të dhënave. Këto përdoren me qëllim të " +"grumbullimit të seteve të të dhënave për një projekt apo ekip të veçantë," +" ose temë të caktuar, ose edhe si një mënyrë më e lehtë për t'i ndihmuar " +"të tjerët për të gjetur e kërkuar setet e publikuara të të dhënave." #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 @@ -3381,13 +3379,14 @@ msgid "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3404,11 +3403,11 @@ msgstr "Mirësevini në CKAN" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" -"Ky është një paragraf hyrës rreth CKAN ose faqës në përgjithësi. Nuk kemi " -"ndonjë shembull për të treguar këtu ende, por së shpejti do kemi" +"Ky është një paragraf hyrës rreth CKAN ose faqës në përgjithësi. Nuk kemi" +" ndonjë shembull për të treguar këtu ende, por së shpejti do kemi" #: ckan/templates/home/snippets/promoted.html:19 msgid "This is a featured section" @@ -3453,12 +3452,12 @@ msgstr "grupe" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" -"Mund të përdorni Markdown formatimin here" #: ckan/templates/macros/form.html:277 @@ -3524,8 +3523,8 @@ msgstr "Draft" #: ckan/templates/package/read.html:11 #: ckan/templates/package/snippets/package_basic_fields.html:98 #: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 msgid "Private" msgstr "Private" @@ -3580,14 +3579,15 @@ msgid "" "

Admin: Can add/edit and delete datasets, as well as " "manage organization members.

Editor: Can add and " "edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" +"

Member: Can view the organization's private datasets," +" but not add new datasets.

" msgstr "" -"

Administratori: Mund të shtoj/redaktoj dhe fshij setet e" -" të dhënave, si dhe të menaxhoj anëtarët e organizatës

" -"

Redaktori:Mund të shtoj dhe redaktoj setet e të dhënave," -" por jo të menaxhoj anëtarët e organizatës.

Anëtari:" -" Mund të shikoj setet private të të dhënave të organizatës .

" +"

Administratori: Mund të shtoj/redaktoj dhe fshij " +"setet e të dhënave, si dhe të menaxhoj anëtarët e organizatës

" +"

Redaktori:Mund të shtoj dhe redaktoj setet e të " +"dhënave, por jo të menaxhoj anëtarët e organizatës.

" +"

Anëtari: Mund të shikoj setet private të të dhënave " +"të organizatës .

" #: ckan/templates/organization/members.html:14 msgid "{count} member" @@ -3621,31 +3621,31 @@ msgstr "Çfarë janë Organizatat?" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" +"

Organizations act like publishing departments for datasets (for " +"example, the Department of Health). This means that datasets can be " +"published by and belong to a department instead of an individual " +"user.

Within organizations, admins can assign roles and authorise " +"its members, giving individual users the right to publish datasets from " +"that particular organisation (e.g. Office of National Statistics).

" msgstr "" "

Organizatat sillen si departmente publicistike për të dhënat (për " -"shembull, Departmenti i Shëndetësisë). Kjo nënkupton që setet e të dhënave " -"mund të publikohen dhe t'i përkasin një departmenti, në vend të një " -"përdoruesi individual.

Mbrenda organizatave, administratori mund të " -"caktoj role dhe të autorizoj anëtarët e tij, duke i'u dhënë të drejta " -"përdoruesve individual të publikojnë sete të të dhënave për një organizatë " -"të caktuar (p.sh. Zyra Kombëtare e Statistikave).

" +"shembull, Departmenti i Shëndetësisë). Kjo nënkupton që setet e të " +"dhënave mund të publikohen dhe t'i përkasin një departmenti, në vend të " +"një përdoruesi individual.

Mbrenda organizatave, administratori " +"mund të caktoj role dhe të autorizoj anëtarët e tij, duke i'u dhënë të " +"drejta përdoruesve individual të publikojnë sete të të dhënave për një " +"organizatë të caktuar (p.sh. Zyra Kombëtare e Statistikave).

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" "Organizatat në CKAN përdoren për të krijuar, menaxhuar dhe publikuar " -"koleksione të të dhënave. Përdoruesit mund të kenë role të ndryshme mbrenda " -"një Organizate, dhe varësisht prej nivelit të autorizimit ata mund të " -"krijojn, redaktojn dhe bëjnë publikime." +"koleksione të të dhënave. Përdoruesit mund të kenë role të ndryshme " +"mbrenda një Organizate, dhe varësisht prej nivelit të autorizimit ata " +"mund të krijojn, redaktojn dhe bëjnë publikime." #: ckan/templates/organization/snippets/organization_form.html:10 msgid "My Organization" @@ -3661,8 +3661,9 @@ msgstr "Disa informacione rreth organizatës time..." #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3685,9 +3686,9 @@ msgstr "Çfarë janë setet e të dhënave?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" #: ckan/templates/package/confirm_delete.html:12 @@ -3768,9 +3769,9 @@ msgstr "Shto faqën" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" #: ckan/templates/package/new_view.html:29 @@ -3781,8 +3782,9 @@ msgstr "Shto" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" "Ky është një verison i vjetër i setit të të dhënave, e modifikuar më " "%(timestamp)s. Mund të dalloj thelbësisht prej versionit momental This dataset has no data, why not " -"add some?

" +"

This dataset has no data, why not" +" add some?

" msgstr "" "

Ky set i të dhënave nuk ka të dhëna, pse të mos shtoni disa?

" @@ -4077,16 +4079,17 @@ msgstr "Aktiv" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" -"Licencën e të dhënave që ju zgjidhni sipër vlen vetëm për përmbajtjet" -" e çfarëdo dosjeje burimore që ju e shtoni në këtë set të të dhënave. Me " -"ruajtjen e formës, ju pajtoheni të lëshoni të dhënat personale që " -"ju i shtypni në formën nën Licencën e të dhënave që ju zgjidhni sipër vlen vetëm për " +"përmbajtjet e çfarëdo dosjeje burimore që ju e shtoni në këtë set të të " +"dhënave. Me ruajtjen e formës, ju pajtoheni të lëshoni të dhënat " +"personale që ju i shtypni në formën nën Open Database " "License." @@ -4292,8 +4295,7 @@ msgstr "Çfarë është një faqe?" #: ckan/templates/package/snippets/view_help.html:4 msgid "A view is a representation of the data held against a resource" -msgstr "" -"Një faqe është një përfaqësim i të dhënave, të mbajtura kundër një burimi" +msgstr "Një faqe është një përfaqësim i të dhënave, të mbajtura kundër një burimi" #: ckan/templates/revision/diff.html:6 msgid "Differences" @@ -4412,8 +4414,8 @@ msgstr "

Ju lutem provoni të kërkoni diçka tjetër

" #: ckan/templates/snippets/search_form.html:87 msgid "" -"

There was an error while searching." -" Please try again.

" +"

There was an error while " +"searching. Please try again.

" msgstr "" #: ckan/templates/snippets/search_result_text.html:15 @@ -4560,10 +4562,11 @@ msgstr "Info mbi llogarinë" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" -"Profili juaj lejon që përdoruesit e tjerë të CKAN të dijnë se kush jeni ju " -"dhe se çfarë bëni." +"Profili juaj lejon që përdoruesit e tjerë të CKAN të dijnë se kush jeni " +"ju dhe se çfarë bëni." #: ckan/templates/user/edit_user_form.html:7 msgid "Change details" @@ -4655,8 +4658,8 @@ msgstr "Keni harruar fjalëkalimin tuaj?" #: ckan/templates/user/login.html:44 msgid "No problem, use our password recovery form to reset it." msgstr "" -"Nuk ka problem, përdorni formularin tonë të rimëkëmbjes të fjalëkalimit për " -"të rivendosur atë." +"Nuk ka problem, përdorni formularin tonë të rimëkëmbjes të fjalëkalimit " +"për të rivendosur atë." #: ckan/templates/user/login.html:47 msgid "Forgot your password?" @@ -4689,8 +4692,7 @@ msgstr "Ju jeni tashmë të kyçur" #: ckan/templates/user/logout_first.html:22 msgid "You need to log out before you can log in with another account." -msgstr "" -"Ju duhet të dilni jasht sistemit para se të kyçeni me një tjetër llogari." +msgstr "Ju duhet të dilni jasht sistemit para se të kyçeni me një tjetër llogari." #: ckan/templates/user/logout_first.html:23 msgid "Log out now" @@ -4795,8 +4797,8 @@ msgstr "Kërkesa u rivendos" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" "Shtypni emrin tuaj të përdoruesit në kuti dhe ne do të ju dërgojmë një " "lidhje për të shtypur një fjalëkalim të ri." @@ -4825,3 +4827,4 @@ msgstr "Kërko përdorues" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/sr/LC_MESSAGES/ckan.po b/ckan/i18n/sr/LC_MESSAGES/ckan.po index 888caa83faf..d89daf9abb6 100644 --- a/ckan/i18n/sr/LC_MESSAGES/ckan.po +++ b/ckan/i18n/sr/LC_MESSAGES/ckan.po @@ -1,23 +1,26 @@ -# Translations template for ckan. +# Serbian translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Adrià Mercader , 2018\n" +"Language: sr\n" "Language-Team: Serbian (https://www.transifex.com/okfn/teams/11162/sr/)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: sr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,14 +131,14 @@ msgstr "" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 @@ -161,7 +164,8 @@ msgstr "" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -172,8 +176,8 @@ msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 @@ -311,7 +315,8 @@ msgstr "АПИ података" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 @@ -801,8 +806,8 @@ msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "" -"Немогуће одбацивање пакета %s јер придружена верзија %s садржи пакете који " -"се не могу обрисати %s" +"Немогуће одбацивање пакета %s јер придружена верзија %s садржи пакете " +"који се не могу обрисати %s" #: ckan/controllers/admin.py:183 ckan/views/admin.py:197 #, python-format @@ -1071,8 +1076,8 @@ msgstr "Сајт је тренутно недоступан. База није #, python-format msgid "Please update your profile and add your email address. " msgstr "" -"Молимо Вас, ажурирајте Ваш профил и додајте своју емаил " -"адресу." +"Молимо Вас, ажурирајте Ваш профил и додајте своју " +"емаил адресу." #: ckan/controllers/home.py:75 ckan/views/home.py:60 #, python-format @@ -1304,8 +1309,8 @@ msgid "" "User \"%s\" is now registered but you are still logged in as \"%s\" from " "before" msgstr "" -"Корисник \"%s\" је сада регистрован, али сте и далје улоговани као \"%s\" од" -" раније" +"Корисник \"%s\" је сада регистрован, али сте и далје улоговани као \"%s\"" +" од раније" #: ckan/controllers/user.py:294 ckan/views/user.py:174 msgid "Unauthorized to edit a user." @@ -1822,8 +1827,8 @@ msgstr "Име може бити дуго највише %i карактера" #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "" #: ckan/logic/validators.py:363 @@ -1868,7 +1873,8 @@ msgstr "Дужина тага \"%s\" је вeћа од максималне (%i) #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "" -"Таг \"%s\" мора бити састављен од алфанумеричких карактера или симбола: -_." +"Таг \"%s\" мора бити састављен од алфанумеричких карактера или симбола: " +"-_." #: ckan/logic/validators.py:438 #, python-format @@ -1908,8 +1914,8 @@ msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "" -"Мењања није дозвољено, јер изгледа непожељно. Избегавајте линкове у Вашем " -"опису." +"Мењања није дозвољено, јер изгледа непожељно. Избегавајте линкове у Вашем" +" опису." #: ckan/logic/validators.py:628 #, python-format @@ -2164,7 +2170,8 @@ msgstr "" #: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 msgid "No package found for this resource, cannot check auth." msgstr "" -"Нема пронађених пакетa за овај ресурс, не може да провери аут (лош превод)." +"Нема пронађених пакетa за овај ресурс, не може да провери аут (лош " +"превод)." #: ckan/logic/auth/create.py:76 #, python-format @@ -2612,8 +2619,8 @@ msgstr "" #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "" #: ckan/public-bs2/base/javascript/modules/resource-view-filters.js:9 @@ -2896,21 +2903,22 @@ msgstr "" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " +"

Site Title: This is the title of this CKAN instance " +"It appears in various places throughout CKAN.

" +"

Style: Choose from a list of simple variations of the" +" main colour scheme to get a very quick custom theme working.

" +"

Site Tag Logo: This is the logo that appears in the " +"header of all the CKAN instance templates.

About:" +" This text will appear on this CKAN instances about page.

Intro " "Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" "

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend <head> tag of every page. If you wish to customize the" +" templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" +"

Homepage: This is for choosing a predefined layout " +"for the modules that appear on your homepage.

" msgstr "" #: ckan/templates/admin/confirm_reset.html:3 @@ -2926,8 +2934,9 @@ msgstr "" #, python-format msgid "" "

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" +"Proceed with care!

For guidance on using sysadmin features, see " +"the CKAN sysadmin " +"guide

" msgstr "" #: ckan/templates/admin/trash.html:20 @@ -3087,9 +3096,8 @@ msgstr "" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "" @@ -3121,8 +3129,7 @@ msgstr "" msgid "There are currently no groups for this site" msgstr "" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "" @@ -3171,22 +3178,19 @@ msgstr "" msgid "If you wish to invite a new user, enter their email address." msgstr "" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3207,8 +3211,8 @@ msgstr "" #: ckan/templates/group/member_new.html:80 msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " +"

Admin: Can edit group information, as well as manage" +" organization members.

Member: Can add/remove " "datasets from groups

" msgstr "" @@ -3280,10 +3284,10 @@ msgstr "" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" #: ckan/templates/group/snippets/history_revisions.html:10 @@ -3347,13 +3351,14 @@ msgid "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3370,8 +3375,8 @@ msgstr "" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" #: ckan/templates/home/snippets/promoted.html:19 @@ -3417,8 +3422,8 @@ msgstr "" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" @@ -3485,8 +3490,8 @@ msgstr "" #: ckan/templates/package/read.html:11 #: ckan/templates/package/snippets/package_basic_fields.html:98 #: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 msgid "Private" msgstr "" @@ -3541,8 +3546,8 @@ msgid "" "

Admin: Can add/edit and delete datasets, as well as " "manage organization members.

Editor: Can add and " "edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" +"

Member: Can view the organization's private datasets," +" but not add new datasets.

" msgstr "" #: ckan/templates/organization/members.html:14 @@ -3578,19 +3583,19 @@ msgstr "" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" +"

Organizations act like publishing departments for datasets (for " +"example, the Department of Health). This means that datasets can be " +"published by and belong to a department instead of an individual " +"user.

Within organizations, admins can assign roles and authorise " +"its members, giving individual users the right to publish datasets from " +"that particular organisation (e.g. Office of National Statistics).

" msgstr "" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" #: ckan/templates/organization/snippets/organization_form.html:10 @@ -3607,8 +3612,9 @@ msgstr "" #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3631,9 +3637,9 @@ msgstr "" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" #: ckan/templates/package/confirm_delete.html:12 @@ -3714,9 +3720,9 @@ msgstr "" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" #: ckan/templates/package/new_view.html:29 @@ -3727,8 +3733,9 @@ msgstr "Додај" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" #: ckan/templates/package/resource_edit_base.html:17 @@ -3798,9 +3805,9 @@ msgstr "" #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" #: ckan/templates/package/resource_read.html:162 @@ -3868,8 +3875,8 @@ msgstr "" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

This dataset has no data, why not " -"add some?

" +"

This dataset has no data, why not" +" add some?

" msgstr "" #: ckan/templates/package/search.html:52 @@ -4009,11 +4016,12 @@ msgstr "" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" #: ckan/templates/package/snippets/package_form.html:39 @@ -4333,8 +4341,8 @@ msgstr "" #: ckan/templates/snippets/search_form.html:87 msgid "" -"

There was an error while searching." -" Please try again.

" +"

There was an error while " +"searching. Please try again.

" msgstr "" #: ckan/templates/snippets/search_result_text.html:15 @@ -4487,7 +4495,8 @@ msgstr "" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" #: ckan/templates/user/edit_user_form.html:7 @@ -4715,8 +4724,8 @@ msgstr "" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" #: ckan/templates/user/snippets/followee_dropdown.html:15 @@ -4743,3 +4752,4 @@ msgstr "" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/sr_Latn/LC_MESSAGES/ckan.po b/ckan/i18n/sr_Latn/LC_MESSAGES/ckan.po index 7083571be49..e3ed85c7c45 100644 --- a/ckan/i18n/sr_Latn/LC_MESSAGES/ckan.po +++ b/ckan/i18n/sr_Latn/LC_MESSAGES/ckan.po @@ -1,23 +1,27 @@ -# Translations template for ckan. +# Serbian (Latin) translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Adrià Mercader , 2018\n" -"Language-Team: Serbian (Latin) (https://www.transifex.com/okfn/teams/11162/sr%40latin/)\n" +"Language: sr_Latn\n" +"Language-Team: Serbian (Latin) " +"(https://www.transifex.com/okfn/teams/11162/sr%40latin/)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: sr@latin\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,14 +132,14 @@ msgstr "" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 @@ -161,7 +165,8 @@ msgstr "" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -172,8 +177,8 @@ msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 @@ -311,7 +316,8 @@ msgstr "API podаtаkа" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 @@ -801,8 +807,8 @@ msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "" -"Nemoguće odbаcivаnje pаketа %s jer pridruženа verzijа %s sаdrži pаkete koji " -"se ne mogu obrisаti %s" +"Nemoguće odbаcivаnje pаketа %s jer pridruženа verzijа %s sаdrži pаkete " +"koji se ne mogu obrisаti %s" #: ckan/controllers/admin.py:183 ckan/views/admin.py:197 #, python-format @@ -1071,8 +1077,8 @@ msgstr "Sаjt je trenutno nedostupаn. Bаzа nije inicijаlizovаnа." #, python-format msgid "Please update your profile and add your email address. " msgstr "" -"Molimo Vаs, аžurirаjte Vаš profil i dodаjte svoju emаil " -"аdresu." +"Molimo Vаs, аžurirаjte Vаš profil i dodаjte svoju " +"emаil аdresu." #: ckan/controllers/home.py:75 ckan/views/home.py:60 #, python-format @@ -1304,8 +1310,8 @@ msgid "" "User \"%s\" is now registered but you are still logged in as \"%s\" from " "before" msgstr "" -"Korisnik \"%s\" je sаdа registrovаn, аli ste i dаlje ulogovаni kаo \"%s\" od" -" rаnije" +"Korisnik \"%s\" je sаdа registrovаn, аli ste i dаlje ulogovаni kаo \"%s\"" +" od rаnije" #: ckan/controllers/user.py:294 ckan/views/user.py:174 msgid "Unauthorized to edit a user." @@ -1822,8 +1828,8 @@ msgstr "Ime može biti dugo nаjviše %i kаrаkterа" #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "" #: ckan/logic/validators.py:363 @@ -1868,7 +1874,8 @@ msgstr "Dužinа tаgа \"%s\" je većа od mаksimаlne (%i)" #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "" -"Tаg \"%s\" morа biti sаstаvljen od аlfаnumeričkih kаrаkterа ili simbolа: -_." +"Tаg \"%s\" morа biti sаstаvljen od аlfаnumeričkih kаrаkterа ili simbolа: " +"-_." #: ckan/logic/validators.py:438 #, python-format @@ -2164,7 +2171,8 @@ msgstr "" #: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 msgid "No package found for this resource, cannot check auth." msgstr "" -"Nemа pronаđenih pаketa zа ovаj resurs, ne može dа proveri аut (loš prevod)." +"Nemа pronаđenih pаketa zа ovаj resurs, ne može dа proveri аut (loš " +"prevod)." #: ckan/logic/auth/create.py:76 #, python-format @@ -2612,8 +2620,8 @@ msgstr "" #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "" #: ckan/public-bs2/base/javascript/modules/resource-view-filters.js:9 @@ -2896,21 +2904,22 @@ msgstr "" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " +"

Site Title: This is the title of this CKAN instance " +"It appears in various places throughout CKAN.

" +"

Style: Choose from a list of simple variations of the" +" main colour scheme to get a very quick custom theme working.

" +"

Site Tag Logo: This is the logo that appears in the " +"header of all the CKAN instance templates.

About:" +" This text will appear on this CKAN instances about page.

Intro " "Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" "

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend <head> tag of every page. If you wish to customize the" +" templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" +"

Homepage: This is for choosing a predefined layout " +"for the modules that appear on your homepage.

" msgstr "" #: ckan/templates/admin/confirm_reset.html:3 @@ -2926,8 +2935,9 @@ msgstr "" #, python-format msgid "" "

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" +"Proceed with care!

For guidance on using sysadmin features, see " +"the CKAN sysadmin " +"guide

" msgstr "" #: ckan/templates/admin/trash.html:20 @@ -3087,9 +3097,8 @@ msgstr "" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "" @@ -3121,8 +3130,7 @@ msgstr "" msgid "There are currently no groups for this site" msgstr "" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "" @@ -3171,22 +3179,19 @@ msgstr "" msgid "If you wish to invite a new user, enter their email address." msgstr "" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3207,8 +3212,8 @@ msgstr "" #: ckan/templates/group/member_new.html:80 msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " +"

Admin: Can edit group information, as well as manage" +" organization members.

Member: Can add/remove " "datasets from groups

" msgstr "" @@ -3280,10 +3285,10 @@ msgstr "" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" #: ckan/templates/group/snippets/history_revisions.html:10 @@ -3347,13 +3352,14 @@ msgid "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3370,8 +3376,8 @@ msgstr "" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" #: ckan/templates/home/snippets/promoted.html:19 @@ -3417,8 +3423,8 @@ msgstr "" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" @@ -3485,8 +3491,8 @@ msgstr "" #: ckan/templates/package/read.html:11 #: ckan/templates/package/snippets/package_basic_fields.html:98 #: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 msgid "Private" msgstr "" @@ -3541,8 +3547,8 @@ msgid "" "

Admin: Can add/edit and delete datasets, as well as " "manage organization members.

Editor: Can add and " "edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" +"

Member: Can view the organization's private datasets," +" but not add new datasets.

" msgstr "" #: ckan/templates/organization/members.html:14 @@ -3578,19 +3584,19 @@ msgstr "" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" +"

Organizations act like publishing departments for datasets (for " +"example, the Department of Health). This means that datasets can be " +"published by and belong to a department instead of an individual " +"user.

Within organizations, admins can assign roles and authorise " +"its members, giving individual users the right to publish datasets from " +"that particular organisation (e.g. Office of National Statistics).

" msgstr "" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" #: ckan/templates/organization/snippets/organization_form.html:10 @@ -3607,8 +3613,9 @@ msgstr "" #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3631,9 +3638,9 @@ msgstr "" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" #: ckan/templates/package/confirm_delete.html:12 @@ -3714,9 +3721,9 @@ msgstr "" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" #: ckan/templates/package/new_view.html:29 @@ -3727,8 +3734,9 @@ msgstr "Dodаj" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" #: ckan/templates/package/resource_edit_base.html:17 @@ -3798,9 +3806,9 @@ msgstr "" #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" #: ckan/templates/package/resource_read.html:162 @@ -3868,8 +3876,8 @@ msgstr "" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

This dataset has no data, why not " -"add some?

" +"

This dataset has no data, why not" +" add some?

" msgstr "" #: ckan/templates/package/search.html:52 @@ -4009,11 +4017,12 @@ msgstr "" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" #: ckan/templates/package/snippets/package_form.html:39 @@ -4333,8 +4342,8 @@ msgstr "" #: ckan/templates/snippets/search_form.html:87 msgid "" -"

There was an error while searching." -" Please try again.

" +"

There was an error while " +"searching. Please try again.

" msgstr "" #: ckan/templates/snippets/search_result_text.html:15 @@ -4487,7 +4496,8 @@ msgstr "" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" #: ckan/templates/user/edit_user_form.html:7 @@ -4715,8 +4725,8 @@ msgstr "" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" #: ckan/templates/user/snippets/followee_dropdown.html:15 @@ -4743,3 +4753,4 @@ msgstr "" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/sv/LC_MESSAGES/ckan.po b/ckan/i18n/sv/LC_MESSAGES/ckan.po index 0a7cb45eb59..e0fd44bf3a4 100644 --- a/ckan/i18n/sv/LC_MESSAGES/ckan.po +++ b/ckan/i18n/sv/LC_MESSAGES/ckan.po @@ -1,23 +1,26 @@ -# Translations template for ckan. +# Swedish translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 +# Börje Lewin , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2018\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" +"Last-Translator: Börje Lewin , 2018\n" +"Language: sv\n" "Language-Team: Swedish (https://www.transifex.com/okfn/teams/11162/sv/)\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -80,7 +83,7 @@ msgstr "Fel:" #: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 #: ckanext/datapusher/templates/datapusher/resource_data.html:36 msgid "Error traceback:" -msgstr "" +msgstr "Spårning av felet:" #: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 #: ckanext/datapusher/templates/datapusher/resource_data.html:48 @@ -120,7 +123,7 @@ msgstr "DataStore" #: ckanext/datastore/controller.py:53 #, python-format msgid "format: must be one of %s" -msgstr "" +msgstr "format: välj ett av %s" #: ckanext/datastore/controller.py:65 msgid "DataStore resource not found" @@ -128,17 +131,17 @@ msgstr "Hittade inte DataStore-resursen" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" -"Data är ogiltiga (t.ex. ett numeriskt värde i fel intervall eller infogat i " -"ett textfält)." +"Data är ogiltiga (t.ex. ett numeriskt värde i fel intervall eller infogat" +" i ett textfält)." #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 #: ckanext/datastore/logic/action.py:344 ckanext/datastore/logic/action.py:457 @@ -157,14 +160,14 @@ msgstr "CKAN Data API" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 #: ckanext/datastore/templates/ajax_snippets/api_info.html:25 msgid "Access resource data via a web API with powerful query support" -msgstr "" -"Få tillgång till resursens data via ett webb-API med kraftfullt frågestöd." +msgstr "Få tillgång till resursens data via ett webb-API med kraftfullt frågestöd." #: ckanext/datastore/templates/ajax_snippets/api_info.html:26 msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -175,8 +178,8 @@ msgstr "Adresser" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "Data-API:et kan anropas via följande åtgärder från CKAN:s \"action API\"." #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 @@ -314,11 +317,13 @@ msgstr "Data API" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" " Mer information finns i main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " #: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 msgid "Table" @@ -810,8 +815,8 @@ msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "" -"Kan inte radera paketet %s eftersom den relaterade versionen %s innehåller " -"paket som ännu inte är raderade %s" +"Kan inte radera paketet %s eftersom den relaterade versionen %s " +"innehåller paket som ännu inte är raderade %s" #: ckan/controllers/admin.py:183 ckan/views/admin.py:197 #, python-format @@ -1074,8 +1079,7 @@ msgstr "Behörighet saknas för att se followers %s" #: ckan/controllers/home.py:35 msgid "This site is currently off-line. Database is not initialised." -msgstr "" -"Webbplatsen är för tillfället offline. Databasen är inte initialiserad." +msgstr "Webbplatsen är för tillfället offline. Databasen är inte initialiserad." #: ckan/controllers/home.py:73 ckan/views/home.py:58 #, python-format @@ -1313,7 +1317,9 @@ msgstr "Felaktig Captcha. Var god försök igen." msgid "" "User \"%s\" is now registered but you are still logged in as \"%s\" from " "before" -msgstr "Användare \"%s\" är nu registrerad men du är fortfarande inloggad som \"%s\" " +msgstr "" +"Användare \"%s\" är nu registrerad men du är fortfarande inloggad som " +"\"%s\" " #: ckan/controllers/user.py:294 ckan/views/user.py:174 msgid "Unauthorized to edit a user." @@ -1822,8 +1828,8 @@ msgstr "Namn får vara max %i tecken" #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "" "Får bara vara gemena alfanumeriska tecken (gemener och siffror) samt " "specialtecknen - och _" @@ -1909,8 +1915,8 @@ msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "" -"Redigering inte tillåten eftersom det verkar vara spam. Undvik länkar i din " -"beskrivning." +"Redigering inte tillåten eftersom det verkar vara spam. Undvik länkar i " +"din beskrivning." #: ckan/logic/validators.py:628 #, python-format @@ -1966,8 +1972,7 @@ msgstr "Inte text" #: ckan/logic/validators.py:790 msgid "This parent would create a loop in the hierarchy" -msgstr "" -"Denna överordnade entitet skulle skapa en otillåten slinga i hierarkin" +msgstr "Denna överordnade entitet skulle skapa en otillåten slinga i hierarkin" #: ckan/logic/validators.py:800 msgid "\"filter_fields\" and \"filter_values\" should have the same length" @@ -2165,8 +2170,7 @@ msgstr "ID för dataset saknas. Kan inte kontrollera behörighet." #: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 #: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 msgid "No package found for this resource, cannot check auth." -msgstr "" -"Inget paket hittades för denna resurs, kan inte kontrollera behörigheter." +msgstr "Inget paket hittades för denna resurs, kan inte kontrollera behörigheter." #: ckan/logic/auth/create.py:76 #, python-format @@ -2333,8 +2337,7 @@ msgstr "Användare %s har inte rättighet att uppdatera tabellen task_status" #: ckan/logic/auth/update.py:240 #, python-format msgid "User %s not authorized to update term_translation table" -msgstr "" -"Användare %s saknar behörighet att uppdatera tabellen term_translation" +msgstr "Användare %s saknar behörighet att uppdatera tabellen term_translation" #: ckan/model/license.py:223 msgid "License not specified" @@ -2614,8 +2617,8 @@ msgstr "Kunde inte läsa data i den uppladdade filen" #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"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?" @@ -2895,37 +2898,39 @@ msgstr "CKANs konfigurationsinställningar" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " +"

Site Title: This is the title of this CKAN instance " +"It appears in various places throughout CKAN.

" +"

Style: Choose from a list of simple variations of the" +" main colour scheme to get a very quick custom theme working.

" +"

Site Tag Logo: This is the logo that appears in the " +"header of all the CKAN instance templates.

About:" +" This text will appear on this CKAN instances about page.

Intro " "Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" "

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend <head> tag of every page. If you wish to customize the" +" templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" +"

Homepage: This is for choosing a predefined layout " +"for the modules that appear on your homepage.

" msgstr "" -"

Sidtitel: Det här är sidtiteln för denna CKAN-instans " -"Den förekommer på flera ställen i CKAN.

Stil: Välj " -"ur en lista med enkla varianter av huvudsakligt färgschema, för att snabbt " -"få till ett modifierat schema.

Logo för sidans tagg:" -" Det här är logon som visas i sidhuvudet på alla instansens av CKAN-" -"mallar.

Om: Den här texten kommer visas på CKAN-" -"instansens Om-sida.

" +"

Sidtitel: Det här är sidtiteln för denna CKAN-instans" +" Den förekommer på flera ställen i CKAN.

Stil: " +"Välj ur en lista med enkla varianter av huvudsakligt färgschema, för att " +"snabbt få till ett modifierat schema.

Logo för sidans " +"tagg: Det här är logon som visas i sidhuvudet på alla instansens" +" av CKAN-mallar.

Om: Den här texten kommer visas " +"på CKAN-instansens Om-sida.

" "

Introduktionstext: Denna text kommer visas på denna " -"CKAN-instans hemsida som en välkomstsfras för " -"besökare.

Modifierad CSS: Det här är ett block med " -"CSS som kommer ligga i <head>-taggen på varje sida. Om du" -" önskar anpassa mallarna ytterligare rekommenderar vi att du läser " +"CKAN-instans hemsida som en välkomstsfras " +"för besökare.

Modifierad CSS: Det här är ett " +"block med CSS som kommer ligga i <head>-taggen på " +"varje sida. Om du önskar anpassa mallarna ytterligare rekommenderar vi att du läser " "dokumentationen.

Hemsida: Det här är för att " -"välja en i förväg skapad layout för modulerna som visas på din hemsida.

" +"välja en i förväg skapad layout för modulerna som visas på din " +"hemsida.

" #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 @@ -2940,12 +2945,14 @@ msgstr "Administrera CKAN" #, python-format msgid "" "

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" +"Proceed with care!

For guidance on using sysadmin features, see " +"the CKAN sysadmin " +"guide

" msgstr "" "

Som sysadmin har du full kontroll över denna CKAN-instans. Var " -"försiktig!

För mer information om vad du kan göra som sysadmin, läs " -"CKAN sysadmin guide

" +"försiktig!

För mer information om vad du kan göra som sysadmin, " +"läs CKAN sysadmin " +"guide

" #: ckan/templates/admin/trash.html:20 msgid "Purge" @@ -2981,8 +2988,7 @@ msgstr "Fler detaljer..." #: ckan/templates/dataviewer/snippets/no_preview.html:12 #, python-format msgid "No handler defined for data type: %(type)s." -msgstr "" -"Det finns ingen hanterare, så kallad handler, för datatypen: %(type)s." +msgstr "Det finns ingen hanterare, så kallad handler, för datatypen: %(type)s." #: ckan/templates/development/snippets/form.html:5 msgid "Standard" @@ -3105,9 +3111,8 @@ msgstr "Vill du verkligen radera medlemman - {name}?" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "Hantera" @@ -3139,8 +3144,7 @@ msgstr "Sök grupper..." msgid "There are currently no groups for this site" msgstr "Det finns för närvarande inga grupper för denna site" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "Vill du skapa en?" @@ -3191,22 +3195,19 @@ msgstr "Ny användare" msgid "If you wish to invite a new user, enter their email address." msgstr "Om du vill bjuda in en ny användare, mata in dess e-postadress." -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "Roll" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "Vill du verkligen radera denna medlem?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3227,13 +3228,14 @@ msgstr "Vad är roller?" #: ckan/templates/group/member_new.html:80 msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " +"

Admin: Can edit group information, as well as manage" +" organization members.

Member: Can add/remove " "datasets from groups

" msgstr "" "

Administratör:Kan redigera gruppinformation och " -"administrera organisationens medlemmar.

Medlem:Kan " -"lägga till och ta bort dataset från grupper.

" +"administrera organisationens medlemmar.

" +"

Medlem:Kan lägga till och ta bort dataset från " +"grupper.

" #: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 #: ckan/templates/group/new.html:7 @@ -3303,15 +3305,16 @@ msgstr "Vad är grupper?" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" -"Du kan använda CKAN-grupper för att skapa och hantera samlingar av dataset. " -"Det kan användas för att katalogisera dataset för ett visst projekt eller " -"ett team, eller för ett särskilt tema, eller som ett enkelt sätt att hjälpa " -"användare att hitta och söka i dina egna publicerade dataset." +"Du kan använda CKAN-grupper för att skapa och hantera samlingar av " +"dataset. Det kan användas för att katalogisera dataset för ett visst " +"projekt eller ett team, eller för ett särskilt tema, eller som ett enkelt" +" sätt att hjälpa användare att hitta och söka i dina egna publicerade " +"dataset." #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 @@ -3374,13 +3377,14 @@ msgid "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3393,13 +3397,14 @@ msgstr "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3415,12 +3420,12 @@ msgstr "Välkommen till CKAN" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" -"Det här är en trevlig liten introduktionstext om CKAN eller denna webbplats " -"i allmänhet. Vi har ingen färdig text att lägga här ännu men det kommer " -"snart" +"Det här är en trevlig liten introduktionstext om CKAN eller denna " +"webbplats i allmänhet. Vi har ingen färdig text att lägga här ännu men " +"det kommer snart" #: ckan/templates/home/snippets/promoted.html:19 msgid "This is a featured section" @@ -3465,8 +3470,8 @@ msgstr "grupper" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" "Du kan använda Admin: Can add/edit and delete datasets, as well as " "manage organization members.

Editor: Can add and " "edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" +"

Member: Can view the organization's private datasets," +" but not add new datasets.

" msgstr "" "

Administratör: Kan lägga till, redigera och radera " "dataset, samt administrera organisationens medlemmar.

" -"

Redaktör: Kan lägga till och redigera dataset men inte " -"administrera medlemmar.

Medlem: Kan se " +"

Redaktör: Kan lägga till och redigera dataset men " +"inte administrera medlemmar.

Medlem: Kan se " "organisationens privata dataset men kan inte lägga till nya dataset.

" #: ckan/templates/organization/members.html:14 @@ -3633,29 +3638,29 @@ msgstr "Vad är Organisationer?" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" +"

Organizations act like publishing departments for datasets (for " +"example, the Department of Health). This means that datasets can be " +"published by and belong to a department instead of an individual " +"user.

Within organizations, admins can assign roles and authorise " +"its members, giving individual users the right to publish datasets from " +"that particular organisation (e.g. Office of National Statistics).

" msgstr "" -"

Organisationer utgör publicerande enheter för dataset (t.ex. Kungliga " -"biblioteket). Det innebär att dataset kan publiceras och tillhöra en " +"

Organisationer utgör publicerande enheter för dataset (t.ex. Kungliga" +" biblioteket). Det innebär att dataset kan publiceras och tillhöra en " "organisatorisk enhet istället för en enskild person.

Inom " -"organisationer kan administratörer tilldela roller och ge behörighet till " -"enskilda personer att publicera dataset från den aktuella " +"organisationer kan administratörer tilldela roller och ge behörighet till" +" enskilda personer att publicera dataset från den aktuella " "organisationen.

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" -"CKAN-organisationer används för att skapa, hantera och publicera samlingar " -"av dataset. Användare kan ha olika roller inom en organisation, beroende på " -"deras behörighet att skapa, redigera och publicera." +"CKAN-organisationer används för att skapa, hantera och publicera " +"samlingar av dataset. Användare kan ha olika roller inom en organisation," +" beroende på deras behörighet att skapa, redigera och publicera." #: ckan/templates/organization/snippets/organization_form.html:10 msgid "My Organization" @@ -3671,8 +3676,9 @@ msgstr "Lite information om min organisation..." #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3695,13 +3701,14 @@ msgstr "Vad är dataset?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" -"Ett dataset i CKAN är en samling av dataresurser (såsom filer), tillsammans " -"med en beskrivning och annan information, som finns tillgänglig på en " -"permanent URL. Dataset är vad användare ser när de söker efter data." +"Ett dataset i CKAN är en samling av dataresurser (såsom filer), " +"tillsammans med en beskrivning och annan information, som finns " +"tillgänglig på en permanent URL. Dataset är vad användare ser när de " +"söker efter data." #: ckan/templates/package/confirm_delete.html:12 msgid "Are you sure you want to delete dataset - {name}?" @@ -3781,15 +3788,15 @@ msgstr "Lägg till vy" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the
Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" -" Vyer för Data Explorer blir snabbare och pålitligare om tillägget DataStore" -" är aktiverat. För mer information, se Dokumentation för Data " -"Explorer. " +" Vyer för Data Explorer blir snabbare och pålitligare om tillägget " +"DataStore är aktiverat. För mer information, se Dokumentation" +" för Data Explorer. " #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:83 @@ -3799,11 +3806,12 @@ msgstr "Lägg till" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" -"Detta är en gammal version av detta dataset, redigerad vid %(timestamp)s. " -"Den kan skilja sig markant från den senaste " +"Detta är en gammal version av detta dataset, redigerad vid %(timestamp)s." +" Den kan skilja sig markant från den senaste " "versionen." #: ckan/templates/package/resource_edit_base.html:17 @@ -3873,13 +3881,13 @@ msgstr "Administratörerna har inte aktiverat rätt plugin för vyerna" #: ckan/templates/package/resource_read.html:140 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" +"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" +"Alternativt har inte data levererats till DataStore eller också är " +"DataStore inte klar med bearbetningen av data" #: ckan/templates/package/resource_read.html:162 msgid "Additional Information" @@ -3946,11 +3954,11 @@ msgstr "Lägg till resurs" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

This dataset has no data, why not " -"add some?

" +"

This dataset has no data, why not" +" add some?

" msgstr "" -"

Detta dataset saknar data, varför " -"inte lägga till några?

" +"

Detta dataset saknar data, varför" +" inte lägga till några?

" #: ckan/templates/package/search.html:52 msgid "API" @@ -3970,16 +3978,15 @@ 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. " +"Du kan också komma åt katalogen via %(api_link)s (se %(api_doc_link)s) " +"eller ladda ner en %(dump_link)s. " #: ckan/templates/package/search.html:60 #, python-format msgid "" " You can also access this registry using the %(api_link)s (see " "%(api_doc_link)s). " -msgstr "" -" Du kan också komma åt katalogen via %(api_link)s (se %(api_doc_link)s). " +msgstr " Du kan också komma åt katalogen via %(api_link)s (se %(api_doc_link)s). " #: ckan/templates/package/view_edit_base.html:9 msgid "All views" @@ -4094,16 +4101,18 @@ msgstr "Aktiv" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"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 " +"Den datalicens du valt ovan gäller bara innehållet i resursfiler " +"som du lägger till i detta dataset. Genom att bekräfta detta formulär " +"godkänner du att de metadata du registrerar i formuläret släpps " +"under licensen Open Database " "License." #: ckan/templates/package/snippets/package_form.html:39 @@ -4168,8 +4177,7 @@ msgstr "t.ex. CSV, XML or JSON" #: ckan/templates/package/snippets/resource_form.html:42 msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "" -"Här kommer en automatisk gissning att läggas in. Lämna blankt om du vill" +msgstr "Här kommer en automatisk gissning att läggas in. Lämna blankt om du vill" #: ckan/templates/package/snippets/resource_form.html:53 msgid "eg. 2012-06-05" @@ -4216,8 +4224,8 @@ msgstr "Vad är en Resurs?" #: ckan/templates/package/snippets/resource_help.html:4 msgid "A resource can be any file or link to a file containing useful data." msgstr "" -"En resurs kan vara en fil, eller länk till en fil, som innehåller användbar " -"data." +"En resurs kan vara en fil, eller länk till en fil, som innehåller " +"användbar data." #: ckan/templates/package/snippets/resource_item.html:23 msgid "Explore" @@ -4248,8 +4256,8 @@ 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" +"Du kan kopiera och klistra in koden i ett CMS eller en blogg som stödjer " +"rå HTML" #: ckan/templates/package/snippets/resource_view.html:80 msgid "Width" @@ -4428,8 +4436,8 @@ msgstr "

Försök med en ny sökfråga.

" #: ckan/templates/snippets/search_form.html:87 msgid "" -"

There was an error while searching." -" Please try again.

" +"

There was an error while " +"searching. Please try again.

" msgstr "" #: ckan/templates/snippets/search_result_text.html:15 @@ -4576,7 +4584,8 @@ msgstr "Kontoinformation" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "Din profil visar andra CKAN-användare vem du är och vad du gör." #: ckan/templates/user/edit_user_form.html:7 @@ -4806,11 +4815,11 @@ msgstr "Begär återställning" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" -"Mata in ditt användarnamn i fältet, så skickar vi e-post med en länk för att" -" ange ett nytt lösenord." +"Mata in ditt användarnamn i fältet, så skickar vi e-post med en länk för " +"att ange ett nytt lösenord." #: ckan/templates/user/snippets/followee_dropdown.html:15 #: ckan/templates/user/snippets/followee_dropdown.html:16 @@ -4836,3 +4845,4 @@ msgstr "Sök användare" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/th/LC_MESSAGES/ckan.po b/ckan/i18n/th/LC_MESSAGES/ckan.po index e89d4f6d4f9..d4593a9c148 100644 --- a/ckan/i18n/th/LC_MESSAGES/ckan.po +++ b/ckan/i18n/th/LC_MESSAGES/ckan.po @@ -1,23 +1,26 @@ -# Translations template for ckan. +# Thai translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 +# Pongkiat Jongtriluck , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Pongkiat Jongtriluck , 2018\n" +"Language: th\n" "Language-Team: Thai (https://www.transifex.com/okfn/teams/11162/th/)\n" +"Plural-Forms: nplurals=1; plural=0\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,14 +131,14 @@ msgstr "ไม่พบทรัพยากรที่จัดเก็บข #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" "ข้อมูลไม่ถูกต้อง (ตัวอย่างเช่น " "ค่าของตัวเลขอยู่นอกขอบเขตที่กำหนดหรือถูกนำไปใส่ในฟิลด์สำหรับข้อความ)" @@ -163,7 +166,8 @@ msgstr "เข้าถึงทรัพยากรข้อมูลผ่า msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -174,8 +178,8 @@ msgstr "ปลายทาง" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "Data API สามารถเข้าถึงได้ด้วยการเรียกใช้ CKAN action API" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 @@ -313,7 +317,8 @@ msgstr "Data API" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 @@ -442,8 +447,7 @@ msgstr "0 ชุดข้อมูล" #: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 msgid "CKAN's data previewing tool has many powerful features" -msgstr "" -"เครื่องมือสำหรับการดูตัวอย่างข้อมูลของ CKAN มีฟีเจอร์ที่ทรงพลังจำนวนมาก" +msgstr "เครื่องมือสำหรับการดูตัวอย่างข้อมูลของ CKAN มีฟีเจอร์ที่ทรงพลังจำนวนมาก" #: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 #: ckan/templates/group/snippets/info.html:32 @@ -717,8 +721,7 @@ msgstr "URL ของเว็บเพจ" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "eg. http://example.com (if blank uses resource url)" -msgstr "" -"ตัวอย่างเช่น http://example.com (ถ้าปล่อยว่างจะใช้ URL ของแหล่งข้อมูล)" +msgstr "ตัวอย่างเช่น http://example.com (ถ้าปล่อยว่างจะใช้ URL ของแหล่งข้อมูล)" #: ckan/templates/dataviewer/snippets/data_preview.html:23 #: ckan/templates/package/snippets/resource_view.html:64 @@ -802,8 +805,7 @@ msgstr "หน้าหลัก" msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" -msgstr "" -"ไม่สามารถถอดถอนแพคเกจ %s เนื่องจากรุ่นที่ %s ใช้แพคเกจ %s ที่ยังไม่ถูกลบ" +msgstr "ไม่สามารถถอดถอนแพคเกจ %s เนื่องจากรุ่นที่ %s ใช้แพคเกจ %s ที่ยังไม่ถูกลบ" #: ckan/controllers/admin.py:183 ckan/views/admin.py:197 #, python-format @@ -1803,8 +1805,8 @@ msgstr "ชื่อต้องมีความยาวไม่เกิน #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "" #: ckan/logic/validators.py:363 @@ -2587,8 +2589,8 @@ msgstr "ไม่สามารถที่จะดึงข้อมูลจ #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "" "คุณกำลังอัพโหลดไฟล์อยู่ กรุณายืนยันว่าคุณต้องการเปลี่ยนไปหน้าอื่น " "และหยุดการอัพโหลดนี้" @@ -2861,34 +2863,36 @@ msgstr "ตัวเลือกการปรับแต่ง CKAN" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " +"

Site Title: This is the title of this CKAN instance " +"It appears in various places throughout CKAN.

" +"

Style: Choose from a list of simple variations of the" +" main colour scheme to get a very quick custom theme working.

" +"

Site Tag Logo: This is the logo that appears in the " +"header of all the CKAN instance templates.

About:" +" This text will appear on this CKAN instances about page.

Intro " "Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" "

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend <head> tag of every page. If you wish to customize the" +" templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" +"

Homepage: This is for choosing a predefined layout " +"for the modules that appear on your homepage.

" msgstr "" -"

ชื่อไซต์: หัวข้อของ CKAN นี้ ซึ่งจะใช้ในส่วนต่างๆ ของ " -"CKAN.

รูปแบบ: เลือกจากรายการตัวเลือกที่มี " +"

ชื่อไซต์: หัวข้อของ CKAN นี้ ซึ่งจะใช้ในส่วนต่างๆ ของ" +" CKAN.

รูปแบบ: เลือกจากรายการตัวเลือกที่มี " "เพื่อให้สามารถตกแต่งหน้าตาได้แบบรวดเร็ว

" -"

ป้ายกำกับโลโก้: โลโก้ที่จะแสดงในส่วนหัวของแม่แบบของ CKAN" -" ทั้งหมด

เกี่ยวกับ: ข้อความส่วนนี้จะแสดงใน หน้าเกี่ยวกับ ของ CKAN

" +"

ป้ายกำกับโลโก้: โลโก้ที่จะแสดงในส่วนหัวของแม่แบบของ " +"CKAN ทั้งหมด

เกี่ยวกับ: ข้อความส่วนนี้จะแสดงใน หน้าเกี่ยวกับ ของ CKAN

" "

ข้อความเกริ่นนำ: ข้อความส่วนนี้จะแสดงใน หน้าหลัก ของ CKAN " "เพื่อเป็นการต้อนรับผู้ที่เข้ามา

CSS ที่กำหนดเอง: " "โค๊ด CSS ที่จะแสดงใน <head> ของทุกหน้า " -"หากคุณต้องการปรับแต่งแม่แบบเพิ่มเติม เราขอแนะนำให้อ่านเอกสารอ้างอิง

หน้าหลัก: " +"หากคุณต้องการปรับแต่งแม่แบบเพิ่มเติม เราขอแนะนำให้อ่านเอกสารอ้างอิง

" +"

หน้าหลัก: " "สำหรับเลือกรูปแบบการจัดเรียงของโมดูลที่มีเตรียมไว้ให้

" #: ckan/templates/admin/confirm_reset.html:3 @@ -2904,8 +2908,9 @@ msgstr "" #, python-format msgid "" "

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" +"Proceed with care!

For guidance on using sysadmin features, see " +"the CKAN sysadmin " +"guide

" msgstr "" #: ckan/templates/admin/trash.html:20 @@ -3065,9 +3070,8 @@ msgstr "คุณแน่ใจว่าต้องการลบสมาช #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "จัดการ" @@ -3099,8 +3103,7 @@ msgstr "ค้นหากลุ่ม..." msgid "There are currently no groups for this site" msgstr "ยังไม่มีกลุ่มสำหรับไซต์นี้" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "ต้องการสร้างหรือไม่?" @@ -3149,22 +3152,19 @@ msgstr "ผู้ใช้ใหม่" msgid "If you wish to invite a new user, enter their email address." msgstr "ถ้าคุณต้องการเชิญผู้ใช้ใหม่ กรอกที่อยู่อีเมลของพวกเขา" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "หน้าที่" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "คุณแน่ใจว่าต้องการลบสมาชิกนี้?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3185,8 +3185,8 @@ msgstr "มีหน้าที่อะไร?" #: ckan/templates/group/member_new.html:80 msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " +"

Admin: Can edit group information, as well as manage" +" organization members.

Member: Can add/remove " "datasets from groups

" msgstr "" "

ผู้ดูแลระบบ: สามารถเปลี่ยนแปลงข้อมูลของกลุ่ม " @@ -3261,10 +3261,10 @@ msgstr "กลุ่มคืออะไร?" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" "คุณสามารถใช้กลุ่ม CKAN ในการสร้างและจัดการชุดข้อมูล " "ไม่ว่าจะเป็นการสร้างแค็ตตาล็อกสำหรับชุดข้อมูลสำหรับโปรเจ็คต์ ทีม หรือธีม " @@ -3331,13 +3331,14 @@ msgid "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3373,8 +3374,8 @@ msgstr "ยินดีต้อนรับสู่ CKAN" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" "พื้นที่สำหรับใส่ข้อความสั้นๆ แนะนำภาพรวมของ CKAN หรือของไซท์ " "เรายังไม่มีข้อความแนะนำมาให้ในส่วนนี้ แต่จะมีให้ในอนาคต" @@ -3422,8 +3423,8 @@ msgstr "กลุ่ม" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" @@ -3490,8 +3491,8 @@ msgstr "ร่าง" #: ckan/templates/package/read.html:11 #: ckan/templates/package/snippets/package_basic_fields.html:98 #: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 msgid "Private" msgstr "ส่วนตัว" @@ -3546,8 +3547,8 @@ msgid "" "

Admin: Can add/edit and delete datasets, as well as " "manage organization members.

Editor: Can add and " "edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" +"

Member: Can view the organization's private datasets," +" but not add new datasets.

" msgstr "" "

Admin:เพิ่ม/แก้ไข/ลบ ชุดข้อมูล " "และจัดการสมาชิกขององค์กร

" @@ -3586,19 +3587,19 @@ msgstr "อะไรคือองค์กร?" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" +"

Organizations act like publishing departments for datasets (for " +"example, the Department of Health). This means that datasets can be " +"published by and belong to a department instead of an individual " +"user.

Within organizations, admins can assign roles and authorise " +"its members, giving individual users the right to publish datasets from " +"that particular organisation (e.g. Office of National Statistics).

" msgstr "" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" "องค์กรสามารถถูกใช้ในการสร้าง จัดการ และเผยแพร่ชุดข้อมูล " "ผู้ใช้อาจมีได้มากกว่าหนึ่งหน้าที่ในองค์กร " @@ -3618,8 +3619,9 @@ msgstr "ข้อมูลเบื้องต้นเกี่ยวกับ #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3642,12 +3644,12 @@ msgstr "อะไรคือข้อมูล?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" -"ใน CKAN ชุดข้อมูลคือการรวบรวมของชุดข้อมูล (เช่นไฟล์) คำอธิบายและอื่นๆ บน URL" -" หนึ่ง ชุดข้อมูลคือสิ่งที่ผู้ใช้เห็นเวลาค้นหาข้อมูล" +"ใน CKAN ชุดข้อมูลคือการรวบรวมของชุดข้อมูล (เช่นไฟล์) คำอธิบายและอื่นๆ บน " +"URL หนึ่ง ชุดข้อมูลคือสิ่งที่ผู้ใช้เห็นเวลาค้นหาข้อมูล" #: ckan/templates/package/confirm_delete.html:12 msgid "Are you sure you want to delete dataset - {name}?" @@ -3727,9 +3729,9 @@ msgstr "" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" #: ckan/templates/package/new_view.html:29 @@ -3740,11 +3742,12 @@ msgstr "เพิ่ม" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" -"นี่เป็นชุดข้อมูลรุ่นเก่าที่ถูกแก้ไขเมื่อ %(timestamp)s ซึ่งอาจจะแตกต่างจาก " -"รุ่นปัจจุบัน." +"นี่เป็นชุดข้อมูลรุ่นเก่าที่ถูกแก้ไขเมื่อ %(timestamp)s " +"ซึ่งอาจจะแตกต่างจาก รุ่นปัจจุบัน." #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" @@ -3813,9 +3816,9 @@ msgstr "" #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" #: ckan/templates/package/resource_read.html:162 @@ -3883,8 +3886,8 @@ msgstr "เพิ่มทรัพยากรใหม่" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

This dataset has no data, why not " -"add some?

" +"

This dataset has no data, why not" +" add some?

" msgstr "" "

ชุดข้อมูลนี้ไม่มีข้อมูล ลองเพิ่มดูไหม?

" @@ -3907,8 +3910,8 @@ msgid "" " You can also access this registry using the %(api_link)s (see " "%(api_doc_link)s) or download a %(dump_link)s. " msgstr "" -"คุณสามารถเข้าถึงคลังทาง %(api_link)s (ให้ดู %(api_doc_link)s) หรือดาวน์โหลด " -"%(dump_link)s." +"คุณสามารถเข้าถึงคลังทาง %(api_link)s (ให้ดู %(api_doc_link)s) " +"หรือดาวน์โหลด %(dump_link)s." #: ckan/templates/package/search.html:60 #, python-format @@ -4030,11 +4033,12 @@ msgstr "ทำงาน" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" #: ckan/templates/package/snippets/package_form.html:39 @@ -4145,8 +4149,7 @@ msgstr "อะไรคือทรัพยากร?" #: ckan/templates/package/snippets/resource_help.html:4 msgid "A resource can be any file or link to a file containing useful data." -msgstr "" -"ทรัพยากรสามารถเป็นไฟล์หรือลิ้งค์ที่เชื่อมไปยังไฟล์ข้อมูลที่เป็นประโยชน์" +msgstr "ทรัพยากรสามารถเป็นไฟล์หรือลิ้งค์ที่เชื่อมไปยังไฟล์ข้อมูลที่เป็นประโยชน์" #: ckan/templates/package/snippets/resource_item.html:23 msgid "Explore" @@ -4355,8 +4358,8 @@ msgstr "

กรุณาลองค้นหาใหม่There was an error while searching." -" Please try again.

" +"

There was an error while " +"searching. Please try again.

" msgstr "" #: ckan/templates/snippets/search_result_text.html:15 @@ -4497,9 +4500,9 @@ msgstr "ข้อมูลผู้ใช้" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " -msgstr "" -"ข้อมูลแนะนำตัวของคุณจะทำให้ผู้ใช้ CKAN อื่นๆ ได้รู้จักคุณและผลงานคุณดีขึ้น" +" Your profile lets other CKAN users know about who you are and what you " +"do. " +msgstr "ข้อมูลแนะนำตัวของคุณจะทำให้ผู้ใช้ CKAN อื่นๆ ได้รู้จักคุณและผลงานคุณดีขึ้น" #: ckan/templates/user/edit_user_form.html:7 msgid "Change details" @@ -4726,10 +4729,9 @@ msgstr "" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" -"ป้อนชื่อผู้ใช้ของคุณใส่ลงในกล่องนี้เพื่อที่เราจะได้ส่งอีเมล์พร้อมลิ้งค์ในการตั้งรหัสผ่านใหม่ให้คุณ" +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." +msgstr "ป้อนชื่อผู้ใช้ของคุณใส่ลงในกล่องนี้เพื่อที่เราจะได้ส่งอีเมล์พร้อมลิ้งค์ในการตั้งรหัสผ่านใหม่ให้คุณ" #: ckan/templates/user/snippets/followee_dropdown.html:15 #: ckan/templates/user/snippets/followee_dropdown.html:16 @@ -4755,3 +4757,4 @@ msgstr "ค้นหาผู้ใช้" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/tl/LC_MESSAGES/ckan.po b/ckan/i18n/tl/LC_MESSAGES/ckan.po index eaae3935304..c078cfcb772 100644 --- a/ckan/i18n/tl/LC_MESSAGES/ckan.po +++ b/ckan/i18n/tl/LC_MESSAGES/ckan.po @@ -17,7 +17,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -4713,9 +4713,6 @@ msgid "Your password must be 8 characters or longer." msgstr "" #~ msgid "" -#~ "Viewing {package_type} datasets in {format}" -#~ " format is not supported (template " -#~ "file {file} not found)." #~ msgstr "" #~ msgid "Reorder resources" @@ -4766,13 +4763,6 @@ msgstr "" #~ msgid "Add dataset" #~ msgstr "" -#~ msgid "" -#~ "Are you sure you want to delete" -#~ " this Organization? This will delete " -#~ "all the public and private datasets " -#~ "belonging to this organization." -#~ msgstr "" - #~ msgid "Embed Data Viewer" #~ msgstr "" diff --git a/ckan/i18n/tr/LC_MESSAGES/ckan.po b/ckan/i18n/tr/LC_MESSAGES/ckan.po index 8ccfb51fe0a..1a07a6b11d2 100644 --- a/ckan/i18n/tr/LC_MESSAGES/ckan.po +++ b/ckan/i18n/tr/LC_MESSAGES/ckan.po @@ -1,23 +1,25 @@ -# Translations template for ckan. +# Turkish translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Adrià Mercader , 2018\n" +"Language: tr\n" "Language-Team: Turkish (https://www.transifex.com/okfn/teams/11162/tr/)\n" +"Plural-Forms: nplurals=2; plural=(n > 1)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,14 +130,14 @@ msgstr "" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 @@ -161,7 +163,8 @@ msgstr "" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -172,8 +175,8 @@ msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 @@ -311,7 +314,8 @@ msgstr "" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 @@ -1068,8 +1072,8 @@ msgstr "" #, python-format msgid "Please update your profile and add your email address. " msgstr "" -"Lütfen profilinizi güncelleyin ve e-posta adresinizi " -"ekleyin." +"Lütfen profilinizi güncelleyin ve e-posta adresinizi" +" ekleyin." #: ckan/controllers/home.py:75 ckan/views/home.py:60 #, python-format @@ -1809,8 +1813,8 @@ msgstr "" #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "" #: ckan/logic/validators.py:363 @@ -2592,8 +2596,8 @@ msgstr "" #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "" #: ckan/public-bs2/base/javascript/modules/resource-view-filters.js:9 @@ -2869,21 +2873,22 @@ msgstr "" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " +"

Site Title: This is the title of this CKAN instance " +"It appears in various places throughout CKAN.

" +"

Style: Choose from a list of simple variations of the" +" main colour scheme to get a very quick custom theme working.

" +"

Site Tag Logo: This is the logo that appears in the " +"header of all the CKAN instance templates.

About:" +" This text will appear on this CKAN instances about page.

Intro " "Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" "

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend <head> tag of every page. If you wish to customize the" +" templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" +"

Homepage: This is for choosing a predefined layout " +"for the modules that appear on your homepage.

" msgstr "" #: ckan/templates/admin/confirm_reset.html:3 @@ -2899,8 +2904,9 @@ msgstr "" #, python-format msgid "" "

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" +"Proceed with care!

For guidance on using sysadmin features, see " +"the CKAN sysadmin " +"guide

" msgstr "" #: ckan/templates/admin/trash.html:20 @@ -3060,9 +3066,8 @@ msgstr "" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "" @@ -3094,8 +3099,7 @@ msgstr "" msgid "There are currently no groups for this site" msgstr "" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "" @@ -3144,22 +3148,19 @@ msgstr "" msgid "If you wish to invite a new user, enter their email address." msgstr "" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3180,8 +3181,8 @@ msgstr "" #: ckan/templates/group/member_new.html:80 msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " +"

Admin: Can edit group information, as well as manage" +" organization members.

Member: Can add/remove " "datasets from groups

" msgstr "" @@ -3253,10 +3254,10 @@ msgstr "" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" #: ckan/templates/group/snippets/history_revisions.html:10 @@ -3320,13 +3321,14 @@ msgid "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3343,8 +3345,8 @@ msgstr "" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" #: ckan/templates/home/snippets/promoted.html:19 @@ -3390,8 +3392,8 @@ msgstr "" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" @@ -3458,8 +3460,8 @@ msgstr "" #: ckan/templates/package/read.html:11 #: ckan/templates/package/snippets/package_basic_fields.html:98 #: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 msgid "Private" msgstr "" @@ -3514,8 +3516,8 @@ msgid "" "

Admin: Can add/edit and delete datasets, as well as " "manage organization members.

Editor: Can add and " "edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" +"

Member: Can view the organization's private datasets," +" but not add new datasets.

" msgstr "" #: ckan/templates/organization/members.html:14 @@ -3550,19 +3552,19 @@ msgstr "" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" +"

Organizations act like publishing departments for datasets (for " +"example, the Department of Health). This means that datasets can be " +"published by and belong to a department instead of an individual " +"user.

Within organizations, admins can assign roles and authorise " +"its members, giving individual users the right to publish datasets from " +"that particular organisation (e.g. Office of National Statistics).

" msgstr "" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" #: ckan/templates/organization/snippets/organization_form.html:10 @@ -3579,8 +3581,9 @@ msgstr "" #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3603,9 +3606,9 @@ msgstr "" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" #: ckan/templates/package/confirm_delete.html:12 @@ -3686,9 +3689,9 @@ msgstr "" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" #: ckan/templates/package/new_view.html:29 @@ -3699,8 +3702,9 @@ msgstr "" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" #: ckan/templates/package/resource_edit_base.html:17 @@ -3770,9 +3774,9 @@ msgstr "" #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" #: ckan/templates/package/resource_read.html:162 @@ -3840,8 +3844,8 @@ msgstr "" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

This dataset has no data, why not " -"add some?

" +"

This dataset has no data, why not" +" add some?

" msgstr "" #: ckan/templates/package/search.html:52 @@ -3981,11 +3985,12 @@ msgstr "" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" #: ckan/templates/package/snippets/package_form.html:39 @@ -4305,8 +4310,8 @@ msgstr "" #: ckan/templates/snippets/search_form.html:87 msgid "" -"

There was an error while searching." -" Please try again.

" +"

There was an error while " +"searching. Please try again.

" msgstr "" #: ckan/templates/snippets/search_result_text.html:15 @@ -4453,7 +4458,8 @@ msgstr "" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" #: ckan/templates/user/edit_user_form.html:7 @@ -4683,8 +4689,8 @@ msgstr "" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" #: ckan/templates/user/snippets/followee_dropdown.html:15 @@ -4711,3 +4717,4 @@ msgstr "Kullanıcı arama" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/uk/LC_MESSAGES/ckan.po b/ckan/i18n/uk/LC_MESSAGES/ckan.po index 322917a8ee5..e295bece5c0 100644 --- a/ckan/i18n/uk/LC_MESSAGES/ckan.po +++ b/ckan/i18n/uk/LC_MESSAGES/ckan.po @@ -1,23 +1,29 @@ -# Translations template for ckan. +# Ukrainian translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Adrià Mercader , 2018\n" -"Language-Team: Ukrainian (https://www.transifex.com/okfn/teams/11162/uk/)\n" +"Language: uk\n" +"Language-Team: Ukrainian (https://www.transifex.com/okfn/teams/11162/uk/)" +"\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 !=" +" 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n " +"% 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9)" +" || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,14 +134,14 @@ msgstr "" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 @@ -161,7 +167,8 @@ msgstr "" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -172,8 +179,8 @@ msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 @@ -311,7 +318,8 @@ msgstr "" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 @@ -1825,8 +1833,8 @@ msgstr "" #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "" #: ckan/logic/validators.py:363 @@ -2610,8 +2618,8 @@ msgstr "" #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "" #: ckan/public-bs2/base/javascript/modules/resource-view-filters.js:9 @@ -2901,21 +2909,22 @@ msgstr "" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " +"

Site Title: This is the title of this CKAN instance " +"It appears in various places throughout CKAN.

" +"

Style: Choose from a list of simple variations of the" +" main colour scheme to get a very quick custom theme working.

" +"

Site Tag Logo: This is the logo that appears in the " +"header of all the CKAN instance templates.

About:" +" This text will appear on this CKAN instances about page.

Intro " "Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" "

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend <head> tag of every page. If you wish to customize the" +" templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" +"

Homepage: This is for choosing a predefined layout " +"for the modules that appear on your homepage.

" msgstr "" #: ckan/templates/admin/confirm_reset.html:3 @@ -2931,8 +2940,9 @@ msgstr "" #, python-format msgid "" "

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" +"Proceed with care!

For guidance on using sysadmin features, see " +"the CKAN sysadmin " +"guide

" msgstr "" #: ckan/templates/admin/trash.html:20 @@ -3092,9 +3102,8 @@ msgstr "" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "" @@ -3126,8 +3135,7 @@ msgstr "" msgid "There are currently no groups for this site" msgstr "" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "" @@ -3176,22 +3184,19 @@ msgstr "" msgid "If you wish to invite a new user, enter their email address." msgstr "" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3212,8 +3217,8 @@ msgstr "" #: ckan/templates/group/member_new.html:80 msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " +"

Admin: Can edit group information, as well as manage" +" organization members.

Member: Can add/remove " "datasets from groups

" msgstr "" @@ -3285,10 +3290,10 @@ msgstr "" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" #: ckan/templates/group/snippets/history_revisions.html:10 @@ -3352,13 +3357,14 @@ msgid "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3375,8 +3381,8 @@ msgstr "" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" #: ckan/templates/home/snippets/promoted.html:19 @@ -3422,8 +3428,8 @@ msgstr "" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" @@ -3490,8 +3496,8 @@ msgstr "" #: ckan/templates/package/read.html:11 #: ckan/templates/package/snippets/package_basic_fields.html:98 #: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 msgid "Private" msgstr "" @@ -3546,8 +3552,8 @@ msgid "" "

Admin: Can add/edit and delete datasets, as well as " "manage organization members.

Editor: Can add and " "edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" +"

Member: Can view the organization's private datasets," +" but not add new datasets.

" msgstr "" #: ckan/templates/organization/members.html:14 @@ -3584,19 +3590,19 @@ msgstr "" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" +"

Organizations act like publishing departments for datasets (for " +"example, the Department of Health). This means that datasets can be " +"published by and belong to a department instead of an individual " +"user.

Within organizations, admins can assign roles and authorise " +"its members, giving individual users the right to publish datasets from " +"that particular organisation (e.g. Office of National Statistics).

" msgstr "" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" #: ckan/templates/organization/snippets/organization_form.html:10 @@ -3613,8 +3619,9 @@ msgstr "" #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3637,9 +3644,9 @@ msgstr "" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" #: ckan/templates/package/confirm_delete.html:12 @@ -3720,9 +3727,9 @@ msgstr "" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" #: ckan/templates/package/new_view.html:29 @@ -3733,8 +3740,9 @@ msgstr "" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" #: ckan/templates/package/resource_edit_base.html:17 @@ -3804,9 +3812,9 @@ msgstr "" #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" #: ckan/templates/package/resource_read.html:162 @@ -3874,8 +3882,8 @@ msgstr "" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

This dataset has no data, why not " -"add some?

" +"

This dataset has no data, why not" +" add some?

" msgstr "" #: ckan/templates/package/search.html:52 @@ -4015,11 +4023,12 @@ msgstr "" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" #: ckan/templates/package/snippets/package_form.html:39 @@ -4339,8 +4348,8 @@ msgstr "" #: ckan/templates/snippets/search_form.html:87 msgid "" -"

There was an error while searching." -" Please try again.

" +"

There was an error while " +"searching. Please try again.

" msgstr "" #: ckan/templates/snippets/search_result_text.html:15 @@ -4499,7 +4508,8 @@ msgstr "" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" #: ckan/templates/user/edit_user_form.html:7 @@ -4727,8 +4737,8 @@ msgstr "" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" #: ckan/templates/user/snippets/followee_dropdown.html:15 @@ -4755,3 +4765,4 @@ msgstr "" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/uk_UA/LC_MESSAGES/ckan.po b/ckan/i18n/uk_UA/LC_MESSAGES/ckan.po index bdcb091319a..52b997ed992 100644 --- a/ckan/i18n/uk_UA/LC_MESSAGES/ckan.po +++ b/ckan/i18n/uk_UA/LC_MESSAGES/ckan.po @@ -1,23 +1,29 @@ -# Translations template for ckan. +# Ukrainian (Ukraine) translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Adrià Mercader , 2018\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/okfn/teams/11162/uk_UA/)\n" +"Language: uk_UA\n" +"Language-Team: Ukrainian (Ukraine) " +"(https://www.transifex.com/okfn/teams/11162/uk_UA/)\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 !=" +" 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n " +"% 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9)" +" || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,17 +134,17 @@ msgstr "Ресурс DataStore не знайдено" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" -"Дані були недійсними (наприклад, числове значення завелике або вставлене у " -"текстове поле)" +"Дані були недійсними (наприклад, числове значення завелике або вставлене " +"у текстове поле)" #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 #: ckanext/datastore/logic/action.py:344 ckanext/datastore/logic/action.py:457 @@ -163,7 +169,8 @@ msgstr "Доступ до даних ресурсу через веб API із msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -174,10 +181,11 @@ msgstr "Точки входу" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "" -"Доступ до API даних можна отримати через такі дії за допомогою API дій CKAN." +"Доступ до API даних можна отримати через такі дії за допомогою API дій " +"CKAN." #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 #: ckanext/datastore/templates/ajax_snippets/api_info.html:44 @@ -314,7 +322,8 @@ msgstr "API даних" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" "Більше інформаціі в update your profile and add your email address. " msgstr "" -"Будь ласка, оновіть Ваш профайл і вкажіть свою електронну" -" пошту." +"Будь ласка, оновіть Ваш профайл і вкажіть свою " +"електронну пошту." #: ckan/controllers/home.py:75 ckan/views/home.py:60 #, python-format @@ -1122,7 +1133,8 @@ msgstr "Неправильний формат перевірки: %r" #: ckan/controllers/package.py:415 msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." msgstr "" -"Перегляд наборів даних типу \"{package_type}\" не підтримується ({file_!r})." +"Перегляд наборів даних типу \"{package_type}\" не підтримується " +"({file_!r})." #: ckan/controllers/package.py:454 ckan/controllers/package.py:839 #: ckan/controllers/package.py:940 ckan/controllers/package.py:988 @@ -1276,7 +1288,8 @@ msgstr "Недостатньо прав для створення користу #: ckan/controllers/user.py:211 ckan/views/user.py:426 msgid "Unauthorized to delete user with id \"{user_id}\"." msgstr "" -"Недостатньо прав для видалення користувача з ідентифікатором \"{user_id}\"." +"Недостатньо прав для видалення користувача з ідентифікатором " +"\"{user_id}\"." #: ckan/controllers/user.py:225 ckan/controllers/user.py:288 #: ckan/views/user.py:168 ckan/views/user.py:444 @@ -1320,8 +1333,8 @@ msgid "" "User \"%s\" is now registered but you are still logged in as \"%s\" from " "before" msgstr "" -"Користувач \"%s\" тепер зареєстрований, але ви все ще перебуваєте в сесії як" -" користувач \"%s\"" +"Користувач \"%s\" тепер зареєстрований, але ви все ще перебуваєте в сесії" +" як користувач \"%s\"" #: ckan/controllers/user.py:294 ckan/views/user.py:174 msgid "Unauthorized to edit a user." @@ -1367,8 +1380,8 @@ msgstr "Користувача %s немає " #: ckan/controllers/user.py:498 ckan/views/user.py:542 msgid "Please check your inbox for a reset code." msgstr "" -"Будь ласка перевірте вашу електронну пошту – на неї має прийти лист з кодом " -"відновлення." +"Будь ласка перевірте вашу електронну пошту – на неї має прийти лист з " +"кодом відновлення." #: ckan/controllers/user.py:502 ckan/views/user.py:546 #, python-format @@ -1848,8 +1861,8 @@ msgstr "Ім'я має мати не більше %i символів" #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "" "може містити лише символи нижнього регістру (ascii), а також символи - " "(дефіс) та _ (підкреслення)" @@ -1896,8 +1909,8 @@ msgstr "Тег \"%s\" довший за максимальне значення #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "" -"Тег \"%s\" може містити лише числа, літери, а також символи - (дефіс) та _ " -"(підкреслення)." +"Тег \"%s\" може містити лише числа, літери, а також символи - (дефіс) та " +"_ (підкреслення)." #: ckan/logic/validators.py:438 #, python-format @@ -2059,8 +2072,8 @@ msgstr "Значення рейтингу має бути між %i та %i." #: ckan/logic/action/create.py:1078 msgid "Error sending the invite email, the user was not created: {0}" msgstr "" -"Помилка під час надсилання листа-запрошення, користувача не було створено: " -"{0}" +"Помилка під час надсилання листа-запрошення, користувача не було " +"створено: {0}" #: ckan/logic/action/create.py:1254 ckan/logic/action/create.py:1261 msgid "You must be logged in to follow users" @@ -2199,13 +2212,15 @@ msgstr "Не надано id ресурсу, неможливо підтверд #: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 msgid "No package found for this resource, cannot check auth." msgstr "" -"Не знайдено пакетів для цього ресурсу. Неможливо підтвердити достовірність." +"Не знайдено пакетів для цього ресурсу. Неможливо підтвердити " +"достовірність." #: ckan/logic/auth/create.py:76 #, python-format msgid "User %s not authorized to create resources on dataset %s" msgstr "" -"Користувач %s не має достатньо прав для створення ресурсів у наборі даних %s" +"Користувач %s не має достатньо прав для створення ресурсів у наборі даних" +" %s" #: ckan/logic/auth/create.py:108 #, python-format @@ -2225,7 +2240,8 @@ msgstr "Користувач %s не має достатньо прав для #: ckan/logic/auth/create.py:145 msgid "User {user} not authorized to create users via the API" msgstr "" -"Користувач {user} не має достатньо прав для створення користувачів через API" +"Користувач {user} не має достатньо прав для створення користувачів через " +"API" #: ckan/logic/auth/create.py:148 msgid "Not authorized to create users" @@ -2252,8 +2268,7 @@ msgstr "Користувач %s не має достатньо прав для #: ckan/logic/auth/delete.py:56 msgid "Resource view not found, cannot check auth." -msgstr "" -"Представлення ресурсу не знайдено, неможливо підтвердити достовірність." +msgstr "Представлення ресурсу не знайдено, неможливо підтвердити достовірність." #: ckan/logic/auth/delete.py:73 #, python-format @@ -2364,14 +2379,12 @@ msgstr "Користувач %s не має достатньо прав для #: ckan/logic/auth/update.py:226 #, python-format msgid "User %s not authorized to update task_status table" -msgstr "" -"Користувач %s не має достатньо прав для оновлення таблиці task_status " +msgstr "Користувач %s не має достатньо прав для оновлення таблиці task_status " #: ckan/logic/auth/update.py:240 #, python-format msgid "User %s not authorized to update term_translation table" -msgstr "" -"Користувач %s не має достатньо прав для оновлення таблиці term_translation" +msgstr "Користувач %s не має достатньо прав для оновлення таблиці term_translation" #: ckan/model/license.py:223 msgid "License not specified" @@ -2653,8 +2666,8 @@ msgstr "Не вдалось отримати дані з вивантажено #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "" "Ви вкладаєте файл. Ви впевнені, що хочете перейти на іншу сторінку і " "припинити вкладення?" @@ -2948,24 +2961,39 @@ msgstr "Опції налаштувань CKAN" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " +"

Site Title: This is the title of this CKAN instance " +"It appears in various places throughout CKAN.

" +"

Style: Choose from a list of simple variations of the" +" main colour scheme to get a very quick custom theme working.

" +"

Site Tag Logo: This is the logo that appears in the " +"header of all the CKAN instance templates.

About:" +" This text will appear on this CKAN instances about page.

Intro " "Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" "

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend <head> tag of every page. If you wish to customize the" +" templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" +"

Homepage: This is for choosing a predefined layout " +"for the modules that appear on your homepage.

" msgstr "" -"

Назва сайту: Це назва цього примірника CKAN.

Стиль: Виберіть зі списку простих варіацій головної кольорової схеми, щоб швидко отримати працюючу тему.

Логотип сайту: Це логотип, що відображається у заголовку усіх шаблонів примірника CKAN.

Про нас: Цей текст буде відображатись на сторінці з інформацією про сайт цього примірника CKAN.

Вступний текст: \n" -"Цей текст буде відображатись на головній сторінці цього примірника CKAN як привітання для відвідувачів.

Користувацький CSS: Це блок CSS, що з’явиться у <head> тегу кожної сторінки. Якщо ви хочете змінити шаблон більше, ми рекомендуємо читати документацію.

Головна сторінка: Тут можна вибрати наперед визначене розташування модулів, що будуть відображатись на головній сторінці.

" +"

Назва сайту: Це назва цього примірника CKAN.

" +"

Стиль: Виберіть зі списку простих варіацій головної " +"кольорової схеми, щоб швидко отримати працюючу тему.

" +"

Логотип сайту: Це логотип, що відображається у " +"заголовку усіх шаблонів примірника CKAN.

Про нас:" +" Цей текст буде відображатись на сторінці з " +"інформацією про сайт цього примірника CKAN.

Вступний " +"текст: \n" +"Цей текст буде відображатись на головній " +"сторінці цього примірника CKAN як привітання для відвідувачів.

" +"

Користувацький CSS: Це блок CSS, що з’явиться у " +"<head> тегу кожної сторінки. Якщо ви хочете змінити " +"шаблон більше, ми рекомендуємо читати документацію.

Головна " +"сторінка: Тут можна вибрати наперед визначене розташування " +"модулів, що будуть відображатись на головній сторінці.

" #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 @@ -2980,11 +3008,15 @@ msgstr "Адмініструвати CKAN" #, python-format msgid "" "

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" +"Proceed with care!

For guidance on using sysadmin features, see " +"the CKAN sysadmin " +"guide

" msgstr "" -"

Як користувач з правами системного адміністратора ви маєте повний контроль над цим примірником CKAN. \n" -"Працюйте обережно!

Для детальніших пояснень роботи з функціональністю CKAN, дивіться документацію для сисадмінів.

" +"

Як користувач з правами системного адміністратора ви маєте повний " +"контроль над цим примірником CKAN. \n" +"Працюйте обережно!

Для детальніших пояснень роботи з " +"функціональністю CKAN, дивіться документацію для сисадмінів.

" #: ckan/templates/admin/trash.html:20 msgid "Purge" @@ -3143,9 +3175,8 @@ msgstr "Ви впевнені, що хочете видалити учасник #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "Управління" @@ -3177,8 +3208,7 @@ msgstr "Пошук груп..." msgid "There are currently no groups for this site" msgstr "На даний момент немає груп для цього сайту" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "Не хочете створити?" @@ -3210,8 +3240,7 @@ msgstr "Існуючий користувач" #: ckan/templates/group/member_new.html:21 #: ckan/templates/organization/member_new.html:22 msgid "If you wish to add an existing user, search for their username below." -msgstr "" -"Якщо ви хочете додати існуючого користувача, знайдіть його ім’я внизу." +msgstr "Якщо ви хочете додати існуючого користувача, знайдіть його ім’я внизу." #: ckan/templates/group/member_new.html:38 #: ckan/templates/organization/member_new.html:39 @@ -3227,25 +3256,22 @@ msgstr "Новий користувач" #: ckan/templates/organization/member_new.html:46 msgid "If you wish to invite a new user, enter their email address." msgstr "" -"Якщо ви хочете запровити нового користувача, введіть їхню адресу електронної" -" пошти тут." +"Якщо ви хочете запровити нового користувача, введіть їхню адресу " +"електронної пошти тут." -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "Роль" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "Ви впевнені, що хочете видалити цього учасника?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3266,13 +3292,13 @@ msgstr "Що таке роль?" #: ckan/templates/group/member_new.html:80 msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " +"

Admin: Can edit group information, as well as manage" +" organization members.

Member: Can add/remove " "datasets from groups

" msgstr "" -"

Адміністратор: Може редагувати інформацію про групи, а " -"також управляти членами організації.

Член: Може " -"додавати/видаляти набори даних з груп.

" +"

Адміністратор: Може редагувати інформацію про групи, " +"а також управляти членами організації.

Член: Може" +" додавати/видаляти набори даних з груп.

" #: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 #: ckan/templates/group/new.html:7 @@ -3342,15 +3368,16 @@ msgstr "Що таке група?" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" -"Ви можете використовувати групи CKAN для створення та управління наборами " -"даних. Використовуйте їх для каталогізування наборів даних для конкретного " -"проекту чи команди, на певну тему або як найпростіший спосіб допомогти людям" -" шукати та знаходити ваші власні опубліковані набори даних." +"Ви можете використовувати групи CKAN для створення та управління наборами" +" даних. Використовуйте їх для каталогізування наборів даних для " +"конкретного проекту чи команди, на певну тему або як найпростіший спосіб " +"допомогти людям шукати та знаходити ваші власні опубліковані набори " +"даних." #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 @@ -3413,13 +3440,14 @@ msgid "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3429,21 +3457,22 @@ msgid "" "overview: http://ckan.org/features/

" msgstr "" -"

CKAN є провідною платформою інформаційних порталів з відкритим кодом.

" -"

CKAN це повністю завершене програмне рішення, що дозволяє доступ та " -"використання даних за допомогою інструментів для швидкої публікації, " -"поширення, пошуку та будь-якої іншої роботи з даними (включно зі зберіганням" -" даних та забезпечення потужних API). CKAN корисний тим, хто займається " -"публікацєю даних (національні та регіональні уряди, компанії та організації)" -" та хоче зробити ці дані відкритими та доступними.

CKAN " -"використовується урядами та користувацькими групами по всьому світу та є " -"основою різноманітних офіційних та громадських порталів, включаючи портали " -"для місцевих, національних та міжнародних урядів, таких як британський CKAN є провідною платформою інформаційних порталів з відкритим " +"кодом.

CKAN це повністю завершене програмне рішення, що дозволяє " +"доступ та використання даних за допомогою інструментів для швидкої " +"публікації, поширення, пошуку та будь-якої іншої роботи з даними (включно" +" зі зберіганням даних та забезпечення потужних API). CKAN корисний тим, " +"хто займається публікацєю даних (національні та регіональні уряди, " +"компанії та організації) та хоче зробити ці дані відкритими та " +"доступними.

CKAN використовується урядами та користувацькими " +"групами по всьому світу та є основою різноманітних офіційних та " +"громадських порталів, включаючи портали для місцевих, національних та " +"міжнародних урядів, таких як британський data.gov.uk та publicdata.eu ЄС, бразильський dados.gov.br, голандський та " -"нідерландський урядові портали, а також міські та муніципальні сайти в США, " -"Великобританії, Аргентині, Фінляндії та ін.

CKAN:

CKAN: http://ckan.org/
CKAN тур: http://ckan.org/tour/
Огляд " "можливостей: Markdown formatting here" msgstr "" -"Тут ви можете використовувати Markdown форматування " +"Тут ви можете використовувати Markdown " +"форматування " #: ckan/templates/macros/form.html:277 msgid "This field is required" @@ -3573,8 +3603,8 @@ msgstr "Чернетка" #: ckan/templates/package/read.html:11 #: ckan/templates/package/snippets/package_basic_fields.html:98 #: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 msgid "Private" msgstr "Приватний" @@ -3629,14 +3659,14 @@ msgid "" "

Admin: Can add/edit and delete datasets, as well as " "manage organization members.

Editor: Can add and " "edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" +"

Member: Can view the organization's private datasets," +" but not add new datasets.

" msgstr "" "

Адміністратор: Може додавати/редагувати та видаляти " "набори даних, а також управляти членами організації.

" -"

Редактор: Може додавати та редагувати набори даних, але " -"не може управляти членами організації.

Член: Може " -"переглядати приватні набори даних організації, але не може додавати " +"

Редактор: Може додавати та редагувати набори даних, " +"але не може управляти членами організації.

Член: " +"Може переглядати приватні набори даних організації, але не може додавати " "нові.

" #: ckan/templates/organization/members.html:14 @@ -3673,29 +3703,31 @@ msgstr "Що таке організація?" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" +"

Organizations act like publishing departments for datasets (for " +"example, the Department of Health). This means that datasets can be " +"published by and belong to a department instead of an individual " +"user.

Within organizations, admins can assign roles and authorise " +"its members, giving individual users the right to publish datasets from " +"that particular organisation (e.g. Office of National Statistics).

" msgstr "" "

Організації діють як видавничі відділи для наборів даних (наприклад, " "Міністерство охорони здоров'я). Це означає, що набори даних можуть бути " "опубліковані і належати відділу, а не окремому користувачеві.

В " "організаціях адміністратори можуть призначати ролі і надавати права її " "членам, даючи окремим користувачам право публікувати даних від імені " -"конкретної організації (наприклад, Управління національної статистики).

" +"конкретної організації (наприклад, Управління національної " +"статистики).

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" -"Організації в CKAN використовуються для створення, управління і публікації " -"колекцій наборів даних. Користувачі можуть мати різні ролі в рамках " -"організації, залежно від рівня їх прав на створення, зміну та публікацію." +"Організації в CKAN використовуються для створення, управління і " +"публікації колекцій наборів даних. Користувачі можуть мати різні ролі в " +"рамках організації, залежно від рівня їх прав на створення, зміну та " +"публікацію." #: ckan/templates/organization/snippets/organization_form.html:10 msgid "My Organization" @@ -3711,8 +3743,9 @@ msgstr "Коротко про мою організацію..." #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3735,13 +3768,14 @@ msgstr "Що таке набір даних?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" -"Набір даних CKAN це колекція інформаційних ресурсів (таких як файли), разом " -"з описом та іншою інформацією, що доступні за фіксованою URL-адресою. Набори" -" даних - це те, що користувачі бачать при пошуку даних." +"Набір даних CKAN це колекція інформаційних ресурсів (таких як файли), " +"разом з описом та іншою інформацією, що доступні за фіксованою " +"URL-адресою. Набори даних - це те, що користувачі бачать при пошуку " +"даних." #: ckan/templates/package/confirm_delete.html:12 msgid "Are you sure you want to delete dataset - {name}?" @@ -3821,15 +3855,16 @@ msgstr "Додати представлення" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" -"Представлення провідника даних можуть бути повільними і ненадійними, якщо " -"розширення DataStore не включене. Для отримання більш детальної інформації, " -"будь ласка, читайте документацію провідника даних." +"Представлення провідника даних можуть бути повільними і ненадійними, якщо" +" розширення DataStore не включене. Для отримання більш детальної " +"інформації, будь ласка, читайте документацію " +"провідника даних." #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:83 @@ -3839,8 +3874,9 @@ msgstr "Додати" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" "Це стара версія набору даних, датована %(timestamp)s. Вона може значно " "відрізнятись від поточної версії." @@ -3912,13 +3948,13 @@ msgstr "Адміністратори сайту можливо не увімкн #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" -"Якщо представлення вимагає DataStore, можливо плагін DataStore не включений," -" або дані не переміщені в DataStore, або DataStore ще не встиг завершити " -"обробку даних." +"Якщо представлення вимагає DataStore, можливо плагін DataStore не " +"включений, або дані не переміщені в DataStore, або DataStore ще не встиг " +"завершити обробку даних." #: ckan/templates/package/resource_read.html:162 msgid "Additional Information" @@ -3985,8 +4021,8 @@ msgstr "Додати новий ресурс" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

This dataset has no data, why not " -"add some?

" +"

This dataset has no data, why not" +" add some?

" msgstr "" "

Цей набір даних пустий, чому б не " "додати даних?

" @@ -4009,8 +4045,8 @@ msgid "" " You can also access this registry using the %(api_link)s (see " "%(api_doc_link)s) or download a %(dump_link)s. " msgstr "" -" Ви також можете отримати доступ до цього реєстру через %(api_link)s (see " -"%(api_doc_link)s) або завантажити %(dump_link)s. " +" Ви також можете отримати доступ до цього реєстру через %(api_link)s (see" +" %(api_doc_link)s) або завантажити %(dump_link)s. " #: ckan/templates/package/search.html:60 #, python-format @@ -4136,18 +4172,19 @@ msgstr "Активний" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." -msgstr "" -"Ліцензія даних, яку ви вибрали вище стосується лише змісту будь-яких " -"файлів ресурсів, які ви додаєте до цього набору даних. Відправляючи цю " -"форму, ви погоджуєтеся випускати значення метаданих, які ви вводите у" -" форму під ліцензією відкритої бази даних (data license 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)." +"License." +msgstr "" +"Ліцензія даних, яку ви вибрали вище стосується лише змісту " +"будь-яких файлів ресурсів, які ви додаєте до цього набору даних. " +"Відправляючи цю форму, ви погоджуєтеся випускати значення " +"метаданих, які ви вводите у форму під ліцензією відкритої бази " +"даних (Open " +"Database License)." #: ckan/templates/package/snippets/package_form.html:39 msgid "Are you sure you want to delete this dataset?" @@ -4258,8 +4295,8 @@ msgstr "Що таке ресурс?" #: ckan/templates/package/snippets/resource_help.html:4 msgid "A resource can be any file or link to a file containing useful data." msgstr "" -"Ресурсом може бути будь-який файл або посилання на файл, що містить корисні " -"дані." +"Ресурсом може бути будь-який файл або посилання на файл, що містить " +"корисні дані." #: ckan/templates/package/snippets/resource_item.html:23 msgid "Explore" @@ -4290,8 +4327,8 @@ msgid "" "You can copy and paste the embed code into a CMS or blog software that " "supports raw HTML" msgstr "" -"Ви можете скопіювати і вставити embed код в CMS або програмне забезпечення " -"для блогу, що підтримує чистий HTML" +"Ви можете скопіювати і вставити embed код в CMS або програмне " +"забезпечення для блогу, що підтримує чистий HTML" #: ckan/templates/package/snippets/resource_view.html:80 msgid "Width" @@ -4470,8 +4507,8 @@ msgstr "

Попробуйте пошукати ще.

" #: ckan/templates/snippets/search_form.html:87 msgid "" -"

There was an error while searching." -" Please try again.

" +"

There was an error while " +"searching. Please try again.

" msgstr "" "

Виникла помилка під час " "пошуку.Спробуйте ще раз.

" @@ -4632,10 +4669,11 @@ msgstr "Інформація про акаунт" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" -"Ваш профіль дозволяє іншим користувачам CKAN дізнатись про те, хто ви і чим " -"займаєтесь." +"Ваш профіль дозволяє іншим користувачам CKAN дізнатись про те, хто ви і " +"чим займаєтесь." #: ckan/templates/user/edit_user_form.html:7 msgid "Change details" @@ -4726,8 +4764,7 @@ msgstr "Забули свій пароль?" #: ckan/templates/user/login.html:44 msgid "No problem, use our password recovery form to reset it." -msgstr "" -"Жодної проблеми. Скористайтеся відновленням пароля для його поновлення. " +msgstr "Жодної проблеми. Скористайтеся відновленням пароля для його поновлення. " #: ckan/templates/user/login.html:47 msgid "Forgot your password?" @@ -4781,8 +4818,8 @@ msgstr "Навіщо реєструватись?" #: ckan/templates/user/new.html:28 msgid "Create datasets, groups and other exciting things" msgstr "" -"Щоб мати можливість створювати набори даних, групи та робити інші захоплюючі" -" речі" +"Щоб мати можливість створювати набори даних, групи та робити інші " +"захоплюючі речі" #: ckan/templates/user/new_user_form.html:5 msgid "username" @@ -4865,8 +4902,8 @@ msgstr "Подати запит на скидання" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" "Введіть ім'я користувача в поле і ми надішлемо вам лист з посиланням для " "введення нового пароля." @@ -4895,3 +4932,4 @@ msgstr "Шукати користувача" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/vi/LC_MESSAGES/ckan.po b/ckan/i18n/vi/LC_MESSAGES/ckan.po index 1faff2ff789..ac5a3e44751 100644 --- a/ckan/i18n/vi/LC_MESSAGES/ckan.po +++ b/ckan/i18n/vi/LC_MESSAGES/ckan.po @@ -1,23 +1,26 @@ -# Translations template for ckan. +# Vietnamese translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Adrià Mercader , 2018\n" -"Language-Team: Vietnamese (https://www.transifex.com/okfn/teams/11162/vi/)\n" +"Language: vi\n" +"Language-Team: Vietnamese " +"(https://www.transifex.com/okfn/teams/11162/vi/)\n" +"Plural-Forms: nplurals=1; plural=0\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,14 +131,14 @@ msgstr "Không tìm thấy nguồn kho dữ liệu" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 @@ -156,13 +159,15 @@ msgstr "Giao diện người sử dụng dữ liệu CKAN " #: ckanext/datastore/templates/ajax_snippets/api_info.html:25 msgid "Access resource data via a web API with powerful query support" msgstr "" -"Truy cập vào tài nguyên dữ liệu qua một web API với đây đủ hỗ trợ truy vấn." +"Truy cập vào tài nguyên dữ liệu qua một web API với đây đủ hỗ trợ truy " +"vấn." #: ckanext/datastore/templates/ajax_snippets/api_info.html:26 msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -173,11 +178,11 @@ msgstr "Điểm kết thúc" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "" -"Giao diện người sử dụng dữ liệu có thể truy cập thông qua hoạt động theo dõi" -" giao diện người sử dụng CKAN" +"Giao diện người sử dụng dữ liệu có thể truy cập thông qua hoạt động theo " +"dõi giao diện người sử dụng CKAN" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 #: ckanext/datastore/templates/ajax_snippets/api_info.html:44 @@ -314,7 +319,8 @@ msgstr "Dữ liệu API" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 @@ -802,8 +808,8 @@ msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "" -"Không thể xóa gói %s do mục đang xem lại %s bao gồm những gói không xóa được" -" %s" +"Không thể xóa gói %s do mục đang xem lại %s bao gồm những gói không xóa " +"được %s" #: ckan/controllers/admin.py:183 ckan/views/admin.py:197 #, python-format @@ -1302,7 +1308,9 @@ msgstr "Hệ thống kiểm thử lỗi. Đề nghị thử lại." msgid "" "User \"%s\" is now registered but you are still logged in as \"%s\" from " "before" -msgstr "Người dùng \"%s\" đã đăng ký nhưng hiện đang đăng nhập ở dạng \"%s\" từ trước" +msgstr "" +"Người dùng \"%s\" đã đăng ký nhưng hiện đang đăng nhập ở dạng \"%s\" từ " +"trước" #: ckan/controllers/user.py:294 ckan/views/user.py:174 msgid "Unauthorized to edit a user." @@ -1803,8 +1811,8 @@ msgstr "Tên dài tối đa %i ký tự" #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "" #: ckan/logic/validators.py:363 @@ -1888,8 +1896,8 @@ msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "" -"Không được phép hiệu chỉnh thư rác. Tránh các liên kết trong phần mô tả của " -"bạn" +"Không được phép hiệu chỉnh thư rác. Tránh các liên kết trong phần mô tả " +"của bạn" #: ckan/logic/validators.py:628 #, python-format @@ -1904,8 +1912,8 @@ msgstr "Từ vựng đã được sử dụng" #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "" -"Không thể thay đổi giá trị của chỉ dẫn từ %s thành %s. Chỉ dẫn này ở chế độ " -"không chỉnh sửa" +"Không thể thay đổi giá trị của chỉ dẫn từ %s thành %s. Chỉ dẫn này ở chế " +"độ không chỉnh sửa" #: ckan/logic/validators.py:651 msgid "Tag vocabulary was not found." @@ -2267,8 +2275,7 @@ msgstr "Người dùng %s không được quyền sửa tài nguyên %s" #: ckan/logic/auth/update.py:100 #, python-format msgid "User %s not authorized to change state of package %s" -msgstr "" -"Người dùng %s không được xác thực để thay đổi trạng thái của package %s" +msgstr "Người dùng %s không được xác thực để thay đổi trạng thái của package %s" #: ckan/logic/auth/update.py:128 #, python-format @@ -2504,8 +2511,8 @@ msgstr "Liên kết" #: ckan/public/base/javascript/modules/image-upload.js:61 msgid "Link to a URL on the internet (you can also link to an API)" msgstr "" -"Liên kết đến một địa chỉ trên mạng ( Bạn cũng có thể liên kết với một giao " -"diện người sử dụng)" +"Liên kết đến một địa chỉ trên mạng ( Bạn cũng có thể liên kết với một " +"giao diện người sử dụng)" #: ckan/public-bs2/base/javascript/modules/image-upload.js:68 #: ckan/public/base/javascript/modules/image-upload.js:68 @@ -2592,8 +2599,8 @@ msgstr "Không thể lấy dữ liệu từ tệp đã tải" #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "Bạn đang tải tệp. Bạn muốn chuyển hướng và ngừng tải tệp?" #: ckan/public-bs2/base/javascript/modules/resource-view-filters.js:9 @@ -2740,8 +2747,8 @@ msgid "" "Powered by CKAN" msgstr "" -"Được phát triển bởi CKAN" +"Được phát triển bởi CKAN" #: ckan/templates/header.html:9 msgid "Sysadmin settings" @@ -2864,37 +2871,38 @@ msgstr "các lựa chọn cấu hình CKAN " #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " +"

Site Title: This is the title of this CKAN instance " +"It appears in various places throughout CKAN.

" +"

Style: Choose from a list of simple variations of the" +" main colour scheme to get a very quick custom theme working.

" +"

Site Tag Logo: This is the logo that appears in the " +"header of all the CKAN instance templates.

About:" +" This text will appear on this CKAN instances about page.

Intro " "Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" "

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend <head> tag of every page. If you wish to customize the" +" templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" +"

Homepage: This is for choosing a predefined layout " +"for the modules that appear on your homepage.

" msgstr "" "

Tiêu đề: Đây là tiều đề của CKAN, Nó xuất hiện trong " -"những vị trí khác nhau trong CKAN.

Kiểu: Chọn từ một" -" danh sách của các biến đơn giản của bộ màu sắc chính để nhanh chóng thấy " -"được việc thay đổi chủ đề.

Site Tag Logo: Đây là " -"logo nó xuất hiện trong phần đâu của tất cả các mẩu của CKAN.

" -"

About: Văn bản này sẽ xuất hiện trên thể hiện của CKAN " -"này.Trang này.

Văn bản giới " -"thiệu: Văn bản này sẽ xuất hiện trên thể hiện của CKAN này Trang chủ chào mừng đến những vị khách.

" -"

Thay đổi CSS: Đây là một khối của CSS nó xuất hiện trong" -" <phần đầu> của mọi trang. Nếu bạn muốn được tùy chỉnh " -"các mẫu một cách đầy đủ hơn chúng tôi đề nghị bạn đọc tài liệu.

Trang chủ: " -"Đây là lựa chọn đã được xếp đặt trước cho những modules xuất hiện trên trang" -" chủ của bạn.

" +"những vị trí khác nhau trong CKAN.

Kiểu: Chọn từ " +"một danh sách của các biến đơn giản của bộ màu sắc chính để nhanh chóng " +"thấy được việc thay đổi chủ đề.

Site Tag Logo: " +"Đây là logo nó xuất hiện trong phần đâu của tất cả các mẩu của CKAN.

" +"

About: Văn bản này sẽ xuất hiện trên thể hiện của " +"CKAN này.Trang này.

Văn bản " +"giới thiệu: Văn bản này sẽ xuất hiện trên thể hiện của CKAN này " +"Trang chủ chào mừng đến những vị khách.

" +"

Thay đổi CSS: Đây là một khối của CSS nó xuất hiện " +"trong <phần đầu> của mọi trang. Nếu bạn muốn được tùy " +"chỉnh các mẫu một cách đầy đủ hơn chúng tôi đề nghị bạn đọc tài liệu.

" +"

Trang chủ: Đây là lựa chọn đã được xếp đặt trước cho " +"những modules xuất hiện trên trang chủ của bạn.

" #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 @@ -2909,8 +2917,9 @@ msgstr "" #, python-format msgid "" "

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" +"Proceed with care!

For guidance on using sysadmin features, see " +"the CKAN sysadmin " +"guide

" msgstr "" #: ckan/templates/admin/trash.html:20 @@ -3070,9 +3079,8 @@ msgstr "Bạn có muốn xóa tên thành viên nhóm không - {name}?" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "Quản lí" @@ -3104,8 +3112,7 @@ msgstr "Tìm nhóm" msgid "There are currently no groups for this site" msgstr "Hiện tại không có nhóm nào tại trang này" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "Bạn có muốn tạo nhóm?" @@ -3138,8 +3145,8 @@ msgstr "Người sử dụng hiện tại" #: ckan/templates/organization/member_new.html:22 msgid "If you wish to add an existing user, search for their username below." msgstr "" -"Nếu bạn muốn thêm một người sử dụng hiện có, hãy tìm tên người sử dụng bên " -"dưới" +"Nếu bạn muốn thêm một người sử dụng hiện có, hãy tìm tên người sử dụng " +"bên dưới" #: ckan/templates/group/member_new.html:38 #: ckan/templates/organization/member_new.html:39 @@ -3155,24 +3162,22 @@ msgstr "Người sử dụng mới" #: ckan/templates/organization/member_new.html:46 msgid "If you wish to invite a new user, enter their email address." msgstr "" -"Nếu bạn muốn mới một người sử dụng mới, hãy nhập địa chỉ email của người đó" +"Nếu bạn muốn mới một người sử dụng mới, hãy nhập địa chỉ email của người " +"đó" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "Vai trò" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "Bạn có muốn xóa thành viên này không?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3193,13 +3198,13 @@ msgstr "Vai trò là gì?" #: ckan/templates/group/member_new.html:80 msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " +"

Admin: Can edit group information, as well as manage" +" organization members.

Member: Can add/remove " "datasets from groups

" msgstr "" -"

Quản trị viên: có thể sửa thông tin nhóm và quản lý các " -"thành viên tổ chức.

Thành viên: Có thể thêm/bớt bộ " -"dữ liệu của các nhóm

" +"

Quản trị viên: có thể sửa thông tin nhóm và quản lý " +"các thành viên tổ chức.

Thành viên: Có thể " +"thêm/bớt bộ dữ liệu của các nhóm

" #: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 #: ckan/templates/group/new.html:7 @@ -3269,15 +3274,15 @@ msgstr "Nhóm là gì?" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "" -"Bạn có thể dùng CKAN Groups để tạo và quản lý các bộ sưu tập của các tập dữ " -"liệu. Điều này có thể cho tập dữ liệu cho một dự án hoặc nhóm cụ thể, hoặc " -"trên một chủ để cụ thể, hoặc là rất đợn giản để giúp mọi người tìm và tìm " -"kiếm tập dữ liệu được phổ biến của chính họ." +"Bạn có thể dùng CKAN Groups để tạo và quản lý các bộ sưu tập của các tập " +"dữ liệu. Điều này có thể cho tập dữ liệu cho một dự án hoặc nhóm cụ thể, " +"hoặc trên một chủ để cụ thể, hoặc là rất đợn giản để giúp mọi người tìm " +"và tìm kiếm tập dữ liệu được phổ biến của chính họ." #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 @@ -3340,13 +3345,14 @@ msgid "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3356,23 +3362,24 @@ msgid "" "overview: http://ckan.org/features/

" msgstr "" -"

CKAN là nền tản cổng thông tin dữ liệu mã nguồn mở hàng đầu thế giới.

" -"

CKAN là một giải pháp phần mềm hoàn chỉnh về truy cập và sử dụng dữ liệu" -" - bằng cách cung cấp công cụ để xuất bản, chia sẻ, tìm kiếm và sử dụng dữ " -"liệu (bao gồm lưu trữ dữ liệu và cung cấp các thư viện dữ liệu APIs mạnh " -"mẽ). CKAN nhằm mục đích xuất bản dữ liệu (các chính phủ quốc gia và khu vực," -" công ty và tổ chức) muốn làm cho dữ liệu của họ mở và sẵn sàng.

CKAN" -" được dùng bởi các chính phủ và các nhóm người sử dụng trên toàn thế giới và" -" và quyền hạn một loạt các cổng thông tin dữ liệu chính thức và cộng đồng " -"bao gồm cổng thông cho chính quyền địa phương, quốc gia và quốc tế, chẳng " -"hạn như của Vương quốc Anh data.gov.uk và" -" cộng đồng châu Âu publicdata.eu, " -"Brazin dados.gov.br, Hà Lan và Cổng " -"thông tin chính phủ Hà Lan, cũng như nhiều website ở Mỹ, Anh Argentina, Phần" -" Lan và nhiều nước khác.

CKAN: CKAN là nền tản cổng thông tin dữ liệu mã nguồn mở hàng đầu thế " +"giới.

CKAN là một giải pháp phần mềm hoàn chỉnh về truy cập và sử " +"dụng dữ liệu - bằng cách cung cấp công cụ để xuất bản, chia sẻ, tìm kiếm " +"và sử dụng dữ liệu (bao gồm lưu trữ dữ liệu và cung cấp các thư viện dữ " +"liệu APIs mạnh mẽ). CKAN nhằm mục đích xuất bản dữ liệu (các chính phủ " +"quốc gia và khu vực, công ty và tổ chức) muốn làm cho dữ liệu của họ mở " +"và sẵn sàng.

CKAN được dùng bởi các chính phủ và các nhóm người sử" +" dụng trên toàn thế giới và và quyền hạn một loạt các cổng thông tin dữ " +"liệu chính thức và cộng đồng bao gồm cổng thông cho chính quyền địa " +"phương, quốc gia và quốc tế, chẳng hạn như của Vương quốc Anh data.gov.uk và cộng đồng châu Âu publicdata.eu, Brazin dados.gov.br, Hà Lan và Cổng thông tin " +"chính phủ Hà Lan, cũng như nhiều website ở Mỹ, Anh Argentina, Phần Lan và" +" nhiều nước khác.

CKAN: http://ckan.org/
CKAN tour: http://ckan.org/tour/
Tính năng: http://ckan.org/features/

" +"href=\"http://ckan.org/tour/\">http://ckan.org/tour/
Tính năng:" +" http://ckan.org/features/

" #: ckan/templates/home/snippets/promoted.html:8 msgid "Welcome to CKAN" @@ -3380,11 +3387,11 @@ msgstr "Chào mừng gia nhập CKAN" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "" -"Đây là đoạn giới thiệu hay về CKAN hoặc tổng quát site. Chúng toi không có " -"mọi bản sao ở đây nhưng chúng tôi sẽ sớm hoàn thành nó" +"Đây là đoạn giới thiệu hay về CKAN hoặc tổng quát site. Chúng toi không " +"có mọi bản sao ở đây nhưng chúng tôi sẽ sớm hoàn thành nó" #: ckan/templates/home/snippets/promoted.html:19 msgid "This is a featured section" @@ -3429,8 +3436,8 @@ msgstr "Các nhóm" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" @@ -3497,8 +3504,8 @@ msgstr "Nháp" #: ckan/templates/package/read.html:11 #: ckan/templates/package/snippets/package_basic_fields.html:98 #: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 msgid "Private" msgstr "Riêng tư" @@ -3553,11 +3560,11 @@ msgid "" "

Admin: Can add/edit and delete datasets, as well as " "manage organization members.

Editor: Can add and " "edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" +"

Member: Can view the organization's private datasets," +" but not add new datasets.

" msgstr "" -"

Quản trị viên: Có thể thêm/chỉnh sửa và xóa bộ dữ liệu, " -"cũng như quản lý các thành viên tổ chức.

Biên tập " +"

Quản trị viên: Có thể thêm/chỉnh sửa và xóa bộ dữ " +"liệu, cũng như quản lý các thành viên tổ chức.

Biên tập " "viên: Có thể thêm và chỉnh sửa bộ dữ liệu, nhưng khong quản lý " "thành viên tổ chức.

Thành viên: Có thể xem bộ dữ " "liệu cá nhân của tổ chức nhưng không thể thêm dữ liệu mới.

" @@ -3593,23 +3600,23 @@ msgstr "Tổ chức là gì?" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" +"

Organizations act like publishing departments for datasets (for " +"example, the Department of Health). This means that datasets can be " +"published by and belong to a department instead of an individual " +"user.

Within organizations, admins can assign roles and authorise " +"its members, giving individual users the right to publish datasets from " +"that particular organisation (e.g. Office of National Statistics).

" msgstr "" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "" "Các tổ chức CKAN được dùng để lập ra, quản lý và công bố các bộ dữ liệu. " -"Người dùng có thể có nhiều vai trò trong một Tổ chức, tùy thuộc vào cấp độ " -"quyền của họ trong việc tạo ra, chỉnh sửa và đưa tin." +"Người dùng có thể có nhiều vai trò trong một Tổ chức, tùy thuộc vào cấp " +"độ quyền của họ trong việc tạo ra, chỉnh sửa và đưa tin." #: ckan/templates/organization/snippets/organization_form.html:10 msgid "My Organization" @@ -3625,8 +3632,9 @@ msgstr "Một vài thông tin về tổ chức của tôi..." #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3649,13 +3657,13 @@ msgstr "Bộ dữ liệu là gì?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" -"Bộ dữ liệu CKAN là một tập hợp các dữ liệu nguồn (như các tập tin), với mô " -"tả và các thông tin khác, tại một địa chỉ cố định. Bộ dữ liệu là những gì " -"người dùng thấy khi tìm kiếm dữ liệu." +"Bộ dữ liệu CKAN là một tập hợp các dữ liệu nguồn (như các tập tin), với " +"mô tả và các thông tin khác, tại một địa chỉ cố định. Bộ dữ liệu là những" +" gì người dùng thấy khi tìm kiếm dữ liệu." #: ckan/templates/package/confirm_delete.html:12 msgid "Are you sure you want to delete dataset - {name}?" @@ -3735,9 +3743,9 @@ msgstr "Thêm chức năng xem" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" #: ckan/templates/package/new_view.html:29 @@ -3748,11 +3756,12 @@ msgstr "Thêm" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" -"Đây là bản hiệu đính cũ của bộ dữ liệu, được chỉnh sửa lúc %(timestamp)s. Nó" -" có thể khác nhiều so với phiên bản hiện tại." +"Đây là bản hiệu đính cũ của bộ dữ liệu, được chỉnh sửa lúc %(timestamp)s." +" Nó có thể khác nhiều so với phiên bản hiện tại." #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" @@ -3821,9 +3830,9 @@ msgstr "" #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" #: ckan/templates/package/resource_read.html:162 @@ -3891,8 +3900,8 @@ msgstr "Thêm nguồn mới" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

This dataset has no data, why not " -"add some?

" +"

This dataset has no data, why not" +" add some?

" msgstr "" "

Bộ dữ liệu này trống, bạn có muốn " "thêm vào không?

" @@ -4040,11 +4049,12 @@ msgstr "Hoạt động" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" #: ckan/templates/package/snippets/package_form.html:39 @@ -4155,8 +4165,7 @@ msgstr "Nguồn là gì?" #: ckan/templates/package/snippets/resource_help.html:4 msgid "A resource can be any file or link to a file containing useful data." -msgstr "" -"Nguồn có thể là bất kỳ tệp hoặc đường dẫn nào đến tệp chứa dữ liệu có ích." +msgstr "Nguồn có thể là bất kỳ tệp hoặc đường dẫn nào đến tệp chứa dữ liệu có ích." #: ckan/templates/package/snippets/resource_item.html:23 msgid "Explore" @@ -4365,8 +4374,8 @@ msgstr "

Thử tìm kiếm khác

" #: ckan/templates/snippets/search_form.html:87 msgid "" -"

There was an error while searching." -" Please try again.

" +"

There was an error while " +"searching. Please try again.

" msgstr "" #: ckan/templates/snippets/search_result_text.html:15 @@ -4507,10 +4516,11 @@ msgstr "Thông tin tài khoản" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" -"Lí lịch của bạn cho phép những người sử dụng CKAN khác biết bạn là ai và làm" -" nghề gì" +"Lí lịch của bạn cho phép những người sử dụng CKAN khác biết bạn là ai và " +"làm nghề gì" #: ckan/templates/user/edit_user_form.html:7 msgid "Change details" @@ -4602,7 +4612,8 @@ msgstr "Quên mật khẩu?" #: ckan/templates/user/login.html:44 msgid "No problem, use our password recovery form to reset it." msgstr "" -"Không vấn đề, sử dụng hình thức khôi phục mật khẩu của chúng tôi để cài đặt" +"Không vấn đề, sử dụng hình thức khôi phục mật khẩu của chúng tôi để cài " +"đặt" #: ckan/templates/user/login.html:47 msgid "Forgot your password?" @@ -4738,8 +4749,8 @@ msgstr "" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "" "Nhập tên sử dụng của bạn vào hộp thư và chúng tôi sẽ gửi một liên kết để " "nhập mật khẩu mới" @@ -4768,3 +4779,4 @@ msgstr "Tìm kiếm người sử dụng" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/zh_CN/LC_MESSAGES/ckan.po b/ckan/i18n/zh_CN/LC_MESSAGES/ckan.po index 58d03f3c413..a8a600da453 100644 --- a/ckan/i18n/zh_CN/LC_MESSAGES/ckan.po +++ b/ckan/i18n/zh_CN/LC_MESSAGES/ckan.po @@ -1,23 +1,26 @@ -# Translations template for ckan. +# Chinese (Simplified, China) translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" "Last-Translator: Adrià Mercader , 2018\n" -"Language-Team: Chinese (China) (https://www.transifex.com/okfn/teams/11162/zh_CN/)\n" +"Language: zh_Hans_CN\n" +"Language-Team: Chinese (China) " +"(https://www.transifex.com/okfn/teams/11162/zh_CN/)\n" +"Plural-Forms: nplurals=1; plural=0\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -128,14 +131,14 @@ msgstr "" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" msgstr "" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "数据不合法(比如: 数值越界或数值插入字符字段)" #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 @@ -161,7 +164,8 @@ msgstr "通过 API 来访问与查询数据" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 @@ -172,11 +176,11 @@ msgstr "终端" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 #: ckanext/datastore/templates/ajax_snippets/api_info.html:44 @@ -313,7 +317,8 @@ msgstr "数据 API" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" #: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 @@ -1800,8 +1805,8 @@ msgstr "名称最大长度为 %i 字符" #: ckan/logic/validators.py:345 msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "" #: ckan/logic/validators.py:363 @@ -2582,8 +2587,8 @@ msgstr "无法取得上传文档的数据" #: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 #: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "你正在上传文件。你是否确定要放弃上传而浏览别处?" #: ckan/public-bs2/base/javascript/modules/resource-view-filters.js:9 @@ -2854,37 +2859,39 @@ msgstr "CKAN 配置选项" #: ckan/templates/admin/config.html:52 #, python-format msgid "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " +"

Site Title: This is the title of this CKAN instance " +"It appears in various places throughout CKAN.

" +"

Style: Choose from a list of simple variations of the" +" main colour scheme to get a very quick custom theme working.

" +"

Site Tag Logo: This is the logo that appears in the " +"header of all the CKAN instance templates.

About:" +" This text will appear on this CKAN instances about page.

Intro " "Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" "

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend <head> tag of every page. If you wish to customize the" +" templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" +"

Homepage: This is for choosing a predefined layout " +"for the modules that appear on your homepage.

" msgstr "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " +"

Site Title: This is the title of this CKAN instance " +"It appears in various places throughout CKAN.

" +"

Style: Choose from a list of simple variations of the" +" main colour scheme to get a very quick custom theme working.

" +"

Site Tag Logo: This is the logo that appears in the " +"header of all the CKAN instance templates.

About:" +" This text will appear on this CKAN instances about page.

Intro " "Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" "

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend <head> tag of every page. If you wish to customize the" +" templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" +"

Homepage: This is for choosing a predefined layout " +"for the modules that appear on your homepage.

" #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 @@ -2899,11 +2906,13 @@ msgstr "管理 CKAN" #, python-format msgid "" "

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" +"Proceed with care!

For guidance on using sysadmin features, see " +"the CKAN sysadmin " +"guide

" msgstr "" "

作为系统管理员,您对该CKAN实例具有完全控制权。请谨慎操作!

\n" -"

该链接可以引导您使用系统管理员特性 系统管理员引导

" +"

该链接可以引导您使用系统管理员特性 系统管理员引导

" #: ckan/templates/admin/trash.html:20 msgid "Purge" @@ -3062,9 +3071,8 @@ msgstr "确定要删除成员:{name}吗?" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "管理" @@ -3096,8 +3104,7 @@ msgstr "搜索群组..." msgid "There are currently no groups for this site" msgstr "此网站上目前沒有任何群组" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "建立一个群組如何?" @@ -3146,22 +3153,19 @@ msgstr "新用户" msgid "If you wish to invite a new user, enter their email address." msgstr "如果你想邀请一个新用户,请输入他的邮件地址。" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "角色" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "你确定要删除此成员吗?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3182,12 +3186,12 @@ msgstr "什么是角色?" #: ckan/templates/group/member_new.html:80 msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " +"

Admin: Can edit group information, as well as manage" +" organization members.

Member: Can add/remove " "datasets from groups

" msgstr "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " +"

Admin: Can edit group information, as well as manage" +" organization members.

Member: Can add/remove " "datasets from groups

" #: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 @@ -3258,12 +3262,11 @@ msgstr "什么是群组?" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " -msgstr "" -"你可以使用 CKAN 提供的群组功能来创建和管理数据集的集合。这可以用来整理同一个项目或者团队的数据集,或者仅是方便其他人搜索到你发布的数据集。" +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " +msgstr "你可以使用 CKAN 提供的群组功能来创建和管理数据集的集合。这可以用来整理同一个项目或者团队的数据集,或者仅是方便其他人搜索到你发布的数据集。" #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 @@ -3326,13 +3329,14 @@ msgid "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3345,13 +3349,14 @@ msgstr "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3367,8 +3372,8 @@ msgstr "欢迎來到CKAN" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "这是一个关于CKAN或网站的简单介绍资讯。目前沒有文案,但很快就会有" #: ckan/templates/home/snippets/promoted.html:19 @@ -3414,8 +3419,8 @@ msgstr "群组" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" "在这里你可以使用Admin: Can add/edit and delete datasets, as well as " "manage organization members.

Editor: Can add and " "edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" +"

Member: Can view the organization's private datasets," +" but not add new datasets.

" msgstr "" -"

管理者:可以新增/编辑和删除数据集,以及管理组织成员。< /p>

编辑:" -" 可以新增和编辑资料集,但无法管理组织成员。

一般成员: " -"可以浏览组织的私有的数据集,但无法新增数据集。

" +"

管理者:可以新增/编辑和删除数据集,以及管理组织成员。< /p> " +"

编辑: 可以新增和编辑资料集,但无法管理组织成员。

" +"

一般成员: 可以浏览组织的私有的数据集,但无法新增数据集。

" #: ckan/templates/organization/members.html:14 msgid "{count} member" @@ -3579,19 +3584,19 @@ msgstr "组织是什么?" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" +"

Organizations act like publishing departments for datasets (for " +"example, the Department of Health). This means that datasets can be " +"published by and belong to a department instead of an individual " +"user.

Within organizations, admins can assign roles and authorise " +"its members, giving individual users the right to publish datasets from " +"that particular organisation (e.g. Office of National Statistics).

" msgstr "" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "CKAN 组织使用来创建,管理,发布数据集集合的。用户可以在组织中扮演不同的角色,并被赋予不同级别的权限来创建,编辑和发布数据。" #: ckan/templates/organization/snippets/organization_form.html:10 @@ -3608,8 +3613,9 @@ msgstr "关于我的组织的一些资讯" #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." msgstr "" #: ckan/templates/organization/snippets/organization_form.html:41 @@ -3632,11 +3638,12 @@ msgstr "什么是数据集?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " msgstr "" -"一个 CKAN 数据集是指数据资源的集合,并包含其相应的简介和相关信息。它拥有一个固定的 URL 地址。当用户搜索数据时,他们得到的结果均以数据集呈现。" +"一个 CKAN 数据集是指数据资源的集合,并包含其相应的简介和相关信息。它拥有一个固定的 URL " +"地址。当用户搜索数据时,他们得到的结果均以数据集呈现。" #: ckan/templates/package/confirm_delete.html:12 msgid "Are you sure you want to delete dataset - {name}?" @@ -3716,9 +3723,9 @@ msgstr "增加视图" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the
Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" #: ckan/templates/package/new_view.html:29 @@ -3729,8 +3736,9 @@ msgstr "新增" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "着是次数据集在%(timestamp)s时发布的较旧的版本。可能会与目前版本有所不同" #: ckan/templates/package/resource_edit_base.html:17 @@ -3800,9 +3808,9 @@ msgstr "该站点管理员并没有开启相应的视图插件" #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" #: ckan/templates/package/resource_read.html:162 @@ -3870,11 +3878,11 @@ msgstr "添加新资源" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

This dataset has no data, why not " -"add some?

" +"

This dataset has no data, why not" +" add some?

" msgstr "" -"

This dataset has no data, why not " -"add some?

" +"

This dataset has no data, why not" +" add some?

" #: ckan/templates/package/search.html:52 msgid "API" @@ -4015,11 +4023,12 @@ msgstr "动态" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" #: ckan/templates/package/snippets/package_form.html:39 @@ -4339,8 +4348,8 @@ msgstr "

请重新搜索.

" #: ckan/templates/snippets/search_form.html:87 msgid "" -"

There was an error while searching." -" Please try again.

" +"

There was an error while " +"searching. Please try again.

" msgstr "" #: ckan/templates/snippets/search_result_text.html:15 @@ -4481,7 +4490,8 @@ msgstr "账户信息" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "你的个人档案可以让其他 CKAN 用户了解你是谁以及你是做什么的。" #: ckan/templates/user/edit_user_form.html:7 @@ -4709,8 +4719,8 @@ msgstr "请求重置" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "将您的用户名输入文本框,我们将给您发包含链接的送电子邮件以输入新密码。" #: ckan/templates/user/snippets/followee_dropdown.html:15 @@ -4737,3 +4747,4 @@ msgstr "搜索用户" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." msgstr "" + diff --git a/ckan/i18n/zh_TW/LC_MESSAGES/ckan.po b/ckan/i18n/zh_TW/LC_MESSAGES/ckan.po index 5df210d40bc..a2743a5886c 100644 --- a/ckan/i18n/zh_TW/LC_MESSAGES/ckan.po +++ b/ckan/i18n/zh_TW/LC_MESSAGES/ckan.po @@ -1,23 +1,27 @@ -# Translations template for ckan. +# Chinese (Traditional, Taiwan) translations for ckan. # Copyright (C) 2018 ORGANIZATION # This file is distributed under the same license as the ckan project. # FIRST AUTHOR , 2018. -# +# +# Translators: +# Adrià Mercader , 2018 +# wh pai , 2018 #, fuzzy msgid "" msgstr "" "Project-Id-Version: ckan 2.8.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2018-03-27 16:10+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2018\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/okfn/teams/11162/zh_TW/)\n" +"PO-Revision-Date: 2018-03-27 14:15+0000\n" +"Last-Translator: wh pai , 2018\n" +"Language: zh_Hant_TW\n" +"Language-Team: Chinese (Taiwan) " +"(https://www.transifex.com/okfn/teams/11162/zh_TW/)\n" +"Plural-Forms: nplurals=1; plural=0\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.5.3\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Generated-By: Babel 2.3.4\n" #: ckanext/datapusher/helpers.py:21 msgid "Complete" @@ -120,7 +124,7 @@ msgstr "DataStore" #: ckanext/datastore/controller.py:53 #, python-format msgid "format: must be one of %s" -msgstr "" +msgstr "格式: 必須為 %s 其中之一" #: ckanext/datastore/controller.py:65 msgid "DataStore resource not found" @@ -128,14 +132,14 @@ msgstr "資料儲存之資源不存在" #: ckanext/datastore/controller.py:101 msgid "" -"Data Dictionary saved. Any type overrides will take effect when the resource" -" is next uploaded to DataStore" -msgstr "" +"Data Dictionary saved. Any type overrides will take effect when the " +"resource is next uploaded to DataStore" +msgstr "已儲存資料字典,下次將資源上載到DataStore時,任何類型覆蓋都將生效" #: ckanext/datastore/backend/postgres.py:1032 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "無效的資料(例如:填入超出範圍的數值,或將數值填入文字欄位中)。" #: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 @@ -161,8 +165,9 @@ msgstr "透過一擁有強大查詢功能支援的網路API來存取資源之資 msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " +msgstr " 進一步的資訊位於 CKAN Data API 及 DataStore 文件.

" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 #: ckanext/datastore/templates/ajax_snippets/api_info.html:35 @@ -172,8 +177,8 @@ msgstr "終端點" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 #: ckanext/datastore/templates/ajax_snippets/api_info.html:39 msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "可使用下列之CKAN action API所提供的功能來存取資料API。" #: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 @@ -240,11 +245,11 @@ msgstr "儲存" #: ckanext/datastore/templates-bs2/datastore/dictionary.html:16 #: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 msgid "Field {num}." -msgstr "" +msgstr "欄位 {num}." #: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 msgid "Type Override" -msgstr "" +msgstr "覆蓋類型" #: ckanext/datastore/templates-bs2/datastore/dictionary.html:18 #: ckanext/datastore/templates-bs2/package/resource_read.html:20 @@ -252,7 +257,7 @@ msgstr "" #: ckanext/datastore/templates/package/resource_read.html:21 #: ckanext/datatablesview/templates/datatables/datatables_form.html:18 msgid "Label" -msgstr "" +msgstr "標籤" #: ckan/templates/group/snippets/group_form.html:20 #: ckan/templates/organization/snippets/organization_form.html:20 @@ -271,18 +276,18 @@ msgstr "說明" #: ckanext/datastore/templates/package/resource_edit_base.html:6 #: ckanext/datastore/templates/package/resource_read.html:14 msgid "Data Dictionary" -msgstr "" +msgstr "資料字典" #: ckanext/datastore/templates-bs2/package/resource_read.html:18 #: ckanext/datastore/templates/package/resource_read.html:19 #: ckanext/datatablesview/templates/datatables/datatables_form.html:17 msgid "Column" -msgstr "" +msgstr "欄位" #: ckanext/datastore/templates-bs2/package/resource_read.html:19 #: ckanext/datastore/templates/package/resource_read.html:20 msgid "Type" -msgstr "" +msgstr "型式" #: ckan/public-bs2/base/javascript/modules/activity-stream.js:97 #: ckan/public-bs2/base/javascript/modules/popover-context.js:62 @@ -311,7 +316,8 @@ msgstr "資料API" msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" +"target=\"_blank\">main CKAN Data API and DataStore documentation.

" +" " msgstr "" "進一步的資訊位於 Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " +"

Site Title: This is the title of this CKAN instance " +"It appears in various places throughout CKAN.

" +"

Style: Choose from a list of simple variations of the" +" main colour scheme to get a very quick custom theme working.

" +"

Site Tag Logo: This is the logo that appears in the " +"header of all the CKAN instance templates.

About:" +" This text will appear on this CKAN instances about page.

Intro " "Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" "

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend <head> tag of every page. If you wish to customize the" +" templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" +"

Homepage: This is for choosing a predefined layout " +"for the modules that appear on your homepage.

" msgstr "" "

網站標題: 這是 CKAN 網站標題的範例,將會出現在 CKAN 的許多地方

" "

樣式: 您可以從現有的配色方案清單中選擇,做些簡單的變化,快速的讓客製化主題運作。

" "

網站 LOGO:這是會出現在所有 CKAN 網站模板的 logo。

" "

關於:此段文字將出現在此 CKAN 網站的「關於」頁面 。

簡介文字:此段文字將作為此 " -"CKAN 網站首頁的歡迎訊息。

客製化 " +"href=\"%(about_url)s\">「關於」頁面 。

簡介文字:此段文字將作為此" +" CKAN 網站首頁的歡迎訊息。

客製化 " "CSS:這是一個 CSS 區塊,將會出現在有<head>標籤的每個頁面。 " -"若您需要更完整的客製化範例,建議您閱讀此文件

" +"若您需要更完整的客製化範例,建議您閱讀此文件

" "

首頁:您可以選擇顯示於首頁的模組佈局。

" #: ckan/templates/admin/confirm_reset.html:3 @@ -2894,8 +2902,9 @@ msgstr "CKAN 系統管理者" #, python-format msgid "" "

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" +"Proceed with care!

For guidance on using sysadmin features, see " +"the CKAN sysadmin " +"guide

" msgstr "" "

身為系統管理者,您具有對此 CKAN 網站的所有控制權。請小心操作!

關於系統管理功能,請見 CKAN 系統管理者指南

" @@ -3057,9 +3066,8 @@ msgstr "確定要刪除成員:{name}嗎?" #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 #: ckan/templates/package/read_base.html:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" msgstr "管理" @@ -3091,8 +3099,7 @@ msgstr "搜尋群組" msgid "There are currently no groups for this site" msgstr "此網站上目前沒有任何群組" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 msgid "How about creating one?" msgstr "建立一個群組如何?" @@ -3141,22 +3148,19 @@ msgstr "新使用者" msgid "If you wish to invite a new user, enter their email address." msgstr "請在此輸入電子郵件位址,以邀請使用者加入" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:15 +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:54 #: ckan/templates/organization/members.html:20 msgid "Role" msgstr "角色" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:57 #: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "確定要刪除這個成員嗎?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:31 +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 #: ckan/templates/group/snippets/group_form.html:38 #: ckan/templates/organization/bulk_process.html:47 #: ckan/templates/organization/member_new.html:57 @@ -3177,8 +3181,8 @@ msgstr "腳色是什麼?" #: ckan/templates/group/member_new.html:80 msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " +"

Admin: Can edit group information, as well as manage" +" organization members.

Member: Can add/remove " "datasets from groups

" msgstr "" "

管理者: 可以編輯群組資訊,以及管理群組成員。

" @@ -3252,10 +3256,10 @@ msgstr "什麼是群組?" #: ckan/templates/group/snippets/helper.html:8 msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " +" You can use CKAN Groups to create and manage collections of datasets. " +"This could be to catalogue datasets for a particular project or team, or " +"on a particular theme, or as a very simple way to help people find and " +"search your own published datasets. " msgstr "您可以使用 CKAN 群組建立並管理多個資料集。群組可以代表一個主題、專案或是小組,可以幫助使用者快速找尋資料集。 " #: ckan/templates/group/snippets/history_revisions.html:10 @@ -3319,13 +3323,14 @@ msgid "" "

CKAN is the world’s leading open-source data portal platform.

" "

CKAN is a complete out-of-the-box software solution that makes data " "accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s

CKAN is used by governments and user " +"groups worldwide and powers a variety of official and community data " +"portals including portals for local, national and international " +"government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " "government portals, as well as city and municipal sites in the US, UK, " @@ -3341,8 +3346,9 @@ msgstr "" "href=\"http://data.gov.uk\">data.gov.uk以及歐盟的publicdata.eu、巴西的dados.gov.br、荷蘭政府入口網站以及美國、英國、阿根廷、芬蘭和許多其他國家的城市地方政府網站。

" -"

CKAN: http://ckan.org/
CKAN試用: http://ckan.org/tour/
其他相關資料: CKAN: http://ckan.org/
CKAN試用:" +" http://ckan.org/tour/
" +"其他相關資料: http://ckan.org/features/

" #: ckan/templates/home/snippets/promoted.html:8 @@ -3351,8 +3357,8 @@ msgstr "歡迎來到CKAN" #: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " +"This is a nice introductory paragraph about CKAN or the site in general. " +"We don't have any copy to go here yet but soon we will " msgstr "這裡是關於 CKAN 或本網站的簡介。目前沒有文案,但很快就會有" #: ckan/templates/home/snippets/promoted.html:19 @@ -3369,7 +3375,7 @@ msgstr "搜尋資料" #: ckan/templates/home/snippets/search.html:8 msgid "Search datasets" -msgstr "" +msgstr "搜尋資料集" #: ckan/templates/home/snippets/search.html:16 msgid "Popular tags" @@ -3398,8 +3404,8 @@ msgstr "群組" #: ckan/templates/macros/form.html:126 #, python-format msgid "" -"You can use Markdown formatting here" msgstr "" "您可以在此使用 Admin: Can add/edit and delete datasets, as well as " "manage organization members.

Editor: Can add and " "edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" +"

Member: Can view the organization's private datasets," +" but not add new datasets.

" msgstr "" -"

管理者:可以新增/編輯和刪除資料集,以及管理組織成員。

編輯:" -" 可以新增和編輯資料集,但無法管理組織成員。

一般成員: " -"可以瀏覽組織的私有資料集,但無法新增資料集。

" +"

管理者:可以新增/編輯和刪除資料集,以及管理組織成員。

" +"

編輯: 可以新增和編輯資料集,但無法管理組織成員。

" +"

一般成員: 可以瀏覽組織的私有資料集,但無法新增資料集。

" #: ckan/templates/organization/members.html:14 msgid "{count} member" msgid_plural "{count} members" -msgstr[0] "" +msgstr[0] "{count} 位成員" #: ckan/templates/organization/new.html:3 #: ckan/templates/organization/new.html:5 @@ -3563,21 +3569,21 @@ msgstr "組織是什麼?" #: ckan/templates/organization/snippets/help.html:7 msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" +"

Organizations act like publishing departments for datasets (for " +"example, the Department of Health). This means that datasets can be " +"published by and belong to a department instead of an individual " +"user.

Within organizations, admins can assign roles and authorise " +"its members, giving individual users the right to publish datasets from " +"that particular organisation (e.g. Office of National Statistics).

" msgstr "" "

組織扮演部門、單位發布資料集的角色(例如:衛生部門)。這意味著資料集是屬於一個部門,而不是屬於單一使用者。

" "

在組織中,管理員可以分配角色,並授權其成員,讓個人使用者有權從特定組織發布資料集(例如:國家檔案管理局)。

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " +" CKAN Organizations are used to create, manage and publish collections of" +" datasets. Users can have different roles within an Organization, " +"depending on their level of authorisation to create, edit and publish. " msgstr "您可以使用 CKAN 組織來建立、管理與發佈多個資料集。在組織中,每位使用者可擁有不同角色,而得以建立、編輯與發佈資料集。 " #: ckan/templates/organization/snippets/organization_form.html:10 @@ -3594,9 +3600,10 @@ msgstr "一些關於我的組織的資訊..." #: ckan/templates/organization/snippets/organization_form.html:38 msgid "" -"Are you sure you want to delete this Organization? Note*: Deleting cannot be" -" performed while public or private datasets belong to this organization." -msgstr "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot" +" be performed while public or private datasets belong to this " +"organization." +msgstr "你確定要刪除這個組織嗎?這樣會刪除屬於這個組織的所有公開和非公開之資料集。" #: ckan/templates/organization/snippets/organization_form.html:41 msgid "Save Organization" @@ -3618,11 +3625,10 @@ msgstr "資料集是什麼?" #: ckan/templates/package/base_form_page.html:25 msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " -msgstr "" -"CKAN 資料集是眾多資料(例如:檔案)的集合,通常伴隨著對該資料集的描述、其他資訊,以及一個固定網址。資料集亦是使用者進行搜尋時所回傳的結果單位。" +" A CKAN Dataset is a collection of data resources (such as files), " +"together with a description and other information, at a fixed URL. " +"Datasets are what users see when searching for data. " +msgstr "CKAN 資料集是眾多資料(例如:檔案)的集合,通常伴隨著對該資料集的描述、其他資訊,以及一個固定網址。資料集亦是使用者進行搜尋時所回傳的結果單位。" #: ckan/templates/package/confirm_delete.html:12 msgid "Are you sure you want to delete dataset - {name}?" @@ -3702,13 +3708,13 @@ msgstr "新增檢視" msgid "" " Data Explorer views may be slow and unreliable unless the DataStore " "extension is enabled. For more information, please see the
Data Explorer " -"documentation. " +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>Data Explorer" +" documentation. " msgstr "" "若 DataStore 擴充套件未啟用,資料瀏覽檢視可能會較為緩慢且不穩定。進一步資訊請參考 資料瀏覽檢視說明。" +"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html" +"#viewing-structured-data-the-data-explorer' target='_blank'>資料瀏覽檢視說明。" #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:83 @@ -3718,8 +3724,9 @@ msgstr "新增" #: ckan/templates/package/read_base.html:32 #, python-format msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "這是此資料集在%(timestamp)s時發佈的較舊的版本。可能會與目前版本有所不同" #: ckan/templates/package/resource_edit_base.html:17 @@ -3789,9 +3796,9 @@ msgstr "系統管理者可能並未啟用相關的檢視擴充套件" #: ckan/templates/package/resource_read.html:140 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" +"If a view requires the DataStore, the DataStore plugin may not be " +"enabled, or the data may not have been pushed to the DataStore, or the " +"DataStore hasn't finished processing the data yet" msgstr "" "若此檢視需要 DataStore 支援,則可能為 DataStore 擴充套件未啟用、資料並未上傳至 DataStore,或 DataStore " "上傳作業尚未完成" @@ -3815,7 +3822,7 @@ msgstr "值" #: ckan/templates/package/resource_read.html:172 msgid "Data last updated" -msgstr "" +msgstr "最後更新資料" #: ckan/templates/package/resource_read.html:173 #: ckan/templates/package/resource_read.html:177 @@ -3826,7 +3833,7 @@ msgstr "未知的" #: ckan/templates/package/resource_read.html:176 msgid "Metadata last updated" -msgstr "" +msgstr "最後更新的詮釋資料" #: ckan/templates/package/resource_read.html:180 #: ckan/templates/package/snippets/additional_info.html:70 @@ -3861,8 +3868,8 @@ msgstr "加入新資源" #: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" -"

This dataset has no data, why not " -"add some?

" +"

This dataset has no data, why not" +" add some?

" msgstr "

此資料集中沒有資料,新增一些如何?

" #: ckan/templates/package/search.html:52 @@ -4004,11 +4011,12 @@ msgstr "啟動" #: ckan/templates/package/snippets/package_form.html:28 msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." +"The data license you select above only applies to the contents of " +"any resource files that you add to this dataset. By submitting this form," +" you agree to release the metadata values that you enter into the " +"form under the Open Database " +"License." msgstr "" "您所選取的資料授權條款僅適用於您上傳至本資料集的所有資料(檔案)。當您送出此表單時,代表您已同意以 Open Database " @@ -4134,7 +4142,7 @@ msgstr "更多資訊" #: ckan/templates/package/snippets/resource_view.html:10 msgid "Fullscreen" -msgstr "" +msgstr "全螢幕" #: ckan/templates/package/snippets/resource_view.html:18 msgid "Embed" @@ -4331,8 +4339,8 @@ msgstr "

請嘗試其他的搜尋關鍵字

" #: ckan/templates/snippets/search_form.html:87 msgid "" -"

There was an error while searching." -" Please try again.

" +"

There was an error while " +"searching. Please try again.

" msgstr "

搜尋時發生錯誤。 請再試一次。

" #: ckan/templates/snippets/search_result_text.html:15 @@ -4473,7 +4481,8 @@ msgstr "帳號資訊" #: ckan/templates/user/edit.html:19 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "您的個人資料:讓其他CKAN使用者了解你是誰以及你從事什麼。" #: ckan/templates/user/edit_user_form.html:7 @@ -4643,7 +4652,7 @@ msgstr "密碼重置" #: ckan/templates/user/perform_reset.html:21 msgid "You can also change username. It can not be modified later." -msgstr "" +msgstr "現在可以更改用戶名,但以後不能修改" #: ckan/templates/user/perform_reset.html:29 msgid "Update Password" @@ -4701,8 +4710,8 @@ msgstr "請求重置" #: ckan/templates/user/request_reset.html:34 msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." msgstr "輸入您的使用者名稱,我們將會寄給您新的密碼至您的電子信箱。" #: ckan/templates/user/snippets/followee_dropdown.html:15 @@ -4728,4 +4737,5 @@ msgstr "搜尋使用者" #: ckan/views/user.py:588 msgid "Your password must be 8 characters or longer." -msgstr "" +msgstr "密碼長度至少要8個字元" + From 74423a44d1c549cfe56e44d642d7ae4af56a0246 Mon Sep 17 00:00:00 2001 From: Konstantin Sivakov Date: Tue, 11 Dec 2018 14:11:01 +0100 Subject: [PATCH 31/36] Compile .mo files --- ckan/i18n/ar/LC_MESSAGES/ckan.mo | Bin 91619 -> 91619 bytes ckan/i18n/bg/LC_MESSAGES/ckan.mo | Bin 98178 -> 98178 bytes ckan/i18n/ca/LC_MESSAGES/ckan.mo | Bin 80076 -> 80076 bytes ckan/i18n/cs_CZ/LC_MESSAGES/ckan.mo | Bin 81905 -> 81908 bytes ckan/i18n/da_DK/LC_MESSAGES/ckan.mo | Bin 76823 -> 76823 bytes ckan/i18n/de/LC_MESSAGES/ckan.mo | Bin 81029 -> 81029 bytes ckan/i18n/el/LC_MESSAGES/ckan.mo | Bin 109880 -> 109880 bytes ckan/i18n/en_AU/LC_MESSAGES/ckan.mo | Bin 74532 -> 74532 bytes ckan/i18n/en_GB/LC_MESSAGES/ckan.mo | Bin 74536 -> 74536 bytes ckan/i18n/es/LC_MESSAGES/ckan.mo | Bin 81455 -> 81445 bytes ckan/i18n/es_AR/LC_MESSAGES/ckan.mo | Bin 81364 -> 81364 bytes ckan/i18n/fa_IR/LC_MESSAGES/ckan.mo | Bin 75570 -> 75570 bytes ckan/i18n/fi/LC_MESSAGES/ckan.mo | Bin 78742 -> 78742 bytes ckan/i18n/fr/LC_MESSAGES/ckan.mo | Bin 84083 -> 84083 bytes ckan/i18n/gl/LC_MESSAGES/ckan.mo | Bin 76430 -> 76430 bytes ckan/i18n/he/LC_MESSAGES/ckan.mo | Bin 87583 -> 87583 bytes ckan/i18n/hr/LC_MESSAGES/ckan.mo | Bin 78398 -> 78398 bytes ckan/i18n/hu/LC_MESSAGES/ckan.mo | Bin 76155 -> 76155 bytes ckan/i18n/id/LC_MESSAGES/ckan.mo | Bin 75167 -> 75167 bytes ckan/i18n/is/LC_MESSAGES/ckan.mo | Bin 79412 -> 79412 bytes ckan/i18n/it/LC_MESSAGES/ckan.mo | Bin 79331 -> 79331 bytes ckan/i18n/ja/LC_MESSAGES/ckan.mo | Bin 86998 -> 86998 bytes ckan/i18n/km/LC_MESSAGES/ckan.mo | Bin 84289 -> 84289 bytes ckan/i18n/ko_KR/LC_MESSAGES/ckan.mo | Bin 80671 -> 80671 bytes ckan/i18n/lt/LC_MESSAGES/ckan.mo | Bin 78221 -> 78221 bytes ckan/i18n/lv/LC_MESSAGES/ckan.mo | Bin 78878 -> 78878 bytes ckan/i18n/mk/LC_MESSAGES/ckan.mo | Bin 105301 -> 105301 bytes ckan/i18n/mn_MN/LC_MESSAGES/ckan.mo | Bin 100762 -> 100782 bytes ckan/i18n/ne/LC_MESSAGES/ckan.mo | Bin 74796 -> 74796 bytes ckan/i18n/nl/LC_MESSAGES/ckan.mo | Bin 77486 -> 77487 bytes ckan/i18n/no/LC_MESSAGES/ckan.mo | Bin 76779 -> 76782 bytes ckan/i18n/pl/LC_MESSAGES/ckan.mo | Bin 77193 -> 77222 bytes ckan/i18n/pt_BR/LC_MESSAGES/ckan.mo | Bin 81020 -> 81020 bytes ckan/i18n/pt_PT/LC_MESSAGES/ckan.mo | Bin 81370 -> 81428 bytes ckan/i18n/ro/LC_MESSAGES/ckan.mo | Bin 78826 -> 78826 bytes ckan/i18n/ru/LC_MESSAGES/ckan.mo | Bin 97628 -> 97589 bytes ckan/i18n/sk/LC_MESSAGES/ckan.mo | Bin 80257 -> 80257 bytes ckan/i18n/sl/LC_MESSAGES/ckan.mo | Bin 77969 -> 77969 bytes ckan/i18n/sq/LC_MESSAGES/ckan.mo | Bin 81052 -> 81052 bytes ckan/i18n/sr/LC_MESSAGES/ckan.mo | Bin 80697 -> 80697 bytes ckan/i18n/sr_Latn/LC_MESSAGES/ckan.mo | Bin 76578 -> 76577 bytes ckan/i18n/sv/LC_MESSAGES/ckan.mo | Bin 77199 -> 77194 bytes ckan/i18n/th/LC_MESSAGES/ckan.mo | Bin 105640 -> 105640 bytes ckan/i18n/tl/LC_MESSAGES/ckan.mo | Bin 74591 -> 74591 bytes ckan/i18n/tr/LC_MESSAGES/ckan.mo | Bin 74920 -> 74920 bytes ckan/i18n/uk/LC_MESSAGES/ckan.mo | Bin 76420 -> 76420 bytes ckan/i18n/uk_UA/LC_MESSAGES/ckan.mo | Bin 102594 -> 102594 bytes ckan/i18n/vi/LC_MESSAGES/ckan.mo | Bin 82473 -> 82473 bytes ckan/i18n/zh_CN/LC_MESSAGES/ckan.mo | Bin 72182 -> 72187 bytes ckan/i18n/zh_TW/LC_MESSAGES/ckan.mo | Bin 72452 -> 72165 bytes 50 files changed, 0 insertions(+), 0 deletions(-) diff --git a/ckan/i18n/ar/LC_MESSAGES/ckan.mo b/ckan/i18n/ar/LC_MESSAGES/ckan.mo index 8781a8edf3beaf3e728122a94aca6491cef0f898..d879875bd12c8f4ef5595bf62ca838ab707fccf8 100644 GIT binary patch delta 45 zcmaESn)UH%)(yMXi5eLgTId=W>l&FW7@Alanra&W!RGVpY8jc0^-MPVZ0x>$*59c=%iSdTK}c`?+pDzpj>%*-X!1v;T%ETLGV4 B5pDng diff --git a/ckan/i18n/bg/LC_MESSAGES/ckan.mo b/ckan/i18n/bg/LC_MESSAGES/ckan.mo index dba3f373421b4e1ba930a269137337a232f72bb9..2b2b337c4f4fc51ad6789bb5ced8a1451676a3ad 100644 GIT binary patch delta 45 zcmZqr&)W2#b;GW8qDBUW7P$)smJPesi5eLgTId=W>l&FW7@Alanra&W!RGVp3>le?^-MN1Z#dZj0C*-3 AVgLXD delta 45 zcmX@}k>$)smJPesiAK6Q2I>0x>$*59c=%iSdTK}c`?+pDzs``6*-X!1GxLU%9RQ!8 B5c&WB diff --git a/ckan/i18n/cs_CZ/LC_MESSAGES/ckan.mo b/ckan/i18n/cs_CZ/LC_MESSAGES/ckan.mo index a6e15215628853691b77d8f69647092d038082f5..af34c838771d1cec92942dae7af6eb0eb39946bc 100644 GIT binary patch delta 7725 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 aQqX90;m~yfpY`#SZPKXey1{E-ef|F+5|y_A delta 7722 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 A6aWAK delta 45 zcmbP!gJt>+mJPesiAK6Q2I>0x>$*59c=%iSdTK}c`?+pDzs`Y?*-X!1v(N_C8UTcy B53B$H diff --git a/ckan/i18n/de/LC_MESSAGES/ckan.mo b/ckan/i18n/de/LC_MESSAGES/ckan.mo index 07975bd5042d4590ea1f9c887a6f1a7baf971d61..077b4dacf058935d99fbde36f3ce98cc7be78bfa 100644 GIT binary patch delta 45 zcmZqu$l&FW7@Alanra&W!RGVp%ov%C^-MN%Y%ur>0BP$E A_5c6? delta 45 zcmdmSi*3g(whg=1iAK6Q2I>0x>$*59c=%iSdTK}c`?+pDzs`)2*-X!1GsgylzW|YC B5RL!< diff --git a/ckan/i18n/en_AU/LC_MESSAGES/ckan.mo b/ckan/i18n/en_AU/LC_MESSAGES/ckan.mo index 0064022682fd01917212a6aeb10b2b5f537db750..c4f8b4c03ce395e10a6316a58aae261f209987da 100644 GIT binary patch delta 51 zcmZ2-jAh9&mJPesi5eLgTId=W>l&FW7@Alanra&W!RGVpoEce+^-Q=n>sY%mZjRb` Gst^FPq7Zrj delta 51 zcmZ2-jAh9&mJPesiAK6Q2I>0x>$*59c=%iSdTK}c`?+pDzs{MF#Z1qDYqO5E3*+Xf Hji(9$l&FW7@Alanra&W!RGVpJQ!Jw^-Q=n>sY%mZjRr0 GvJe2Zl@N;n delta 51 zcmZ2+jAg|!mJPesiAK6Q2I>0x>$*59c=%iSdTK}c`?+pDzs`e^#Z1qDYqO5E3*+Ya HjVB8M=ARNH diff --git a/ckan/i18n/es/LC_MESSAGES/ckan.mo b/ckan/i18n/es/LC_MESSAGES/ckan.mo index a2c8c837feac49589b498c5c2070406dc6d8dd71..29f5cb8279c166722b122d767e89dbabbcf53f7a 100644 GIT binary patch delta 7724 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 Z%TgwnPG4N_?JKprr=+g0UDfKD{{ss$i(CKz diff --git a/ckan/i18n/es_AR/LC_MESSAGES/ckan.mo b/ckan/i18n/es_AR/LC_MESSAGES/ckan.mo index 9a2080bd0ecf12f49b149802dfe76fd00e3dae7d..447565e32205d87f01d9c6b368e2272c7cd26c4f 100644 GIT binary patch delta 45 zcmcceo8`)HmJPesi5eLgTId=W>l&FW7@Alanra&W!RGVpbQqb9^-MPZTYs$=0D=J! AjQ{`u delta 45 zcmcceo8`)HmJPesiAK6Q2I>0x>$*59c=%iSdTK}c`?+pDzfOmd*-X!1^S|}idI70> B5+wit diff --git a/ckan/i18n/fa_IR/LC_MESSAGES/ckan.mo b/ckan/i18n/fa_IR/LC_MESSAGES/ckan.mo index 483a5cdef8f6754e840bdd79fe26b79c26272434..5a4c628cfc71cf5fd15f28e46bb66788135ea7eb 100644 GIT binary patch delta 45 zcmdmVj%Cw1mJPesi5eLgTId=W>l&FW7@Alanra&W!RGVpY#Eu2^-MPNZ%{4=0AmOa ANdN!< delta 45 zcmdmVj%Cw1mJPesiAK6Q2I>0x>$*59c=%iSdTK}c`?+pDzs{DC*-X!1GyewVasY~g B58(g+ diff --git a/ckan/i18n/fi/LC_MESSAGES/ckan.mo b/ckan/i18n/fi/LC_MESSAGES/ckan.mo index 3f374ec2f549b82beee75e9e4b5baa49b9baec24..396efc434dd96b233bc5c7612a085ea8acd3b475 100644 GIT binary patch delta 45 zcmbRCoMqZ`mJPesi5eLgTId=W>l&FW7@Alanra&W!RGVp3>le?^-MN1Z0x>$*59c=%iSdTK}c`?+pDzs``6*-X!1GxLVY%>apm B5I+C_ diff --git a/ckan/i18n/fr/LC_MESSAGES/ckan.mo b/ckan/i18n/fr/LC_MESSAGES/ckan.mo index d968df8f47a0571fd9d6790d76621fd75c2a0b0c..d350a26ad3fd84a387d2dd3352d07731f04db637 100644 GIT binary patch delta 45 zcmex7f%WqQ)(yMXi5eLgTId=W>l&FW7@Alanra&W!RGVp#2A^4^-MOuSl>MZ0B3;@ AivR!s delta 45 zcmex7f%WqQ)(yMXiAK6Q2I>0x>$*59c=%iSdTK}c`?+pDzfO#i*-X!1^NaP}GXReJ B5hDNq diff --git a/ckan/i18n/gl/LC_MESSAGES/ckan.mo b/ckan/i18n/gl/LC_MESSAGES/ckan.mo index a97d5df3d0741b2a8d36fa95cf33c67563204851..182ebbefb681e7838690e97a82e5009ccac482b1 100644 GIT binary patch delta 51 zcmeCX%F=h0Wy7v@qDBUW7PH!nZ< GJOcoSnl&FW7@Alanra&W!RGVp`WTsw^-MM=Y}mgP09U~e AO#lD@ delta 45 zcmbQghIRfL)(yMXiAK6Q2I>0x>$*59c=%iSdTK}c`?+pDzpjsw*-X!1bHaxGO96j7 B5aj>> diff --git a/ckan/i18n/hr/LC_MESSAGES/ckan.mo b/ckan/i18n/hr/LC_MESSAGES/ckan.mo index c03cb667d58edae00887f44efa3b2e34cbf75749..691e23cb86e86ec62a8e00f78df17b46363ce974 100644 GIT binary patch delta 45 zcmdn@gk|3omJPesi5eLgTId=W>l&FW7@Alanra&W!RGVpsu-D#^-MPVZ1~g&0CS}e A-~a#s delta 45 zcmdn@gk|3omJPesiAK6Q2I>0x>$*59c=%iSdTK}c`?+pDzpjdr*-X!1v(JW4jR2b; B5qJOq diff --git a/ckan/i18n/hu/LC_MESSAGES/ckan.mo b/ckan/i18n/hu/LC_MESSAGES/ckan.mo index f5befa69ddc76b081e43cad49e2d255ea1b1022c..3ac7799fa0a3ccdc61f799267f8bbea505f9cfd3 100644 GIT binary patch delta 51 zcmex;iRJetmJPesi5eLgTId=W>l&FW7@Alanra&W!RGVpj2T&s^-Q=n>sbF5+01yf GDg^-CVG&pW delta 51 zcmex;iRJetmJPesiAK6Q2I>0x>$*59c=%iSdTK}c`?+pDzs{JE#Z1qDYqO5^Z;{Q6 HN2^i*4SEvr diff --git a/ckan/i18n/id/LC_MESSAGES/ckan.mo b/ckan/i18n/id/LC_MESSAGES/ckan.mo index 825f7e9b4282e7316adbaf16a2d1c8b23beed315..e7623397b817e5bc6a2b67a0a48e8f31993ab3be 100644 GIT binary patch delta 45 zcmbP#nq~fJmJPesi5eLgTId=W>l&FW7@Alanra&W!RGVpbQzhA^-MPZU%#Lf0AHC8 AcK`qY delta 45 zcmbP#nq~fJmJPesiAK6Q2I>0x>$*59c=%iSdTK}c`?+pDzfPBt*-X!1^Z)e=N&$xx B5f1l&FW7@Alanra&W!RGVpJQ0x>$*59c=%iSdTK}c`?+pDzs{49*-X!1v-AeZHUO2? B5Iz6^ diff --git a/ckan/i18n/it/LC_MESSAGES/ckan.mo b/ckan/i18n/it/LC_MESSAGES/ckan.mo index 86a037a9178195032ec48776de30b46bf1d65e6d..9128a5c7a6ad4c9032861bdb18a689482a646a50 100644 GIT binary patch delta 45 zcmaF-n&t6pmJPesi5eLgTId=W>l&FW7@Alanra&W!RGVp3>le?^-MN1Z+OrO0DdG7 Am;e9( delta 45 zcmaF-n&t6pmJPesiAK6Q2I>0x>$*59c=%iSdTK}c`?+pDzs``6*-X!1GxLTAtpKH- B5ikG% diff --git a/ckan/i18n/ja/LC_MESSAGES/ckan.mo b/ckan/i18n/ja/LC_MESSAGES/ckan.mo index 69189b80c50cacc3202cdf603ccddb139b342561..27d44c4bb78e93e94a66d62bd7cb1720912da14b 100644 GIT binary patch delta 45 zcmcb%ob}pr)(yMXi5eLgTId=W>l&FW7@Alanra&W!RGVp)ESwL^-MPZTz_{l0A}|O A{r~^~ delta 45 zcmV+|0Mh@~rv=uh1+coV6eNKZOVNh?}UPDQiNt|tKlHZCx;`LErh Dj&Tu| diff --git a/ckan/i18n/km/LC_MESSAGES/ckan.mo b/ckan/i18n/km/LC_MESSAGES/ckan.mo index fcb9d363f744effe4dd65a375d168d99a75660d2..d248a11898a63233a06176d7be62a915230d8860 100644 GIT binary patch delta 51 zcmX>&iS^(l)(yMXi5eLgTId=W>l&FW7@Alanra&W!RGVpG#FWo^-Q=n>sbF5+5GK@ GcMAZp>JdNy delta 51 zcmV-30L=fvk_Ew%1+coV6eNKZOVNh?}UPDQiNt|$QnHZCvl&FW7@Alanra&W!RGVp%o&-D^-MN%ZV>AR0BL&; AZU6uP delta 45 zcmbRLjb;8fmJPesiAK6Q2I>0x>$*59c=%iSdTK}c`?+pDzs{VI*-X!1Gv@}eZUB(= B5C#AM diff --git a/ckan/i18n/lt/LC_MESSAGES/ckan.mo b/ckan/i18n/lt/LC_MESSAGES/ckan.mo index 9a823c5187f30e63a0910164c8b68b79490e89fb..a03020ca49d0f47c90882474cb4b2bd9a84d06f8 100644 GIT binary patch delta 50 zcmeBu%+mXqWy7v@qDBUW7Pl&FW7@Alanra&W!RGVpLKvBi^-MOaZTQg)0B7wF AWB>pF delta 45 zcmbRDf@R(dmJPesiAK6Q2I>0x>$*59c=%iSdTK}c`?+pDzb=H4*-X!1v)YCq%>a*Q B5c~iD diff --git a/ckan/i18n/mk/LC_MESSAGES/ckan.mo b/ckan/i18n/mk/LC_MESSAGES/ckan.mo index ae0247ae334da2cecfe933023384f67a6fb3a937..42307de16964e01d49633705e2192a0723942b52 100644 GIT binary patch delta 45 zcmcb*jqU0-whg=1i5eLgTId=W>l&FW7@Alanra&W!RGVpq8OQt^-MPFY|wlS0BOz- A7XSbN delta 45 zcmcb*jqU0-whg=1iAK6Q2I>0x>$*59c=%iSdTK}c`?+pDzb=ZA*-X!1v(5(1*8q`7 B5U&6L diff --git a/ckan/i18n/mn_MN/LC_MESSAGES/ckan.mo b/ckan/i18n/mn_MN/LC_MESSAGES/ckan.mo index 0aeabfa3f4473c71fea96b86a6601c53196541ba..1f14dcb5656ae0658e8e34a22a04d1eb30a24a89 100644 GIT binary patch delta 7780 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 IJIT)f0W}Jf;s5{u delta 7762 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 delta 24 gcmZ2;f@RGKmJR>cvzX}_aBbGHPLbH0e&T2}0Eh_+i2wiq diff --git a/ckan/i18n/nl/LC_MESSAGES/ckan.mo b/ckan/i18n/nl/LC_MESSAGES/ckan.mo index 0b77f99fe6f203dba09be50792e0e2068d011c78..7468c206c0b7873fb88cf0c13dab9d04bd012dd0 100644 GIT binary patch delta 203 zcmZ2?mu3B3mJM^P>dhD!7_MnEGOz$?UL8gT6Cf=Fq=SI8JCHU6(zAfHKaf5Hq-}t- zj4mTX6p)St(w0Da3y{_Z((iz@43L)6V`N|k(&j)Kq|X{igUs&+()>Vr0+hc%kC6{7 zu@ow>YO|*G#9~n+149d417lqya|J^aD??Ll10dLZew{uev$3AZX2uQIt0!+P;CK7_MnEGOz$?9vwyo6Cf=Jq=SI88;~{x(lddyKaf5Rq-}t- zv@Rn<6p)Sp(w0DaGmzE>(rWWAIhJv$H)hk zSOOJTxmnYCVzFqXt7DL^ufMK~qk@OOm9M9El)sSSOlU=r+?696k*CrnS6h>>~>`x#vUdBsrxUi diff --git a/ckan/i18n/no/LC_MESSAGES/ckan.mo b/ckan/i18n/no/LC_MESSAGES/ckan.mo index 3af057586472e92ee5252cc3ec213601cc14bedf..7cff7e240ac4fc412e4713d24872f1b1989eb3c4 100644 GIT binary patch delta 7675 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 delta 7672 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 Ky&as4g#Q5OFVar{ delta 8030 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 Al>h($ delta 45 zcmezKgXPZ;mJPesiAK6Q2I>0x>$*59c=%iSdTK}c`?+pDzs`w~*-X!1v&e>w9ssh0 B5iI}! diff --git a/ckan/i18n/pt_PT/LC_MESSAGES/ckan.mo b/ckan/i18n/pt_PT/LC_MESSAGES/ckan.mo index 0d2a1665775e0ac640e6983fe70b156d7eee832b..ba1b8e6f193101f0182b8c6b8b02245dfe0bf4c5 100644 GIT binary patch delta 8182 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 delta 7926 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 GeGLHJ#}Re_ delta 51 zcmV-30L=gD=LG8K1hBfU6eNKZOVNh?}UPDQiNu0a6=HZCvO~kB80MEUGMEDCEkK$DNWTKoTY>a@AkEImz_7H8kzq2BzqXu_ z;X06ZtYBo=4WuP285#Zq>8n6`Cy1_MWXJ{5{nd;NwLtnWkY)zb)isO^6M=L+kOrAA zSj))352VFv8O6W?YCr*ygf^5m*sN(iu~^i|z|cb1z*yJFT*1)9%FtBX00=gpU$>Ew z#aPdTYqE}Y&gKsrHXKn*Nvy0@sLsvLE6D)Tm8pqEwG7qBf|K{IHs3B^#%Rk90G41r AZ2$lO delta 308 zcmdn`i}lVg)(umv>J=Fn80MEUGWY}OgFu=ENDG!RGHeCXVnCXmk%8e1ke&?WUnyr~ zxDKQhjpu~;l&FW7@Alanra&W!RGVp(ixeJ^-MNfZir|A0AUFZ AzW@LL delta 45 zcmbREkY(aSmJPesiAK6Q2I>0x>$*59c=%iSdTK}c`?+pDzb>7T*-X!1v*m_}1^|eI B5LW;I diff --git a/ckan/i18n/sq/LC_MESSAGES/ckan.mo b/ckan/i18n/sq/LC_MESSAGES/ckan.mo index 4e2644827ade067a2b64687ae34a4c2442985873..3dfd008f63433dca71f6419008e12b239d2e7a33 100644 GIT binary patch delta 45 zcmbR9lV#3NmJPesi5eLgTId=W>l&FW7@Alanra&W!RGVpj2M}X^-MOiY?#pl0BSD| A=Kufz delta 45 zcmbR9lV#3NmJPesiAK6Q2I>0x>$*59c=%iSdTK}c`?+pDzs`t}*-X!1Gs}hl&FW7@Alanra&W!RGVpsu`J$^-MPVZg|rL0C)Hg A{{R30 delta 45 zcmdn_jb-OImJPesiAK6Q2I>0x>$*59c=%iSdTK}c`?+pDzpk2**-X!1v+ssCT>zhQ B5tje} diff --git a/ckan/i18n/sr_Latn/LC_MESSAGES/ckan.mo b/ckan/i18n/sr_Latn/LC_MESSAGES/ckan.mo index 857d51c525604e773a13cd70668ba457e5c7421f..f4cdb17870768298cab734c221b33ed3e64ceb0b 100644 GIT binary patch delta 7682 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 delta 7683 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 diff --git a/ckan/i18n/sv/LC_MESSAGES/ckan.mo b/ckan/i18n/sv/LC_MESSAGES/ckan.mo index 6122af5aa709b9ad6ab4ffd710ec7951ca28e94c..9c615a2e7f1bab4dc888722156cfbc329954b1bf 100644 GIT binary patch delta 7749 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 AeNKZOVNh?}UPDQiNt|$QmHZCx;`me6+ Dg%%Nf diff --git a/ckan/i18n/tl/LC_MESSAGES/ckan.mo b/ckan/i18n/tl/LC_MESSAGES/ckan.mo index 04586793301846d688c0b013d5fbb9db8f34835c..a70dd2bf9617d0e9b3fb7be91510c369d4889dea 100644 GIT binary patch delta 24 gcmcbAjOG3@mJQ4sSd8^dxHjupm&l&FW7@Alanra&W!RGVp3>aCA^-Q=n>sUvMZH_tS G69)jbR}dut delta 51 zcmZ2+l4Zq7mJPesiAK6Q2I>0x>$*59c=%iSdTK}c`?+pDzs`V>#Z1qDYqO4Zq}b+| HV?J>J=3x=N diff --git a/ckan/i18n/uk/LC_MESSAGES/ckan.mo b/ckan/i18n/uk/LC_MESSAGES/ckan.mo index a918ffb3b56c83b87a97299f8844ce650cc9a327..c152593654a8d27fdd68b7baf11d6023a6712fa0 100644 GIT binary patch delta 55 zcmZp<%F=R`Wy7v@qDBUW7PeNKZOVNh?}UPDQiNt`PzRHZCvl&FW7@Alanra&W!RGVp6q%Tf^-MN@-f;dt0A5oM A@Bjb+ delta 45 zcmV+|0Mh@$p$5XC2C%xW6eNKZOVNh?}UPDQiNt|0;gHZCx;^RUm~ Dh0PI& diff --git a/ckan/i18n/vi/LC_MESSAGES/ckan.mo b/ckan/i18n/vi/LC_MESSAGES/ckan.mo index fd915c459fc50a9dff850e22ccb0a05a75376b79..799065e2f67ea8c16df9b1f87542dd385b976f1b 100644 GIT binary patch delta 45 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 nuKlN$$?ZBf&S+mVvva35Q}!*Pi)yE^dyCI#eN diff --git a/ckan/i18n/zh_TW/LC_MESSAGES/ckan.mo b/ckan/i18n/zh_TW/LC_MESSAGES/ckan.mo index 429f2558fa0658cd871fb7348c408ba27c51dd47..d9e948bc6556039c54b25ec44cdfd0cf650fe33d 100644 GIT binary patch delta 8899 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 delta 8180 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 From ff73bea343b63f4ca08cd7dc1971c45445518593 Mon Sep 17 00:00:00 2001 From: amercader Date: Tue, 11 Dec 2018 14:14:34 +0100 Subject: [PATCH 32/36] Rebuild frontend --- ckan/public/base/javascript/modules/autocomplete.min.js | 2 +- ckan/public/base/javascript/plugins/jquery.slug-preview.min.js | 2 +- ckan/public/base/test/spec/modules/autocomplete.spec.min.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ckan/public/base/javascript/modules/autocomplete.min.js b/ckan/public/base/javascript/modules/autocomplete.min.js index daf775964c7..06219fb530b 100644 --- a/ckan/public/base/javascript/modules/autocomplete.min.js +++ b/ckan/public/base/javascript/modules/autocomplete.min.js @@ -6,4 +6,4 @@ $('.select2-choice',select2.container).on('click',function(){return false;});thi module._last=module.getCompletions(term,fn);},this.options.interval);$('.select2-search input',this._select2.dropdown).addClass('select2-active');}},formatResult:function(state,container,query){var term=this._lastTerm||null;if(container){container.attr('data-value',state.id);} return state.text.split(term).join(term&&term.bold());},formatNoMatches:function(term){return!term?this._('Start typing…'):this._('No matches found');},formatInputTooShort:function(term,min){return this.ngettext('Input is too short, must be at least one character','Input is too short, must be at least %(num)d characters',min);},formatTerm:function(term){term=jQuery.trim(term||'');return{id:term.replace(/,/g,'\u002C'),text:term};},formatInitialValue:function(element,callback){var value=jQuery.trim(element.val()||'');var formatted;if(this.options.tags){formatted=jQuery.map(value.split(","),this.formatTerm);}else{formatted=this.formatTerm(value);} if(typeof callback==='function'){callback(formatted);} -return formatted;},_onQuery:function(options){if(options){this.lookup(options.term,options.callback);}},_onKeydown:function(event){if(event.which===188){event.preventDefault();setTimeout(function(){var e=jQuery.Event("keydown",{which:13});jQuery(event.target).trigger(e);},10);}}};}); \ No newline at end of file +return formatted;},_onQuery:function(options){if(options){this.lookup(options.term,options.callback);}},_onKeydown:function(event){if(typeof event.key!=='undefined'?event.key===',':event.which===188){event.preventDefault();setTimeout(function(){var e=jQuery.Event("keydown",{which:13});jQuery(event.target).trigger(e);},10);}}};}); \ No newline at end of file diff --git a/ckan/public/base/javascript/plugins/jquery.slug-preview.min.js b/ckan/public/base/javascript/plugins/jquery.slug-preview.min.js index cd4398bd45d..e92c623127d 100644 --- a/ckan/public/base/javascript/plugins/jquery.slug-preview.min.js +++ b/ckan/public/base/javascript/plugins/jquery.slug-preview.min.js @@ -1,3 +1,3 @@ (function($,window){var escape=$.url.escape;function slugPreview(options){options=$.extend(true,slugPreview.defaults,options||{});var collected=this.map(function(){var element=$(this);var field=element.find('input');var preview=$(options.template);var value=preview.find('.slug-preview-value');var required=$('
').append($('.control-required',element).clone()).html();function setValue(){var val=escape(field.val())||options.placeholder;value.text(val);} preview.find('strong').html(required+' '+options.i18n['URL']+':');preview.find('.slug-preview-prefix').text(options.prefix);preview.find('button').text(options.i18n['Edit']).click(function(event){event.preventDefault();element.show();preview.hide();});setValue();field.on('change',setValue);element.after(preview).hide();return preview[0];});return this.pushStack(collected);} -slugPreview.defaults={prefix:'',placeholder:'',i18n:{'URL':'URL','Edit':'Edit'},template:['
','','','','
'].join('\n')};$.fn.slugPreview=slugPreview;})(this.jQuery,this); \ No newline at end of file +slugPreview.defaults={prefix:'',placeholder:'',i18n:{'URL':'URL','Edit':'Edit'},template:['
','','','','
'].join('\n')};$.fn.slugPreview=slugPreview;})(this.jQuery,this); \ No newline at end of file diff --git a/ckan/public/base/test/spec/modules/autocomplete.spec.min.js b/ckan/public/base/test/spec/modules/autocomplete.spec.min.js index 71607121392..8c989d5bef3 100644 --- a/ckan/public/base/test/spec/modules/autocomplete.spec.min.js +++ b/ckan/public/base/test/spec/modules/autocomplete.spec.min.js @@ -1,2 +1,2 @@ describe('ckan.modules.AutocompleteModule()',function(){var Autocomplete=ckan.module.registry['autocomplete'];beforeEach(function(){if(jQuery.fn.select2){this.select2=sinon.stub(jQuery.fn,'select2');}else{this.select2=jQuery.fn.select2=sinon.stub().returns({data:sinon.stub().returns({on:sinon.stub()})});} -this.el=document.createElement('input');this.sandbox=ckan.sandbox();this.sandbox.body=this.fixture;this.module=new Autocomplete(this.el,{},this.sandbox);});afterEach(function(){this.module.teardown();if(this.select2.restore){this.select2.restore();}else{delete jQuery.fn.select2;}});describe('.initialize()',function(){it('should bind callback methods to the module',function(){var target=sinon.stub(jQuery,'proxyAll');this.module.initialize();assert.called(target);assert.calledWith(target,this.module,/_on/,/format/);target.restore();});it('should setup the autocomplete plugin',function(){var target=sinon.stub(this.module,'setupAutoComplete');this.module.initialize();assert.called(target);});});describe('.setupAutoComplete()',function(){it('should initialize the autocomplete plugin',function(){this.module.setupAutoComplete();assert.called(this.select2);assert.calledWith(this.select2,{width:'resolve',query:this.module._onQuery,dropdownCssClass:'',containerCssClass:'',formatResult:this.module.formatResult,formatNoMatches:this.module.formatNoMatches,formatInputTooShort:this.module.formatInputTooShort,createSearchChoice:this.module.formatTerm,initSelection:this.module.formatInitialValue});});it('should initialize the autocomplete plugin with a tags callback if options.tags is true',function(){this.module.options.tags=true;this.module.setupAutoComplete();assert.called(this.select2);assert.calledWith(this.select2,{width:'resolve',tags:this.module._onQuery,dropdownCssClass:'',containerCssClass:'',formatResult:this.module.formatResult,formatNoMatches:this.module.formatNoMatches,formatInputTooShort:this.module.formatInputTooShort,initSelection:this.module.formatInitialValue});it('should watch the keydown event on the select2 input');it('should allow a custom css class to be added to the dropdown',function(){this.module.options.dropdownClass='tags';this.module.setupAutoComplete();assert.called(this.select2);assert.calledWith(this.select2,{width:'resolve',tags:this.module._onQuery,dropdownCssClass:'tags',containerCssClass:'',formatResult:this.module.formatResult,formatNoMatches:this.module.formatNoMatches,formatInputTooShort:this.module.formatInputTooShort,initSelection:this.module.formatInitialValue});});it('should allow a custom css class to be added to the container',function(){this.module.options.containerClass='tags';this.module.setupAutoComplete();assert.called(this.select2);assert.calledWith(this.select2,{width:'resolve',tags:this.module._onQuery,dropdownCssClass:'',containerCssClass:'tags',formatResult:this.module.formatResult,formatNoMatches:this.module.formatNoMatches,formatInputTooShort:this.module.formatInputTooShort,initSelection:this.module.formatInitialValue});});});});describe('.getCompletions(term, fn)',function(){beforeEach(function(){this.term='term';this.module.options.source='http://example.com?term=?';this.target=sinon.stub(this.sandbox.client,'getCompletions');});it('should get the completions from the client',function(){this.module.getCompletions(this.term);assert.called(this.target);});it('should replace the last ? in the source url with the term',function(){this.module.getCompletions(this.term);assert.calledWith(this.target,'http://example.com?term=term');});it('should escape special characters in the term',function(){this.module.getCompletions('term with spaces');assert.calledWith(this.target,'http://example.com?term=term%20with%20spaces');});});describe('.lookup(term, fn)',function(){beforeEach(function(){sinon.stub(this.module,'getCompletions');this.target=sinon.spy();this.module.setupAutoComplete();});it('should set the _lastTerm property',function(){this.module.lookup('term',this.target);assert.equal(this.module._lastTerm,'term');});it('should call the fn immediately if there is no term',function(){this.module.lookup('',this.target);assert.called(this.target);assert.calledWith(this.target,{results:[]});});it('should debounce the request if there is a term');it('should cancel the last request');});describe('.formatResult(state)',function(){beforeEach(function(){this.module._lastTerm='term';});it('should return the string with the last term wrapped in bold tags',function(){var target=this.module.formatResult({id:'we have termites',text:'we have termites'});assert.equal(target,'we have termites');});it('should return the string with each instance of the term wrapped in bold tags',function(){var target=this.module.formatResult({id:'we have a termite terminology',text:'we have a termite terminology'});assert.equal(target,'we have a termite terminology');});it('should return the term if there is no last term saved',function(){delete this.module._lastTerm;var target=this.module.formatResult({id:'we have a termite terminology',text:'we have a termite terminology'});assert.equal(target,'we have a termite terminology');});});describe('.formatNoMatches(term)',function(){it('should return the no matches string if there is a term',function(){var target=this.module.formatNoMatches('term');assert.equal(target,'No matches found');});it('should return the empty string if there is no term',function(){var target=this.module.formatNoMatches('');assert.equal(target,'Start typing…');});});describe('.formatInputTooShort(term, min)',function(){it('should return the plural input too short string',function(){var target=this.module.formatInputTooShort('term',2);assert.equal(target,'Input is too short, must be at least 2 characters');});it('should return the singular input too short string',function(){var target=this.module.formatInputTooShort('term',1);assert.equal(target,'Input is too short, must be at least one character');});});describe('.formatTerm()',function(){it('should return an item object with id and text properties',function(){assert.deepEqual(this.module.formatTerm('test'),{id:'test',text:'test'});});it('should trim whitespace from the value',function(){assert.deepEqual(this.module.formatTerm(' test '),{id:'test',text:'test'});});it('should convert commas in ids into unicode characters',function(){assert.deepEqual(this.module.formatTerm('test, test'),{id:'test\u002C test',text:'test, test'});});});describe('.formatInitialValue(element, callback)',function(){beforeEach(function(){this.callback=sinon.spy();});it('should pass an item object with id and text properties into the callback',function(){var target=jQuery('');this.module.formatInitialValue(target,this.callback);assert.calledWith(this.callback,{id:'test',text:'test'});});it('should pass an array of properties into the callback if options.tags is true',function(){this.module.options.tags=true;var target=jQuery('',{value:"test, test"});this.module.formatInitialValue(target,this.callback);assert.calledWith(this.callback,[{id:'test',text:'test'},{id:'test',text:'test'}]);});it('should return the value if no callback is provided (to support select2 v2.1)',function(){var target=jQuery('');assert.deepEqual(this.module.formatInitialValue(target),{id:'test',text:'test'});});});describe('._onQuery(options)',function(){it('should lookup the current term with the callback',function(){var target=sinon.stub(this.module,'lookup');this.module._onQuery({term:'term',callback:'callback'});assert.called(target);assert.calledWith(target,'term','callback');});it('should do nothing if there is no options object',function(){var target=sinon.stub(this.module,'lookup');this.module._onQuery();assert.notCalled(target);});});describe('._onKeydown(event)',function(){beforeEach(function(){this.keyDownEvent=jQuery.Event("keydown",{which:188});this.fakeEvent={};this.clock=sinon.useFakeTimers();this.jQuery=sinon.stub(jQuery.fn,'init',jQuery.fn.init);this.Event=sinon.stub(jQuery,'Event').returns(this.fakeEvent);this.trigger=sinon.stub(jQuery.fn,'trigger');});afterEach(function(){this.clock.restore();this.jQuery.restore();this.Event.restore();this.trigger.restore();});it('should trigger fake "return" keypress if a comma is pressed',function(){this.module._onKeydown(this.keyDownEvent);this.clock.tick(100);assert.called(this.jQuery);assert.called(this.Event);assert.called(this.trigger);assert.calledWith(this.trigger,this.fakeEvent);});it('should do nothing if another key is pressed',function(){this.keyDownEvent.which=200;this.module._onKeydown(this.keyDownEvent);this.clock.tick(100);assert.notCalled(this.Event);});});}); \ No newline at end of file +this.el=document.createElement('input');this.sandbox=ckan.sandbox();this.sandbox.body=this.fixture;this.module=new Autocomplete(this.el,{},this.sandbox);});afterEach(function(){this.module.teardown();if(this.select2.restore){this.select2.restore();}else{delete jQuery.fn.select2;}});describe('.initialize()',function(){it('should bind callback methods to the module',function(){var target=sinon.stub(jQuery,'proxyAll');this.module.initialize();assert.called(target);assert.calledWith(target,this.module,/_on/,/format/);target.restore();});it('should setup the autocomplete plugin',function(){var target=sinon.stub(this.module,'setupAutoComplete');this.module.initialize();assert.called(target);});});describe('.setupAutoComplete()',function(){it('should initialize the autocomplete plugin',function(){this.module.setupAutoComplete();assert.called(this.select2);assert.calledWith(this.select2,{width:'resolve',query:this.module._onQuery,dropdownCssClass:'',containerCssClass:'',formatResult:this.module.formatResult,formatNoMatches:this.module.formatNoMatches,formatInputTooShort:this.module.formatInputTooShort,createSearchChoice:this.module.formatTerm,initSelection:this.module.formatInitialValue});});it('should initialize the autocomplete plugin with a tags callback if options.tags is true',function(){this.module.options.tags=true;this.module.setupAutoComplete();assert.called(this.select2);assert.calledWith(this.select2,{width:'resolve',tags:this.module._onQuery,dropdownCssClass:'',containerCssClass:'',formatResult:this.module.formatResult,formatNoMatches:this.module.formatNoMatches,formatInputTooShort:this.module.formatInputTooShort,initSelection:this.module.formatInitialValue});it('should watch the keydown event on the select2 input');it('should allow a custom css class to be added to the dropdown',function(){this.module.options.dropdownClass='tags';this.module.setupAutoComplete();assert.called(this.select2);assert.calledWith(this.select2,{width:'resolve',tags:this.module._onQuery,dropdownCssClass:'tags',containerCssClass:'',formatResult:this.module.formatResult,formatNoMatches:this.module.formatNoMatches,formatInputTooShort:this.module.formatInputTooShort,initSelection:this.module.formatInitialValue});});it('should allow a custom css class to be added to the container',function(){this.module.options.containerClass='tags';this.module.setupAutoComplete();assert.called(this.select2);assert.calledWith(this.select2,{width:'resolve',tags:this.module._onQuery,dropdownCssClass:'',containerCssClass:'tags',formatResult:this.module.formatResult,formatNoMatches:this.module.formatNoMatches,formatInputTooShort:this.module.formatInputTooShort,initSelection:this.module.formatInitialValue});});});});describe('.getCompletions(term, fn)',function(){beforeEach(function(){this.term='term';this.module.options.source='http://example.com?term=?';this.target=sinon.stub(this.sandbox.client,'getCompletions');});it('should get the completions from the client',function(){this.module.getCompletions(this.term);assert.called(this.target);});it('should replace the last ? in the source url with the term',function(){this.module.getCompletions(this.term);assert.calledWith(this.target,'http://example.com?term=term');});it('should escape special characters in the term',function(){this.module.getCompletions('term with spaces');assert.calledWith(this.target,'http://example.com?term=term%20with%20spaces');});});describe('.lookup(term, fn)',function(){beforeEach(function(){sinon.stub(this.module,'getCompletions');this.target=sinon.spy();this.module.setupAutoComplete();});it('should set the _lastTerm property',function(){this.module.lookup('term',this.target);assert.equal(this.module._lastTerm,'term');});it('should call the fn immediately if there is no term',function(){this.module.lookup('',this.target);assert.called(this.target);assert.calledWith(this.target,{results:[]});});it('should debounce the request if there is a term');it('should cancel the last request');});describe('.formatResult(state)',function(){beforeEach(function(){this.module._lastTerm='term';});it('should return the string with the last term wrapped in bold tags',function(){var target=this.module.formatResult({id:'we have termites',text:'we have termites'});assert.equal(target,'we have termites');});it('should return the string with each instance of the term wrapped in bold tags',function(){var target=this.module.formatResult({id:'we have a termite terminology',text:'we have a termite terminology'});assert.equal(target,'we have a termite terminology');});it('should return the term if there is no last term saved',function(){delete this.module._lastTerm;var target=this.module.formatResult({id:'we have a termite terminology',text:'we have a termite terminology'});assert.equal(target,'we have a termite terminology');});});describe('.formatNoMatches(term)',function(){it('should return the no matches string if there is a term',function(){var target=this.module.formatNoMatches('term');assert.equal(target,'No matches found');});it('should return the empty string if there is no term',function(){var target=this.module.formatNoMatches('');assert.equal(target,'Start typing…');});});describe('.formatInputTooShort(term, min)',function(){it('should return the plural input too short string',function(){var target=this.module.formatInputTooShort('term',2);assert.equal(target,'Input is too short, must be at least 2 characters');});it('should return the singular input too short string',function(){var target=this.module.formatInputTooShort('term',1);assert.equal(target,'Input is too short, must be at least one character');});});describe('.formatTerm()',function(){it('should return an item object with id and text properties',function(){assert.deepEqual(this.module.formatTerm('test'),{id:'test',text:'test'});});it('should trim whitespace from the value',function(){assert.deepEqual(this.module.formatTerm(' test '),{id:'test',text:'test'});});it('should convert commas in ids into unicode characters',function(){assert.deepEqual(this.module.formatTerm('test, test'),{id:'test\u002C test',text:'test, test'});});});describe('.formatInitialValue(element, callback)',function(){beforeEach(function(){this.callback=sinon.spy();});it('should pass an item object with id and text properties into the callback',function(){var target=jQuery('');this.module.formatInitialValue(target,this.callback);assert.calledWith(this.callback,{id:'test',text:'test'});});it('should pass an array of properties into the callback if options.tags is true',function(){this.module.options.tags=true;var target=jQuery('',{value:"test, test"});this.module.formatInitialValue(target,this.callback);assert.calledWith(this.callback,[{id:'test',text:'test'},{id:'test',text:'test'}]);});it('should return the value if no callback is provided (to support select2 v2.1)',function(){var target=jQuery('');assert.deepEqual(this.module.formatInitialValue(target),{id:'test',text:'test'});});});describe('._onQuery(options)',function(){it('should lookup the current term with the callback',function(){var target=sinon.stub(this.module,'lookup');this.module._onQuery({term:'term',callback:'callback'});assert.called(target);assert.calledWith(target,'term','callback');});it('should do nothing if there is no options object',function(){var target=sinon.stub(this.module,'lookup');this.module._onQuery();assert.notCalled(target);});});describe('._onKeydown(event)',function(){beforeEach(function(){this.keyDownEvent=jQuery.Event("keydown",{key:',',which:188});this.fakeEvent={};this.clock=sinon.useFakeTimers();this.jQuery=sinon.stub(jQuery.fn,'init',jQuery.fn.init);this.Event=sinon.stub(jQuery,'Event').returns(this.fakeEvent);this.trigger=sinon.stub(jQuery.fn,'trigger');});afterEach(function(){this.clock.restore();this.jQuery.restore();this.Event.restore();this.trigger.restore();});it('should trigger fake "return" keypress if a comma is pressed',function(){this.module._onKeydown(this.keyDownEvent);this.clock.tick(100);assert.called(this.jQuery);assert.called(this.Event);assert.called(this.trigger);assert.calledWith(this.trigger,this.fakeEvent);});it('should do nothing if another key is pressed',function(){this.keyDownEvent.key='╚';this.keyDownEvent.which=200;this.module._onKeydown(this.keyDownEvent);this.clock.tick(100);assert.notCalled(this.Event);});it('should do nothing if key is pressed which has the comma key-code but is not a comma',function(){this.keyDownEvent.key='ת';this.keyDownEvent.which=188;this.module._onKeydown(this.keyDownEvent);this.clock.tick(100);assert.notCalled(this.Event);});});}); \ No newline at end of file From bbdfb97f413365b865101230eaa81722a8e4f6ae Mon Sep 17 00:00:00 2001 From: Konstantin Sivakov Date: Tue, 11 Dec 2018 18:43:19 +0100 Subject: [PATCH 33/36] Update version number for release 2.8.2 --- ckan/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ckan/__init__.py b/ckan/__init__.py index 393cc931ed2..c9d13070c4f 100644 --- a/ckan/__init__.py +++ b/ckan/__init__.py @@ -1,6 +1,6 @@ # encoding: utf-8 -__version__ = '2.8.2b' +__version__ = '2.8.2' __description__ = 'CKAN Software' __long_description__ = \ From 46ea3818d5c6ecfb8bfb29e14d07d70b6ff393b8 Mon Sep 17 00:00:00 2001 From: amercader Date: Wed, 12 Dec 2018 11:21:27 +0100 Subject: [PATCH 34/36] Update changelog for 2.8.2 --- CHANGELOG.rst | 40 ++++++++++++++++++++++------------------ 1 file changed, 22 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d361c7796c0..0582b215b76 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -7,26 +7,30 @@ Changelog --------- -v.2.9.0 TBA + +v.2.8.2 2018-12-12 ================== -Deprecations: - * ``c.action`` and ``c.controller`` variables should be avoided. - ``ckan.plugins.toolkit.get_endpoint`` can be used instead. This function - returns tuple of two items(depending on request handler): - 1. Flask blueprint name / Pylons controller name - 2. Flask view name / Pylons action name - In some cases, Flask blueprints have names that are differs from their - Pylons equivalents. For example, 'package' controller is divided between - 'dataset' and 'resource' blueprints. For such cases you may need to perform - additional check of returned value: - - >>> if toolkit.get_endpoint()[0] in ['dataset', 'package']: - >>> do_something() - - In this code snippet, will be called if current request is handled via Flask's - dataset blueprint in CKAN>=2.9, and, in the same time, it's still working for - Pylons package controller in CKAN<2.9 +General notes: + * This version requires a requirements upgrade on source installations + * Note: This version does not requires a database upgrade + * Note: This version does not require a Solr schema upgrade + +Fixes: + +* Strip full URL on uploaded resources before saving to DB (`#4382 `_) +* Fix user not being defined in check_access function (`#4574 `_) +* Remove html5 shim from stats extension (`#4236 `_) +* Fix for datastore_search distinct=true option (`#4236 `_) +* Fix edit slug button (`#4379 `_) +* Don't re-register plugin helpers on flask_app (`#4414 `_) +* Fix for Resouce View Re-order (`#4416 `_) +* autocomplete.js: fix handling of comma key codes (`#4421 `_) +* Flask patch update (`#4426 `_) +* Allow plugins to define multiple blueprints (`#4495 `_) +* Fix i18n API encoding (`#4505 `_) +* Allow to defined legacy route mappings as a dict in config (`#4521 `_) +* group_patch does not reset packages (`#4557 `_) v.2.8.1 2018-07-25 ================== From 06aa49d1dd0723d344bf8d0c8c27ecb781c248bc Mon Sep 17 00:00:00 2001 From: Konstantin Sivakov Date: Wed, 12 Dec 2018 12:53:45 +0100 Subject: [PATCH 35/36] Update changelog for 2.8.2 --- CHANGELOG.rst | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0582b215b76..29d0e87aec9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -176,6 +176,27 @@ Changes and deprecations: of course use Celery but they will need to handle the management themselves. * The ``ckan.recaptcha.version`` config option is now removed, since v2 is the only valid version now (#4061) +v2.7.5 2018-12-12 +================= + + * Strip full URL on uploaded resources before saving to DB (`#4382 `_) + * Fix for datastore_search distinct=true option (`#4236 `_) + * Fix edit slug button (`#4379 `_) + * Don't re-register plugin helpers on flask_app (`#4414 `_) + * Fix for Resouce View Re-order (`#4416 `_) + * autocomplete.js: fix handling of comma key codes (`#4421 `_) + * Flask patch update (`#4426 `_) + * Allow plugins to define multiple blueprints (`#4495 `_) + * Fix i18n API encoding (`#4505 `_) + * Allow to defined legacy route mappings as a dict in config (`#4521 `_) + * group_patch does not reset packages (`#4557 `_) + +v2.7.4 2018-05-09 +================= + + * Adding filter at resoruce preview doesn't work while site is setup with ckan.root_path param (#4140) + * Datastore dump results are not the same as data in database (#4150) + v2.7.3 2018-03-15 ================= From aa1442cdea0d414a314285151d265b7f719bed81 Mon Sep 17 00:00:00 2001 From: Konstantin Sivakov Date: Wed, 12 Dec 2018 13:04:46 +0100 Subject: [PATCH 36/36] Update changelog for 2.8.2 --- CHANGELOG.rst | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 29d0e87aec9..f2e0d63cbf6 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -374,6 +374,20 @@ Deprecations: jobs (http://docs.ckan.org/en/latest/maintaining/background-tasks.html). Extensions can still of course use Celery but they will need to handle the management themselves. +v2.6.7 2018-12-12 +================= + + * Fix for Resouce View Re-order (`#4416 `_) + * autocomplete.js: fix handling of comma key codes (`#4421 `_) + * group_patch does not reset packages (`#4557 `_) + +v2.6.6 2018-05-09 +================= + +* Adding filter at resoruce preview doesn't work while site is setup with ckan.root_path param (#4140) +* Stable version URLs CKAN for documentation (#4209) +* Add Warning in docs sidebar (#4209) + v2.6.5 2018-03-15 =================