From 79da0b1abf5d407ce58369dc739f21db2a08dabb Mon Sep 17 00:00:00 2001 From: linaizhong Date: Tue, 8 Jul 2014 16:59:00 +1000 Subject: [PATCH 1/7] Add i18n support --- .idea/dataSources.xml | 14 + .idea/uiDesigner.xml | 125 ++ grails-app/i18n/messages.properties | 1321 +++++++++++++++ grails-app/i18n/messages_zh.properties | 1505 +++++++++++++++++ grails-app/i18n/messages_zh_CN.properties | 777 +++++++++ grails-app/views/admin/home.gsp | 80 +- grails-app/views/admin/index.gsp | 66 +- grails-app/views/admin/searchResults.gsp | 33 +- grails-app/views/auditLogEvent/list.gsp | 6 +- grails-app/views/auditLogEvent/show.gsp | 30 +- .../views/collection/_collectionList.gsp | 2 +- grails-app/views/collection/contacts.gsp | 22 +- grails-app/views/collection/description.gsp | 16 +- grails-app/views/collection/range.gsp | 33 +- grails-app/views/collection/show.gsp | 69 +- grails-app/views/contact/showProfile.gsp | 28 +- grails-app/views/data/catalogue.gsp | 296 ++-- grails-app/views/dataHub/description.gsp | 6 +- grails-app/views/dataHub/members.gsp | 6 +- grails-app/views/dataHub/show.gsp | 18 +- grails-app/views/dataProvider/description.gsp | 6 +- grails-app/views/dataProvider/show.gsp | 18 +- grails-app/views/dataResource/consumers.gsp | 14 +- .../views/dataResource/contribution.gsp | 18 +- grails-app/views/dataResource/description.gsp | 14 +- grails-app/views/dataResource/gbifUpload.gsp | 27 +- grails-app/views/dataResource/rights.gsp | 6 +- grails-app/views/dataResource/show.gsp | 76 +- grails-app/views/dataResource/upload.gsp | 14 +- grails-app/views/institution/description.gsp | 6 +- grails-app/views/institution/edit.gsp | 16 +- grails-app/views/institution/show.gsp | 16 +- .../views/manage/gbifCountryLoadStatus.gsp | 18 +- grails-app/views/manage/gbifLoadCountry.gsp | 27 +- grails-app/views/manage/index.gsp | 48 +- grails-app/views/manage/list.gsp | 193 +-- grails-app/views/manage/show.gsp | 102 +- grails-app/views/public/chart.gsp | 40 +- grails-app/views/public/dataSets.gsp | 32 +- grails-app/views/public/listInstitutions.gsp | 2 +- grails-app/views/public/map.gsp | 30 +- grails-app/views/public/map3.gsp | 34 +- grails-app/views/public/show.gsp | 89 +- grails-app/views/public/showDataHub.gsp | 35 +- grails-app/views/public/showDataProvider.gsp | 35 +- grails-app/views/public/showDataResource.gsp | 63 +- grails-app/views/public/showInstitution.gsp | 43 +- .../views/public/showTempDataResource.gsp | 5 +- grails-app/views/reports/activity.gsp | 22 +- grails-app/views/reports/attributions.gsp | 12 +- grails-app/views/reports/changes.gsp | 16 +- grails-app/views/reports/classification.gsp | 12 +- grails-app/views/reports/codes.gsp | 8 +- .../views/reports/collectionSpecimenData.gsp | 10 +- grails-app/views/reports/collectionTypes.gsp | 12 +- grails-app/views/reports/collections.gsp | 16 +- grails-app/views/reports/contacts.gsp | 16 +- .../views/reports/contactsForCollections.gsp | 6 +- .../reports/contactsForCouncilMembers.gsp | 18 +- .../views/reports/contactsForInstitutions.gsp | 6 +- grails-app/views/reports/data.gsp | 24 +- grails-app/views/reports/dataLinks.gsp | 12 +- .../views/reports/duplicateContacts.gsp | 17 +- grails-app/views/reports/harvesters.gsp | 16 +- grails-app/views/reports/index.gsp | 110 +- grails-app/views/reports/institutions.gsp | 20 +- grails-app/views/reports/map.gsp | 4 +- grails-app/views/reports/membership.gsp | 26 +- grails-app/views/reports/missingRecords.gsp | 10 +- .../views/reports/providerRecordsData.gsp | 10 +- grails-app/views/reports/providers.gsp | 14 +- grails-app/views/reports/resources.gsp | 8 +- grails-app/views/reports/rights.gsp | 22 +- grails-app/views/reports/show.gsp | 48 +- grails-app/views/reports/taxonomicHints.gsp | 8 +- grails-app/views/rifCs/index.gsp | 4 +- .../views/shared/_attributableImage.gsp | 4 +- grails-app/views/shared/_attributableLogo.gsp | 4 +- grails-app/views/shared/_attributions.gsp | 2 +- grails-app/views/shared/_changes.gsp | 10 +- grails-app/views/shared/_consumers.gsp | 13 +- grails-app/views/shared/_contacts.gsp | 2 +- grails-app/views/shared/_images.gsp | 8 +- grails-app/views/shared/_location.gsp | 2 +- grails-app/views/shared/_providers.gsp | 14 +- grails-app/views/shared/_taxonomyHints.gsp | 2 +- grails-app/views/shared/attributions.gsp | 8 +- grails-app/views/shared/base.gsp | 4 +- grails-app/views/shared/contactRole.gsp | 16 +- grails-app/views/shared/editTaxonomyHints.gsp | 10 +- grails-app/views/shared/images.gsp | 12 +- grails-app/views/shared/location.gsp | 14 +- grails-app/views/shared/providers.gsp | 10 +- grails-app/views/shared/showChanges.gsp | 22 +- grails-app/views/shared/showContacts.gsp | 24 +- grails-app/views/shared/taxonomicRange.gsp | 36 +- 96 files changed, 4936 insertions(+), 1268 deletions(-) create mode 100644 .idea/dataSources.xml create mode 100644 .idea/uiDesigner.xml create mode 100644 grails-app/i18n/messages_zh.properties diff --git a/.idea/dataSources.xml b/.idea/dataSources.xml new file mode 100644 index 00000000..f8f92ab7 --- /dev/null +++ b/.idea/dataSources.xml @@ -0,0 +1,14 @@ + + + + + mysql + com.mysql.jdbc.Driver + jdbc:mysql://localhost:3306/collectory?autoReconnect=true&connectTimeout=0 + root + dfdadfcbdfd9dfd9dfdddfc5dfd8dfce + + + + + diff --git a/.idea/uiDesigner.xml b/.idea/uiDesigner.xml new file mode 100644 index 00000000..3b000203 --- /dev/null +++ b/.idea/uiDesigner.xml @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/grails-app/i18n/messages.properties b/grails-app/i18n/messages.properties index 5d5fe217..87f383f6 100644 --- a/grails-app/i18n/messages.properties +++ b/grails-app/i18n/messages.properties @@ -1,3 +1,535 @@ +public.chart.title=Chart generator +public.chart.body.title01=Chart sampler +public.chart.body.title02=Enter a query and choose a chart type +public.chart.label01=Query +public.chart.button01=Draw chart +public.chart.label02=Type +public.chart.label03=Taxonomy +public.chart.label04=optional +public.chart.label05=starting rank +public.chart.label06=OR +public.chart.label07=threshold +public.chart.radio.01=State +public.chart.radio.02=Institution +public.chart.radio.03=Data set +public.chart.radio.04=Types +public.chart.radio.05=Common groups +public.chart.radio.06=Data assertions +public.chart.radio.07=Decades +public.chart.radio.08=Biogeographic region +public.chart.radio.09=State conservation +public.chart.radio.10=Other named facet +public.chart.radio.11=Environmental layer + +public.datasets.title=Datasets +public.datasets.header.title=data sets +public.datasets.header.message01=Much of the content in the +public.datasets.header.message02=such as occurrence records, environmental data, images and the conservation status of species, comes from data sets provided by collecting institutions, individual collectors and community groups. These data sets are listed on this page +public.datasets.header.message03=Refine the list of data sets by clicking on a filter in the left hand list. Click the +public.datasets.header.message04=toggle to see a description of the data set. To find out more, go to the data set's full metadata page by clicking on its name +public.datasets.noscript.message01=You don't have javascript enabled. This page will not work without javascript +public.datasets.sidebar.header=Refine Results +public.datasets.resultsreturned.message01=Showing +public.datasets.resultsreturned.message02=data sets +public.datasets.drsearch.link01=Search +public.datasets.drsearch.link02=Reset list +public.datasets.downloadlink.label=Download +public.datasets.sortwidgets.label01=Results per page +public.datasets.sortwidgets.label02=Sort by +public.datasets.sortwidgets.label03=Sort order +public.datasets.loading=Loading + +public.listinstitutions.title=Simple GSP page + +public.map.title01=Natural History Collections +public.map.title02=Atlas of Living Australia +public.map.breadcrumb.link01=Home +public.map.breadcrumb.link02=Explore +public.map.breadcrumb.span=Natural History Collections +public.map.header.title=Australia's natural history collections +public.map.header.des=Learn about the institution, the collections they hold and view records of specimens that have been digitised. Currently only the collections of ALA partners are shown. Over time this list will expand to include all natural history collections in Australia +public.map.span6.label01=Show these collections +public.map.span6.li01=Select all +public.map.span6.li02=Herbaria +public.map.span6.li03=Faunal collections +public.map.span6.li04=Entomological collections +public.map.span6.li05=Microbial collections +public.map.map.des01=Click on a map pin to see the collections at that location. Use the map controls to zoom into an area of interest. Or drag your mouse while holding the shift key to zoom to an area +public.map.map.des02=indicates there are multiple collections at this location +public.map.list.des01=Collections are shown grouped by their institution. Click on a collection name to see more details including the digitised specimen records for the collection. Click on the institution name to learn more about the institution +public.map.list.des02=Collections not shown on the map (due to lack of location information) are marked + +public.map3.title=Natural History Collections +public.map3.header.title=\u2018s natural history collections +public.map3.header.des01=Learn about the institution, the collections they hold and view records of specimens that have been databased. Currently only the collections of +public.map3.header.des02=partners are shown. Over time this list will expand to include all natural history collections in {0} +public.map3.span4.des01=Click a button to only show those organisms +public.map3.span4.link01=All collections +public.map3.span4.link02=Show all +public.map3.span4.link03=Fauna +public.map3.span4.link04=Mammals, birds, reptiles, fish, amphibians and invertebrates +public.map3.span4.link05=Insects +public.map3.span4.link06=Insects, spiders, mites and some other arthropods +public.map3.span4.link07=Microorganisms +public.map3.span4.link08=Protists, bacteria, viruses, microfungi and microalgae +public.map3.span4.link09=Plants +public.map3.span4.link10=Vascular plants, algae, fungi, lichens and bryophytes +public.map3.adminlink=Admin +public.map3.maplistcol.li01=Map +public.map3.maplistcol.li02=List +public.map3.maplistcol.des01=Click on a map pin to see the collections at that location. Use the map controls to zoom into an area of interest. Or drag your mouse while holding the shift key to zoom to an area +public.map3.maplistcol.des02=indicates there are multiple collections at this location +public.map3.maplistcol.des03=No collections are selected +public.map3.maplistcol.des04=Click on a collection name to see more details including the digitised specimen records for the collection. Collections not shown on the map (due to lack of location information) are marked + +public.lsid=LSID +public.lsidtext.link=Life Science Identifier (LSID) +public.lsidtext.des=LSIDs are persistent, location-independent,resource identifiers for uniquely naming biologically significant resources including species names, concepts, occurrences, genes or proteins, or data objects that encode information about them. To put it simply, LSIDs are a way to identify and locate pieces of biological information on the web +public.network.membership.label=Membership +public.network.membership.des01=Member of Council of Heads of Australian Entomological Collections (CHAEC) +public.network.membership.des02=Member of Council of Heads of Australasian Herbaria (CHAH) +public.network.membership.des03=Member of Council of Heads of Australian Faunal Collections (CHAFC) +public.network.membership.des04=Member of Council of Heads of Australian Collections of Microorganisms (CHACM) +public.usagestats.label=Usage statistics +public.usage.des=Loading +public.location=Location +public.website=Web site +public.numbrs.des01=Looking up... the number of records that +public.numbrs.des02=can be accessed through the Atlas of Living Australia +public.numbrs.link=Click to view records for the + +public.show.header.acronym=Acronym +public.show.overviewtabs.li01=Overview +public.show.overviewtabs.li02=Records +public.show.overviewtabs.li03=Images +public.show.oc.label01=Description +public.show.oc.label02=Taxonomic range +public.show.oc.des01=Kingdoms covered include +public.show.oc.des02=includes members from the following taxa +public.show.oc.label03=Geographic range +public.show.oc.des03=The western most extent of the collection is +public.show.oc.des04=The eastern most extent of the collection is +public.show.oc.des05=The northern most extent of the collection is +public.show.oc.des06=The southern most extent of the collection is +public.show.oc.label04=Number of +public.show.oc.label05=in the collection +public.show.oc.des07=The estimated number of +public.show.oc.des08=is +public.show.oc.des09=Of these +public.show.oc.des10=are databased +public.show.oc.des11=This represents +public.show.oc.des12=of the collection +public.show.oc.des13=Click the Records & Statistics tab to access those database records that are available through the atlas +public.show.oc.label06=Sub-collections +public.show.oc.des14=contains these significant collections +public.show.oc.label07=Usage statistics +public.show.oc.des15=Loading +public.show.osb.label01=Location +public.show.osb.label02=Web site +public.show.osb.link01=Visit the collection's website +public.show.osb.link02=Visit the +public.show.osb.link03='s website +public.show.osb.label04=Contributors to this page +public.show.rt.title=Digitised records available through the Atlas +public.show.rt.des01=The collection has databased +public.show.rt.des02=of these +public.show.rt.des03=records +public.show.rt.des04=Looking up... the number of records that +public.show.rt.des05=can be accessed through the Atlas of Living Australia +public.show.rt.des06=Click to view all records for the +public.show.rt.des07=No database records for this collection can be accessed through the Atlas of Living Australia +public.show.crmc.title=Map of occurrence records +public.show.speedocaption=No records are available for viewing in the Atlas +public.show.it.title=Images from this collection + +public.sdh.header.span01=Acronym +public.sdh.co.label01=Description +public.sdh.co.label02=Contribution to the Atlas +public.sdh.co.label03=Breakdown of specimen numbers +public.sdh.co.des01=There are +public.sdh.co.des02=Loading +public.sdh.co.des03=records in total +public.sdh.ct.label01=Location +public.sdh.ct.label02=Web site +public.sdh.ct.link01=Visit the data provider's website + +public.sdp.content.label01=Description +public.sdp.content.label02=Contribution to the Atlas +public.sdp.content.label03=Resources +public.sdp.usagestats.label=Usage statistics +public.sdp.usage.des=Loading +public.sdp.content.label04=Location +public.sdp.content.label05=Web site +public.sdp.content.link01=Visit the data provider's website + +public.sdr.content.label01=Description +public.sdr.content.label02=Type of content +public.sdr.content.label03=Citation +public.sdr.content.des01=No citation information available +public.sdr.content.label04=Rights +public.sdr.content.label05=Data generalisations +public.sdr.content.label06=Information withheld +public.sdr.content.label07=Limited downloads +public.sdr.content.des02=Downloads from this data resource are limited to +public.sdr.content.des03=records +public.sdr.content.label08=Data currency +public.sdr.usagestats.labe=Usage statistics +public.sdr.usage.des=Loading +public.sdr.content.label09=Digitised records +public.sdr.content.des04=Looking up... the number of records that +public.sdr.content.des05=can be accessed through the Atlas of Living Australia +public.sdr.content.link01=Click to view records for the +public.sdr.content.link02=resource +public.sdr.content.label10=Map of records +public.sdr.content.label11=Location +public.sdr.content.label12=Species lists +public.sdr.content.link03=View this species list in species list tool +public.sdr.content.label13=Web site +public.sdr.content.link04=Visit the data resource's website +public.sdr.infosourcelist.title=Contributors to this page + +public.si.content.label01=Description +public.si.content.label02=Contribution to the Atlas +public.si.content.label03=Collections +public.si.content.label04=Digitised records +public.si.website.link01=Visit the +public.si.website.link02='s website + +public.stdr.co.des01=This data set is a temporary set of records that has been uploaded to the sandbox by {0} on {1} +public.stdr.co.des02=The data set contains {0} records + +reports.activity.title=Registry database reports +reports.activity.li01=Reports +reports.activity.body.title=User activity report +reports.activity.body.subtitle=User activity +reports.activity.body.td01=Curator views +reports.activity.body.td02=Curator previews +reports.activity.body.td03=Curator edits +reports.activity.body.td04=Admin views +reports.activity.body.td05=Admin previews +reports.activity.body.td06=Admin edits +reports.activity.body.td07=Recent activity +reports.attributions.title=Registry database reports + +reports.li.reports=Reports + +reports.attributions.title01=Attributions report +reports.attributions.link01=Jump to institutions +reports.attributions.collections.td01=Attributions for collections +reports.attributions.collections.td02=collections shown +reports.attributions.institutions.td01=Attributions for institutions +reports.attributions.institutions.td02=institutions shown + +reports.changes.title=Registry database reports +reports.changes.title01=Recent changes +reports.changes.des01=Click a row to show full details of a change. Click a UID or ID to view the affected entity +reports.changes.legend01=Filters +reports.changes.who=Who +reports.changes.what=What +reports.changes.td01.title=When +reports.changes.td02.title=Who +reports.changes.td03.title=Did +reports.changes.td04.title=What + +reports.title=Registry database reports + +reports.classification.title01=Collection classification (in relation to map filter categories) +reports.classification.des01=collections shown. Collections in +reports.classification.des02=red +reports.classification.des03=are missing keywords that allow classification +reports.classification.td01.title=Collection +reports.classification.td02.title=Acronym +reports.classification.td03.title=Herbaria +reports.classification.td04.title=Fauna +reports.classification.td05.title=Ento +reports.classification.td06.title=Microbes +reports.classification.tr.totals=Totals + +reports.codes.title01=Provider codes report +reports.codes.td01=Codes +reports.codes.td02=collections shown + +reports.collections.title01=Collections report +reports.collections.des01=View column links to the public page for the collection. You can copy this link to use as the permanent URL to the collection page +reports.collections.des02=Edit column links to the admin page where this collection's metadata can be edited +reports.collections.des03=Showing {0} collections +reports.collections.des04=Show links +reports.collections.des05=Show collection names only + +reports.csd.title01=Specimen records statistics +reports.csd.title02=collections reported +reports.csd.td01.title=Collection +reports.csd.td02.title=No. records +reports.csd.td03.title=No. digitised +reports.csd.td04.title=No. in Atlas + +reports.ct.title01=Collection types +reports.ct.des01=collections shown. Collections in +reports.ct.des02=red +reports.ct.des03=have no type specified +reports.ct.des04=The noun(s) shown in the last column are what will be used on pages that describe the collection +reports.ct.td01.title=Collection +reports.ct.td02.title=preserved +reports.ct.td03.title=cellcultures +reports.ct.td04.title=living +reports.ct.td05.title=other +reports.ct.td06.title=noun + +reports.cfc.title01=Contact emails for all collections + +reports.contacts.title01=Contacts report +reports.contacts.full.tr01=Columns show whether the contact has an email address and a phone number +reports.contacts.full.link01=(Show names only) +reports.contacts.full.table0201=All contacts +reports.contacts.full.table0202=Email +reports.contacts.namesonly.table0101=Simple name list (for copy and paste) +reports.contacts.namesonly.table0201=All contacts + +reports.cfcm.title01=Contact emails for collections belonging to councils +reports.cfcm.table0101=CHAFC Members +reports.cfcm.table0201=none +reports.cfcm.table0301=CHAEC Members +reports.cfcm.table0401=none +reports.cfcm.table0501=CHACM Members +reports.cfcm.table0601=none + +reports.cfi.title=contacts for institutions +reports.cfi.title01=Contact emails for all institutions + +reports.data.title01=Data report +reports.data.table01.tr01=Totals +reports.data.table01.tr02=Collections +reports.data.table01.tr03=Institutions +reports.data.table01.tr04=Data providers +reports.data.table01.tr05=Data resources +reports.data.table01.tr06=Data hubs +reports.data.table01.tr07=Contacts +reports.data.title02=Collection data quality +reports.data.title03=Contact summary + +reports.dl.title01=Data relationships +reports.dl.des01=This list shows which data resources/providers provide data record for which collections/institutions +reports.dl.des02=(P) \= data provider, (R) \= data resource, (I) \= institution, (C) \= collection +reports.dl.table0101=Provider +reports.dl.table0102=Consumer + +reports.dc.title=duplicate contacts +reports.dc.title01=Duplicate contacts +reports.dc.des01=This report shows contacts that are suspected of being duplicates. Multiple contacts with the same email will disrupt the contact's ability to edit their own pages +reports.dc.title02=Duplicate email addresses +reports.dc.des02=These contacts have the same email address +reports.dc.title03=Duplicate names +reports.dc.des03=These contacts have the same first and last name + +reports.harvesters.title01=Data mobilisation settings +reports.harvesters.des01=This list shows the metadata that controls data mobilisation +reports.harvesters.des02=Click the twisty to show connection parameters. Click resource name to edit the resource +reports.harvesters.des03=Show resources with no mobilisation values +reports.harvesters.des04=Show all connection parameters +reports.harvesters.th01=Resource +reports.harvesters.th02=Status +reports.harvesters.th03=Freq (days) +reports.harvesters.th04=Last Checked +reports.harvesters.th05=Data Currency +reports.harvesters.th06=Connection +reports.index.title=ALA Collections Reports + +reports.index.title01=Natural History Collections reports +reports.index.des01=Information about the quantity, quality and usage of the ALA's biodiversity collections +reports.index.title02=Please log in +reports.index.link.login=Log in +reports.index.des02=You must log in to manage collection records +reports.index.title03=General stats +reports.index.total01=collections +reports.index.total02=data resources +reports.index.total03=institutions +reports.index.total04=data providers +reports.index.title04=General reports +reports.index.pagelink.data=Measure metadata quality +reports.index.linktext.data=a few measures of completeness of metadata +reports.index.pagelink.changes=Show changes +reports.index.linktext.changes=lists the recent changes made to the collection registry +reports.index.pagelink.membership=View memberships +reports.index.linktext.membership=lists ALA partners as well as the members of collection networks (hubs) +reports.index.title05=Collections +reports.index.title06=Institutions +reports.index.title07=Data providers & resources +reports.index.title08=Contacts +reports.index.pagelink.collections=List all collections +reports.index.linktext.collections=lists collections with permalinks and some attributes +reports.index.pagelink.codes=List provider codes +reports.index.linktext.codes=controls the mapping to biocache records +reports.index.pagelink.attributions=List attributions +reports.index.linktext.attributions=lists the sources of information for collections +reports.index.pagelink.mr=List missing records +reports.index.linktext.mr=lists collections where the number of digitised records declared significantly exceeds the number of biocache records +reports.index.pagelink.classification=Show classifications +reports.index.linktext.classification=shows how collections are classified according to their keywords into the filter groups used on the collections map page +reports.index.pagelink.ct=Show material types +reports.index.linktext.ct=shows the type keywords associated with each collection, eg preserved, living, tissue +reports.index.pagelink.th=Show taxonomic hints +reports.index.linktext.th=shows the hints for each collection. These are used to help match names when processing occurrence records +reports.index.pagelink.institutions=List all institutions +reports.index.linktext.institutions=lists institutions with permalinks and some attributes +reports.index.pagelink.providers=List all data providers and resources +reports.index.linktext.providers=list of all data providers, data resources and data hubs +reports.index.pagelink.rights=Show data resource rights and permissions +reports.index.linktext.rights=list rights, license details and permissions details for data resources +reports.index.pagelink.harvesters=Show data mobilisation parameters +reports.index.linktext.harvesters=list mobilisation, harvesting and connection parameters for data resources +reports.index.pagelink.resources=Show other resource parameters +reports.index.linktext.resources=list links for public archives that are available for download +reports.index.pagelink.dl=Show data interactions +reports.index.linktext.dl=show which providers/resources provide data records for which institutions/collections +reports.index.pagelink.contacts=List all contacts +reports.index.pagelink.dc=Show duplicate contacts +reports.index.pagelink.cfcm=Show contacts for member collections +reports.index.linktext.cfcm=lists all collections that are members of councils and their contact emails +reports.index.pagelink.cfc=Show contacts for all collections +reports.index.pagelink.cfi=Show contacts for all institutions + +reports.institutions.title01=Institutions report +reports.institutions.des01=View column links to the public page for the collection. You can copy this link to use as the permanent URL to the collection page +reports.institutions.des02=Edit column links to the admin page where this collection's metadata can be edited +reports.institutions.des03=Showing {0} institutions +reports.institutions.link01=Show links +reports.institutions.link02=Show institution names only +reports.institutions.link.view=View +reports.institutions.link.edit=Edit + +reports.membership.title01=Memberships report +reports.membership.tr01=ALA Partner Institutions +reports.membership.tr02=Council of Heads of Australasian Herbaria +reports.membership.tr0301=CHAFC Members +reports.membership.tr0302=Council of Heads of Australian Faunal Collections +reports.membership.tr0401=CHAEC Members +reports.membership.tr0402=Council of Heads of Australian Entomological Collections +reports.membership.tr0501=CHACM Members +reports.membership.tr0502=Council of Heads of Australian Collections of Microorganisms +reports.membership.tr0601=CAMD Members +reports.membership.tr0602=Council of Australasian Museum Directors + +reports.mr.title01=Missing records +reports.mr.title02=Collections where the claimed number of digitised records significantly exceeds the number of bio-cache records +reports.mr.th01=Collection +reports.mr.th02=No. declared to be digitised +reports.mr.th03=No. biocache records + +reports.mrd.title01=Specimen records statistics +reports.mrd.title02=providers reported +reports.mrd.th01=Provider +reports.mrd.th02=Resource +reports.mrd.th03=No. in Atlas + +reports.providers.title01=Data providers report +reports.providers.tr0101=All providers +reports.providers.tr0102=UID +reports.providers.tr0202=UID +reports.providers.tr0203=Provider +reports.providers.tr0302=UID +reports.providers.tr0401=All hubs +reports.providers.tr0103=Resources +reports.providers.tr0201=All resources +reports.providers.tr0204=Institution +reports.providers.tr0301=Data hubs + +reports.resources.title=data resources +reports.resources.title01=Data resources report +reports.resources.tr0102=UID +reports.resources.tr0103=Public archive +reports.resources.tr0101=All resources + +reports.rights.title01=Data resource rights and licensing +reports.rights.des01=This list shows the conditions of use for each data resource +reports.rights.des02=Click the twisty to show the full rights text. Click resource name to edit the resource +reports.rights.link01=Show resources with no license or permissions documents +reports.rights.link02=Show all details +reports.rights.th01=Resource +reports.rights.th02=License type +reports.rights.th03=Version +reports.rights.th04=Permissions doc +reports.rights.th05=Doc type +reports.rights.th06=DPA flags +reports.rights.td.rights=Rights +reports.rights.td.permissions=Permissions Document + +reports.th.title01=Collection taxonomic hints (used to constrain name matching) +reports.th.th01=Collection +reports.th.th02=Acronym +reports.th.th03=Taxonomic hint + +reports.show.table01.tr01=Totals +reports.show.table01.tr02=Collections +reports.show.table01.tr03=Institutions +reports.show.table01.tr04=Contacts +reports.show.table01.tr05=Login accounts +reports.show.title01=Collection data quality +reports.show.title02=Contact summary +reports.show.title03=Infosource summary +reports.show.title04=User activity +reports.show.table0101=Total logins +reports.show.table0102=Unique logins +reports.show.table0103=Supplier logins +reports.show.table0104=Unique supplier logins +reports.show.table0105=Curator views +reports.show.table0106=Curator previews +reports.show.table0107=Curator edits +reports.show.table0201=ALA Partner Institutions +reports.show.table0301=CHAH Members +reports.show.table0401=CHAFC Members +reports.show.table0501=CHAEC Members +reports.show.table0601=CHACM Members +reports.show.table0701=CAMD Members + +rifcs.index.title=Atlas of Living Australia +rifcs.index.title01=See this Collection on the website of + +providerGroup.imageRef.filename.label=Caption +providerGroup.imageRef.attribution.label=Attribution +providerGroup.imageRef.copyright.label=Copyright + +providerGroup.logoRef.filename.label=Caption +providerGroup.logoRef.attribution.label=Attribution +providerGroup.logoRef.copyright.label=Copyright + +institution.name.label=Name +institution.acronym.label=Acronym +institution.isALAPartner.label=ALA Partner +institution.institutionType.label=Type + +address.label=Address +providerGroup.address.postal.label=Postal +providerGroup.latitude.label=Latitude +providerGroup.longitude.label=Longitude +providerGroup.state.label=State +providerGroup.email.label=Email +providerGroup.phone.label=Phone + +collection.base.label=Edit {0} metadata +collection.guid.label=Guid +collection.name.label=Name +collection.acronym.label=Acronym +collection.resourceType.label=Resource type +collection.institution.label=Institution +dataResource.dataProvider.label=Data provider +institution.dataProvider.label=Institution +providerGroup.isALAPartner.label=Is ALA Partner +providerGroup.networkMembership.label=Belongs to +providerGroup.websiteUrl.label=Website Url +providerGroup.notes.label=Notes + +taxonomyHints.label=Taxonomy hints + +dataResource.base.label=Edit data resource metadata +providerGroup.address.street.label=Street +providerGroup.address.city.label=City +providerGroup.address.state.label=State or territory +providerGroup.address.postcode.label=Postcode +providerGroup.address.country.label=Country +providerGroup.address.postBox.label=Postal address + +default.button.editContact.label=Edit the contact's details + default.doesnt.match.message=Property [{0}] of class [{1}] with value [{2}] does not match the required pattern [{3}] default.invalid.url.message=Property [{0}] of class [{1}] with value [{2}] is not a valid URL default.invalid.creditCard.message=Property [{0}] of class [{1}] with value [{2}] is not a valid credit card number @@ -182,3 +714,792 @@ contact.fax= contact.notes= contact.makePublic= +shared.mes01=Choose a +shared.mes02=different image +shared.mes03=Choose an +shared.mes04=image +shared.a.title01=Attributions +shared.changes.title01=Change history +shared.changes.des01=Click an item to view full change details +shared.changes.update=in Contact +shared.changes.insert=new Contact +shared.changes.showchanges=Show all +shared.consumers.title01=Record consumers +shared.consumers.des01=These institutions and collections hold specimens related to the records sourced from this {0} +shared.consumers.des02=Adding relationships here allows data processing to correctly attribute records down to the collection using collection codes and institution codes associated with the institution +shared.consumers.des03=The specified consumer does not exist +shared.consumers.link01=Add/remove collections +shared.consumers.link02=Add/remove institutions +shared.contacts.title01=Contacts +shared.images.span01=File name +shared.images.span02=Caption +shared.images.span03=Attribution +shared.images.span04=Copyright +shared.location.title01=Location +shared.providers.title01=Record providers +shared.providers.des01=These data resources contribute digitised records for specimens in this {0} +shared.providers.li01=The specified provider does not exist +shared.providers.des02=To change the relationship with record providers please go to the +shared.providers.link01=data resource(s) +shared.providers.des03=and edit its +shared.providers.des04=record consumers +shared.th.title01=Taxonomy hints +shared.attributes.label01=Include BCI attribution +shared.attributes.label02=Include CHAH attribution +shared.attributes.label03=Include CHACM attribution +shared.attributes.label04=Include institution attribution +shared.cr.table0101=Editing the role of +shared.cr.table0201=Role +shared.cr.table0301=Administrator +shared.cr.table0302=Determines whether the contact can edit properties of this +shared.cr.table0401=Notify +shared.cr.table0402=If set, the contact will be notified when annotations are made to records in this +shared.cr.table0501=Primary contact +shared.cr.table0502=The primary contact is the one displayed on the public page for this +shared.eth.title01=Editing +shared.eth.des01=Hints help in the processing of occurrence records that are associated with this +shared.eth.th01=Rank +shared.eth.th02=Name +shared.eth.button.update=Update +shared.eth.button.cancel=Cancel +shared.images.des01=Logo image +shared.images.des02=Representative +shared.images.button.update=Update +shared.images.button.remove=Remove image +shared.images.button.cancel=Cancel +shared.location.main.title01=Editing +shared.location.lookup=Click to load lat/long based on street address +shared.location.button.useinherited=Click to load lat/long based on the parent institution's location +shared.location.main.des01=Drag pin on map to the exact location of the +shared.location.main.des02=You may need to zoom in and turn on the hybrid view to locate the building +shared.location.button.update=Update +shared.location.button.cancel=Cancel +shared.title.editing=Editing +shared.providers.notselected.label=Resources +shared.providers.selected.title=Record providers +shared.providers.selected.des=Drag resources to here +shared.button.update=Update +shared.button.cancel=Cancel +shared.sc.title=Edit {0} metadata +shared.sc.title01=Displaying change history for +shared.sc.des01=Changes are shown with the latest first +shared.sc.des02=At {0} {1} changed the {2} field +shared.sc.table01.cell0101=to +shared.sc.table01.cell0102=from +shared.sc.des03=At {0} {1} added a contact +shared.sc.table02.cell0101=id +shared.sc.des04=At {0} {1} removed a contact +shared.sc.table03.cell0101=id +shared.sc.table03.cell0102=name not available - has been deleted +shared.sc.des05=At {0} {1} created this +shared.scontact.title01=Current contacts +shared.scontact.table.label01=In this collection +shared.scontact.table.li01=Role is +shared.scontact.table.li02=Editor +shared.scontact.table.li03=Notify +shared.scontact.table.li04=Primary contact +shared.scontact.link01=Edit the contact's role in this +shared.scontact.link02=Remove the contact for this +shared.scontact.title02=New contacts +shared.scontact.table01.cell0101=Choose an existing contact +shared.scontact.table02.cell0101=Create a new contact and add them to this +default.button.addContact.label=Add new contact +shared.tr.title01=Describe the taxonomic range of this resource +shared.tr.des01=Select any number of the groups listed below. The right-hand box shows a consolidated list of your selections +shared.tr.title02=Make your selections here +shared.tr.title03=Selected groups +shared.tr.button01=clear all +shared.tr.help.title01=Some help pages +shared.tr.help.link01=How do I select taxonomic groups +shared.tr.help.link02=How do I save my selections +shared.tr.help.link03=How do I define a taxonomic scope +shared.tr.help.link04=How do I change the metadata for a data resource +shared.tr.help.title02=Some relevant FAQs +shared.tr.help.link05=What if my taxonomic group isn't shown here +shared.tr.help.link06=Who chose this set of taxonomic groups +shared.tr.help.link07=What is this information used for +shared.tr.help.link08=How do I report a bug + +admin.home.title=ALA Collections Management +admin.home.li01=home +admin.home.li02=ala +admin.home.li03=collections +admin.logout=logout +admin.login=login +admin.loggedin=Logged in as +admin.home.welcome.span01=Update our information about +admin.home.welcome.title01=Natural History Collections and their Institutions +admin.home.welcome.des01=Descriptions of Australian biodiversity collections can be added and updated here +admin.home.welcome.title02=Please log in +admin.home.welcome.des02=You must log in to manage collection records +admin.home.welcome.link01=Log in +admin.home.buttons.title01=Collections +admin.home.buttons.link01=View all collections +admin.home.buttons.link02=View my collections +admin.home.buttons.link03=Add a collection +admin.home.buttons.span01=Search for collections +admin.home.buttons.title02=Institutions +admin.home.buttons.link04=View all institutions +admin.home.buttons.link05=View my institutions +admin.home.buttons.link06=Add an institution +admin.home.buttons.span02=Search for institutions +admin.home.buttons.title03=Data sets +admin.home.buttons.link07=View all data resources +admin.home.buttons.link08=View all data providers +admin.home.buttons.link09=Add a data resource +admin.home.buttons.span03=Search for data sets +admin.home.buttons.title04=Profile +admin.home.buttons.link10=Edit my profile +admin.home.buttons.des01=View and edit your contact details, roles, notifications, etc +admin.home.buttons.title05=Admin +admin.home.buttons.link11=View reports +admin.home.buttons.link12=Manage contacts +admin.home.buttons.link13=Export all data as JSON +admin.home.buttons.title06=Codes and maps +admin.home.buttons.link14=Manage provider codes +admin.home.buttons.link15=Edit the list of available collection and institution codes +admin.home.buttons.link16=Manage provider maps +admin.home.buttons.link17=Allocate collection and institution codes to collections +admin.index.title=ALA Collections Management +admin.index.link01=View public site +admin.index.title01=

