Skip to content

Commit 8d6af77

Browse files
DelazJ3nids
authored andcommittedJul 2, 2017
Replace catalogue by catalog
1 parent f691890 commit 8d6af77

File tree

10 files changed

+16
-16
lines changed

10 files changed

+16
-16
lines changed
 

‎python/plugins/MetaSearch/dialogs/maindialog.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#
99
# CSW Client
1010
# ---------------------------------------------------------
11-
# QGIS Catalogue Service client.
11+
# QGIS Catalog Service client.
1212
#
1313
# Copyright (C) 2010 NextGIS (http://nextgis.org),
1414
# Alexander Bruy (alexander.bruy@gmail.com),
@@ -297,7 +297,7 @@ def add_connection(self):
297297
"""add new service"""
298298

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

312312
conn_edit = NewConnectionDialog(current_text)
313-
conn_edit.setWindowTitle(self.tr('Edit Catalogue service'))
313+
conn_edit.setWindowTitle(self.tr('Edit Catalog service'))
314314
conn_edit.leName.setText(current_text)
315315
conn_edit.leURL.setText(url)
316316
conn_edit.leUsername.setText(self.settings.value('/MetaSearch/%s/username' % current_text))
@@ -447,7 +447,7 @@ def search(self):
447447
self.settings.setValue('/MetaSearch/returnRecords',
448448
self.spnRecords.cleanText())
449449

450-
# set current catalogue
450+
# set current catalog
451451
current_text = self.cmbConnectionsSearch.currentText()
452452
key = '/MetaSearch/%s' % current_text
453453
self.catalog_url = self.settings.value('%s/url' % key)

‎python/plugins/MetaSearch/dialogs/manageconnectionsdialog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# CSW Client
55
# ---------------------------------------------------------
6-
# QGIS Catalogue Service client.
6+
# QGIS Catalog Service client.
77
#
88
# Copyright (C) 2010 NextGIS (http://nextgis.org),
99
# Alexander Bruy (alexander.bruy@gmail.com),

‎python/plugins/MetaSearch/dialogs/newconnectiondialog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# CSW Client
55
# ---------------------------------------------------------
6-
# QGIS Catalogue Service client.
6+
# QGIS Catalog Service client.
77
#
88
# Copyright (C) 2010 NextGIS (http://nextgis.org),
99
# Alexander Bruy (alexander.bruy@gmail.com),

‎python/plugins/MetaSearch/dialogs/recorddialog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# CSW Client
55
# ---------------------------------------------------------
6-
# QGIS Catalogue Service client.
6+
# QGIS Catalog Service client.
77
#
88
# Copyright (C) 2010 NextGIS (http://nextgis.org),
99
# Alexander Bruy (alexander.bruy@gmail.com),

‎python/plugins/MetaSearch/dialogs/xmldialog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# CSW Client
55
# ---------------------------------------------------------
6-
# QGIS Catalogue Service client.
6+
# QGIS Catalog Service client.
77
#
88
# Copyright (C) 2014 Tom Kralidis (tomkralidis@gmail.com)
99
#

‎python/plugins/MetaSearch/link_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
###############################################################################
33
#
4-
# MetaSearch Catalogue Client
4+
# MetaSearch Catalog Client
55
#
66
# Copyright (C) 2014 Tom Kralidis (tomkralidis@gmail.com)
77
#

‎python/plugins/MetaSearch/metadata.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[general]
2-
name=MetaSearch Catalogue Client
3-
description=MetaSearch is a QGIS plugin to interact with metadata catalogue services (CSW).
4-
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.
2+
name=MetaSearch Catalog Client
3+
description=MetaSearch is a QGIS plugin to interact with metadata catalog services (CSW).
4+
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.
55
category=Web
66
version=0.3.5
77
qgisMinimumVersion=2.14
88
icon=images/MetaSearch.png
99
author=Tom Kralidis
1010
email=tomkralidis@gmail.com
11-
tags=web,catalogue,service,metadata,csw
11+
tags=web,catalog,service,metadata,csw
1212
homepage=http://qgis.org/
1313
tracker=https://issues.qgis.org/projects/qgis/issues?category_id=107&set_filter=1&status_id=o
1414
repository=https://github.com/qgis/QGIS/tree/master/python/plugins/MetaSearch

‎python/plugins/MetaSearch/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def initGui(self):
6262
self.action_run.setWhatsThis(QCoreApplication.translate('MetaSearch',
6363
'MetaSearch plugin'))
6464
self.action_run.setStatusTip(QCoreApplication.translate('MetaSearch',
65-
'Search Metadata Catalogues'))
65+
'Search Metadata Catalogs'))
6666

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

‎python/plugins/MetaSearch/resources/connections-default.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<!-- Guidance: https://docs.qgis.org/2.18/en/docs/user_manual/plugins/plugins_metasearch.html#managing-catalogue-services -->
2+
<!-- Guidance: https://docs.qgis.org/2.18/en/docs/user_manual/plugins/plugins_metasearch.html#managing-catalog-services -->
33
<qgsCSWConnections version="1.0">
44
<csw name="USA: Data.gov CSW" url="https://catalog.data.gov/csw-all"/>
55
<csw name="Danmark: National CSW" url="http://www.geodata-info.dk/registrant/srv/en/csw"/>

‎python/plugins/MetaSearch/ui/newconnectiondialog.ui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</rect>
1212
</property>
1313
<property name="windowTitle">
14-
<string>Create a new Catalogue connection</string>
14+
<string>Create a new Catalog connection</string>
1515
</property>
1616
<layout class="QGridLayout" name="gridLayout">
1717
<item row="2" column="2">

0 commit comments

Comments
 (0)
Please sign in to comment.