Skip to content

Commit

Permalink
Replace catalogue by catalog
Browse files Browse the repository at this point in the history
  • Loading branch information
DelazJ authored and 3nids committed Jul 2, 2017
1 parent f691890 commit 8d6af77
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 16 deletions.
8 changes: 4 additions & 4 deletions python/plugins/MetaSearch/dialogs/maindialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#
# CSW Client
# ---------------------------------------------------------
# QGIS Catalogue Service client.
# QGIS Catalog Service client.
#
# Copyright (C) 2010 NextGIS (http://nextgis.org),
# Alexander Bruy (alexander.bruy@gmail.com),
Expand Down Expand Up @@ -297,7 +297,7 @@ def add_connection(self):
"""add new service"""

conn_new = NewConnectionDialog()
conn_new.setWindowTitle(self.tr('New Catalogue service'))
conn_new.setWindowTitle(self.tr('New Catalog service'))
if conn_new.exec_() == QDialog.Accepted: # add to service list
self.populate_connection_list()
self.textMetadata.clear()
Expand All @@ -310,7 +310,7 @@ def edit_connection(self):
url = self.settings.value('/MetaSearch/%s/url' % current_text)

conn_edit = NewConnectionDialog(current_text)
conn_edit.setWindowTitle(self.tr('Edit Catalogue service'))
conn_edit.setWindowTitle(self.tr('Edit Catalog service'))
conn_edit.leName.setText(current_text)
conn_edit.leURL.setText(url)
conn_edit.leUsername.setText(self.settings.value('/MetaSearch/%s/username' % current_text))
Expand Down Expand Up @@ -447,7 +447,7 @@ def search(self):
self.settings.setValue('/MetaSearch/returnRecords',
self.spnRecords.cleanText())

# set current catalogue
# set current catalog
current_text = self.cmbConnectionsSearch.currentText()
key = '/MetaSearch/%s' % current_text
self.catalog_url = self.settings.value('%s/url' % key)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# CSW Client
# ---------------------------------------------------------
# QGIS Catalogue Service client.
# QGIS Catalog Service client.
#
# Copyright (C) 2010 NextGIS (http://nextgis.org),
# Alexander Bruy (alexander.bruy@gmail.com),
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/MetaSearch/dialogs/newconnectiondialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# CSW Client
# ---------------------------------------------------------
# QGIS Catalogue Service client.
# QGIS Catalog Service client.
#
# Copyright (C) 2010 NextGIS (http://nextgis.org),
# Alexander Bruy (alexander.bruy@gmail.com),
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/MetaSearch/dialogs/recorddialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# CSW Client
# ---------------------------------------------------------
# QGIS Catalogue Service client.
# QGIS Catalog Service client.
#
# Copyright (C) 2010 NextGIS (http://nextgis.org),
# Alexander Bruy (alexander.bruy@gmail.com),
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/MetaSearch/dialogs/xmldialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# CSW Client
# ---------------------------------------------------------
# QGIS Catalogue Service client.
# QGIS Catalog Service client.
#
# Copyright (C) 2014 Tom Kralidis (tomkralidis@gmail.com)
#
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/MetaSearch/link_types.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
###############################################################################
#
# MetaSearch Catalogue Client
# MetaSearch Catalog Client
#
# Copyright (C) 2014 Tom Kralidis (tomkralidis@gmail.com)
#
Expand Down
8 changes: 4 additions & 4 deletions python/plugins/MetaSearch/metadata.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[general]
name=MetaSearch Catalogue Client
description=MetaSearch is a QGIS plugin to interact with metadata catalogue services (CSW).
about=MetaSearch is a QGIS plugin to interact with metadata catalogue services, supporting the OGC Catalogue Service for the Web (CSW) standard. MetaSearch provides an easy and intuitive approach and user-friendly interface to searching metadata catalogues within QGIS.
name=MetaSearch Catalog Client
description=MetaSearch is a QGIS plugin to interact with metadata catalog services (CSW).
about=MetaSearch is a QGIS plugin to interact with metadata catalog services, supporting the OGC Catalog Service for the Web (CSW) standard. MetaSearch provides an easy and intuitive approach and user-friendly interface to searching metadata catalogs within QGIS.
category=Web
version=0.3.5
qgisMinimumVersion=2.14
icon=images/MetaSearch.png
author=Tom Kralidis
email=tomkralidis@gmail.com
tags=web,catalogue,service,metadata,csw
tags=web,catalog,service,metadata,csw
homepage=http://qgis.org/
tracker=https://issues.qgis.org/projects/qgis/issues?category_id=107&set_filter=1&status_id=o
repository=https://github.com/qgis/QGIS/tree/master/python/plugins/MetaSearch
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/MetaSearch/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def initGui(self):
self.action_run.setWhatsThis(QCoreApplication.translate('MetaSearch',
'MetaSearch plugin'))
self.action_run.setStatusTip(QCoreApplication.translate('MetaSearch',
'Search Metadata Catalogues'))
'Search Metadata Catalogs'))

self.action_run.triggered.connect(self.run)

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Guidance: https://docs.qgis.org/2.18/en/docs/user_manual/plugins/plugins_metasearch.html#managing-catalogue-services -->
<!-- Guidance: https://docs.qgis.org/2.18/en/docs/user_manual/plugins/plugins_metasearch.html#managing-catalog-services -->
<qgsCSWConnections version="1.0">
<csw name="USA: Data.gov CSW" url="https://catalog.data.gov/csw-all"/>
<csw name="Danmark: National CSW" url="http://www.geodata-info.dk/registrant/srv/en/csw"/>
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/MetaSearch/ui/newconnectiondialog.ui
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</rect>
</property>
<property name="windowTitle">
<string>Create a new Catalogue connection</string>
<string>Create a new Catalog connection</string>
</property>
<layout class="QGridLayout" name="gridLayout">
<item row="2" column="2">
Expand Down

0 comments on commit 8d6af77

Please sign in to comment.