Natural History Collections Management

Information about Australian biodiversity collections can be added and updated here.

+admin.notlogin.title=Please log in +admin.notlogin.link=Log in +admin.notlogin.des=You must log in to manage collection records +admin.index.link02=Edit my profile +admin.index.des02=View and edit your contact details, roles, notifications, etc +admin.index.link03=View all collections +admin.index.des03=Browse all current collections and update collection descriptions +admin.index.link04=View my collections +admin.index.des04=Browse my collections and update collection descriptions +admin.index.link05=Search for collections +admin.index.des05=Enter a part of the name of a collection or its acronym, eg insects, fungi, ANIC +admin.index.link06=Add a collection +admin.index.des06=Describe a collection that is not currently listed +admin.index.link07=View all institutions +admin.index.des07=Browse the institutions that hold collections +admin.index.des08=These actions are only available to system admins +admin.index.link09=View all data providers +admin.index.des09=Browse all current data providers +admin.index.link10=View all data resources +admin.index.des10=Browse all current data resources +admin.index.link11=View reports +admin.index.des11=Browse summaries of Registry contents and usage +admin.index.link12=Manage contacts +admin.index.des12=View and edit all known contacts for collections and institutions +admin.index.link14=Manage provider codes +admin.index.des14=View and edit all known collection and institution codes +admin.index.link15=Manage provider maps +admin.index.des15=View and edit the allocation of collection and institution codes to collections +admin.index.link16=Export all data as JSON +admin.index.des16=All tables exported verbatim as JSON +admin.sr.title=ALA Collections Management Search Results +admin.sr.title01=Search results +admin.sr.span01=Your search returned no results +admin.sr.des01=Click (View) to display the public page. Click the name or (Edit) to enter the editor's view of the information +admin.sr.title02=Collections +admin.sr.link.view=View +admin.sr.link.edit=Edit +admin.sr.title03=Institutions +admin.sr.title04=Data providers +admin.sr.title05=Data resources + +ale.list.title=Audit +ale.list.li01=Audit list of events +ale.list.title01=Audit - List of events +ale.show.title=Show AuditLogEvent +ale.show.li01=Audit +ale.show.title01=Show Audit +ale.show.cell0101=Id +ale.show.cell0201=Actor +ale.show.cell0301=Uri +ale.show.cell0401=Class Name +ale.show.cell0501=Persisted Object Id +ale.show.cell0601=Persisted Object Version +ale.show.cell0701=Event Name +ale.show.cell0801=Property Name +ale.show.cell0901=Old Value +ale.show.cell1001=New Value +ale.show.cell1101=Date Created +ale.show.cell1201=Last Updated +ale.show.cl.des=There are no collections listed against your login at present + +collection.title.editing=Editing + +providerGroup.existingContacts.label=Current contacts for this collection +providerGroup.addAContact.label=Add a known contact to this collection + +contact.title.label=First name +contact.firstName.label=First name +contact.lastName.label=Last name +contact.phone.label=Phone +contact.mobile.label=Mobile +contact.email.label=Email +contact.fax.label=Fax +contact.notes.label=Notes +contact.publish.label=Make public + +collection.contacts.table01.th01=Name +collection.contacts.table01.th02=Role (for this collection) +collection.contacts.table01.th03=Admin +collection.contacts.table01.th04=Primary +collection.contacts.table01.btn01=Remove +collection.contacts.table01.td01=Phone +collection.contacts.table01.td02=Email +collection.contacts.table02.td01=Select +collection.contacts.span01=Create a new contact and add to this collection +collection.contacts.table03.span02=Contact will be shown on the collection page +collection.contacts.table03.btn01=Add contact +collection.button.update=Update +collection.button.cancel=Cancel +collection.des.title01=Creating a new collection + +providerGroup.pubDescription.label=Public Description +providerGroup.techDescription.label=Technical Description +providerGroup.focus.label=Focus +collection.collectionType.label=Collection Type +providerGroup.sources.active.label=Status +collection.keywords.label=Keywords +scope.subCollections.label=Sub-collections + +collection.label=Collection + +collection.myList.label=My collections +institutions.myList.label=My institutions + +collection.numRecords.label=Number of specimens +collection.range.title01=Creating a new collection +collection.range.table01.title=Geographic range +collection.range.table01.label01=Geographic description +collection.range.table01.label02=States +collection.range.table01.label03=If possible, describe the geographic range of your collection in terms of the maximum extents of the regions of collection +collection.range.table01.label04=Most eastern longitude +collection.range.table01.label05=Western extent +collection.range.table01.label06=Northern extent +collection.range.table01.label07=Southern extent +collection.range.table01.title02=Taxonomic range +collection.range.table01.label08=Kingdom coverage +collection.range.table01.label09=Scientific names +collection.range.table01.title03=Statistics +collection.show.span01=LSID +collection.show.span02=UID +collection.show.span03=Collection website +collection.show.title01=Description +collection.show.span04=Public description +collection.show.span05=Technical description +collection.show.span06=Start/End dates +collection.show.span07=Collection types include +collection.show.span08=Activity status is +collection.show.span09=Keywords +collection.show.des01=are not directly displayed but are used for searching and filtering. These keywords have been added for this collection +collection.show.link01=Add fauna +collection.show.link02=Add plants +collection.show.link03=Add entomology +collection.show.link04=Add microbes +collection.show.title02=Sub-collections +collection.show.title03=Geographic range +geographicDescription.label=Geographic Description +states.label=States covered +focus.label=Collection focus +kingdomCoverage.label=Kingdom Coverage +scientificNames.label=Scientific Names +collection.show.coordinate.des01=Specimens were collected +collection.show.coordinate.des03=North +collection.show.coordinate.des02=within these bounds +collection.show.coordinate.des04=West +collection.show.coordinate.des05=East +collection.show.coordinate.des06=South +collection.show.title04=Taxonomic range +collection.show.title05=Number of +collection.show.title06=in the collection +collection.show.des07=The estimated number of +collection.show.des08=within +collection.show.des09=is +collection.show.des10=Of these {0} are digitised +collection.show.des11=This represents +collection.show.des12=of the collection +collection.show.des13=The mapping of records to this collection is based on the provider codes shown in the 'Provider codes' section +collection.show.title07=Provider codes +collection.show.des14=These codes control the mapping of online records to this collection +collection.show.des15=Institution codes +collection.show.des16=Collection codes +collection.show.des17=Will match any collection code +collection.show.des18=Codes do not map exactly to this collection +collection.show.des19=Warning is + +contact.label=Contact + +contact.id.label=Id + +contact.for.label=Contact for + +profile.base.label=My profile +contact.sp.title01=Editing my profile +contact.sp.title02=My profile +contact.sp.title03=phone +contact.sp.title04=mobile +contact.sp.title05=fax +contact.sp.title06=Contact for +contact.sp.des01=Describe your role within this +contact.sp.des02=Would you like to be notified by email of any significant events in this +contact.sp.des03=How often would you like to receive notifications +contact.sp.radio01=Each event +contact.sp.radio02=Daily +contact.sp.radio03=Weekly + +data.catalogue.title=Web Services | Natural History Collections | Atlas of Living Australia +data.catalogue.li01=Home +data.catalogue.li02=Collections +data.catalogue.li03=Web services +data.catalogue.title01=Web services for the Atlas Registry +data.catalogue.des01=More information can be found at the project's +data.catalogue.des02=wiki +data.catalogue.des03=and in particular in the documentation of +data.catalogue.des04=Collectory services +data.catalogue.title02=Data services +data.catalogue.des05=The registry of the Atlas of Living Australia maintains metadata that describe +data.catalogue.ws0024.li01=collections - natural history collections +data.catalogue.ws0024.li02=institutions - institutions and organisations that manage collections +data.catalogue.ws0024.li03=dataProviders - providers of biodiversity information in electronic form, eg occurrence records, websites +data.catalogue.ws0024.li04=dataResources - specific resources made available by data providers +data.catalogue.ws0024.li05=tempDataResources - temporary resources holding records uploaded to the sandbox +data.catalogue.ws0024.li06=dataHubs - aggregators of biodiversity data; and +data.catalogue.ws0024.li07=contacts - for any of the above resources +data.catalogue.des06=Access to this metadata is provided by resource-oriented web services that adhere to RESTful principles. Response payloads are generally formatted as JSON although some services offer other formats through content negotiation +data.catalogue.des007=Details of how these services can be used are provided at the project's wiki, and in particular here +data.catalogue.title03=Form of URIs +data.catalogue.table01.cell0101=All service URIs are based on the URI of this page +data.catalogue.table01.cell0201=URI's for the resources listed above are this root plus the name of the type of resource, eg +data.catalogue.table01.cell0301=The URI for a specific instance of a resource is the same followed by the UID of the instance. For example, the resource representing the Aust. Wine Research Institute (UID\=in72) is +data.catalogue.table01.cell0401=The URI to get a total count of a specific resource is resource name followed by 'count'. For example, the number of institutions is given by +data.catalogue.table01.cell0501=Counts for a specific resource can be grouped by any attribute of the resource. For example, the breakdown of institutions by state is given by +data.catalogue.table01.cell0601=Resources that are attributes of a resource, such as the list of contacts for a collection, are addressed by appending the resource type to the uri that represents the main resource, eg +data.catalogue.title04=Methods +data.catalogue.des08=Data services support the GET, HEAD, POST, PUT, OPTIONS and DELETE methods +data.catalogue.des09=GET will return the json representation of the specified resource or the list of all resources of the specified resource type +data.catalogue.des10=HEAD will return no content but will confirm the existence of the specified resource +data.catalogue.des11=POST will update the specified resource based on the information in the body of the request. If no resource is specified, the information in the body will be used to create a new resource. The body must be valid json and you must specify at least these properties +data.catalogue.li04=user - the name of the application that is requesting the update; and +data.catalogue.li05=api_key - a valid key to verify that you are authorised to modify the resource +data.catalogue.des12=If a new resource is being created you must also specify at least +data.catalogue.li06=name - the name of the resource +data.catalogue.des13=Other properties are treated as the properties to be updated. Property names are the same as those used in the GET representation +data.catalogue.des14=PUT behaves the same as POST +data.catalogue.des15=OPTIONS returns a list of the allowed methods +data.catalogue.des16=DELETE will remove the specified resource. The body must be valid json and you must specify these properties +data.catalogue.li07=user - the name of the application that is requesting the update; and +data.catalogue.li08=api_key - a valid key to verify that you are authorised to modify the resource +data.catalogue.ws0025.title=Contacts +data.catalogue.ws0025.des=Contacts exist as resources in their own right. They can be accessed in the standard form +data.catalogue.ws0025.cell0101=List all contacts +data.catalogue.ws0025.cell0201=Get details for a specific contact +data.catalogue.ws0025.cell0301=Find a contact by its email address +data.catalogue.ws0025.des01=Editing contacts follows the same pattern as the major entities. PUT and POST will update a contact if an id is specified in the url, else a new contact is added. DELETE will remove a contact +data.catalogue.ws0025.des02=The body must be valid json and you must specify at least these properties +data.catalogue.ws0025.li01=user - the name of the application that is requesting the update; and +data.catalogue.ws0025.li02=api_key - a valid key to verify that you are authorised to modify the resource +data.catalogue.ws0025.des03=and may also specify +data.catalogue.ws0025.li03=firstName +data.catalogue.ws0025.li04=lastName +data.catalogue.ws0025.li05=fax +data.catalogue.ws0025.li06=phone +data.catalogue.ws0025.li07=mobile +data.catalogue.ws0025.li08=notes +data.catalogue.ws0025.li09=public (true or false) - controls whether the contact will be displayed on a public web page +data.catalogue.ws0025.des04=Note that contacts do not have UIDs. They use the raw DB-assigned ID instead +data.catalogue.ws0025.des05=The user's email is effectively the primary key for a contact. Always check whether a contact exists (by searching for its email address) before creating one +data.catalogue.ws0025.des06=A contact may be associated with any number of resources. A resource may have any number of contacts. The relationship between a contact and a resource has its own metadata such as the role that the contact has in relation to the resource, the contact's editing rights, etc +data.catalogue.ws0025.title01=Contact relationships +data.catalogue.ws0025.table0101=This metadata is accessed by appending contacts to the uri of a resource using the form +data.catalogue.ws0025.table0201=For example +data.catalogue.ws0025.table0301=The metadata for a specific contact relationship has the form +data.catalogue.ws0025.table0401=For example +data.catalogue.ws0025.table0501=The primary contacts for all instances of a type of resource can be accessed using the form +data.catalogue.ws0025.table0601=For example +data.catalogue.ws0025.table0701=Contacts may elect to be notified when significant events occur to a resource. The list of contacts to be notified for a specific resource can be retrieved from a uri of the form +data.catalogue.ws0025.table0801=For example +data.catalogue.ws0025.table0901=You can retrieve all the entities that the specified contact is authorised to edit. The uri has the form +data.catalogue.ws0025.table1001=For example +data.catalogue.ws0025.des07=All contact services can return payload as CSV, XML or JSON via content negotiation +data.catalogue.ws0025.link01=More information +data.catalogue.ws0025.des08=Contact relationships can be updated by following the usual rules. The contact must already exist +data.catalogue.ws0025.des09=POST will add the contact to a resource if it does not already exist or will update the relationship using the json data in the request body +data.catalogue.ws0025.des10=The body must be valid json and you must specify at least these properties +data.catalogue.ws0025.li10=user - the name of the application that is requesting the update; and +data.catalogue.ws0025.li11=api_key - a valid key to verify that you are authorised to modify the resource +data.catalogue.ws0025.des11=and may also specify +data.catalogue.ws0025.li12=role - the role the contact has in for this resource eg, 'Manager' +data.catalogue.ws0025.li13=notify (true or false) - if the contact wishes to be notified on significant events (this has been superceded by Alerts) +data.catalogue.ws0025.li14=administrator - if the contact is allowed to administer this resource +data.catalogue.ws0025.li15=primaryContact - if the contact is the primary contact for this resource +data.catalogue.ws0025.des12=The form of the url is +data.catalogue.ws0025.des13=same as POST +data.catalogue.ws0025.des14=will remove the contact from a resource +data.catalogue.ws0025.des15=The body must be valid json and you must specify at least these properties +data.catalogue.ws0025.li16=user - the name of the application that is requesting the update; and +data.catalogue.ws0025.li17=api_key - a valid key to verify that you are authorised to modify the resource +data.catalogue.ws0025.des16=The url has the same form as above +data.catalogue.ws0026.title=EML metadata interchange +data.catalogue.ws0026.des01=The registry provides a service to extract resource metadata in EML format. The response complies with +data.catalogue.ws0026.link01=GBIF's EML schema +data.catalogue.ws0026.des02=This document is suitable for inclusion in a Darwin Core Archive as the metadata description of the contained records. The form is +data.catalogue.ws0026.table0101=This example uri returns an XML document describing the set of occurrence records for the DECCW Atlas of NSW Wildlife +data.catalogue.ws0032.title=Citation services +data.catalogue.ws0032.des01=Citation services return attribution and licence information for digitised records that can be accessed through the Atlas +data.catalogue.ws0032.title01=Citations for a list of data providers +data.catalogue.ws0032.des02=This service accepts a list of entity UIDs and returns citation information for each entity. Any entity types can be specified but only data resources have meaningful citation information. For each entity, the service returns the name of the entity, its citation text, its rights text and a 'more information' string containing a link to the collectory page for the entity. The form is +data.catalogue.ws0032.td0101=where listOfUIDs is a comma-separated list of UID +data.catalogue.ws0032.td0201=This example uri returns a list of citations for the three specified data resources +data.catalogue.ws0032.des03=The service can return the information as a JSON list or a CSV or TSV file with appropriate headers. The format is specified by http content-negotiation +data.catalogue.ws0032.link02=More information +data.catalogue.ws0032.title02=Lookup services +data.catalogue.ws0032.des04=These services explicitly support inter-operation with other components of the Atlas such as the bio-cache and the BIE. They do not all comply with RESTful principles but are being progressively refactored to do so +data.catalogue.ws0027.title=Map a bio-cache record to a collection +data.catalogue.ws0027.des01=This service takes a collection code and an institution code from a raw specimen record and maps the combination to a single collection. The form is +data.catalogue.ws0027.table0101=This example uri returns metadata for the Australian National Insect Collection +data.catalogue.ws0028.title=Get a summary for an entity +data.catalogue.ws0028.des01=This service just returns a subset of metadata for an entity. The form is +data.catalogue.ws0028.table0101=This example uri returns the short metadata for the Birds Australia data provider +data.catalogue.ws0028.des02=The summary services are less useful now that we have full RESTful metadata services but are retained for backward compatibility. They also provide a small efficiency when the service is called repeatedly such as during indexing operations +data.catalogue.ws0028.link01=More information +data.catalogue.ws0029.title=Lookup the name of an entity +data.catalogue.ws0029.des01=This service is even more cut down than the summary. It returns only the name of an entity given its UID. The form is +data.catalogue.ws0029.link01=More information +data.catalogue.ws0030.title=Get taxonomic coverage hints for an entity +data.catalogue.ws0030.des01=This service plays a roll in taxonomic name matching during the processing of raw bio-cache records. When a record has been mapped to a collection, the collection metadata can be used to inform the matching process by adding weight to matches within particular taxonomic groups. The form is +data.catalogue.ws0030.table0101=This example uri returns a list of rank-name pairs that describe a taxonomic range +data.catalogue.ws0030.title01=List download limits for all data resources +data.catalogue.ws0030.des02=Limits can be applied to the number of records that can be downloaded from a particular resource per request +data.catalogue.ws0030.des03=is returned, there are no limits currently set. The form is +data.catalogue.ws0030.title02=Generate UID for a new entity +data.catalogue.ws0030.des04=This is a temporary service used when new data resources are discovered during the harvesting of records. This service will disappear when the harvesting process is refactored. The standard data services will be used to create the new resource and return the UID assigned by the collectory. The form is +data.catalogue.ws0030.link01=More information +data.catalogue.ct.title01=Common services +data.catalogue.ct.title02=Detailed documentation +data.catalogue.ct.link01=List all collections +data.catalogue.ct.lik02=List all institutions +data.catalogue.ct.link03=List all data providers +data.catalogue.ct.link04=List all data resources +data.catalogue.ct.link05=List all hubs +data.catalogue.ct.link06=List main contact for each collection +data.catalogue.ct.link07=Project wiki +data.catalogue.ct.link08=Services overview +data.catalogue.ct.link09=Data Services +data.catalogue.ct.link10=EML service +data.catalogue.ct.link11=Citations service +data.catalogue.ct.link12=Lookup services + +dataHub.base.label=Edit data hub metadata +dataHub.name.label=Name +providerGroup.uid.label=UID +dataHub.acronym.label=Acronym + +dataHub.memberInstitutions.label=Institutions +dataHub.memberCollections.label=Collections +dataHub.memberDataResources.label=Data resources +datahub.show.lastchange=Last change +datahub.show.title02=Members +datahub.show.tile.resources=Resources + +dataLink.label=DataLink +dataLink.consumer.label=Consumer +dataLink.provider.label=Provider +dataLink.id.label=Id +datalink.list.filter.title=DataLinks for + +dataProvider.base.label=Edit data provider metadata +dataProvider.name.label=Name +dataProvider.resources.label=No. resources +dataprovider.show.span06=Contribution +dataprovider.show.link01=create a new data resource for this provider +dataresource.consumers.des01=Drag a {0} to the consumers box to add it as a record consumer. Or just click the {1} to add it +dataresource.consumers.des02=Drag or click a record comsumer to remove it +dataresource.consumers.selected.title01=Record consumers +dataresource.consumers.selected.title02=Drag consumers to here + +dataResource.status.label=Status +dataResource.provenance.label=Provenance +dataResource.lastChecked.label=Last checked +dataResource.dataCurrency.label=Data currency +dataResource.harvestFrequency.label=Harvest frequency +dataResource.harvestingNotes.label=Harvesting notes +dataResource.publicArchiveAvailable.label=Public archive available +dataresource.contribution.des01=Remember to add your initials and the date of contact +dataresource.contribution.table0101=Connection parameters +dataresource.contribution.table0201=Default values for DwC fields +dataresource.contribution.table0301=Make sure you confirm all defaults with the data provider +dataresource.contribution.table0401=Choose another DwC term and click button to add a new field +dataresource.contribution.table.button=Add new term +dataResource.dataGeneralizations.label=Data Generalisations +dataResource.informationWithheld.label=Information withheld +dataResource.contentTypes.label=Content types +dataresource.description.des01=Click content types to add them to the selected set +dataresource.description.title01=Available +dataresource.description.title02=Selected +dataresource.description.des02=Click items in the left list to add them as content types for this resource +upload.gbif.archive=Upload GBIF Archive +dataresource.gbifupload.title01=Automatically create a data resource from a GBIF download +dataresource.gbifupload.form.label01=GBIF Darwin core archive file +dataresource.gbifupload.form.des01=Use this tool to upload an archive you have downloaded from the +dataresource.gbifupload.form.link01=GBIF portal +dataresource.gbifupload.form.des02=This will create a data resource for this archive. To load the data, use the biocache commandline tools +dataresource.gbifupload.form.des03=Note +dataresource.gbifupload.form.des04=This is a simple method of bootstrapping an installation with data provided by GBIF web services +dataresource.gbifupload.form.des05=This is not intended for long-term production use +dataresource.gbifupload.form.span01=Select file +dataresource.gbifupload.form.span02=Change +dataresource.gbifupload.form.link02=Remove +dataresource.gbifupload.form.button01=Upload +dataresource.gbifupload.form.button02=Cancel +dataResource.name.label=Name +dataResource.resourceType.label=Type +dataResource.citation.label=Citation +dataResource.rights.label=Rights +dataResource.licenseType.label=License type +dataResource.licenseVersion.label=License version +dataResource.permissionsDocument.label=Permissions document +dataResource.permissionsDocumentType.label=Permissions document type +dataResource.riskAssessment.label=Risk assessment completed +dataResource.filed.label=Agreement filed +dataResource.downloadLimit.label=Download limit +dataresource.show.span01=Source of records +dataresource.show.span02=GUID +dataresource.show.span03=Resource type +dataresource.show.span04=Website +dataresource.show.span06=Data generalisations +dataresource.show.span07=Information withheld +dataresource.show.title01=Data mobilisation +dataresource.show.span09=Atlas contributor +dataresource.show.span10=Status +dataresource.show.span11=Provenance +dataresource.show.span12=Last checked +dataresource.show.span13=Data currency +dataresource.show.span14=Harvest frequency +dataresource.show.span15=Every {0} days +dataresource.show.span16=Manual +dataresource.show.span17=Mobilisation notes +dataresource.show.span18=Harvesting notes +dataresource.show.span19=Public archive available +dataresource.show.title02=Connection parameters +dataresource.show.title03=File upload +dataresource.show.link01=Upload a data file +dataresource.show.title04=Citation and rights +dataresource.show.documentfield.label=Document filed +dataresource.upload.title01=Upload data file for +dataresource.upload.des01=You can use this to upload a file +dataresource.upload.label01=Protocol +dataresource.upload.label02=File +dataresource.upload.label03=Select file +dataresource.upload.label04=Change +dataresource.upload.label05=Cancel + +institution.base.label=Edit institution metadata +providerGroup.institutionType.label=Institution Type +institution.label=Institution +providerGroup.guid.label=Guid +providerGroup.name.label=Name +providerGroup.acronym.label=Acronym +providerGroup.address.label=Address +providerGroup.logoRef.label=Logo Ref +providerGroup.imageRef.label=Image Ref +contactFor.administrator.label=Administrator +contactFor.role.label=Role +contactFor.administrator.label=Administrator +institution.edit.des01=Choose contacts for this collection +institution.edit.des02=Admin +institution.edit.des03=Select +institution.edit.des04=Role +institution.edit.des05=e.g. Manager +institution.edit.des06=Curator, Editor +institution.edit.des07=Allows the person to edit this institution +institution.edit.des08=Create a new contact and add to this institution +institution.edit.des09=Contact will be shown on the collection page +institution.edit.des10=Allows the person to edit this collection +institution.edit.span07=Institution type +manage.show.lsidtext.des=LSIDs are persistent, location-independent,resource identifiers for uniquely naming biologically significant resources including species names, concepts, occurrences, genes or proteins, or data objects that encode information about them. To put it simply, LSIDs are a way to identify and locate pieces of biological information on the web +manage.show.des01=The estimated number of {0} in +manage.show.des02=is +manage.show.des03=Of these {0} are databased +manage.show.des04=This represents +manage.show.des05=of the collection +manage.show.des06=Show recent changes +manage.show.des07=At {0} {1} changed the {2} field +manage.show.des08=to +manage.show.des09=from +manage.show.des10=At {0} {1} added a contact +manage.show.de11=id +manage.show.des12=At {0} {1} removed a contact +manage.show.des13=name not available - has been deleted +manage.show.des14=At {0} {1} created this +manage.show.title01=Contributors to this page +manage.show.name.des=The collection name should be the official name of the collection in the local language. Do not include the acronym or any unnecessary punctutaion +manage.show.acronym.des=Acronym, coden or initialism by which this collection is generally known. Do not include parentheses +manage.show.lsid.des=Enter a valid lsid for the collection if one has been assigned +manage.show.des.des=This description is the main block of text that appears at the top of the page +manage.show.temp.des=Start and end dates refer to when the collection was first established and when acquisition ceased. Both are optional but if present should be valid +manage.show.temp.link=Darwin Core event dates +manage.show.temp.startdate=Start date +manage.show.temp.enddate=End date +manage.show.tr.des01=Describe the intended taxonomic focus of the collection, such as 'Fungi of medical importance' +manage.show.tr.title01=Kingdom coverage +manage.show.tr.des02=Indicate which biological kingdoms are covered by your collection +manage.show.title02=Scientific names +manage.show.tr.des03=Enter any number of taxon names that describe the taxonomic scope of the collection. Names of families or higher ranks are suitable. Separate names with a comma, eg Insecta, Arachnida +manage.show.gr.title=Geographic description +manage.show.gr.des=A free text description of the geographical scope of the collection +manage.show.gr.title01=States covered +manage.show.gr.des01=States and territories that are covered by the collection +manage.show.title=Metadata Management | Collectory +manage.list.title01=Metadata management +manage.list.link01=View public site +manage.list.li01=Admin tools +manage.list.li02=Your metadata +manage.list.li03=Add a new collection or data resource +manage.list.title02=User details +manage.list.des02=Security is +manage.list.username.des01=Logged in as +manage.list.des03=Not logged in +manage.list.cookiename01=Cookie is present. Name is +manage.list.cookiename02=No cookie found +manage.list.title03=Your metadata +manage.list.des04=The institutions, collections and data resources that you are authorised to access are listed below. Be aware that all changes are immediately reflected in the website and any hubs or other websites that use web services +manage.list.table01.cell0101=View +manage.list.table01.cell0102=Edit +manage.list.des05=You are authorised to edit all entities because you are admin +manage.list.des06=You are not authorised to edit any entities +manage.list.des07=You have the required role but are not listed as a contact with editor rights on any collection, institution or dataset. If you believe you should be, ask someone who is listed to add you as a contact. If you can't do that, click the support link below to send a request to the ALA support team +manage.list.des08=You do not have the role required to edit metadata. You can email +manage.list.des09=support +manage.list.des10=to request this role +manage.list.des11=If you do not see your collection, institution or dataset in the list above, please read +manage.list.des12=requirements for editing metadata +manage.list.title04=Requirements for editing metadata +manage.list.title05=What do I need to edit my metadata +manage.list.des13=You need +manage.list.li04=to be logged in using a standard account +manage.list.li05=the 'Collections Editor' role +manage.list.li06=to be listed as a contact with editor rights for the collection, institution or dataset you want to edit +manage.list.title06=You have an ALA account +manage.list.des14=You are logged in as +manage.list.title07=You have the 'Collections Editor' role +manage.list.title08=You do not have the 'Collections Editor' role +manage.list.des15=Send an email to +manage.list.des16=support +manage.list.des17=and request +manage.list.title09=You are not an editor for any collection, institution or dataset +manage.list.title10=You are editor for the {0} entities listed above +manage.list.title11=You need to be listed as an editor for the entity you want to edit +manage.list.des18=You must be a contact for the entity and have the editor attribute set +manage.list.des19=You can be added as a contact and made an editor by another user who has edit rights for the entity. Or you can send an email to +manage.list.des20=and ask to be added. You can choose whether your name and contact details should be displayed on the public page for the entity +manage.list.title12=I still need help +manage.list.des21=Please send us an email at +manage.list.des22=support +manage.list.des23=and explain your issues +manage.list.addcollection.title01=Add a new data resource +manage.list.addcollection.des01=As a trusted editor you are authorised to add new data resources. Note +manage.list.addcollection.li01=Please check that the data resource does not already exist +manage.list.addcollection.li02=The data resource will become public as soon as you create it +manage.list.addcollection.link01=Create a new data resource +manage.list.addcollection.title02=Add a new collection +manage.list.addcollection.des02=As a trusted editor you are authorised to add new collections. Note +manage.list.addcollection.li03=Please check that the collection does not already exist +manage.list.addcollection.li04=You can only link your collection to an institution if you are an editor for the institution +manage.list.addcollection.li05=You will be automatically added as a contact and an editor for the new collection +manage.list.addcollection.li06=You will need to supply a name for the new collection. It will then be created and you will be directed to the edit pages for the collection to supply further information +manage.list.addcollection.li07=The collection will become public as soon as you create it +manage.list.addcollection.li08=Only ALA administrators can delete collections. Please contact the administrators if you believe a collection should be removed +manage.list.addcollection.link02=Create a new collection +manage.list.addtools.title01=Admin functions +manage.list.addtools.des01=You are an administrator ({0}). Please use your superpowers wisely +manage.list.addtools.link01=View all collections +manage.list.addtools.des02=Browse all current collections and update collection descriptions +manage.list.addtools.span01=Search for collections +manage.list.addtools.des03=Enter a part of the name of a collection or its acronym, eg insects, fungi, ANIC +manage.list.addtools.link02=Add a collection +manage.list.addtools.des04=Describe a collection that is not currently listed +manage.list.addtools.link03=View all institutions +manage.list.addtools.des05=Browse the institutions that hold collections +manage.list.addtools.link04=View all data providers +manage.list.addtools.des06=Browse all current data providers +manage.list.addtools.link05=View all data resources +manage.list.addtools.des07=Browse all current data resources +manage.list.addtools.link06=View all data hubs +manage.list.addtools.des08=Browse all current data hubs +manage.list.addtools.link07=View reports +manage.list.addtools.des09=Browse summaries of Registry contents and usage +manage.list.addtools.link08=Manage contacts +manage.list.addtools.des10=View and edit all known contacts for collections and institutions +manage.list.addtools.link09=Manage provider codes +manage.list.addtools.des11=View and edit all known collection and institution codes +manage.list.addtools.link10=Manage provider maps +manage.list.addtools.des12=View and edit the allocation of collection and institution codes to collections +manage.list.addtools.link11=Export all data as JSON +manage.list.addtools.des13=All tables exported verbatim as JSON +manage.list.addtools.link12=View audit events +manage.list.addtools.des14=All audit events +manage.list.addtools.link13=Add all GBIF resource for a country +manage.list.addtools.des15=All the resources for a specific country are added as data resource in the collectory +manage.list.addtools.link14=Upload GBIF file +manage.list.addtools.des16=Uploads a GBIF download as a data resource. (Assumes that a single resource is in the file) +manage.index.title=Metadata Management +manage.index.link01=View public site +manage.index.title01=ALA Metadata Management +manage.index.des01=Metadata for collections, institutions and datasets can be managed here +manage.index.title02=Please log in +manage.index.login=Log in +manage.index.des02=You must log in to manage metadata +manage.index.title03=About access accounts +manage.index.title04=What do I need to edit my metadata +manage.index.des03=You will need +manage.index.li01=a standard ALA login +manage.index.li02=the 'Collections Editor' role +manage.index.li03=to be listed as a contact with administrator rights for the collection, institution or dataset you want to edit +manage.index.title05=I don't have an ALA account +manage.index.des04=You can register +manage.index.des05=here +manage.index.des06=If you are already listed as a contact for the entity you want to edit, make sure you use the same email address as that contact +manage.index.title06=How do I get the editor role +manage.index.des07=Send an email to +manage.index.des08=support +manage.index.des09=and request +manage.index.title07=What if I am not listed as a contact for the entity I want to edit +manage.index.des10=You can be added as a contact by another user who has edit rights for the entity. Or you can send an email to +manage.index.des11=and ask to be added. You can choose whether your name and contact details should be displayed on the public page for the entity +manage.gbiflc.title=Load GBIF Resources From Country +manage.gbiflc.title01=Automatically load resources from GBIF based on a supplied country +manage.gbiflc.form.label01=Publishing country (e.g. SPAIN) +manage.gbiflc.form.label02=GBIF username +manage.gbiflc.label03=GBIF password +manage.gbiflc.label04=Maximum resources (will default to all) +manage.gbiflc.des01=This tool will download archives from GBIF web services, store the archives locally and create an initial metadata record for each resource +manage.gbiflc.des02=This will not load the data into the occurrence store automatically +manage.gbiflc.des03=To obtain a username, please register with the GBIF web site +manage.gbiflc.link01=here +manage.gbiflc.des04=Note +manage.gbiflc.des05=This is a simple method of bootstrapping an installation with data provided by GBIF web services +manage.gbiflc.des06=This is not intended for long-term production use +manage.gbifcls.title=Loading Resources From +manage.gbifcls.title01=Completed +manage.gbifcls.title02=Started +manage.gbifcls.title03=Finished +manage.gbifcls.th01=Resource +manage.gbifcls.th02=Status +manage.gbifcls.th03=Link (will appear when download complete) +manage.gbifcls.title04=No resources available to load for +manage.gbifcls.title05=To try again click +manage.gbifcls.link01=here + +providerCode.label=ProviderCode +default.link.skip.label=Skip to content&hellip +providerCode.code.label=Code +providerMap.label=ProviderMap +providerMap.id.label=Id +providerMap.institutionCodes.label=Institution Codes +providerMap.collectionCodes.label=Collection Codes +providerMap.exact.label=Exact +providerMap.warning.label=Warning +providerMap.matchAnyCollectionCode.label=Match Any Collection Code +providerMap.lastUpdated.label=Last Updated +providerMap.dateCreated.label=Date Created +providerMap.providerGroup.label=Provider Group diff --git a/grails-app/i18n/messages_zh.properties b/grails-app/i18n/messages_zh.properties new file mode 100644 index 00000000..d0fa9e12 --- /dev/null +++ b/grails-app/i18n/messages_zh.properties @@ -0,0 +1,1505 @@ +public.chart.title=Chart generator +public.chart.body.title01=Chart sampler +public.chart.body.title02=Enter a query and choose a chart type +public.chart.label01=Query +public.chart.button01=Draw chart +public.chart.label02=Type +public.chart.label03=Taxonomy +public.chart.label04=optional +public.chart.label05=starting rank +public.chart.label06=OR +public.chart.label07=threshold +public.chart.radio.01=State +public.chart.radio.02=Institution +public.chart.radio.03=Data set +public.chart.radio.04=Types +public.chart.radio.05=Common groups +public.chart.radio.06=Data assertions +public.chart.radio.07=Decades +public.chart.radio.08=Biogeographic region +public.chart.radio.09=State conservation +public.chart.radio.10=Other named facet +public.chart.radio.11=Environmental layer + +public.datasets.title=Datasets +public.datasets.header.title=data sets +public.datasets.header.message01=Much of the content in the +public.datasets.header.message02=such as occurrence records, environmental data, images and the conservation status of species, comes from data sets provided by collecting institutions, individual collectors and community groups. These data sets are listed on this page +public.datasets.header.message03=Refine the list of data sets by clicking on a filter in the left hand list. Click the +public.datasets.header.message04=toggle to see a description of the data set. To find out more, go to the data set's full metadata page by clicking on its name +public.datasets.noscript.message01=You don't have javascript enabled. This page will not work without javascript +public.datasets.sidebar.header=Refine Results +public.datasets.resultsreturned.message01=Showing +public.datasets.resultsreturned.message02=data sets +public.datasets.drsearch.link01=Search +public.datasets.drsearch.link02=Reset list +public.datasets.downloadlink.label=Download +public.datasets.sortwidgets.label01=Results per page +public.datasets.sortwidgets.label02=Sort by +public.datasets.sortwidgets.label03=Sort order +public.datasets.loading=Loading + +public.listinstitutions.title=Simple GSP page + +public.map.title01=Natural History Collections +public.map.title02=Atlas of Living Australia +public.map.breadcrumb.link01=Home +public.map.breadcrumb.link02=Explore +public.map.breadcrumb.span=Natural History Collections +public.map.header.title=Australia's natural history collections +public.map.header.des=Learn about the institution, the collections they hold and view records of specimens that have been digitised. Currently only the collections of ALA partners are shown. Over time this list will expand to include all natural history collections in Australia +public.map.span6.label01=Show these collections +public.map.span6.li01=Select all +public.map.span6.li02=Herbaria +public.map.span6.li03=Faunal collections +public.map.span6.li04=Entomological collections +public.map.span6.li05=Microbial collections +public.map.map.des01=Click on a map pin to see the collections at that location. Use the map controls to zoom into an area of interest. Or drag your mouse while holding the shift key to zoom to an area +public.map.map.des02=indicates there are multiple collections at this location +public.map.list.des01=Collections are shown grouped by their institution. Click on a collection name to see more details including the digitised specimen records for the collection. Click on the institution name to learn more about the institution +public.map.list.des02=Collections not shown on the map (due to lack of location information) are marked + +public.map3.title=Natural History Collections +public.map3.header.title=\u7684\u56FD\u5BB6\u5386\u53F2\u6536\u96C6 +public.map3.header.des01=\u5B66\u4E60\u8FD9\u4E2A\u673A\u6784\u548C\u4ED6\u4EEC\u7684\u641C\u96C6\u5E76\u67E5\u770B\u4ED6\u4EEC\u6536\u96C6\u7684\u6570\u636E\u5E93\u91CC\u7684\u751F\u7269\u8BB0\u5F55\u3002\u5F53\u524D\u53EA\u663E\u793A +public.map3.header.des02=\u5408\u4F19\u4EBA\u7684\u641C\u96C6\u3002\u672C\u5217\u8868\u5C06\u9010\u6E10\u6269\u5C55\u5230\u5305\u542B\u5168{0}\u81EA\u7136\u754C\u7684\u5386\u53F2\u641C\u96C6 +public.map3.span4.des01=\u70B9\u51FB\u90A3\u4E2A\u6309\u94AE\u5C31\u53EA\u663E\u793A\u90A3\u4E2A\u7EC4\u7684\u751F\u7269 +public.map3.span4.link01=\u6240\u6709\u6536\u96C6 +public.map3.span4.link02=\u663E\u793A\u6240\u6709 +public.map3.span4.link03=Fauna +public.map3.span4.link04=Mammals, birds, reptiles, fish, amphibians and invertebrates +public.map3.span4.link05=\u6606\u866B +public.map3.span4.link06=Insects, spiders, mites and some other arthropods +public.map3.span4.link07=\u5FAE\u751F\u7269 +public.map3.span4.link08=Protists, bacteria, viruses, microfungi and microalgae +public.map3.span4.link09=\u690D\u7269 +public.map3.span4.link10=Vascular plants, algae, fungi, lichens and bryophytes +public.map3.adminlink=\u7BA1\u7406 +public.map3.maplistcol.li01=\u5730\u56FE +public.map3.maplistcol.li02=\u5217\u8868 +public.map3.maplistcol.des01=\u70B9\u51FB\u4E00\u4E2A\u56FE\u9488\u67E5\u770B\u5F53\u5730\u7684\u6536\u96C6\u3002\u7528\u5730\u56FE\u63A7\u5236\u653E\u5927\u6216\u7F29\u5C0F\u611F\u5174\u8DA3\u7684\u5730\u65B9\u3002\u6216\u8005\u6309\u4F4FShift\u952E\u5E76\u62C9\u52A8\u9F20\u6807\u6765\u653E\u5927\u6216\u7F29\u5C0F\u8BE5\u5730 +public.map3.maplistcol.des02=indicates there are multiple collections at this location +public.map3.maplistcol.des03=No collections are selected +public.map3.maplistcol.des04=Click on a collection name to see more details including the digitised specimen records for the collection. Collections not shown on the map (due to lack of location information) are marked + +public.lsid=LSID +public.lsidtext.link=Life Science Identifier (LSID) +public.lsidtext.des=LSIDs are persistent, location-independent,resource identifiers for uniquely naming biologically significant resources including species names, concepts, occurrences, genes or proteins, or data objects that encode information about them. To put it simply, LSIDs are a way to identify and locate pieces of biological information on the web +public.network.membership.label=Membership +public.network.membership.des01=Member of Council of Heads of Australian Entomological Collections (CHAEC) +public.network.membership.des02=Member of Council of Heads of Australasian Herbaria (CHAH) +public.network.membership.des03=Member of Council of Heads of Australian Faunal Collections (CHAFC) +public.network.membership.des04=Member of Council of Heads of Australian Collections of Microorganisms (CHACM) +public.usagestats.label=Usage statistics +public.usage.des=Loading +public.location=Location +public.website=Web site +public.numbrs.des01=Looking up... the number of records that +public.numbrs.des02=can be accessed through the Atlas of Living Australia +public.numbrs.link=Click to view records for the + +public.show.header.acronym=Acronym +public.show.overviewtabs.li01=Overview +public.show.overviewtabs.li02=Records +public.show.overviewtabs.li03=Images +public.show.oc.label01=Description +public.show.oc.label02=Taxonomic range +public.show.oc.des01=Kingdoms covered include +public.show.oc.des02=includes members from the following taxa +public.show.oc.label03=Geographic range +public.show.oc.des03=The western most extent of the collection is +public.show.oc.des04=The eastern most extent of the collection is +public.show.oc.des05=The northern most extent of the collection is +public.show.oc.des06=The southern most extent of the collection is +public.show.oc.label04=Number of +public.show.oc.label05=in the collection +public.show.oc.des07=The estimated number of +public.show.oc.des08=is +public.show.oc.des09=Of these +public.show.oc.des10=are databased +public.show.oc.des11=This represents +public.show.oc.des12=of the collection +public.show.oc.des13=Click the Records & Statistics tab to access those database records that are available through the atlas +public.show.oc.label06=Sub-collections +public.show.oc.des14=contains these significant collections +public.show.oc.label07=Usage statistics +public.show.oc.des15=Loading +public.show.osb.label01=Location +public.show.osb.label02=Web site +public.show.osb.link01=Visit the collection's website +public.show.osb.link02=Visit the +public.show.osb.link03='s website +public.show.osb.label04=Contributors to this page +public.show.rt.title=Digitised records available through the Atlas +public.show.rt.des01=The collection has databased +public.show.rt.des02=of these +public.show.rt.des03=records +public.show.rt.des04=Looking up... the number of records that +public.show.rt.des05=can be accessed through the Atlas of Living Australia +public.show.rt.des06=Click to view all records for the +public.show.rt.des07=No database records for this collection can be accessed through the Atlas of Living Australia +public.show.crmc.title=Map of occurrence records +public.show.speedocaption=No records are available for viewing in the Atlas +public.show.it.title=Images from this collection + +public.sdh.header.span01=Acronym +public.sdh.co.label01=Description +public.sdh.co.label02=Contribution to the Atlas +public.sdh.co.label03=Breakdown of specimen numbers +public.sdh.co.des01=There are +public.sdh.co.des02=Loading +public.sdh.co.des03=records in total +public.sdh.ct.label01=Location +public.sdh.ct.label02=Web site +public.sdh.ct.link01=Visit the data provider's website + +public.sdp.content.label01=Description +public.sdp.content.label02=Contribution to the Atlas +public.sdp.content.label03=Resources +public.sdp.usagestats.label=Usage statistics +public.sdp.usage.des=Loading +public.sdp.content.label04=Location +public.sdp.content.label05=Web site +public.sdp.content.link01=Visit the data provider's website + +public.sdr.content.label01=Description +public.sdr.content.label02=Type of content +public.sdr.content.label03=Citation +public.sdr.content.des01=No citation information available +public.sdr.content.label04=Rights +public.sdr.content.label05=Data generalisations +public.sdr.content.label06=Information withheld +public.sdr.content.label07=Limited downloads +public.sdr.content.des02=Downloads from this data resource are limited to +public.sdr.content.des03=records +public.sdr.content.label08=Data currency +public.sdr.usagestats.labe=Usage statistics +public.sdr.usage.des=Loading +public.sdr.content.label09=Digitised records +public.sdr.content.des04=Looking up... the number of records that +public.sdr.content.des05=can be accessed through the Atlas of Living Australia +public.sdr.content.link01=Click to view records for the +public.sdr.content.link02=resource +public.sdr.content.label10=Map of records +public.sdr.content.label11=Location +public.sdr.content.label12=Species lists +public.sdr.content.link03=View this species list in species list tool +public.sdr.content.label13=Web site +public.sdr.content.link04=Visit the data resource's website +public.sdr.infosourcelist.title=Contributors to this page + +public.si.content.label01=Description +public.si.content.label02=Contribution to the Atlas +public.si.content.label03=Collections +public.si.content.label04=Digitised records +public.si.website.link01=Visit the +public.si.website.link02='s website + +public.stdr.co.des01=This data set is a temporary set of records that has been uploaded to the sandbox by {0} on {1} +public.stdr.co.des02=The data set contains {0} records + +reports.activity.title=Registry database reports +reports.activity.li01=Reports +reports.activity.body.title=User activity report +reports.activity.body.subtitle=User activity +reports.activity.body.td01=Curator views +reports.activity.body.td02=Curator previews +reports.activity.body.td03=Curator edits +reports.activity.body.td04=Admin views +reports.activity.body.td05=Admin previews +reports.activity.body.td06=Admin edits +reports.activity.body.td07=Recent activity +reports.attributions.title=Registry database reports + +reports.li.reports=Reports + +reports.attributions.title01=Attributions report +reports.attributions.link01=Jump to institutions +reports.attributions.collections.td01=Attributions for collections +reports.attributions.collections.td02=collections shown +reports.attributions.institutions.td01=Attributions for institutions +reports.attributions.institutions.td02=institutions shown + +reports.changes.title=Registry database reports +reports.changes.title01=Recent changes +reports.changes.des01=Click a row to show full details of a change. Click a UID or ID to view the affected entity +reports.changes.legend01=Filters +reports.changes.who=Who +reports.changes.what=What +reports.changes.td01.title=When +reports.changes.td02.title=Who +reports.changes.td03.title=Did +reports.changes.td04.title=What + +reports.title=Registry database reports + +reports.classification.title01=Collection classification (in relation to map filter categories) +reports.classification.des01=collections shown. Collections in +reports.classification.des02=red +reports.classification.des03=are missing keywords that allow classification +reports.classification.td01.title=Collection +reports.classification.td02.title=Acronym +reports.classification.td03.title=Herbaria +reports.classification.td04.title=Fauna +reports.classification.td05.title=Ento +reports.classification.td06.title=Microbes +reports.classification.tr.totals=Totals + +reports.codes.title01=Provider codes report +reports.codes.td01=Codes +reports.codes.td02=collections shown + +reports.collections.title01=Collections report +reports.collections.des01=View column links to the public page for the collection. You can copy this link to use as the permanent URL to the collection page +reports.collections.des02=Edit column links to the admin page where this collection's metadata can be edited +reports.collections.des03=Showing {0} collections +reports.collections.des04=Show links +reports.collections.des05=Show collection names only + +reports.csd.title01=Specimen records statistics +reports.csd.title02=collections reported +reports.csd.td01.title=Collection +reports.csd.td02.title=No. records +reports.csd.td03.title=No. digitised +reports.csd.td04.title=No. in Atlas + +reports.ct.title01=Collection types +reports.ct.des01=collections shown. Collections in +reports.ct.des02=red +reports.ct.des03=have no type specified +reports.ct.des04=The noun(s) shown in the last column are what will be used on pages that describe the collection +reports.ct.td01.title=Collection +reports.ct.td02.title=preserved +reports.ct.td03.title=cellcultures +reports.ct.td04.title=living +reports.ct.td05.title=other +reports.ct.td06.title=noun + +reports.cfc.title01=Contact emails for all collections + +reports.contacts.title01=Contacts report +reports.contacts.full.tr01=Columns show whether the contact has an email address and a phone number +reports.contacts.full.link01=(Show names only) +reports.contacts.full.table0201=All contacts +reports.contacts.full.table0202=Email +reports.contacts.namesonly.table0101=Simple name list (for copy and paste) +reports.contacts.namesonly.table0201=All contacts + +reports.cfcm.title01=Contact emails for collections belonging to councils +reports.cfcm.table0101=CHAFC Members +reports.cfcm.table0201=none +reports.cfcm.table0301=CHAEC Members +reports.cfcm.table0401=none +reports.cfcm.table0501=CHACM Members +reports.cfcm.table0601=none + +reports.cfi.title=contacts for institutions +reports.cfi.title01=Contact emails for all institutions + +reports.data.title01=Data report +reports.data.table01.tr01=Totals +reports.data.table01.tr02=Collections +reports.data.table01.tr03=Institutions +reports.data.table01.tr04=Data providers +reports.data.table01.tr05=Data resources +reports.data.table01.tr06=Data hubs +reports.data.table01.tr07=Contacts +reports.data.title02=Collection data quality +reports.data.title03=Contact summary + +reports.dl.title01=Data relationships +reports.dl.des01=This list shows which data resources/providers provide data record for which collections/institutions +reports.dl.des02=(P) \= data provider, (R) \= data resource, (I) \= institution, (C) \= collection +reports.dl.table0101=Provider +reports.dl.table0102=Consumer + +reports.dc.title=duplicate contacts +reports.dc.title01=Duplicate contacts +reports.dc.des01=This report shows contacts that are suspected of being duplicates. Multiple contacts with the same email will disrupt the contact's ability to edit their own pages +reports.dc.title02=Duplicate email addresses +reports.dc.des02=These contacts have the same email address +reports.dc.title03=Duplicate names +reports.dc.des03=These contacts have the same first and last name + +reports.harvesters.title01=Data mobilisation settings +reports.harvesters.des01=This list shows the metadata that controls data mobilisation +reports.harvesters.des02=Click the twisty to show connection parameters. Click resource name to edit the resource +reports.harvesters.des03=Show resources with no mobilisation values +reports.harvesters.des04=Show all connection parameters +reports.harvesters.th01=Resource +reports.harvesters.th02=Status +reports.harvesters.th03=Freq (days) +reports.harvesters.th04=Last Checked +reports.harvesters.th05=Data Currency +reports.harvesters.th06=Connection +reports.index.title=ALA Collections Reports + +reports.index.title01=Natural History Collections reports +reports.index.des01=Information about the quantity, quality and usage of the ALA's biodiversity collections +reports.index.title02=Please log in +reports.index.link.login=Log in +reports.index.des02=You must log in to manage collection records +reports.index.title03=General stats +reports.index.total01=collections +reports.index.total02=data resources +reports.index.total03=institutions +reports.index.total04=data providers +reports.index.title04=General reports +reports.index.pagelink.data=Measure metadata quality +reports.index.linktext.data=a few measures of completeness of metadata +reports.index.pagelink.changes=Show changes +reports.index.linktext.changes=lists the recent changes made to the collection registry +reports.index.pagelink.membership=View memberships +reports.index.linktext.membership=lists ALA partners as well as the members of collection networks (hubs) +reports.index.title05=Collections +reports.index.title06=Institutions +reports.index.title07=Data providers & resources +reports.index.title08=Contacts +reports.index.pagelink.collections=List all collections +reports.index.linktext.collections=lists collections with permalinks and some attributes +reports.index.pagelink.codes=List provider codes +reports.index.linktext.codes=controls the mapping to biocache records +reports.index.pagelink.attributions=List attributions +reports.index.linktext.attributions=lists the sources of information for collections +reports.index.pagelink.mr=List missing records +reports.index.linktext.mr=lists collections where the number of digitised records declared significantly exceeds the number of biocache records +reports.index.pagelink.classification=Show classifications +reports.index.linktext.classification=shows how collections are classified according to their keywords into the filter groups used on the collections map page +reports.index.pagelink.ct=Show material types +reports.index.linktext.ct=shows the type keywords associated with each collection, eg preserved, living, tissue +reports.index.pagelink.th=Show taxonomic hints +reports.index.linktext.th=shows the hints for each collection. These are used to help match names when processing occurrence records +reports.index.pagelink.institutions=List all institutions +reports.index.linktext.institutions=lists institutions with permalinks and some attributes +reports.index.pagelink.providers=List all data providers and resources +reports.index.linktext.providers=list of all data providers, data resources and data hubs +reports.index.pagelink.rights=Show data resource rights and permissions +reports.index.linktext.rights=list rights, license details and permissions details for data resources +reports.index.pagelink.harvesters=Show data mobilisation parameters +reports.index.linktext.harvesters=list mobilisation, harvesting and connection parameters for data resources +reports.index.pagelink.resources=Show other resource parameters +reports.index.linktext.resources=list links for public archives that are available for download +reports.index.pagelink.dl=Show data interactions +reports.index.linktext.dl=show which providers/resources provide data records for which institutions/collections +reports.index.pagelink.contacts=List all contacts +reports.index.pagelink.dc=Show duplicate contacts +reports.index.pagelink.cfcm=Show contacts for member collections +reports.index.linktext.cfcm=lists all collections that are members of councils and their contact emails +reports.index.pagelink.cfc=Show contacts for all collections +reports.index.pagelink.cfi=Show contacts for all institutions + +reports.institutions.title01=Institutions report +reports.institutions.des01=View column links to the public page for the collection. You can copy this link to use as the permanent URL to the collection page +reports.institutions.des02=Edit column links to the admin page where this collection's metadata can be edited +reports.institutions.des03=Showing {0} institutions +reports.institutions.link01=Show links +reports.institutions.link02=Show institution names only +reports.institutions.link.view=View +reports.institutions.link.edit=Edit + +reports.membership.title01=Memberships report +reports.membership.tr01=ALA Partner Institutions +reports.membership.tr02=Council of Heads of Australasian Herbaria +reports.membership.tr0301=CHAFC Members +reports.membership.tr0302=Council of Heads of Australian Faunal Collections +reports.membership.tr0401=CHAEC Members +reports.membership.tr0402=Council of Heads of Australian Entomological Collections +reports.membership.tr0501=CHACM Members +reports.membership.tr0502=Council of Heads of Australian Collections of Microorganisms +reports.membership.tr0601=CAMD Members +reports.membership.tr0602=Council of Australasian Museum Directors + +reports.mr.title01=Missing records +reports.mr.title02=Collections where the claimed number of digitised records significantly exceeds the number of bio-cache records +reports.mr.th01=Collection +reports.mr.th02=No. declared to be digitised +reports.mr.th03=No. biocache records + +reports.mrd.title01=Specimen records statistics +reports.mrd.title02=providers reported +reports.mrd.th01=Provider +reports.mrd.th02=Resource +reports.mrd.th03=No. in Atlas + +reports.providers.title01=Data providers report +reports.providers.tr0101=All providers +reports.providers.tr0102=UID +reports.providers.tr0202=UID +reports.providers.tr0203=Provider +reports.providers.tr0302=UID +reports.providers.tr0401=All hubs +reports.providers.tr0103=Resources +reports.providers.tr0201=All resources +reports.providers.tr0204=Institution +reports.providers.tr0301=Data hubs + +reports.resources.title=data resources +reports.resources.title01=Data resources report +reports.resources.tr0102=UID +reports.resources.tr0103=Public archive +reports.resources.tr0101=All resources + +reports.rights.title01=Data resource rights and licensing +reports.rights.des01=This list shows the conditions of use for each data resource +reports.rights.des02=Click the twisty to show the full rights text. Click resource name to edit the resource +reports.rights.link01=Show resources with no license or permissions documents +reports.rights.link02=Show all details +reports.rights.th01=Resource +reports.rights.th02=License type +reports.rights.th03=Version +reports.rights.th04=Permissions doc +reports.rights.th05=Doc type +reports.rights.th06=DPA flags +reports.rights.td.rights=Rights +reports.rights.td.permissions=Permissions Document + +reports.th.title01=Collection taxonomic hints (used to constrain name matching) +reports.th.th01=Collection +reports.th.th02=Acronym +reports.th.th03=Taxonomic hint + +reports.show.table01.tr01=Totals +reports.show.table01.tr02=Collections +reports.show.table01.tr03=Institutions +reports.show.table01.tr04=Contacts +reports.show.table01.tr05=Login accounts +reports.show.title01=Collection data quality +reports.show.title02=Contact summary +reports.show.title03=Infosource summary +reports.show.title04=User activity +reports.show.table0101=Total logins +reports.show.table0102=Unique logins +reports.show.table0103=Supplier logins +reports.show.table0104=Unique supplier logins +reports.show.table0105=Curator views +reports.show.table0106=Curator previews +reports.show.table0107=Curator edits +reports.show.table0201=ALA Partner Institutions +reports.show.table0301=CHAH Members +reports.show.table0401=CHAFC Members +reports.show.table0501=CHAEC Members +reports.show.table0601=CHACM Members +reports.show.table0701=CAMD Members + +rifcs.index.title=Atlas of Living Australia +rifcs.index.title01=See this Collection on the website of + +providerGroup.imageRef.filename.label=Caption +providerGroup.imageRef.attribution.label=Attribution +providerGroup.imageRef.copyright.label=Copyright + +providerGroup.logoRef.filename.label=Caption +providerGroup.logoRef.attribution.label=Attribution +providerGroup.logoRef.copyright.label=Copyright + +institution.name.label=Name +institution.acronym.label=Acronym +institution.isALAPartner.label=ALA Partner +institution.institutionType.label=Type + +address.label=Address +providerGroup.address.postal.label=Postal +providerGroup.latitude.label=Latitude +providerGroup.longitude.label=Longitude +providerGroup.state.label=State +providerGroup.email.label=Email +providerGroup.phone.label=Phone + +collection.base.label=Edit {0} metadata +collection.guid.label=Guid +collection.name.label=Name +collection.acronym.label=Acronym +collection.resourceType.label=Resource type +collection.institution.label=Institution +dataResource.dataProvider.label=Data provider +institution.dataProvider.label=Institution +providerGroup.isALAPartner.label=Is ALA Partner +providerGroup.networkMembership.label=Belongs to +providerGroup.websiteUrl.label=Website Url +providerGroup.notes.label=Notes + +taxonomyHints.label=Taxonomy hints + +dataResource.base.label=Edit data resource metadata +providerGroup.address.street.label=Street +providerGroup.address.city.label=City +providerGroup.address.state.label=State or territory +providerGroup.address.postcode.label=Postcode +providerGroup.address.country.label=Country +providerGroup.address.postBox.label=Postal address + +default.button.editContact.label=Edit the contact's details + +default.doesnt.match.message=Property [{0}] of class [{1}] with value [{2}] does not match the required pattern [{3}] +default.invalid.url.message=Property [{0}] of class [{1}] with value [{2}] is not a valid URL +default.invalid.creditCard.message=Property [{0}] of class [{1}] with value [{2}] is not a valid credit card number +default.invalid.email.message="{2}" is not a valid e-mail address +default.invalid.range.message=Property [{0}] of class [{1}] with value [{2}] does not fall within the valid range from [{3}] to [{4}] +default.invalid.size.message=Property [{0}] of class [{1}] with value [{2}] does not fall within the valid size range from [{3}] to [{4}] +default.invalid.max.message=Property [{0}] of class [{1}] with value [{2}] exceeds maximum value [{3}] +default.invalid.min.message=Property [{0}] of class [{1}] with value [{2}] is less than minimum value [{3}] +default.invalid.max.size.message=Property [{0}] of class [{1}] with value [{2}] exceeds the maximum size of [{3}] +default.invalid.min.size.message=Property [{0}] of class [{1}] with value [{2}] is less than the minimum size of [{3}] +default.invalid.validator.message=Property [{0}] of class [{1}] with value [{2}] does not pass custom validation +default.not.inlist.message={0} with value "{2}" is not one of these allowed values {3} +default.blank.message={0} cannot be blank +default.not.equal.message=Property [{0}] of class [{1}] with value [{2}] cannot equal [{3}] +default.null.message=Property [{0}] of class [{1}] cannot be null +#default.not.unique.message=Property [{0}] of class [{1}] with value [{2}] must be unique +default.not.unique.message=The {0} must be unique - {2} is already in use + +collectionCommand.latitude.decimal.invalid={2} is not a valid latitude. Value must be a decimal number, eg -35.1245 +collectionCommand.longitude.decimal.invalid={2} is not a valid longitude. Value must be a number as decimal degrees, eg 149.3567 +collectionCommand.eastCoordinate.decimal.invalid={2} is not a valid longitude value. Value must be a decimal number, eg 149.3567 +collectionCommand.westCoordinate.decimal.invalid={2} is not a valid longitude value. Value must be a decimal number, eg 149.3567 +collectionCommand.northCoordinate.decimal.invalid={2} is not a valid latitude value. Value must be a decimal number, eg -35.1245 +collectionCommand.southCoordinate.decimal.invalid={2} is not a valid latitude value. Value must be a decimal number, eg -35.1245 +collectionCommand.numRecords.number.invalid={2} is not a valid number +collectionCommand.numRecordsDigitised.number.invalid={2} is not a valid number + +providerGroup.guid.blank.message=Guid cannot be blank +providerGroup.name.blank.message=Name cannot be blank + +default.paginate.prev=Previous +default.paginate.next=Next +default.boolean.true=Yes +default.boolean.false=No +default.date.format=yyyy-MM-dd HH:mm:ss z +default.number.format=0 + +default.created.message={0} {1} created +default.updated.message={0} {1} updated +default.deleted.message={0} {1} deleted +default.not.deleted.message={0} {1} could not be deleted +default.not.found.message={0} not found with id {1} +default.optimistic.locking.failure=Another user has updated this {0} while you were editing. This page has been refreshed with the current values. + +default.home.label=Home +default.list.label=List all {0}s +default.myList.label=List my {0}s +default.add.label=Add {0} +default.new.label=Add a new {0} +default.create.label=Create {0} +default.show.label=Show {0} +default.edit.label=Edit {0} + +default.button.create.label=Create +default.button.edit.label=Edit +default.button.update.label=Update +default.button.delete.label=Delete +default.button.done.label=Save & Exit +default.button.delete.confirm.message=Are you sure? + +contactRole.updated.message=Contact role updated + +# Data binding errors. Use "typeMismatch.$className.$propertyName to customize (eg typeMismatch.Book.author) +typeMismatch.java.net.URL={0} must be a valid URL +typeMismatch.java.net.URI={0} must be a valid URI +typeMismatch.java.util.Date={0} must be a valid Date +typeMismatch.java.lang.Double={0} must be a valid number +typeMismatch.java.lang.Integer={0} must be a valid number +typeMismatch.java.lang.Long={0} must be a valid number +typeMismatch.java.lang.Short={0} must be a valid number +typeMismatch.java.math.BigDecimal={0} must be a valid number +typeMismatch.java.math.BigInteger={0} must be a valid number + +# tool tips +scope.kingdomCoverage.tooltip=Indicate which kingdoms are covered by your collection +scope.scientificNames.tooltip=
+scope.spatialRepresentationType.tooltip=Type of geospatial data +scope.spatialResolution.tooltip=e.g. scale or ground distance +scope.states.tooltip=States and territories that are covered by the collection +scope.geographicDescription.tooltip=A free text description of the geographical scope of the collection +scope.wellKnownText.tooltip=In text markup language for representing vector geometry objects on a map +scope.eastCoordinate.tooltip=Furthest point East for this dataset in decimal degrees +scope.westCoordinate.tooltip=Furthest point West for this dataset in decimal degrees +scope.northCoordinate.tooltip=Furthest point North for this dataset in decimal degrees +scope.southCoordinate.tooltip=Furthest point South for this dataset in decimal degrees +scope.startDate.tooltip=The start date of the period the collection covers +collection.endDate.tooltip=The end date of the period the collection covers +#collection..tooltip= + +# labels +collection.searchList.label=Collections matching "{0}" +institution.searchList.label=Institutions matching "{0}" +collection.eastCoordinate.label=Most eastern
longitude +collection.westCoordinate.label=Most western
longitude +collection.northCoordinate.label=Most northern
latitude +collection.southCoordinate.label=Most southern
latitude +collection.numRecordsDigitised.label=Number of records
digitised + +dataResource.mobilisationNotes.label=Notes on dialogue with contributor + +# help text +providerGroup.networkMembership=Check any organisations where your collection or the administering institution is a member. +collection.guid=Use the collection LSID if known. This value must be unique. +collection.name=Official name of the Collection in the local language. This value is required. +collection.acronym=Acronym, coden or initialism by which the collection is generally known. +collection.collectionType=Check each type of material that is included in the collection. +collection.active= +collection.focus= +collection.pubDescription=Main description element may be a paragraph or two, suitable for a general audience. +collection.techDescription=Optional additional descriptive text using terms that are more suited to a specialist audience. +collection.notes= +collection.keywords= +providerGroup.providerCodes=Specify the code you use within your organisation for this collection. This should match the collection code you use if you publish specimen records digitally. If multiple codes apply to this collection, list them all separated by commas. +collection.kingdomCoverage=Indicate which biological kingdoms are covered by your collection. +collection.scientificNames=Taxon or taxa in the collection at Family level or higher. +collection.spatialResolutionType=Type of geospatial data. +collection.spatialResolution=e.g. scale or ground distance +collection.states=States and territories that are covered by the collection. +collection.geographicDescription=A free text description of the geographical scope of the collection. +collection.wellKnownText=In text markup language for representing vector geometry objects on a map. +collection.eastCoordinate=Furthest point East for this dataset in decimal degrees. +collection.westCoordinate=Furthest point West for this dataset in decimal degrees. +collection.northCoordinate=Furthest point North for this dataset in decimal degrees. +collection.southCoordinate=Furthest point South for this dataset in decimal degrees. +collection.startDate=The start date of the period during which items were collected. +collection.endDate=The end date of the period during which items were collected. +collection.basisOfRecord= +collection.numRecords= +collection.numRecordsDigitised= +collection.address +collection.latitude=The latitude in decimal degrees of where the collection is located. +collection.longitude=The longitude in decimal degrees of where the collection is located. +collection.state=The state where the collection is located. +collection.email=A common email address for the collection. +collection.phone=A common phone number for the collection. +collection.websiteUrl= +collection.imageRef= +image.caption= +image.attribution= +image.copyright= +collection.currentInstitutions= +collection.addExistingInstitution= +collection.createNewInstitution= +collection.contacts=Enter a role for each contact eg curator, manager. Check the edit box if the contact is allowed to edit this collection. Check the primary box for one contact to select it as the contact to display on the collection's home page. +collection.addExistingContact=Select a known contact to add to this collection and click 'Add contact'. +collection.addNewContact=Enter details for a new contact which will be automatically added to this collection. Click 'Add contact'. + +institution.name= +institution.guid=The URI (LSID or URL) of the institution. +institution.acronym= +institution.type= + +dataResource.dataProvider=The data provider that publishes this resource. +dataResource.institution=The institution that is the source of records for this data resource. +dataResource.status=Stage of integration with the Atlas. +dataResource.lastChecked=When the source was last checked for new data. Normally set automatically. +dataResource.dataCurrency=The date of production of the most recent data set. Format is YYYY-MM-DD hh:mm:ss.s . +dataResource.harvestFrequency=How often the resource is to be harvested (in days). +dataResource.mobilisationNotes=Progress and status of the dialogue with the resource owner. +dataResource.harvestingNotes=Notes on the harvesting process - such as what components are to be harvested. +dataResource.termsForUniqueKey=Select the set of fields in the data records that can be combined to create a globally uniquely identity for a record.
You can use the auto-complete function to choose Darwin Core fields or type in names directly separating them with a comma. +dataResource.csv_eol=Any combination of HT, LF, VT, FF, CR and any printable character, eg. CRLF. +dataResource.csv_delimiter=Any of HT, LF, VT, FF, CR or any printable character, typically , (comma) or HT (tab). +dataResource.csv_escape_char=Any of printable character, typically /,\\, - used to escape the delimiters and quotes. +dataResource.csv_text_enclosure=Any of printable character, typically " - used to enclose delimiters where they appear in a value. +providerGroup.acronym=Acronym, coden or initialism by which this entity is generally known. +providerGroup.attribution.BCI=Ticking this box will include the Biodiversity Collections Index as an attributed source of information for this collection +providerGroup.attribution.CHAH=Ticking this box will include the Council of Heads of Australasian Herbaria as an attributed source of information for this collection +providerGroup.attribution.CHACM=Ticking this box will include the Council of Heads of Australian Collections of Microorganisms as an attributed source of information for this collection +providerGroup.attribution.institution=The institution will always be attributed as a source. The ability to change this is not yet implemented. + +contactFor.role= +contactFor.administrator= + +contact.title= +contact.firstName= +contact.lastName= +contact.phone= +contact.mobile= +contact.email= +contact.fax= +contact.notes= +contact.makePublic= + +shared.mes01=Choose a +shared.mes02=different image +shared.mes03=Choose an +shared.mes04=image +shared.a.title01=Attributions +shared.changes.title01=Change history +shared.changes.des01=Click an item to view full change details +shared.changes.update=in Contact +shared.changes.insert=new Contact +shared.changes.showchanges=Show all +shared.consumers.title01=Record consumers +shared.consumers.des01=These institutions and collections hold specimens related to the records sourced from this {0} +shared.consumers.des02=Adding relationships here allows data processing to correctly attribute records down to the collection using collection codes and institution codes associated with the institution +shared.consumers.des03=The specified consumer does not exist +shared.consumers.link01=Add/remove collections +shared.consumers.link02=Add/remove institutions +shared.contacts.title01=Contacts +shared.images.span01=File name +shared.images.span02=Caption +shared.images.span03=Attribution +shared.images.span04=Copyright +shared.location.title01=Location +shared.providers.title01=Record providers +shared.providers.des01=These data resources contribute digitised records for specimens in this {0} +shared.providers.li01=The specified provider does not exist +shared.providers.des02=To change the relationship with record providers please go to the +shared.providers.link01=data resource(s) +shared.providers.des03=and edit its +shared.providers.des04=record consumers +shared.th.title01=Taxonomy hints +shared.attributes.label01=Include BCI attribution +shared.attributes.label02=Include CHAH attribution +shared.attributes.label03=Include CHACM attribution +shared.attributes.label04=Include institution attribution +shared.cr.table0101=Editing the role of +shared.cr.table0201=Role +shared.cr.table0301=Administrator +shared.cr.table0302=Determines whether the contact can edit properties of this +shared.cr.table0401=Notify +shared.cr.table0402=If set, the contact will be notified when annotations are made to records in this +shared.cr.table0501=Primary contact +shared.cr.table0502=The primary contact is the one displayed on the public page for this +shared.eth.title01=Editing +shared.eth.des01=Hints help in the processing of occurrence records that are associated with this +shared.eth.th01=Rank +shared.eth.th02=Name +shared.eth.button.update=Update +shared.eth.button.cancel=Cancel +shared.images.des01=Logo image +shared.images.des02=Representative +shared.images.button.update=Update +shared.images.button.remove=Remove image +shared.images.button.cancel=Cancel +shared.location.main.title01=Editing +shared.location.lookup=Click to load lat/long based on street address +shared.location.button.useinherited=Click to load lat/long based on the parent institution's location +shared.location.main.des01=Drag pin on map to the exact location of the +shared.location.main.des02=You may need to zoom in and turn on the hybrid view to locate the building +shared.location.button.update=Update +shared.location.button.cancel=Cancel +shared.title.editing=Editing +shared.providers.notselected.label=Resources +shared.providers.selected.title=Record providers +shared.providers.selected.des=Drag resources to here +shared.button.update=Update +shared.button.cancel=Cancel +shared.sc.title=Edit {0} metadata +shared.sc.title01=Displaying change history for +shared.sc.des01=Changes are shown with the latest first +shared.sc.des02=At {0} {1} changed the {2} field +shared.sc.table01.cell0101=to +shared.sc.table01.cell0102=from +shared.sc.des03=At {0} {1} added a contact +shared.sc.table02.cell0101=id +shared.sc.des04=At {0} {1} removed a contact +shared.sc.table03.cell0101=id +shared.sc.table03.cell0102=name not available - has been deleted +shared.sc.des05=At {0} {1} created this +shared.scontact.title01=Current contacts +shared.scontact.table.label01=In this collection +shared.scontact.table.li01=Role is +shared.scontact.table.li02=Editor +shared.scontact.table.li03=Notify +shared.scontact.table.li04=Primary contact +shared.scontact.link01=Edit the contact's role in this +shared.scontact.link02=Remove the contact for this +shared.scontact.title02=New contacts +shared.scontact.table01.cell0101=Choose an existing contact +shared.scontact.table02.cell0101=Create a new contact and add them to this +default.button.addContact.label=Add new contact +shared.tr.title01=Describe the taxonomic range of this resource +shared.tr.des01=Select any number of the groups listed below. The right-hand box shows a consolidated list of your selections +shared.tr.title02=Make your selections here +shared.tr.title03=Selected groups +shared.tr.button01=clear all +shared.tr.help.title01=Some help pages +shared.tr.help.link01=How do I select taxonomic groups +shared.tr.help.link02=How do I save my selections +shared.tr.help.link03=How do I define a taxonomic scope +shared.tr.help.link04=How do I change the metadata for a data resource +shared.tr.help.title02=Some relevant FAQs +shared.tr.help.link05=What if my taxonomic group isn't shown here +shared.tr.help.link06=Who chose this set of taxonomic groups +shared.tr.help.link07=What is this information used for +shared.tr.help.link08=How do I report a bug + +admin.home.title=ALA Collections Management +admin.home.li01=home +admin.home.li02=ala +admin.home.li03=collections +admin.logout=logout +admin.login=login +admin.loggedin=Logged in as +admin.home.welcome.span01=Update our information about +admin.home.welcome.title01=Natural History Collections and their Institutions +admin.home.welcome.des01=Descriptions of Australian biodiversity collections can be added and updated here +admin.home.welcome.title02=Please log in +admin.home.welcome.des02=You must log in to manage collection records +admin.home.welcome.link01=Log in +admin.home.buttons.title01=Collections +admin.home.buttons.link01=View all collections +admin.home.buttons.link02=View my collections +admin.home.buttons.link03=Add a collection +admin.home.buttons.span01=Search for collections +admin.home.buttons.title02=Institutions +admin.home.buttons.link04=View all institutions +admin.home.buttons.link05=View my institutions +admin.home.buttons.link06=Add an institution +admin.home.buttons.span02=Search for institutions +admin.home.buttons.title03=Data sets +admin.home.buttons.link07=View all data resources +admin.home.buttons.link08=View all data providers +admin.home.buttons.link09=Add a data resource +admin.home.buttons.span03=Search for data sets +admin.home.buttons.title04=Profile +admin.home.buttons.link10=Edit my profile +admin.home.buttons.des01=View and edit your contact details, roles, notifications, etc +admin.home.buttons.title05=Admin +admin.home.buttons.link11=View reports +admin.home.buttons.link12=Manage contacts +admin.home.buttons.link13=Export all data as JSON +admin.home.buttons.title06=Codes and maps +admin.home.buttons.link14=Manage provider codes +admin.home.buttons.link15=Edit the list of available collection and institution codes +admin.home.buttons.link16=Manage provider maps +admin.home.buttons.link17=Allocate collection and institution codes to collections +admin.index.title=ALA Collections Management +admin.index.link01=View public site +admin.index.title01=

Natural History Collections Management

Information about Australian biodiversity collections can be added and updated here.

+admin.notlogin.title=Please log in +admin.notlogin.link=Log in +admin.notlogin.des=You must log in to manage collection records +admin.index.link02=Edit my profile +admin.index.des02=View and edit your contact details, roles, notifications, etc +admin.index.link03=View all collections +admin.index.des03=Browse all current collections and update collection descriptions +admin.index.link04=View my collections +admin.index.des04=Browse my collections and update collection descriptions +admin.index.link05=Search for collections +admin.index.des05=Enter a part of the name of a collection or its acronym, eg insects, fungi, ANIC +admin.index.link06=Add a collection +admin.index.des06=Describe a collection that is not currently listed +admin.index.link07=View all institutions +admin.index.des07=Browse the institutions that hold collections +admin.index.des08=These actions are only available to system admins +admin.index.link09=View all data providers +admin.index.des09=Browse all current data providers +admin.index.link10=View all data resources +admin.index.des10=Browse all current data resources +admin.index.link11=View reports +admin.index.des11=Browse summaries of Registry contents and usage +admin.index.link12=Manage contacts +admin.index.des12=View and edit all known contacts for collections and institutions +admin.index.link14=Manage provider codes +admin.index.des14=View and edit all known collection and institution codes +admin.index.link15=Manage provider maps +admin.index.des15=View and edit the allocation of collection and institution codes to collections +admin.index.link16=Export all data as JSON +admin.index.des16=All tables exported verbatim as JSON +admin.sr.title=ALA Collections Management Search Results +admin.sr.title01=Search results +admin.sr.span01=Your search returned no results +admin.sr.des01=Click (View) to display the public page. Click the name or (Edit) to enter the editor's view of the information +admin.sr.title02=Collections +admin.sr.link.view=View +admin.sr.link.edit=Edit +admin.sr.title03=Institutions +admin.sr.title04=Data providers +admin.sr.title05=Data resources + +ale.list.title=Audit +ale.list.li01=Audit list of events +ale.list.title01=Audit - List of events +ale.show.title=Show AuditLogEvent +ale.show.li01=Audit +ale.show.title01=Show Audit +ale.show.cell0101=Id +ale.show.cell0201=Actor +ale.show.cell0301=Uri +ale.show.cell0401=Class Name +ale.show.cell0501=Persisted Object Id +ale.show.cell0601=Persisted Object Version +ale.show.cell0701=Event Name +ale.show.cell0801=Property Name +ale.show.cell0901=Old Value +ale.show.cell1001=New Value +ale.show.cell1101=Date Created +ale.show.cell1201=Last Updated +ale.show.cl.des=There are no collections listed against your login at present + +collection.title.editing=Editing + +providerGroup.existingContacts.label=Current contacts for this collection +providerGroup.addAContact.label=Add a known contact to this collection + +contact.title.label=First name +contact.firstName.label=First name +contact.lastName.label=Last name +contact.phone.label=Phone +contact.mobile.label=Mobile +contact.email.label=Email +contact.fax.label=Fax +contact.notes.label=Notes +contact.publish.label=Make public + +collection.contacts.table01.th01=Name +collection.contacts.table01.th02=Role (for this collection) +collection.contacts.table01.th03=Admin +collection.contacts.table01.th04=Primary +collection.contacts.table01.btn01=Remove +collection.contacts.table01.td01=Phone +collection.contacts.table01.td02=Email +collection.contacts.table02.td01=Select +collection.contacts.span01=Create a new contact and add to this collection +collection.contacts.table03.span02=Contact will be shown on the collection page +collection.contacts.table03.btn01=Add contact +collection.button.update=Update +collection.button.cancel=Cancel +collection.des.title01=Creating a new collection + +providerGroup.pubDescription.label=Public Description +providerGroup.techDescription.label=Technical Description +providerGroup.focus.label=Focus +collection.collectionType.label=Collection Type +providerGroup.sources.active.label=Status +collection.keywords.label=Keywords +scope.subCollections.label=Sub-collections + +collection.label=Collection + +collection.myList.label=My collections +institutions.myList.label=My institutions + +collection.numRecords.label=Number of specimens +collection.range.title01=Creating a new collection +collection.range.table01.title=Geographic range +collection.range.table01.label01=Geographic description +collection.range.table01.label02=States +collection.range.table01.label03=If possible, describe the geographic range of your collection in terms of the maximum extents of the regions of collection +collection.range.table01.label04=Most eastern longitude +collection.range.table01.label05=Western extent +collection.range.table01.label06=Northern extent +collection.range.table01.label07=Southern extent +collection.range.table01.title02=Taxonomic range +collection.range.table01.label08=Kingdom coverage +collection.range.table01.label09=Scientific names +collection.range.table01.title03=Statistics +collection.show.span01=LSID +collection.show.span02=UID +collection.show.span03=Collection website +collection.show.title01=Description +collection.show.span04=Public description +collection.show.span05=Technical description +collection.show.span06=Start/End dates +collection.show.span07=Collection types include +collection.show.span08=Activity status is +collection.show.span09=Keywords +collection.show.des01=are not directly displayed but are used for searching and filtering. These keywords have been added for this collection +collection.show.link01=Add fauna +collection.show.link02=Add plants +collection.show.link03=Add entomology +collection.show.link04=Add microbes +collection.show.title02=Sub-collections +collection.show.title03=Geographic range +geographicDescription.label=Geographic Description +states.label=States covered +focus.label=Collection focus +kingdomCoverage.label=Kingdom Coverage +scientificNames.label=Scientific Names +collection.show.coordinate.des01=Specimens were collected +collection.show.coordinate.des03=North +collection.show.coordinate.des02=within these bounds +collection.show.coordinate.des04=West +collection.show.coordinate.des05=East +collection.show.coordinate.des06=South +collection.show.title04=Taxonomic range +collection.show.title05=Number of +collection.show.title06=in the collection +collection.show.des07=The estimated number of +collection.show.des08=within +collection.show.des09=is +collection.show.des10=Of these {0} are digitised +collection.show.des11=This represents +collection.show.des12=of the collection +collection.show.des13=The mapping of records to this collection is based on the provider codes shown in the 'Provider codes' section +collection.show.title07=Provider codes +collection.show.des14=These codes control the mapping of online records to this collection +collection.show.des15=Institution codes +collection.show.des16=Collection codes +collection.show.des17=Will match any collection code +collection.show.des18=Codes do not map exactly to this collection +collection.show.des19=Warning is + +contact.label=Contact + +contact.id.label=Id + +contact.for.label=Contact for + +profile.base.label=My profile +contact.sp.title01=Editing my profile +contact.sp.title02=My profile +contact.sp.title03=phone +contact.sp.title04=mobile +contact.sp.title05=fax +contact.sp.title06=Contact for +contact.sp.des01=Describe your role within this +contact.sp.des02=Would you like to be notified by email of any significant events in this +contact.sp.des03=How often would you like to receive notifications +contact.sp.radio01=Each event +contact.sp.radio02=Daily +contact.sp.radio03=Weekly + +data.catalogue.title=Web Services | Natural History Collections | Atlas of Living Australia +data.catalogue.li01=Home +data.catalogue.li02=Collections +data.catalogue.li03=Web services +data.catalogue.title01=Web services for the Atlas Registry +data.catalogue.des01=More information can be found at the project's +data.catalogue.des02=wiki +data.catalogue.des03=and in particular in the documentation of +data.catalogue.des04=Collectory services +data.catalogue.title02=Data services +data.catalogue.des05=The registry of the Atlas of Living Australia maintains metadata that describe +data.catalogue.ws0024.li01=collections - natural history collections +data.catalogue.ws0024.li02=institutions - institutions and organisations that manage collections +data.catalogue.ws0024.li03=dataProviders - providers of biodiversity information in electronic form, eg occurrence records, websites +data.catalogue.ws0024.li04=dataResources - specific resources made available by data providers +data.catalogue.ws0024.li05=tempDataResources - temporary resources holding records uploaded to the sandbox +data.catalogue.ws0024.li06=dataHubs - aggregators of biodiversity data; and +data.catalogue.ws0024.li07=contacts - for any of the above resources +data.catalogue.des06=Access to this metadata is provided by resource-oriented web services that adhere to RESTful principles. Response payloads are generally formatted as JSON although some services offer other formats through content negotiation +data.catalogue.des007=Details of how these services can be used are provided at the project's wiki, and in particular here +data.catalogue.title03=Form of URIs +data.catalogue.table01.cell0101=All service URIs are based on the URI of this page +data.catalogue.table01.cell0201=URI's for the resources listed above are this root plus the name of the type of resource, eg +data.catalogue.table01.cell0301=The URI for a specific instance of a resource is the same followed by the UID of the instance. For example, the resource representing the Aust. Wine Research Institute (UID\=in72) is +data.catalogue.table01.cell0401=The URI to get a total count of a specific resource is resource name followed by 'count'. For example, the number of institutions is given by +data.catalogue.table01.cell0501=Counts for a specific resource can be grouped by any attribute of the resource. For example, the breakdown of institutions by state is given by +data.catalogue.table01.cell0601=Resources that are attributes of a resource, such as the list of contacts for a collection, are addressed by appending the resource type to the uri that represents the main resource, eg +data.catalogue.title04=Methods +data.catalogue.des08=Data services support the GET, HEAD, POST, PUT, OPTIONS and DELETE methods +data.catalogue.des09=GET will return the json representation of the specified resource or the list of all resources of the specified resource type +data.catalogue.des10=HEAD will return no content but will confirm the existence of the specified resource +data.catalogue.des11=POST will update the specified resource based on the information in the body of the request. If no resource is specified, the information in the body will be used to create a new resource. The body must be valid json and you must specify at least these properties +data.catalogue.li04=user - the name of the application that is requesting the update; and +data.catalogue.li05=api_key - a valid key to verify that you are authorised to modify the resource +data.catalogue.des12=If a new resource is being created you must also specify at least +data.catalogue.li06=name - the name of the resource +data.catalogue.des13=Other properties are treated as the properties to be updated. Property names are the same as those used in the GET representation +data.catalogue.des14=PUT behaves the same as POST +data.catalogue.des15=OPTIONS returns a list of the allowed methods +data.catalogue.des16=DELETE will remove the specified resource. The body must be valid json and you must specify these properties +data.catalogue.li07=user - the name of the application that is requesting the update; and +data.catalogue.li08=api_key - a valid key to verify that you are authorised to modify the resource +data.catalogue.ws0025.title=Contacts +data.catalogue.ws0025.des=Contacts exist as resources in their own right. They can be accessed in the standard form +data.catalogue.ws0025.cell0101=List all contacts +data.catalogue.ws0025.cell0201=Get details for a specific contact +data.catalogue.ws0025.cell0301=Find a contact by its email address +data.catalogue.ws0025.des01=Editing contacts follows the same pattern as the major entities. PUT and POST will update a contact if an id is specified in the url, else a new contact is added. DELETE will remove a contact +data.catalogue.ws0025.des02=The body must be valid json and you must specify at least these properties +data.catalogue.ws0025.li01=user - the name of the application that is requesting the update; and +data.catalogue.ws0025.li02=api_key - a valid key to verify that you are authorised to modify the resource +data.catalogue.ws0025.des03=and may also specify +data.catalogue.ws0025.li03=firstName +data.catalogue.ws0025.li04=lastName +data.catalogue.ws0025.li05=fax +data.catalogue.ws0025.li06=phone +data.catalogue.ws0025.li07=mobile +data.catalogue.ws0025.li08=notes +data.catalogue.ws0025.li09=public (true or false) - controls whether the contact will be displayed on a public web page +data.catalogue.ws0025.des04=Note that contacts do not have UIDs. They use the raw DB-assigned ID instead +data.catalogue.ws0025.des05=The user's email is effectively the primary key for a contact. Always check whether a contact exists (by searching for its email address) before creating one +data.catalogue.ws0025.des06=A contact may be associated with any number of resources. A resource may have any number of contacts. The relationship between a contact and a resource has its own metadata such as the role that the contact has in relation to the resource, the contact's editing rights, etc +data.catalogue.ws0025.title01=Contact relationships +data.catalogue.ws0025.table0101=This metadata is accessed by appending contacts to the uri of a resource using the form +data.catalogue.ws0025.table0201=For example +data.catalogue.ws0025.table0301=The metadata for a specific contact relationship has the form +data.catalogue.ws0025.table0401=For example +data.catalogue.ws0025.table0501=The primary contacts for all instances of a type of resource can be accessed using the form +data.catalogue.ws0025.table0601=For example +data.catalogue.ws0025.table0701=Contacts may elect to be notified when significant events occur to a resource. The list of contacts to be notified for a specific resource can be retrieved from a uri of the form +data.catalogue.ws0025.table0801=For example +data.catalogue.ws0025.table0901=You can retrieve all the entities that the specified contact is authorised to edit. The uri has the form +data.catalogue.ws0025.table1001=For example +data.catalogue.ws0025.des07=All contact services can return payload as CSV, XML or JSON via content negotiation +data.catalogue.ws0025.link01=More information +data.catalogue.ws0025.des08=Contact relationships can be updated by following the usual rules. The contact must already exist +data.catalogue.ws0025.des09=POST will add the contact to a resource if it does not already exist or will update the relationship using the json data in the request body +data.catalogue.ws0025.des10=The body must be valid json and you must specify at least these properties +data.catalogue.ws0025.li10=user - the name of the application that is requesting the update; and +data.catalogue.ws0025.li11=api_key - a valid key to verify that you are authorised to modify the resource +data.catalogue.ws0025.des11=and may also specify +data.catalogue.ws0025.li12=role - the role the contact has in for this resource eg, 'Manager' +data.catalogue.ws0025.li13=notify (true or false) - if the contact wishes to be notified on significant events (this has been superceded by Alerts) +data.catalogue.ws0025.li14=administrator - if the contact is allowed to administer this resource +data.catalogue.ws0025.li15=primaryContact - if the contact is the primary contact for this resource +data.catalogue.ws0025.des12=The form of the url is +data.catalogue.ws0025.des13=same as POST +data.catalogue.ws0025.des14=will remove the contact from a resource +data.catalogue.ws0025.des15=The body must be valid json and you must specify at least these properties +data.catalogue.ws0025.li16=user - the name of the application that is requesting the update; and +data.catalogue.ws0025.li17=api_key - a valid key to verify that you are authorised to modify the resource +data.catalogue.ws0025.des16=The url has the same form as above +data.catalogue.ws0026.title=EML metadata interchange +data.catalogue.ws0026.des01=The registry provides a service to extract resource metadata in EML format. The response complies with +data.catalogue.ws0026.link01=GBIF's EML schema +data.catalogue.ws0026.des02=This document is suitable for inclusion in a Darwin Core Archive as the metadata description of the contained records. The form is +data.catalogue.ws0026.table0101=This example uri returns an XML document describing the set of occurrence records for the DECCW Atlas of NSW Wildlife +data.catalogue.ws0032.title=Citation services +data.catalogue.ws0032.des01=Citation services return attribution and licence information for digitised records that can be accessed through the Atlas +data.catalogue.ws0032.title01=Citations for a list of data providers +data.catalogue.ws0032.des02=This service accepts a list of entity UIDs and returns citation information for each entity. Any entity types can be specified but only data resources have meaningful citation information. For each entity, the service returns the name of the entity, its citation text, its rights text and a 'more information' string containing a link to the collectory page for the entity. The form is +data.catalogue.ws0032.td0101=where listOfUIDs is a comma-separated list of UID +data.catalogue.ws0032.td0201=This example uri returns a list of citations for the three specified data resources +data.catalogue.ws0032.des03=The service can return the information as a JSON list or a CSV or TSV file with appropriate headers. The format is specified by http content-negotiation +data.catalogue.ws0032.link02=More information +data.catalogue.ws0032.title02=Lookup services +data.catalogue.ws0032.des04=These services explicitly support inter-operation with other components of the Atlas such as the bio-cache and the BIE. They do not all comply with RESTful principles but are being progressively refactored to do so +data.catalogue.ws0027.title=Map a bio-cache record to a collection +data.catalogue.ws0027.des01=This service takes a collection code and an institution code from a raw specimen record and maps the combination to a single collection. The form is +data.catalogue.ws0027.table0101=This example uri returns metadata for the Australian National Insect Collection +data.catalogue.ws0028.title=Get a summary for an entity +data.catalogue.ws0028.des01=This service just returns a subset of metadata for an entity. The form is +data.catalogue.ws0028.table0101=This example uri returns the short metadata for the Birds Australia data provider +data.catalogue.ws0028.des02=The summary services are less useful now that we have full RESTful metadata services but are retained for backward compatibility. They also provide a small efficiency when the service is called repeatedly such as during indexing operations +data.catalogue.ws0028.link01=More information +data.catalogue.ws0029.title=Lookup the name of an entity +data.catalogue.ws0029.des01=This service is even more cut down than the summary. It returns only the name of an entity given its UID. The form is +data.catalogue.ws0029.link01=More information +data.catalogue.ws0030.title=Get taxonomic coverage hints for an entity +data.catalogue.ws0030.des01=This service plays a roll in taxonomic name matching during the processing of raw bio-cache records. When a record has been mapped to a collection, the collection metadata can be used to inform the matching process by adding weight to matches within particular taxonomic groups. The form is +data.catalogue.ws0030.table0101=This example uri returns a list of rank-name pairs that describe a taxonomic range +data.catalogue.ws0030.title01=List download limits for all data resources +data.catalogue.ws0030.des02=Limits can be applied to the number of records that can be downloaded from a particular resource per request +data.catalogue.ws0030.des03=is returned, there are no limits currently set. The form is +data.catalogue.ws0030.title02=Generate UID for a new entity +data.catalogue.ws0030.des04=This is a temporary service used when new data resources are discovered during the harvesting of records. This service will disappear when the harvesting process is refactored. The standard data services will be used to create the new resource and return the UID assigned by the collectory. The form is +data.catalogue.ws0030.link01=More information +data.catalogue.ct.title01=Common services +data.catalogue.ct.title02=Detailed documentation +data.catalogue.ct.link01=List all collections +data.catalogue.ct.lik02=List all institutions +data.catalogue.ct.link03=List all data providers +data.catalogue.ct.link04=List all data resources +data.catalogue.ct.link05=List all hubs +data.catalogue.ct.link06=List main contact for each collection +data.catalogue.ct.link07=Project wiki +data.catalogue.ct.link08=Services overview +data.catalogue.ct.link09=Data Services +data.catalogue.ct.link10=EML service +data.catalogue.ct.link11=Citations service +data.catalogue.ct.link12=Lookup services + +dataHub.base.label=Edit data hub metadata +dataHub.name.label=Name +providerGroup.uid.label=UID +dataHub.acronym.label=Acronym + +dataHub.memberInstitutions.label=Institutions +dataHub.memberCollections.label=Collections +dataHub.memberDataResources.label=Data resources +datahub.show.lastchange=Last change +datahub.show.title02=Members +datahub.show.tile.resources=Resources + +dataLink.label=DataLink +dataLink.consumer.label=Consumer +dataLink.provider.label=Provider +dataLink.id.label=Id +datalink.list.filter.title=DataLinks for + +dataProvider.base.label=Edit data provider metadata +dataProvider.name.label=Name +dataProvider.resources.label=No. resources +dataprovider.show.span06=Contribution +dataprovider.show.link01=create a new data resource for this provider +dataresource.consumers.des01=Drag a {0} to the consumers box to add it as a record consumer. Or just click the {1} to add it +dataresource.consumers.des02=Drag or click a record comsumer to remove it +dataresource.consumers.selected.title01=Record consumers +dataresource.consumers.selected.title02=Drag consumers to here + +dataResource.status.label=Status +dataResource.provenance.label=Provenance +dataResource.lastChecked.label=Last checked +dataResource.dataCurrency.label=Data currency +dataResource.harvestFrequency.label=Harvest frequency +dataResource.harvestingNotes.label=Harvesting notes +dataResource.publicArchiveAvailable.label=Public archive available +dataresource.contribution.des01=Remember to add your initials and the date of contact +dataresource.contribution.table0101=Connection parameters +dataresource.contribution.table0201=Default values for DwC fields +dataresource.contribution.table0301=Make sure you confirm all defaults with the data provider +dataresource.contribution.table0401=Choose another DwC term and click button to add a new field +dataresource.contribution.table.button=Add new term +dataResource.dataGeneralizations.label=Data Generalisations +dataResource.informationWithheld.label=Information withheld +dataResource.contentTypes.label=Content types +dataresource.description.des01=Click content types to add them to the selected set +dataresource.description.title01=Available +dataresource.description.title02=Selected +dataresource.description.des02=Click items in the left list to add them as content types for this resource +upload.gbif.archive=Upload GBIF Archive +dataresource.gbifupload.title01=Automatically create a data resource from a GBIF download +dataresource.gbifupload.form.label01=GBIF Darwin core archive file +dataresource.gbifupload.form.des01=Use this tool to upload an archive you have downloaded from the +dataresource.gbifupload.form.link01=GBIF portal +dataresource.gbifupload.form.des02=This will create a data resource for this archive. To load the data, use the biocache commandline tools +dataresource.gbifupload.form.des03=Note +dataresource.gbifupload.form.des04=This is a simple method of bootstrapping an installation with data provided by GBIF web services +dataresource.gbifupload.form.des05=This is not intended for long-term production use +dataresource.gbifupload.form.span01=Select file +dataresource.gbifupload.form.span02=Change +dataresource.gbifupload.form.link02=Remove +dataresource.gbifupload.form.button01=Upload +dataresource.gbifupload.form.button02=Cancel +dataResource.name.label=Name +dataResource.resourceType.label=Type +dataResource.citation.label=Citation +dataResource.rights.label=Rights +dataResource.licenseType.label=License type +dataResource.licenseVersion.label=License version +dataResource.permissionsDocument.label=Permissions document +dataResource.permissionsDocumentType.label=Permissions document type +dataResource.riskAssessment.label=Risk assessment completed +dataResource.filed.label=Agreement filed +dataResource.downloadLimit.label=Download limit +dataresource.show.span01=Source of records +dataresource.show.span02=GUID +dataresource.show.span03=Resource type +dataresource.show.span04=Website +dataresource.show.span06=Data generalisations +dataresource.show.span07=Information withheld +dataresource.show.title01=Data mobilisation +dataresource.show.span09=Atlas contributor +dataresource.show.span10=Status +dataresource.show.span11=Provenance +dataresource.show.span12=Last checked +dataresource.show.span13=Data currency +dataresource.show.span14=Harvest frequency +dataresource.show.span15=Every {0} days +dataresource.show.span16=Manual +dataresource.show.span17=Mobilisation notes +dataresource.show.span18=Harvesting notes +dataresource.show.span19=Public archive available +dataresource.show.title02=Connection parameters +dataresource.show.title03=File upload +dataresource.show.link01=Upload a data file +dataresource.show.title04=Citation and rights +dataresource.show.documentfield.label=Document filed +dataresource.upload.title01=Upload data file for +dataresource.upload.des01=You can use this to upload a file +dataresource.upload.label01=Protocol +dataresource.upload.label02=File +dataresource.upload.label03=Select file +dataresource.upload.label04=Change +dataresource.upload.label05=Cancel + +institution.base.label=Edit institution metadata +providerGroup.institutionType.label=Institution Type +institution.label=Institution +providerGroup.guid.label=Guid +providerGroup.name.label=Name +providerGroup.acronym.label=Acronym +providerGroup.address.label=Address +providerGroup.logoRef.label=Logo Ref +providerGroup.imageRef.label=Image Ref +contactFor.administrator.label=Administrator +contactFor.role.label=Role +contactFor.administrator.label=Administrator +institution.edit.des01=Choose contacts for this collection +institution.edit.des02=Admin +institution.edit.des03=Select +institution.edit.des04=Role +institution.edit.des05=e.g. Manager +institution.edit.des06=Curator, Editor +institution.edit.des07=Allows the person to edit this institution +institution.edit.des08=Create a new contact and add to this institution +institution.edit.des09=Contact will be shown on the collection page +institution.edit.des10=Allows the person to edit this collection +institution.edit.span07=Institution type +manage.show.lsidtext.des=LSIDs are persistent, location-independent,resource identifiers for uniquely naming biologically significant resources including species names, concepts, occurrences, genes or proteins, or data objects that encode information about them. To put it simply, LSIDs are a way to identify and locate pieces of biological information on the web +manage.show.des01=The estimated number of {0} in +manage.show.des02=is +manage.show.des03=Of these {0} are databased +manage.show.des04=This represents +manage.show.des05=of the collection +manage.show.des06=Show recent changes +manage.show.des07=At {0} {1} changed the {2} field +manage.show.des08=to +manage.show.des09=from +manage.show.des10=At {0} {1} added a contact +manage.show.de11=id +manage.show.des12=At {0} {1} removed a contact +manage.show.des13=name not available - has been deleted +manage.show.des14=At {0} {1} created this +manage.show.title01=Contributors to this page +manage.show.name.des=The collection name should be the official name of the collection in the local language. Do not include the acronym or any unnecessary punctutaion +manage.show.acronym.des=Acronym, coden or initialism by which this collection is generally known. Do not include parentheses +manage.show.lsid.des=Enter a valid lsid for the collection if one has been assigned +manage.show.des.des=This description is the main block of text that appears at the top of the page +manage.show.temp.des=Start and end dates refer to when the collection was first established and when acquisition ceased. Both are optional but if present should be valid +manage.show.temp.link=Darwin Core event dates +manage.show.temp.startdate=Start date +manage.show.temp.enddate=End date +manage.show.tr.des01=Describe the intended taxonomic focus of the collection, such as 'Fungi of medical importance' +manage.show.tr.title01=Kingdom coverage +manage.show.tr.des02=Indicate which biological kingdoms are covered by your collection +manage.show.title02=Scientific names +manage.show.tr.des03=Enter any number of taxon names that describe the taxonomic scope of the collection. Names of families or higher ranks are suitable. Separate names with a comma, eg Insecta, Arachnida +manage.show.gr.title=Geographic description +manage.show.gr.des=A free text description of the geographical scope of the collection +manage.show.gr.title01=States covered +manage.show.gr.des01=States and territories that are covered by the collection +manage.show.title=Metadata Management | Collectory +manage.list.title01=Metadata management +manage.list.link01=View public site +manage.list.li01=Admin tools +manage.list.li02=Your metadata +manage.list.li03=Add a new collection or data resource +manage.list.title02=User details +manage.list.des02=Security is +manage.list.username.des01=Logged in as +manage.list.des03=Not logged in +manage.list.cookiename01=Cookie is present. Name is +manage.list.cookiename02=No cookie found +manage.list.title03=Your metadata +manage.list.des04=The institutions, collections and data resources that you are authorised to access are listed below. Be aware that all changes are immediately reflected in the website and any hubs or other websites that use web services +manage.list.table01.cell0101=View +manage.list.table01.cell0102=Edit +manage.list.des05=You are authorised to edit all entities because you are admin +manage.list.des06=You are not authorised to edit any entities +manage.list.des07=You have the required role but are not listed as a contact with editor rights on any collection, institution or dataset. If you believe you should be, ask someone who is listed to add you as a contact. If you can't do that, click the support link below to send a request to the ALA support team +manage.list.des08=You do not have the role required to edit metadata. You can email +manage.list.des09=support +manage.list.des10=to request this role +manage.list.des11=If you do not see your collection, institution or dataset in the list above, please read +manage.list.des12=requirements for editing metadata +manage.list.title04=Requirements for editing metadata +manage.list.title05=What do I need to edit my metadata +manage.list.des13=You need +manage.list.li04=to be logged in using a standard account +manage.list.li05=the 'Collections Editor' role +manage.list.li06=to be listed as a contact with editor rights for the collection, institution or dataset you want to edit +manage.list.title06=You have an ALA account +manage.list.des14=You are logged in as +manage.list.title07=You have the 'Collections Editor' role +manage.list.title08=You do not have the 'Collections Editor' role +manage.list.des15=Send an email to +manage.list.des16=support +manage.list.des17=and request +manage.list.title09=You are not an editor for any collection, institution or dataset +manage.list.title10=You are editor for the {0} entities listed above +manage.list.title11=You need to be listed as an editor for the entity you want to edit +manage.list.des18=You must be a contact for the entity and have the editor attribute set +manage.list.des19=You can be added as a contact and made an editor by another user who has edit rights for the entity. Or you can send an email to +manage.list.des20=and ask to be added. You can choose whether your name and contact details should be displayed on the public page for the entity +manage.list.title12=I still need help +manage.list.des21=Please send us an email at +manage.list.des22=support +manage.list.des23=and explain your issues +manage.list.addcollection.title01=Add a new data resource +manage.list.addcollection.des01=As a trusted editor you are authorised to add new data resources. Note +manage.list.addcollection.li01=Please check that the data resource does not already exist +manage.list.addcollection.li02=The data resource will become public as soon as you create it +manage.list.addcollection.link01=Create a new data resource +manage.list.addcollection.title02=Add a new collection +manage.list.addcollection.des02=As a trusted editor you are authorised to add new collections. Note +manage.list.addcollection.li03=Please check that the collection does not already exist +manage.list.addcollection.li04=You can only link your collection to an institution if you are an editor for the institution +manage.list.addcollection.li05=You will be automatically added as a contact and an editor for the new collection +manage.list.addcollection.li06=You will need to supply a name for the new collection. It will then be created and you will be directed to the edit pages for the collection to supply further information +manage.list.addcollection.li07=The collection will become public as soon as you create it +manage.list.addcollection.li08=Only ALA administrators can delete collections. Please contact the administrators if you believe a collection should be removed +manage.list.addcollection.link02=Create a new collection +manage.list.addtools.title01=Admin functions +manage.list.addtools.des01=You are an administrator ({0}). Please use your superpowers wisely +manage.list.addtools.link01=View all collections +manage.list.addtools.des02=Browse all current collections and update collection descriptions +manage.list.addtools.span01=Search for collections +manage.list.addtools.des03=Enter a part of the name of a collection or its acronym, eg insects, fungi, ANIC +manage.list.addtools.link02=Add a collection +manage.list.addtools.des04=Describe a collection that is not currently listed +manage.list.addtools.link03=View all institutions +manage.list.addtools.des05=Browse the institutions that hold collections +manage.list.addtools.link04=View all data providers +manage.list.addtools.des06=Browse all current data providers +manage.list.addtools.link05=View all data resources +manage.list.addtools.des07=Browse all current data resources +manage.list.addtools.link06=View all data hubs +manage.list.addtools.des08=Browse all current data hubs +manage.list.addtools.link07=View reports +manage.list.addtools.des09=Browse summaries of Registry contents and usage +manage.list.addtools.link08=Manage contacts +manage.list.addtools.des10=View and edit all known contacts for collections and institutions +manage.list.addtools.link09=Manage provider codes +manage.list.addtools.des11=View and edit all known collection and institution codes +manage.list.addtools.link10=Manage provider maps +manage.list.addtools.des12=View and edit the allocation of collection and institution codes to collections +manage.list.addtools.link11=Export all data as JSON +manage.list.addtools.des13=All tables exported verbatim as JSON +manage.list.addtools.link12=View audit events +manage.list.addtools.des14=All audit events +manage.list.addtools.link13=Add all GBIF resource for a country +manage.list.addtools.des15=All the resources for a specific country are added as data resource in the collectory +manage.list.addtools.link14=Upload GBIF file +manage.list.addtools.des16=Uploads a GBIF download as a data resource. (Assumes that a single resource is in the file) +manage.index.title=Metadata Management +manage.index.link01=View public site +manage.index.title01=ALA Metadata Management +manage.index.des01=Metadata for collections, institutions and datasets can be managed here +manage.index.title02=Please log in +manage.index.login=Log in +manage.index.des02=You must log in to manage metadata +manage.index.title03=About access accounts +manage.index.title04=What do I need to edit my metadata +manage.index.des03=You will need +manage.index.li01=a standard ALA login +manage.index.li02=the 'Collections Editor' role +manage.index.li03=to be listed as a contact with administrator rights for the collection, institution or dataset you want to edit +manage.index.title05=I don't have an ALA account +manage.index.des04=You can register +manage.index.des05=here +manage.index.des06=If you are already listed as a contact for the entity you want to edit, make sure you use the same email address as that contact +manage.index.title06=How do I get the editor role +manage.index.des07=Send an email to +manage.index.des08=support +manage.index.des09=and request +manage.index.title07=What if I am not listed as a contact for the entity I want to edit +manage.index.des10=You can be added as a contact by another user who has edit rights for the entity. Or you can send an email to +manage.index.des11=and ask to be added. You can choose whether your name and contact details should be displayed on the public page for the entity +manage.gbiflc.title=Load GBIF Resources From Country +manage.gbiflc.title01=Automatically load resources from GBIF based on a supplied country +manage.gbiflc.form.label01=Publishing country (e.g. SPAIN) +manage.gbiflc.form.label02=GBIF username +manage.gbiflc.label03=GBIF password +manage.gbiflc.label04=Maximum resources (will default to all) +manage.gbiflc.des01=This tool will download archives from GBIF web services, store the archives locally and create an initial metadata record for each resource +manage.gbiflc.des02=This will not load the data into the occurrence store automatically +manage.gbiflc.des03=To obtain a username, please register with the GBIF web site +manage.gbiflc.link01=here +manage.gbiflc.des04=Note +manage.gbiflc.des05=This is a simple method of bootstrapping an installation with data provided by GBIF web services +manage.gbiflc.des06=This is not intended for long-term production use +manage.gbifcls.title=Loading Resources From +manage.gbifcls.title01=Completed +manage.gbifcls.title02=Started +manage.gbifcls.title03=Finished +manage.gbifcls.th01=Resource +manage.gbifcls.th02=Status +manage.gbifcls.th03=Link (will appear when download complete) +manage.gbifcls.title04=No resources available to load for +manage.gbifcls.title05=To try again click +manage.gbifcls.link01=here + +providerCode.label=ProviderCode +default.link.skip.label=Skip to content&hellip +providerCode.code.label=Code +providerMap.label=ProviderMap +providerMap.id.label=Id +providerMap.institutionCodes.label=Institution Codes +providerMap.collectionCodes.label=Collection Codes +providerMap.exact.label=Exact +providerMap.warning.label=Warning +providerMap.matchAnyCollectionCode.label=Match Any Collection Code +providerMap.lastUpdated.label=Last Updated +providerMap.dateCreated.label=Date Created +providerMap.providerGroup.label=Provider Group diff --git a/grails-app/i18n/messages_zh_CN.properties b/grails-app/i18n/messages_zh_CN.properties index 782580b0..a3e854e8 100644 --- a/grails-app/i18n/messages_zh_CN.properties +++ b/grails-app/i18n/messages_zh_CN.properties @@ -16,3 +16,780 @@ default.not.unique.message=[{1}]\u7C7B\u7684\u5C5E\u6027[{0}]\u7684\u503C[{2}]\u default.null.message=[{1}]\u7C7B\u7684\u5C5E\u6027[{0}]\u4E0D\u80FD\u4E3Anull default.paginate.next=\u4E0B\u9875 default.paginate.prev=\u4E0A\u9875 +chart.generator=Chart generator +reports.classification.td02.title=Acronym +reports.classification.td03.title=Herbaria +reports.classification.td04.title=Fauna +reports.classification.td05.title=Ento +reports.classification.td06.title=Microbes +reports.classification.tr.totals=Totals +reports.data.table01.tr01=Totals +reports.data.table01.tr02=Collections +reports.data.table01.tr03=Institutions +reports.data.table01.tr04=Data providers +reports.data.table01.tr05=Data resources +reports.data.table01.tr06=Data hubs +reports.data.table01.tr07=Contacts +reports.data.title02=Collection data quality +reports.data.title03=Contact summary +reports.index.title05=Collections +reports.index.title06=Institutions +reports.index.title07=Data providers & resources +reports.index.title08=Contacts +reports.index.pagelink.collections=List all collections +reports.index.linktext.collections=lists collections with permalinks and some attributes +reports.index.pagelink.codes=List provider codes +reports.index.linktext.codes=controls the mapping to biocache records +reports.index.pagelink.attributions=List attributions +reports.index.linktext.attributions=lists the sources of information for collections +reports.index.pagelink.mr=List missing records +reports.index.linktext.mr=lists collections where the number of digitised records declared significantly exceeds the number of biocache records +reports.index.pagelink.classification=Show classifications +reports.index.linktext.classification=shows how collections are classified according to their keywords into the filter groups used on the collections map page +reports.index.pagelink.ct=Show material types +reports.index.linktext.ct=shows the type keywords associated with each collection, eg preserved, living, tissue +reports.index.pagelink.th=Show taxonomic hints +reports.index.linktext.th=shows the hints for each collection. These are used to help match names when processing occurrence records +reports.index.pagelink.institutions=List all institutions +reports.index.linktext.institutions=lists institutions with permalinks and some attributes +reports.index.pagelink.providers=List all data providers and resources +reports.index.linktext.providers=list of all data providers, data resources and data hubs +reports.index.pagelink.rights=Show data resource rights and permissions +reports.index.linktext.rights=list rights, license details and permissions details for data resources +reports.index.pagelink.harvesters=Show data mobilisation parameters +reports.index.linktext.harvesters=list mobilisation, harvesting and connection parameters for data resources +reports.index.pagelink.resources=Show other resource parameters +reports.index.linktext.resources=list links for public archives that are available for download +reports.index.pagelink.dl=Show data interactions +reports.index.linktext.dl=show which providers/resources provide data records for which institutions/collections +reports.index.pagelink.contacts=List all contacts +reports.index.pagelink.dc=Show duplicate contacts +reports.index.pagelink.cfcm=Show contacts for member collections +reports.index.linktext.cfcm=lists all collections that are members of councils and their contact emails +reports.index.pagelink.cfc=Show contacts for all collections +reports.index.pagelink.cfi=Show contacts for all institutions +reports.institutions.link.edit=Edit +reports.providers.tr0103=Resources +reports.providers.tr0201=All resources +reports.providers.tr0204=Institution +reports.providers.tr0301=Data hubs +reports.resources.tr0101=All resources +reports.rights.td.rights=Rights +reports.rights.td.permissions=Permissions Document +reports.th.th02=Acronym +reports.th.th03=Taxonomic hint +reports.show.table01.tr01=Totals +reports.show.table01.tr02=Collections +reports.show.table01.tr03=Institutions +reports.show.table01.tr04=Contacts +reports.show.table01.tr05=Login accounts +reports.show.title01=Collection data quality +reports.show.title02=Contact summary +reports.show.title03=Infosource summary +rifcs.index.title=Atlas of Living Australia +rifcs.index.title01=See this Collection on the website of +shared.ai.mes01=Choose a +shared.ai.mes02=different image +shared.ai.mes03=Choose an +shared.ai.mes04=image +shared.mes01=Choose a +shared.mes02=different image +shared.mes03=Choose an +shared.mes04=image +shared.a.title01=Attributions +shared.changes.title01=Change history +shared.changes.des01=Click an item to view full change details +shared.changes.update=in Contact +shared.changes.insert=new Contact +shared.changes.showchanges=Show all +shared.consumers.title01=Record consumers +shared.consumers.des01=These institutions and collections hold specimens related to the records sourced from this {0} +shared.consumers.des02=Adding relationships here allows data processing to correctly attribute records down to the collection using collection codes and institution codes associated with the institution +shared.consumers.des03=The specified consumer does not exist +shared.consumers.link01=Add/remove collections +shared.consumers.link02=Add/remove institutions +shared.contacts.title01=Contacts +shared.images.span01=File name +shared.images.span02=Caption +shared.images.span03=Attribution +shared.images.span04=Copyright +shared.location.title01=Location +shared.providers.title01=Record providers +shared.providers.des01=These data resources contribute digitised records for specimens in this {0} +shared.providers.li01=The specified provider does not exist +shared.providers.des02=To change the relationship with record providers please go to the +shared.providers.link01=data resource(s) +shared.providers.des03=and edit its +shared.providers.des04=record consumers +shared.th.title01=Taxonomy hints +shared.attributes.label01=Include BCI attribution +shared.attributes.label02=Include CHAH attribution +shared.attributes.label03=Include CHACM attribution +shared.attributes.label04=Include institution attribution +shared.cr.table0101=Editing the role of +shared.cr.table0201=Role +shared.cr.table0301=Administrator +shared.cr.table0302=Determines whether the contact can edit properties of this +shared.cr.table0401=Notify +shared.cr.table0402=If set, the contact will be notified when annotations are made to records in this +shared.cr.table0501=Primary contact +shared.cr.table0502=The primary contact is the one displayed on the public page for this +shared.eth.title01=Editing +shared.eth.des01=Hints help in the processing of occurrence records that are associated with this +shared.eth.th01=Rank +shared.eth.th02=Name +shared.eth.button.update=Update +shared.eth.button.cancel=Cancel +shared.images.des01=Logo image +shared.images.des02=Representative +shared.images.button.update=Update +shared.images.button.remove=Remove image +shared.images.button.cancel=Cancel +shared.location.main.title01=Editing +shared.location.lookup=Click to load lat/long based on street address +shared.location.button.useinherited=Click to load lat/long based on the parent institution's location +shared.location.main.des01=Drag pin on map to the exact location of the +shared.location.main.des02=You may need to zoom in and turn on the hybrid view to locate the building +shared.location.button.update=Update +shared.location.button.cancel=Cancel +shared.title.editing=Editing +shared.providers.notselected.label=Resources +shared.providers.selected.title=Record providers +shared.providers.selected.des=Drag resources to here +shared.button.update=Update +shared.button.cancel=Cancel +shared.sc.title=Edit {0} metadata +shared.sc.title01=Displaying change history for +shared.sc.des01=Changes are shown with the latest first +shared.sc.des02=At {0} {1} changed the {2} field +shared.sc.table01.cell0101=to +shared.sc.table01.cell0102=from +shared.sc.des03=At {0} {1} added a contact +shared.sc.table02.cell0101=id +shared.sc.des04=At {0} {1} removed a contact +shared.sc.table03.cell0101=id +shared.sc.table03.cell0102=name not available - has been deleted +shared.sc.des05=At {0} {1} created this +shared.scontact.title01=Current contacts +shared.scontact.table.label01=In this collection +shared.scontact.table.li01=Role is +shared.scontact.table.li02=Editor +shared.scontact.table.li03=Notify +shared.scontact.table.li04=Primary contact +shared.scontact.link01=Edit the contact's role in this +shared.scontact.link02=Remove the contact for this +shared.scontact.title02=New contacts +shared.scontact.table01.cell0101=Choose an existing contact +shared.scontact.table02.cell0101=Create a new contact and add them to this +shared.tr.title01=Describe the taxonomic range of this resource +shared.tr.des01=Select any number of the groups listed below. The right-hand box shows a consolidated list of your selections +shared.tr.title02=Make your selections here +shared.tr.title03=Selected groups +shared.tr.button01=clear all +shared.tr.help.title01=Some help pages +shared.tr.help.link01=How do I select taxonomic groups +shared.tr.help.link02=How do I save my selections +shared.tr.help.link03=How do I define a taxonomic scope +shared.tr.help.link04=How do I change the metadata for a data resource +shared.tr.help.title02=Some relevant FAQs +shared.tr.help.link05=What if my taxonomic group isn't shown here +shared.tr.help.link06=Who chose this set of taxonomic groups +shared.tr.help.link07=What is this information used for +shared.tr.help.link08=How do I report a bug +admin.home.title=ALA Collections Management +admin.home.li01=home +admin.home.li02=ala +admin.home.li03=collections +admin.logout=logout +admin.login=login +admin.loggedin=Logged in as +admin.home.welcome.span01=Update our information about +admin.home.welcome.title01=Natural History Collections and their Institutions +admin.home.welcome.des01=Descriptions of Australian biodiversity collections can be added and updated here +admin.home.welcome.title02=Please log in +admin.home.welcome.des02=You must log in to manage collection records +admin.home.welcome.link01=Log in +admin.home.welcome.title03=Collections +admin.home.buttons.link01=View all collections +admin.home.buttons.link02=View my collections +admin.home.buttons.link03=Add a collection +admin.home.buttons.span01=Search for collections +admin.home.buttons.title02=Institutions +admin.home.buttons.link04=View all institutions +admin.home.buttons.link05=View my institutions +admin.home.buttons.link06=Add an institution +admin.home.buttons.span02=Search for institutions +admin.home.buttons.title03=Data sets +admin.home.buttons.link07=View all data resources +admin.home.buttons.link08=View all data providers +admin.home.buttons.link09=Add a data resource +admin.home.buttons.span03=Search for data sets +admin.home.buttons.title04=Profile +admin.home.buttons.link10=Edit my profile +admin.home.buttons.des01=View and edit your contact details, roles, notifications, etc +admin.home.buttons.title05=Admin +admin.home.buttons.link11=View reports +admin.home.buttons.link12=Manage contacts +admin.home.buttons.link13=Export all data as JSON +admin.home.buttons.title06=Codes and maps +admin.home.buttons.link14=Manage provider codes +admin.home.buttons.link15=Edit the list of available collection and institution codes +admin.home.buttons.link16=Manage provider maps +admin.home.buttons.link17=Allocate collection and institution codes to collections +admin.index.title=ALA Collections Management +admin.index.link01=View public site +admin.index.title01=

Natural History Collections Management

Information about Australian biodiversity collections can be added and updated here.

+admin.notlogin.title=Please log in +admin.notlogin.link=Log in +admin.notlogin.des=You must log in to manage collection records +admin.index.link02=Edit my profile +admin.index.des02=View and edit your contact details, roles, notifications, etc +admin.index.link03=View all collections +admin.index.des03=Browse all current collections and update collection descriptions +admin.index.link04=View my collections +admin.index.des04=Browse my collections and update collection descriptions +admin.index.link05=Search for collections +admin.index.des05=Enter a part of the name of a collection or its acronym, eg insects, fungi, ANIC +admin.index.link06=Add a collection +admin.index.des06=Describe a collection that is not currently listed +admin.index.link07=View all institutions +admin.index.des07=Browse the institutions that hold collections +admin.index.des08=These actions are only available to system admins +admin.index.link09=View all data providers +admin.index.des09=Browse all current data providers +admin.index.link10=View all data resources +admin.index.des10=Browse all current data resources +admin.index.link11=View reports +admin.index.des11=Browse summaries of Registry contents and usage +admin.index.link13=Manage contacts +admin.index.des13=View and edit all known contacts for collections and institutions +admin.index.link14=Manage provider codes +admin.index.des14=View and edit all known collection and institution codes +admin.index.link15=Manage provider maps +admin.index.des15=View and edit the allocation of collection and institution codes to collections +admin.index.link16=Export all data as JSON +admin.index.des16=All tables exported verbatim as JSON +admin.sr.title=ALA Collections Management Search Results +admin.sr.title01=Search results +admin.sr.span01=Your search returned no results +admin.sr.des01=Click (View) to display the public page. Click the name or (Edit) to enter the editor's view of the information +admin.sr.title02=Collections +admin.sr.link.view=View +admin.sr.link.edit=Edit +admin.sr.title03=Institutions +admin.sr.title04=Data providers +admin.sr.title05=Data resources +ale.list.title=Audit +ale.list.li01=Audit list of events +ale.list.title01=Audit - List of events +ale.show.title=Show AuditLogEvent +ale.show.li01=Audit +ale.show.title01=Show Audit +ale.show.cell0101=Id +ale.show.cell0201=Actor +ale.show.cell0301=Uri +ale.show.cell0401=Class Name +ale.show.cell0501=Persisted Object Id +ale.show.cell0601=Persisted Object Version +ale.show.cell0701=Event Name +ale.show.cell0801=Property Name +ale.show.cell0901=Old Value +ale.show.cell1001=New Value +ale.show.cell1101=Date Created +ale.show.cell1201=Last Updated +ale.show.cl.des=There are no collections listed against your login at present +collection.title.editing=Editing +collection.contacts.table01.th01=Name +collection.contacts.table01.th02=Role (for this collection) +collection.contacts.table01.th03=Admin +collection.contacts.table01.th04=Primary +collection.contacts.table01.btn01=Remove +collection.contacts.table01.td01=Phone +collection.contacts.table01.td02=Email +collection.contacts.table02.td01=Select +collection.contacts.span01=Create a new contact and add to this collection +collection.contacts.table03.span02=Contact will be shown on the collection page +collection.contacts.table03.btn01=Add contact +collection.button.update=Update +collection.button.cancel=Cancel +collection.des.title01=Creating a new collection +collection.des.startdate=Start date +collection.des.enddate=End date +collection.des.des01=Optionally describe any significant collections held within this collection +collection.des.de02=Name +collection.des.des03=Description +collection.range.title01=Creating a new collection +collection.range.table01.title=Geographic range +collection.range.table01.label01=Geographic description +collection.range.table01.label02=States +collection.range.table01.label03=If possible, describe the geographic range of your collection in terms of the maximum extents of the regions of collection +collection.range.table01.label04=Most eastern longitude +collection.range.table01.label05=Western extent +collection.range.table01.label06=Northern extent +collection.range.table01.label07=Southern extent +collection.range.table01.title02=Taxonomic range +collection.range.table01.label08=Kingdom coverage +collection.range.table01.label09=Scientific names +collection.range.table01.title03=Statistics +collection.show.span01=LSID +collection.show.span02=UID +collection.show.span03=Collection website +collection.show.title01=Description +collection.show.span04=Public description +collection.show.span05=Technical description +collection.show.span06=Start/End dates +collection.show.span07=Collection types include +collection.show.span08=Activity status is +collection.show.span09=Keywords +collection.show.des01=are not directly displayed but are used for searching and filtering. These keywords have been added for this collection +collection.show.link01=Add fauna +collection.show.link02=Add plants +collection.show.link03=Add entomology +collection.show.link04=Add microbes +collection.show.title02=Sub-collections +collection.show.title03=Geographic range +collection.show.coordinate.des01=Specimens were collected +collection.show.coordinate.des03=North +collection.show.coordinate.des02=within these bounds +collection.show.coordinate.des04=West +collection.show.coordinate.des05=East +collection.show.coordinate.des06=South +collection.show.title04=Taxonomic range +collection.show.title05=Number of +collection.show.title06=in the collection +collection.show.des07=The estimated number of +collection.show.des08=within +collection.show.des09=is +collection.show.des10=Of these {0} are digitised +collection.show.des11=This represents +collection.show.des12=of the collection +collection.show.des13=The mapping of records to this collection is based on the provider codes shown in the 'Provider codes' section +collection.show.title07=Provider codes +collection.show.des14=These codes control the mapping of online records to this collection +collection.show.des15=Institution codes +collection.show.des16=Collection codes +collection.show.des17=Will match any collection code +collection.show.des18=Codes do not map exactly to this collection +collection.show.des19=Warning is +contact.sp.title01=Editing my profile +contact.sp.title02=My profile +contact.sp.title03=phone +contact.sp.title04=mobile +contact.sp.title05=fax +contact.sp.title06=Contact for +contact.sp.des01=Describe your role within this +contact.sp.des02=Would you like to be notified by email of any significant events in this +contact.sp.des03=How often would you like to receive notifications +contact.sp.radio01=Each event +contact.sp.radio02=Daily +contact.sp.radio03=Weekly +data.catalogue.title=Web Services | Natural History Collections | Atlas of Living Australia +data.catalogue.li01=Home +data.catalogue.li02=Collections +data.catalogue.li03=Web services +data.catalogue.title01=Web services for the Atlas Registry +data.catalogue.des01=More information can be found at the project's +data.catalogue.des02=wiki +data.catalogue.des03=and in particular in the documentation of +data.catalogue.des04=Collectory services +data.catalogue.title02=Data services +data.catalogue.des05=The registry of the Atlas of Living Australia maintains metadata that describe +data.catalogue.ws0024.li01=collections - natural history collections +data.catalogue.ws0024.li02=institutions - institutions and organisations that manage collections +data.catalogue.ws0024.li03=dataProviders - providers of biodiversity information in electronic form, eg occurrence records, websites +data.catalogue.ws0024.li04=dataResources - specific resources made available by data providers +data.catalogue.ws0024.li05=tempDataResources - temporary resources holding records uploaded to the sandbox +data.catalogue.ws0024.li06=dataHubs - aggregators of biodiversity data; and +data.catalogue.ws0024.li07=contacts - for any of the above resources +data.catalogue.des06=Access to this metadata is provided by resource-oriented web services that adhere to RESTful principles. Response payloads are generally formatted as JSON although some services offer other formats through content negotiation +data.catalogue.des007=Details of how these services can be used are provided at the project's wiki, and in particular here +data.catalogue.title03=Form of URIs +data.catalogue.table01.cell0101=All service URIs are based on the URI of this page +data.catalogue.table01.cell0201=URI's for the resources listed above are this root plus the name of the type of resource, eg +data.catalogue.table01.cell0301=The URI for a specific instance of a resource is the same followed by the UID of the instance. For example, the resource representing the Aust. Wine Research Institute (UID\=in72) is +data.catalogue.table01.cell0401=The URI to get a total count of a specific resource is resource name followed by 'count'. For example, the number of institutions is given by +data.catalogue.table01.cell050a=Counts for a specific resource can be grouped by any attribute of the resource. For example, the breakdown of institutions by state is given by +data.catalogue.cell0601=Resources that are attributes of a resource, such as the list of contacts for a collection, are addressed by appending the resource type to the uri that represents the main resource, eg +data.catalogue.title04=Methods +data.catalogue.des08=Data services support the GET, HEAD, POST, PUT, OPTIONS and DELETE methods +data.catalogue.des09=GET will return the json representation of the specified resource or the list of all resources of the specified resource type +data.catalogue.des10=HEAD will return no content but will confirm the existence of the specified resource +data.catalogue.des11=POST will update the specified resource based on the information in the body of the request. If no resource is specified, the information in the body will be used to create a new resource. The body must be valid json and you must specify at least these properties +data.catalogue.li04=user - the name of the application that is requesting the update; and +data.catalogue.li05=api_key - a valid key to verify that you are authorised to modify the resource +data.catalogue.des12=If a new resource is being created you must also specify at least +data.catalogue.li06=name - the name of the resource +data.catalogue.des13=Other properties are treated as the properties to be updated. Property names are the same as those used in the GET representation +data.catalogue.des14=PUT behaves the same as POST +data.catalogue.des15=OPTIONS returns a list of the allowed methods +data.catalogue.des16=DELETE will remove the specified resource. The body must be valid json and you must specify these properties +data.catalogue.li07=user - the name of the application that is requesting the update; and +data.catalogue.li08=api_key - a valid key to verify that you are authorised to modify the resource +data.catalogue.ws0025.title=Contacts +data.catalogue.ws0025.des=Contacts exist as resources in their own right. They can be accessed in the standard form +data.catalogue.ws0025.cell0101=List all contacts +data.catalogue.ws0025.cell0201=Get details for a specific contact +data.catalogue.ws0025.cell0301=Find a contact by its email address +data.catalogue.ws0025.des01=Editing contacts follows the same pattern as the major entities. PUT and POST will update a contact if an id is specified in the url, else a new contact is added. DELETE will remove a contact +data.catalogue.ws0025.des02=The body must be valid json and you must specify at least these properties +data.catalogue.ws0025.li01=user - the name of the application that is requesting the update; and +data.catalogue.ws0025.li02=api_key - a valid key to verify that you are authorised to modify the resource +data.catalogue.ws0025.des03=and may also specify +data.catalogue.ws0025.li03=firstName +data.catalogue.ws0025.li04=lastName +data.catalogue.ws0025.li05=fax +data.catalogue.ws0025.li06=phone +data.catalogue.ws0025.li07=mobile +data.catalogue.ws0025.li08=notes +data.catalogue.ws0025.li09=public (true or false) - controls whether the contact will be displayed on a public web page +data.catalogue.ws0025.des04=Note that contacts do not have UIDs. They use the raw DB-assigned ID instead +data.catalogue.ws0025.des05=The user's email is effectively the primary key for a contact. Always check whether a contact exists (by searching for its email address) before creating one +data.catalogue.ws0025.des06=A contact may be associated with any number of resources. A resource may have any number of contacts. The relationship between a contact and a resource has its own metadata such as the role that the contact has in relation to the resource, the contact's editing rights, etc +data.catalogue.ws0025.title01=Contact relationships +data.catalogue.ws0025.table0101=This metadata is accessed by appending contacts to the uri of a resource using the form +data.catalogue.ws0025.table0201=For example +data.catalogue.ws0025.table0301=The metadata for a specific contact relationship has the form +data.catalogue.ws0025.table0401=For example +data.catalogue.ws0025.table0501=The primary contacts for all instances of a type of resource can be accessed using the form +data.catalogue.ws0025.table0601=For example +data.catalogue.ws0025.table0701=Contacts may elect to be notified when significant events occur to a resource. The list of contacts to be notified for a specific resource can be retrieved from a uri of the form +data.catalogue.ws0025.table0801=For example +data.catalogue.ws0025.table0901=You can retrieve all the entities that the specified contact is authorised to edit. The uri has the form +data.catalogue.ws0025.table1001=For example +data.catalogue.ws0025.des07=All contact services can return payload as CSV, XML or JSON via content negotiation +data.catalogue.ws0025.link01=More information +data.catalogue.ws0025.des08=Contact relationships can be updated by following the usual rules. The contact must already exist +data.catalogue.ws0025.des09=POST will add the contact to a resource if it does not already exist or will update the relationship using the json data in the request body +data.catalogue.ws0025.des10=The body must be valid json and you must specify at least these properties +data.catalogue.ws0025.li10=user - the name of the application that is requesting the update; and +data.catalogue.ws0025.li11=api_key - a valid key to verify that you are authorised to modify the resource +data.catalogue.ws0025.des11=and may also specify +data.catalogue.ws0025.li12=role - the role the contact has in for this resource eg, 'Manager' +data.catalogue.ws0025.li13=notify (true or false) - if the contact wishes to be notified on significant events (this has been superceded by Alerts) +data.catalogue.ws0025.li14=administrator - if the contact is allowed to administer this resource +data.catalogue.ws0025.li15=primaryContact - if the contact is the primary contact for this resource +data.catalogue.ws0025.des12=The form of the url is +data.catalogue.ws0025.des13=same as POST +data.catalogue.ws0025.des14=will remove the contact from a resource +data.catalogue.ws0025.des15=The body must be valid json and you must specify at least these properties +data.catalogue.ws0025.li16=user - the name of the application that is requesting the update; and +data.catalogue.ws0025.li17=api_key - a valid key to verify that you are authorised to modify the resource +data.catalogue.ws0025.des16=The url has the same form as above +data.catalogue.ws0026.title=EML metadata interchange +data.catalogue.ws0026.des01=The registry provides a service to extract resource metadata in EML format. The response complies with +data.catalogue.ws0026.link01=GBIF's EML schema +data.catalogue.ws0026.des02=This document is suitable for inclusion in a Darwin Core Archive as the metadata description of the contained records. The form is +data.catalogue.ws0026.table0101=This example uri returns an XML document describing the set of occurrence records for the DECCW Atlas of NSW Wildlife +data.catalogue.ws0032.title=Citation services +data.catalogue.ws0032.des01=Citation services return attribution and licence information for digitised records that can be accessed through the Atlas +data.catalogue.ws0032.title01=Citations for a list of data providers +data.catalogue.ws0032.des02=This service accepts a list of entity UIDs and returns citation information for each entity. Any entity types can be specified but only data resources have meaningful citation information. For each entity, the service returns the name of the entity, its citation text, its rights text and a 'more information' string containing a link to the collectory page for the entity. The form is +data.catalogue.ws0032.td0101=where listOfUIDs is a comma-separated list of UID +data.catalogue.ws0032.td0201=This example uri returns a list of citations for the three specified data resources +data.catalogue.ws0032.des03=The service can return the information as a JSON list or a CSV or TSV file with appropriate headers. The format is specified by http content-negotiation +data.catalogue.ws0032.link02=More information +data.catalogue.ws0032.title02=Lookup services +data.catalogue.ws0032.des04=These services explicitly support inter-operation with other components of the Atlas such as the bio-cache and the BIE. They do not all comply with RESTful principles but are being progressively refactored to do so +data.catalogue.ws0027.title=Map a bio-cache record to a collection +data.catalogue.ws0027.des01=This service takes a collection code and an institution code from a raw specimen record and maps the combination to a single collection. The form is +data.catalogue.ws0027.table0101=This example uri returns metadata for the Australian National Insect Collection +data.catalogue.ws0028.title=Get a summary for an entity +data.catalogue.ws0028.des01=This service just returns a subset of metadata for an entity. The form is +data.catalogue.ws0028.table0101=This example uri returns the short metadata for the Birds Australia data provider +data.catalogue.ws0028.des02=The summary services are less useful now that we have full RESTful metadata services but are retained for backward compatibility. They also provide a small efficiency when the service is called repeatedly such as during indexing operations +data.catalogue.ws0028.link01=More information +data.catalogue.ws0029.title=Lookup the name of an entity +data.catalogue.ws0029.des01=This service is even more cut down than the summary. It returns only the name of an entity given its UID. The form is +data.catalogue.ws0029.link01=More information +data.catalogue.ws0030.title=Get taxonomic coverage hints for an entity +data.catalogue.ws0030.des01=This service plays a roll in taxonomic name matching during the processing of raw bio-cache records. When a record has been mapped to a collection, the collection metadata can be used to inform the matching process by adding weight to matches within particular taxonomic groups. The form is +data.catalogue.ws0030.table0101=This example uri returns a list of rank-name pairs that describe a taxonomic range +data.catalogue.ws0030.title01=List download limits for all data resources +data.catalogue.ws0030.des02=Limits can be applied to the number of records that can be downloaded from a particular resource per request +data.catalogue.ws0030.des03=is returned, there are no limits currently set. The form is +data.catalogue.ws0030.title02=Generate UID for a new entity +data.catalogue.ws0030.des04=This is a temporary service used when new data resources are discovered during the harvesting of records. This service will disappear when the harvesting process is refactored. The standard data services will be used to create the new resource and return the UID assigned by the collectory. The form is +data.catalogue.ws0030.link01=More information +data.catalogue.ct.title01=Common services +data.catalogue.ct.title02=Detailed documentation +data.catalogue.ct.link01=List all collections +data.catalogue.ct.lik02=List all institutions +data.catalogue.ct.link03=List all data providers +data.catalogue.ct.link04=List all data resources +data.catalogue.ct.link05=List all hubs +data.catalogue.ct.link06=List main contact for each collection +data.catalogue.ct.link07=Project wiki +data.catalogue.ct.link08=Services overview +data.catalogue.ct.link09=Data Services +data.catalogue.ct.link10=EML service +data.catalogue.ct.link11=Citations service +data.catalogue.ct.link12=Lookup services +providerGroup.uid.label=UID +datahub.show.lastchange=Last change +datahub.show.title02=Members +dataHub.memberCollections.label=Collections +datahub.show.tile.resources=Resources +dataHub.memberInstitutions.label=Institutions +dataprovider.show.span06=Contribution +dataprovider.show.link01=create a new data resource for this provider +dataresource.consumers.des01=Drag a {0} to the consumers box to add it as a record consumer. Or just click the {1} to add it +dataresource.consumers.des02=Drag or click a record comsumer to remove it +dataresource.consumers.selected.title01=Record consumers +dataresource.consumers.selected.title02=Drag consumers to here +dataresource.contribution.des01=Remember to add your initials and the date of contact +dataresource.contribution.table0101=Connection parameters +dataresource.contribution.table0201=Default values for DwC fields +dataresource.contribution.table0301=Make sure you confirm all defaults with the data provider +dataresource.contribution.table0401=Choose another DwC term and click button to add a new field +dataresource.contribution.table.button=Add new term +dataresource.description.des01=Click content types to add them to the selected set +dataresource.description.title01=Available +dataresource.description.title02=Selected +dataresource.description.des02=Click items in the left list to add them as content types for this resource +upload.gbif.archive=Upload GBIF Archive +dataresource.gbifupload.title01=Automatically create a data resource from a GBIF download +dataresource.gbifupload.form.label01=GBIF Darwin core archive file +dataresource.gbifupload.form.des01=Use this tool to upload an archive you have downloaded from the +dataresource.gbifupload.form.link01=GBIF portal +dataresource.gbifupload.form.des02=This will create a data resource for this archive. To load the data, use the biocache commandline tools +dataresource.gbifupload.form.des03=Note +dataresource.gbifupload.form.des04=This is a simple method of bootstrapping an installation with data provided by GBIF web services +dataresource.gbifupload.form.des05=This is not intended for long-term production use +dataresource.gbifupload.form.span01=Select file +dataresource.gbifupload.form.span02=Change +dataresource.gbifupload.form.link02=Remove +dataresource.gbifupload.form.button01=Upload +dataresource.gbifupload.form.button02=Cancel +dataresource.show.span01=Source of records +dataresource.show.span02=GUID +dataresource.show.span03=Resource type +dataresource.show.span04=Website +providerGroup.focus.label=Focus +dataresource.show.span06=Data generalisations +dataresource.show.span07=Information withheld +dataResource.contentTypes.label=Content types +dataresource.show.title01=Data mobilisation +dataresource.show.span09=Atlas contributor +dataresource.show.span10=Status +dataresource.show.span11=Provenance +dataresource.show.span12=Last checked +dataresource.show.span13=Data currency +dataresource.show.span14=Harvest frequency +dataresource.show.span15=Every {0} days +dataresource.show.span16=Manual +dataresource.show.span17=Mobilisation notes +dataresource.show.span18=Harvesting notes +dataresource.show.span19=Public archive available +dataresource.show.title02=Connection parameters +dataresource.show.title03=File upload +dataresource.show.link01=Upload a data file +dataresource.show.title04=Citation and rights +dataResource.citation.label=Citation +dataResource.rights.label=Rights +dataResource.licenseType.label=License type +dataResource.licenseVersion.label=License version +dataResource.permissionsDocument.label=Permissions document +dataResource.permissionsDocumentType.label=Permissions document type +dataResource.riskAssessment.label=Risk assessment completed +dataresource.show.documentfield.label=Document filed +dataResource.downloadLimit.label=Download limit +dataresource.upload.title01=Upload data file for +dataresource.upload.des01=You can use this to upload a file +dataresource.upload.label01=Protocol +dataresource.upload.lavel.02=File +dataresource.upload.label03=Select file +dataresource.upload.label04=Change +dataresource.upload.label05=Cancel +institution.edit.des01=Choose contacts for this collection +institution.edit.des02=Admin +institution.edit.des03=Select +institution.edit.des04=Role +institution.edit.des05=e.g. Manager +institution.edit.des06=Curator, Editor +institution.edit.des07=Allows the person to edit this institution +institution.edit.des08=Create a new contact and add to this institution +institution.edit.des09=Contact will be shown on the collection page +institution.edit.des10=Allows the person to edit this collection +institution.edit.span07=Institution type +public.lsidtext.link=Life Science Identifier (LSID) +manage.show.lsidtext.des=LSIDs are persistent, location-independent,resource identifiers for uniquely naming biologically significant resources including species names, concepts, occurrences, genes or proteins, or data objects that encode information about them. To put it simply, LSIDs are a way to identify and locate pieces of biological information on the web +public.show.oc.des02=includes members from the following taxa +manage.show.des01=The estimated number of {0} in +manage.show.des02=is +manage.show.des03=Of these {0} are databased +manage.show.des04=This represents +manage.show.des05=of the collection +public.show.oc.des13=Click the Records & Statistics tab to access those database records that are available through the atlas +public.show.oc.des14=contains these significant collections +manage.show.des06=Show recent changes +manage.show.des07=At {0} {1} changed the {2} field +manage.show.des08=to +manage.show.des09=from +manage.show.des10=At {0} {1} added a contact +manage.show.de11=id +manage.show.des12=At {0} {1} removed a contact +manage.show.des13=name not available - has been deleted +manage.show.des14=At {0} {1} created this +public.network.membership.label=Membership +reports.membership.tr0402=Council of Heads of Australian Entomological Collections +reports.membership.tr02=Council of Heads of Australasian Herbaria +reports.membership.tr0302=Council of Heads of Australian Faunal Collections +reports.membership.tr0502=Council of Heads of Australian Collections of Microorganisms +manage.show.title01=Contributors to this page +manage.show.name.des=The collection name should be the official name of the collection in the local language. Do not include the acronym or any unnecessary punctutaion +manage.show.acronym.des=Acronym, coden or initialism by which this collection is generally known. Do not include parentheses +manage.show.lsid.des=Enter a valid lsid for the collection if one has been assigned +manage.show.des.des=This description is the main block of text that appears at the top of the page +manage.show.temp.des=Start and end dates refer to when the collection was first established and when acquisition ceased. Both are optional but if present should be valid +manage.show.temp.link=Darwin Core event dates +manage.show.temp.startdate=Start date +manage.show.temp.enddate=End date +manage.show.tr.des01=Describe the intended taxonomic focus of the collection, such as 'Fungi of medical importance' +manage.show.tr.title01=Kingdom coverage +manage.show.tr.des02=Indicate which biological kingdoms are covered by your collection +manage.show.title02=Scientific names +manage.show.tr.des03=Enter any number of taxon names that describe the taxonomic scope of the collection. Names of families or higher ranks are suitable. Separate names with a comma, eg Insecta, Arachnida +manage.show.gr.title=Geographic description +manage.show.gr.des=A free text description of the geographical scope of the collection +manage.show.gr.title01=States covered +manage.show.gr.des01=States and territories that are covered by the collection +manage.show.title=Metadata Management | Collectory +manage.list.title01=Metadata management +manage.list.link01=View public site +manage.list.li01=Admin tools +manage.list.li02=Your metadata +manage.list.li03=Add a new collection or data resource +manage.list.title02=User details +manage.list.des02=Security is +manage.list.username.des01=Logged in as +manage.list.des03=Not logged in +manage.list.cookiename01=Cookie is present. Name is +manage.list.cookiename02=No cookie found +manage.list.title03=Your metadata +manage.list.des04=The institutions, collections and data resources that you are authorised to access are listed below. Be aware that all changes are immediately reflected in the website and any hubs or other websites that use web services +manage.list.table01.cell0101=View +manage.list.table01.cell0102=Edit +manage.list.des05=You are authorised to edit all entities because you are admin +manage.list.des06=You are not authorised to edit any entities +manage.list.des07=You have the required role but are not listed as a contact with editor rights on any collection, institution or dataset. If you believe you should be, ask someone who is listed to add you as a contact. If you can't do that, click the support link below to send a request to the ALA support team +manage.list.des08=You do not have the role required to edit metadata. You can email +manage.list.des09=support +manage.list.des10=to request this role +manage.list.des11=If you do not see your collection, institution or dataset in the list above, please read +manage.list.des12=requirements for editing metadata +manage.list.title04=Requirements for editing metadata +manage.list.title05=What do I need to edit my metadata +manage.list.des13=You need +manage.list.li04=to be logged in using a standard account +manage.list.li05=the 'Collections Editor' role +manage.list.li06=to be listed as a contact with editor rights for the collection, institution or dataset you want to edit +manage.list.title06=You have an ALA account +manage.list.des14=You are logged in as +manage.list.title07=You have the 'Collections Editor' role +manage.list.title08=You do not have the 'Collections Editor' role +manage.list.des15=Send an email to +manage.list.des16=support +manage.list.des17=and request +manage.list.title09=You are not an editor for any collection, institution or dataset +manage.list.title10=You are editor for the {0} entities listed above +manage.list.title11=You need to be listed as an editor for the entity you want to edit +manage.list.des18=You must be a contact for the entity and have the editor attribute set +manage.list.des19=You can be added as a contact and made an editor by another user who has edit rights for the entity. Or you can send an email to +manage.list.des20=and ask to be added. You can choose whether your name and contact details should be displayed on the public page for the entity +manage.list.title12=I still need help +manage.list.des21=Please send us an email at +manage.list.des22=support +manage.list.des23=and explain your issues +manage.list.addcollection.title01=Add a new data resource +manage.list.addcollection.des01=As a trusted editor you are authorised to add new data resources. Note +manage.list.addcollection.li01=Please check that the data resource does not already exist +manage.list.addcollection.li02=The data resource will become public as soon as you create it +manage.list.addcollection.link01=Create a new data resource +manage.list.addcollection.title02=Add a new collection +manage.list.addcollection.des02=As a trusted editor you are authorised to add new collections. Note +manage.list.addcollection.li03=Please check that the collection does not already exist +manage.list.addcollection.li04=You can only link your collection to an institution if you are an editor for the institution +manage.list.addcollection.li05=You will be automatically added as a contact and an editor for the new collection +manage.list.addcollection.li06=You will need to supply a name for the new collection. It will then be created and you will be directed to the edit pages for the collection to supply further information +manage.list.addcollection.li07=The collection will become public as soon as you create it +manage.list.addcollection.li08=Only ALA administrators can delete collections. Please contact the administrators if you believe a collection should be removed +manage.list.addcollection.link02=Create a new collection +manage.list.addtools.title01=Admin functions +manage.list.addtools.des01=You are an administrator ({0}). Please use your superpowers wisely +manage.list.addtools.link01=View all collections +manage.list.addtools.des02=Browse all current collections and update collection descriptions +manage.list.addtools.span01=Search for collections +manage.list.addtools.des03=Enter a part of the name of a collection or its acronym, eg insects, fungi, ANIC +manage.list.addtools.link02=Add a collection +manage.list.addtools.des04=Describe a collection that is not currently listed +manage.list.addtools.link03=View all institutions +manage.list.addtools.des05=Browse the institutions that hold collections +manage.list.addtools.link04=View all data providers +manage.list.addtools.des06=Browse all current data providers +manage.list.addtools.link05=View all data resources +manage.list.addtools.des07=Browse all current data resources +manage.list.addtools.link06=View all data hubs +manage.list.addtools.des08=Browse all current data hubs +manage.list.addtools.link07=View reports +manage.list.addtools.des09=Browse summaries of Registry contents and usage +manage.list.addtools.link08=Manage contacts +manage.list.addtools.des10=View and edit all known contacts for collections and institutions +manage.list.addtools.link09=Manage provider codes +manage.list.addtools.des11=View and edit all known collection and institution codes +manage.list.addtools.link10=Manage provider maps +manage.list.addtools.des12=View and edit the allocation of collection and institution codes to collections +manage.list.addtools.link11=Export all data as JSON +manage.list.addtools.des13=All tables exported verbatim as JSON +manage.list.addtools.link12=View audit events +manage.list.addtools.des14=All audit events +manage.list.addtools.link13=Add all GBIF resource for a country +manage.list.addtools.des15=All the resources for a specific country are added as data resource in the collectory +manage.list.addtools.link14=Upload GBIF file +manage.list.addtools.des16=Uploads a GBIF download as a data resource. (Assumes that a single resource is in the file) +manage.index.title=Metadata Management +manage.index.link01=View public site +manage.index.title01=ALA Metadata Management +manage.index.des01=Metadata for collections, institutions and datasets can be managed here +manage.index.title02=Please log in +manage.index.login=Log in +manage.index.des02=You must log in to manage metadata +manage.index.title03=About access accounts +manage.index.title04=What do I need to edit my metadata +manage.index.des03=You will need +manage.index.li01=a standard ALA login +manage.index.li02=the 'Collections Editor' role +manage.index.li03=to be listed as a contact with administrator rights for the collection, institution or dataset you want to edit +manage.index.title05=I don't have an ALA account +manage.index.des04=You can register +manage.index.des05=here +manage.index.des06=If you are already listed as a contact for the entity you want to edit, make sure you use the same email address as that contact +manage.index.title06=How do I get the editor role +manage.index.des07=Send an email to +manage.index.des08=support +manage.index.des09=and request +manage.index.title07=What if I am not listed as a contact for the entity I want to edit +manage.index.des10=You can be added as a contact by another user who has edit rights for the entity. Or you can send an email to +manage.index.des11=and ask to be added. You can choose whether your name and contact details should be displayed on the public page for the entity +manage.gbiflc.title=Load GBIF Resources From Country +manage.gbiflc.title01=Automatically load resources from GBIF based on a supplied country +manage.gbiflc.form.label01=Publishing country (e.g. SPAIN) +manage.gbiflc.form.cell02=GBIF username +manage.gbiflc.label03=GBIF password +manage.gbiflc.label04=Maximum resources (will default to all) +manage.gbiflc.des01=This tool will download archives from GBIF web services, store the archives locally and create an initial metadata record for each resource +manage.gbiflc.des02=This will not load the data into the occurrence store automatically +manage.gbiflc.des03=To obtain a username, please register with the GBIF web site +manage.gbiflc.link01=here +manage.gbiflc.des04=Note +manage.gbiflc.des05=This is a simple method of bootstrapping an installation with data provided by GBIF web services +manage.gbiflc.des06=This is not intended for long-term production use +manage.gbifcls.title=Loading Resources From +manage.gbifcls.title01=Completed +manage.gbifcls.title02=Started +manage.gbifcls.title03=Finished +manage.gbifcls.th01=Resource +manage.gbifcls.th02=Status +manage.gbifcls.th03=Link (will appear when download complete) +manage.gbifcls.title04=No resources available to load for +manage.gbifcls.title05=To try again click +manage.gbifcls.link01=here diff --git a/grails-app/views/admin/home.gsp b/grails-app/views/admin/home.gsp index 2ddb940f..01f3500a 100644 --- a/grails-app/views/admin/home.gsp +++ b/grails-app/views/admin/home.gsp @@ -1,7 +1,7 @@ <%@ page import="org.codehaus.groovy.grails.commons.ConfigurationHolder; au.org.ala.collectory.ProviderGroup" %> - ALA Collections Management + <g:message code="admin.home.title" /> @@ -11,22 +11,22 @@