Commit 6c53bca13ac5cd3ad88e2c5a5111bd96a0b269e2
0 parents
Exists in
master
Create public validador
Showing
705 changed files
with
58711 additions
and
0 deletions
Show diff stats
Too many changes.
To preserve performance only 100 of 705 files displayed.
MI14299.6 - Manual de instalacao do Portal RCAAP e Validador2.pdf
No preview for this file type
README
... | ... | @@ -0,0 +1,9 @@ |
1 | +#################################################################################################### | |
2 | +# Indexação | |
3 | +#################################################################################################### | |
4 | + | |
5 | +Como indexar a informação toda no Solr a partir do MySQL: | |
6 | +./scripts/executeMainFromClass.sh pt.keep.metarepository.core.solr.SolrClientUtilities bd | |
7 | + | |
8 | +Como indexar a informação toda no Solr de um repositório a partir do MySQL: | |
9 | +./scripts/executeMainFromClass.sh pt.keep.metarepository.core.solr.SolrClientUtilities bd [archive_id] | ... | ... |
Readme.md
... | ... | @@ -0,0 +1,35 @@ |
1 | +# How to install the Validador2 | |
2 | + | |
3 | +## Manual | |
4 | +There are detailed instructions to install the portal/validator in a new environment. | |
5 | + | |
6 | + The Configuration files should be modified accordingly to the needs of your project. | |
7 | + | |
8 | + The USER/PASSWORD OF BD SHOULD BE ADDED | |
9 | + IT IS NEEDDED TO ADD YOUR CAPTCHA KEY IN CONFIG | |
10 | + THE GAnalytics SHOULD BE THE ONE DEFINED TO YOUR SITE. ADD IN THE WEB FILES | |
11 | + | |
12 | + The log4j was modified to our new type of logging (like in SARIs) | |
13 | + Modified build.xml to add the log4j jar used in the modified log4j file properties | |
14 | + | |
15 | + Replace [USER] and [PASSWORD] for the corret value. | |
16 | + Replace the [MAILS] for the correct ones. If more than 1 mail, add commas sperating the mails | |
17 | + | |
18 | +#The metarepository configuration for the admin.mail should be validador@rcaap.pt (or whatever mail is used) instead of noreply@rcaap.pt# | |
19 | + | |
20 | +#Added a contact email in contacts class and in metarepository.config | |
21 | + | |
22 | + | |
23 | + | |
24 | +## Developers | |
25 | +The OpenaAirAuthorityControl Add-on was developed in the context of RCAAP Project[RCAAP](www.rcaap.pt) by [KEEP SOLUTIONS](http:///www.keep.pt), a spin-off of the University of Minho, specialized in digital preservation and advanced solutions for digital archives and libraries, in partnership with the [Documentation Services](http://www.sdum.uminho.pt/) of the University of Minho. | |
26 | + | |
27 | + | |
28 | +## Need help, or give any type of contribution? | |
29 | + | |
30 | +Please contact us at [FCT|FCCN](http://www.fccn.pt) or any commiter. | |
31 | + | |
32 | +## License | |
33 | + | |
34 | +Please contact us at [FCT|FCCN](http://www.fccn.pt). | |
35 | + | ... | ... |
build.properties
... | ... | @@ -0,0 +1,19 @@ |
1 | +name=metarepository | |
2 | +deploy.name=ROOT | |
3 | +version=2.2 | |
4 | + | |
5 | +src.dir=src | |
6 | +config.dir=config | |
7 | +bin.dir=bin | |
8 | +lib.dir=lib | |
9 | +jsp.dir=jsp | |
10 | +harvest_file_name=harvest | |
11 | +web.dir=web | |
12 | +logos.dir=images | |
13 | + | |
14 | + | |
15 | +build.dir=build | |
16 | +dist.dir=dist | |
17 | +deploy.dir=deploy | |
18 | + | |
19 | + | ... | ... |
build.xml
... | ... | @@ -0,0 +1,258 @@ |
1 | +<?xml version="1.0" encoding="utf-8" ?> | |
2 | +<project name="metarepository" default="deploy" basedir="."> | |
3 | + <property file="build.properties"/> | |
4 | + <property name="final.name" value="${name}-${version}"/> | |
5 | + | |
6 | + <path id="build.classpath"> | |
7 | + <fileset dir="${lib.dir}"> | |
8 | + <include name="**/*.jar"/> | |
9 | + </fileset> | |
10 | + </path> | |
11 | + | |
12 | + <target name="init"> | |
13 | + <tstamp/> | |
14 | + </target> | |
15 | + | |
16 | + <target name="compile" depends="clean, init"> | |
17 | + <mkdir dir="${build.dir}/classes" /> | |
18 | + <javac debug="true" srcdir="${src.dir}" includes="**/*.java" destdir="${build.dir}/classes"> | |
19 | + <!--<compilerarg value="-Xlint:deprecation"/>--> | |
20 | + <!--<compilerarg value="-Xlint:unchecker"/>--> | |
21 | + <classpath refid="build.classpath" /> | |
22 | + </javac> | |
23 | + <copy todir="${build.dir}/classes/pt/keep/metarepository/core/configuration" file="${config.dir}/rights.list" overwrite="true"/> | |
24 | + <copy todir="${build.dir}/classes/pt/keep/metarepository/core/configuration" file="${config.dir}/doctypes.list" overwrite="true"/> | |
25 | + <copy todir="${build.dir}/classes/pt/keep/metarepository/core/configuration" file="${config.dir}/languages.list" overwrite="true"/> | |
26 | + <copy todir="${build.dir}/classes/pt/keep/metarepository/core/configuration" file="${config.dir}/stopWords.list" overwrite="true"/> | |
27 | + <copy todir="${build.dir}/classes/pt/keep/metarepository/core/configuration" file="${config.dir}/CqlToSQL.properties" overwrite="true"/> | |
28 | + <copy todir="${build.dir}/classes/pt/keep/metarepository/core/configuration" file="${config.dir}/CqlToSolr.properties" overwrite="true"/> | |
29 | + <copy todir="${build.dir}/classes/pt/keep/metarepository/core/configuration" file="${config.dir}/validator.xml" overwrite="true"/> | |
30 | + <copy todir="${build.dir}/classes/pt/keep/metarepository/core/configuration" file="${config.dir}/validator.xsd" overwrite="true"/> | |
31 | + <copy todir="${build.dir}/classes/pt/keep/metarepository/core/localization" overwrite="true"> | |
32 | + <fileset dir="${config.dir}/" includes="**/Messages*.properties" /> | |
33 | + </copy> | |
34 | + <!--<copy todir="${web.dir}/images/repositories" overwrite="true"> | |
35 | + <fileset dir="${logos.dir}/" includes="**/*.jpg" /> | |
36 | + </copy>--> | |
37 | + <copy todir="${build.dir}/classes/templates" overwrite="true"> | |
38 | + <fileset dir="${config.dir}/templates/" includes="**/*" /> | |
39 | + </copy> | |
40 | + <copy todir="${build.dir}/classes" file="${config.dir}/metarepository.config" overwrite="true" /> | |
41 | + <copy todir="${build.dir}/classes" file="${config.dir}/oaicat.properties" overwrite="true" /> | |
42 | + <copy todir="${build.dir}/classes" file="${config.dir}/log4j.xml" overwrite="true" /> | |
43 | + </target> | |
44 | + | |
45 | + <target name="jar" depends="compile"> | |
46 | + <mkdir dir="${build.dir}"/> | |
47 | + <jar destfile="${build.dir}/${final.name}.jar" basedir="${build.dir}/classes/"> | |
48 | + <manifest> | |
49 | + <attribute name="Created-By" value="KEEP SOLUTIONS Lda."/> | |
50 | + </manifest> | |
51 | + </jar> | |
52 | + </target> | |
53 | + | |
54 | + <target name="build" depends="compile"> | |
55 | + <mkdir dir="${bin.dir}"/> | |
56 | + <jar destfile="${bin.dir}/${harvest_file_name}.jar" basedir="${build.dir}/classes/"> | |
57 | + <fileset dir="${lib.dir}/"> | |
58 | + <include name="*.jar"/> | |
59 | + </fileset> | |
60 | + <manifest> | |
61 | + <attribute name="Main-Class" value="pt.keep.metarepository.core.app.HarvestApp"/> | |
62 | + </manifest> | |
63 | + </jar> | |
64 | + </target> | |
65 | + | |
66 | + <target name="harvest"> | |
67 | + <java fork="true" classname="pt.keep.metarepository.core.app.HarvestApp" maxmemory="2048m" failonerror="true"> | |
68 | + <jvmarg value="-Xss4096k" /> | |
69 | + <sysproperty key="log4j.configuration" value="file:${config.dir}/log4j.xml"/> | |
70 | + <classpath> | |
71 | + <path refid="build.classpath"/> | |
72 | + <path location="${bin.dir}/${harvest_file_name}.jar"/> | |
73 | + </classpath> | |
74 | + <arg value="-o" /> | |
75 | + <arg value="HARVEST"/> | |
76 | + <arg value="--${selector}" /> | |
77 | + <arg value="${selector_value}"/> | |
78 | + </java> | |
79 | + </target> | |
80 | + | |
81 | + <target name="force_harvest"> | |
82 | + <java fork="true" classname="pt.keep.metarepository.core.app.HarvestApp" maxmemory="2048m" failonerror="true"> | |
83 | + <jvmarg value="-Xss4096k" /> | |
84 | + <sysproperty key="log4j.configuration" value="file:${config.dir}/log4j.xml"/> | |
85 | + <classpath> | |
86 | + <path refid="build.classpath"/> | |
87 | + <path location="${bin.dir}/${harvest_file_name}.jar"/> | |
88 | + </classpath> | |
89 | + <arg value="-o" /> | |
90 | + <arg value="HARVEST"/> | |
91 | + <arg value="-f" /> | |
92 | + <arg value="--${selector}" /> | |
93 | + <arg value="${selector_value}"/> | |
94 | + </java> | |
95 | + </target> | |
96 | + | |
97 | + <target name="send"> | |
98 | + <java fork="true" classname="pt.keep.metarepository.core.app.HarvestApp" maxmemory="2048m" failonerror="true"> | |
99 | + <jvmarg value="-Xss4096k" /> | |
100 | + <sysproperty key="log4j.configuration" value="file:${config.dir}/log4j.xml"/> | |
101 | + <classpath> | |
102 | + <path refid="build.classpath"/> | |
103 | + <path location="${bin.dir}/${harvest_file_name}.jar"/> | |
104 | + </classpath> | |
105 | + <arg value="-o" /> | |
106 | + <arg value="SENDMAIL"/> | |
107 | + </java> | |
108 | + </target> | |
109 | + | |
110 | + <target name="subjects"> | |
111 | + <java fork="true" classname="pt.keep.metarepository.core.app.HarvestApp" maxmemory="2048m" failonerror="true"> | |
112 | + <jvmarg value="-Xss4096k" /> | |
113 | + <sysproperty key="log4j.configuration" value="file:${config.dir}/log4j.xml"/> | |
114 | + <classpath> | |
115 | + <path refid="build.classpath"/> | |
116 | + <path location="${bin.dir}/${harvest_file_name}.jar"/> | |
117 | + </classpath> | |
118 | + <arg value="-o" /> | |
119 | + <arg value="PARSESUBJECTS"/> | |
120 | + </java> | |
121 | + </target> | |
122 | + | |
123 | + <target name="statistics"> | |
124 | + <java fork="true" classname="pt.keep.metarepository.core.app.HarvestApp" maxmemory="2048m" failonerror="true"> | |
125 | + <jvmarg value="-Xss4096k" /> | |
126 | + <sysproperty key="log4j.configuration" value="file:${config.dir}/log4j.xml"/> | |
127 | + <classpath> | |
128 | + <path refid="build.classpath" /> | |
129 | + <path location="${bin.dir}/${harvest_file_name}.jar" /> | |
130 | + </classpath> | |
131 | + <arg value="-o" /> | |
132 | + <arg value="STATISTICS"/> | |
133 | + </java> | |
134 | + </target> | |
135 | + <target name="graphs"> | |
136 | + <java fork="true" classname="pt.keep.metarepository.core.app.HarvestApp" maxmemory="2048m" failonerror="true"> | |
137 | + <jvmarg value="-Xss4096k" /> | |
138 | + <sysproperty key="log4j.configuration" value="file:${config.dir}/log4j.xml"/> | |
139 | + <classpath> | |
140 | + <path refid="build.classpath" /> | |
141 | + <path location="${bin.dir}/${harvest_file_name}.jar" /> | |
142 | + </classpath> | |
143 | + <arg value="-o" /> | |
144 | + <arg value="GRAPHS"/> | |
145 | + </java> | |
146 | + </target> | |
147 | + | |
148 | + <!-- create war file --> | |
149 | + <target name="war" depends="compile"> | |
150 | + <mkdir dir="${build.dir}"/> | |
151 | + <war destfile="${build.dir}/${deploy.name}.war" webxml="${config.dir}/web.xml"> | |
152 | + <fileset dir="${web.dir}" excludes="WEB-INF/web.xml"/> | |
153 | + <classes dir="${build.dir}/classes"/> | |
154 | + <lib file="${lib.dir}/mysql-connector-java-5.1.7-bin.jar"/> | |
155 | + <lib file="${lib.dir}/commons-lang-2.4.jar"/> | |
156 | + <lib file="${lib.dir}/commons-fileupload.jar"/> | |
157 | + <lib file="${lib.dir}/commons-io.jar"/> | |
158 | + <lib file="${lib.dir}/commons-logging.jar"/> | |
159 | + <lib file="${lib.dir}/commons-httpclient-3.1.jar" /> | |
160 | + <lib file="${lib.dir}/cql-java.jar"/> | |
161 | + <lib file="${lib.dir}/axis.jar"/> | |
162 | + <lib file="${lib.dir}/jaxb-impl-2.1.9.jar"/> | |
163 | + <lib file="${lib.dir}/httpcore-4.0.jar"/> | |
164 | + <lib file="${lib.dir}/httpclient-4.0-beta2.jar"/> | |
165 | + <lib file="${lib.dir}/axiom-api-1.2.5.jar"/> | |
166 | + <lib file="${lib.dir}/axiom-impl-1.2.5.jar"/> | |
167 | + <lib file="${lib.dir}/log4j-1.2.16.jar"/> | |
168 | + <lib file="${lib.dir}/log4j-extras-1.1.jar"/> | |
169 | + <lib file="${lib.dir}/velocity-1.6.2.jar" /> | |
170 | + <lib file="${lib.dir}/commons-collections-3.2.1.jar" /> | |
171 | + <lib file="${lib.dir}/mailapi.jar" /> | |
172 | + <lib file="${lib.dir}/smtp.jar" /> | |
173 | + <lib file="${lib.dir}/oaicat.jar" /> | |
174 | + <lib file="${lib.dir}/degois-3.0.jar" /> | |
175 | + <lib file="${lib.dir}/jaxrpc.jar" /> | |
176 | + <lib file="${lib.dir}/commons-discovery.jar" /> | |
177 | + <lib file="${lib.dir}/wsdl4j.jar" /> | |
178 | + <lib file="${lib.dir}/solr-core-3.4.0.jar" /> | |
179 | + <lib file="${lib.dir}/solr-solrj-3.4.0.jar" /> | |
180 | + <lib file="${lib.dir}/commons-codec-1.3.jar" /> | |
181 | + <lib file="${lib.dir}/jcl-over-slf4j-1.5.5.jar" /> | |
182 | + <lib file="${lib.dir}/lucene-analyzers-3.4.0.jar" /> | |
183 | + <lib file="${lib.dir}/lucene-core-3.4.0.jar" /> | |
184 | + <lib file="${lib.dir}/lucene-misc-3.4.0.jar" /> | |
185 | + <lib file="${lib.dir}/lucene-memory-3.4.0.jar" /> | |
186 | + <lib file="${lib.dir}/lucene-queries-3.4.0.jar" /> | |
187 | + <lib file="${lib.dir}/lucene-spellchecker-3.4.0.jar" /> | |
188 | + <lib file="${lib.dir}/lucene-spatial-3.4.0.jar" /> | |
189 | + <lib file="${lib.dir}/lucene-highlighter-3.4.0.jar" /> | |
190 | + <lib file="${lib.dir}/slf4j-api-1.5.5.jar" /> | |
191 | + <lib file="${lib.dir}/slf4j-log4j12-1.5.5.jar" /> | |
192 | + <!-- jersey stuff --> | |
193 | + <lib file="${lib.dir}/javax.ws.rs-api-2.0.jar" /> | |
194 | + <lib file="${lib.dir}/jersey-container-servlet.jar" /> | |
195 | + <lib file="${lib.dir}/jersey-container-servlet-core.jar" /> | |
196 | + <lib file="${lib.dir}/jersey-common.jar" /> | |
197 | + <lib file="${lib.dir}/jersey-client.jar" /> | |
198 | + <lib file="${lib.dir}/jersey-server.jar" /> | |
199 | + <lib file="${lib.dir}/asm-all-repackaged-2.2.0-b21.jar" /> | |
200 | + <lib file="${lib.dir}/guava-14.0.1.jar" /> | |
201 | + <lib file="${lib.dir}/cglib-2.2.0-b21.jar" /> | |
202 | + <lib file="${lib.dir}/validation-api-1.1.0.Final.jar" /> | |
203 | + <lib file="${lib.dir}/persistence-api-1.0.jar" /> | |
204 | + <lib file="${lib.dir}/osgi-resource-locator-1.0.1.jar" /> | |
205 | + <lib file="${lib.dir}/org.osgi.core-4.2.0.jar" /> | |
206 | + <lib file="${lib.dir}/jaxb-api-2.2.7.jar" /> | |
207 | + <lib file="${lib.dir}/javax.inject-2.2.0-b21.jar" /> | |
208 | + <lib file="${lib.dir}/javax.annotation-api-1.2.jar" /> | |
209 | + <lib file="${lib.dir}/hk2-utils-2.2.0-b21.jar" /> | |
210 | + <lib file="${lib.dir}/hk2-locator-2.2.0-b21.jar" /> | |
211 | + <lib file="${lib.dir}/hk2-api-2.2.0-b21.jar" /> | |
212 | + <lib file="${lib.dir}/jersey-mvc-jsp-2.4.1.jar" /> | |
213 | + <lib file="${lib.dir}/jersey-mvc-2.4.1.jar" /> | |
214 | + | |
215 | + <!-- json stuff --> | |
216 | + <lib file="${lib.dir}/json-simple-1.1.1.jar" /> | |
217 | + </war> | |
218 | + </target> | |
219 | + | |
220 | + <target name="deploy" depends="war, build"> | |
221 | + <delete file="${deploy.dir}/${deploy.name}.war"/> | |
222 | + <copy todir="${deploy.dir}" file="${build.dir}/${deploy.name}.war"/> | |
223 | + <echo message="Deverá reiniciar o tomcat" /> | |
224 | + <echo message="Deverá também correr 'ant graphs' assim que o .war for expandido" /> | |
225 | + | |
226 | + </target> | |
227 | + | |
228 | + <target name="src.dist" depends="clean" description="--> Generates the source oaiarc distribution as .tar.gz"> | |
229 | + <mkdir dir="${dist.dir}"/> | |
230 | + <mkdir dir="${build.dir}"/> | |
231 | + <delete file="${build.dir}/${final.name}-src.tar"/> | |
232 | + <delete file="${dist.dir}/${final.name}-src.tar.gz"/> | |
233 | + <tar tarfile="${build.dir}/${final.name}-src.tar"> | |
234 | + <tarfileset prefix="${final.name}-src" dir="." includes="src/,config/,bin/,lib/,build.properties,build.xml,README.txt,CHANGES.txt,AUTHORS.txt"/> | |
235 | + </tar> | |
236 | + <gzip zipfile="${dist.dir}/${final.name}-src.tar.gz" src="${build.dir}/${final.name}-src.tar" /> | |
237 | + </target> | |
238 | + | |
239 | + | |
240 | + <target name="dist" depends="war" description="--> Generates the oaiarc distribution as .tar.gz"> | |
241 | + <mkdir dir="${dist.dir}"/> | |
242 | + <delete file="${build.dir}/${final.name}.tar"/> | |
243 | + <delete file="${dist.dir}/${final.name}.tar.gz"/> | |
244 | + <tar tarfile="${build.dir}/${final.name}.tar"> | |
245 | + <tarfileset prefix="${final.name}" dir="." | |
246 | + includes="src/,config/,bin/,lib/,build.properties,build.xml,README.txt,CHANGES.txt,AUTHORS.txt"/> | |
247 | + <tarfileset prefix="${final.name}" dir="${build.dir}" | |
248 | + includes="${final.name}.jar,${deploy.name}.war"/> | |
249 | + </tar> | |
250 | + <gzip zipfile="${dist.dir}/${final.name}.tar.gz" src="${build.dir}/${final.name}.tar" /> | |
251 | + </target> | |
252 | + | |
253 | + <target name="clean"> | |
254 | + <delete dir="${build.dir}"/> | |
255 | + <delete dir="${dist.dir}"/> | |
256 | + </target> | |
257 | +</project> | |
258 | + | ... | ... |
config/CqlToSQL.properties
... | ... | @@ -0,0 +1,36 @@ |
1 | +# All mapped columns must have a FULL INDEX Search enabled | |
2 | + | |
3 | +titulo=titles | |
4 | +title=titles | |
5 | +dc.title=titles | |
6 | + | |
7 | +author=creators | |
8 | +autor=creators | |
9 | +dc.author=creators | |
10 | +creator=creators | |
11 | +dc.creator=creators | |
12 | + | |
13 | +data=document_issue_date | |
14 | +date=document_issue_date | |
15 | +dc.date=document_issue_date | |
16 | + | |
17 | +assunto=subjects | |
18 | +assuntos=subjects | |
19 | +subject=subjects | |
20 | +subjects=subjects | |
21 | +dc.assunto=subjects | |
22 | +dc.assuntos=subjects | |
23 | +dc.subject=subjects | |
24 | +dc.subjects=subjects | |
25 | + | |
26 | +abstract=descriptions | |
27 | +dc.description=descriptions | |
28 | + | |
29 | +type=types | |
30 | +types=types | |
31 | +dc.types=types | |
32 | +dc.types=types | |
33 | + | |
34 | +all=alltext | |
35 | + | |
36 | + | ... | ... |
config/CqlToSolr.properties
... | ... | @@ -0,0 +1,34 @@ |
1 | +titulo=titles | |
2 | +title=titles | |
3 | +dc.title=titles | |
4 | + | |
5 | +author=creators | |
6 | +autor=creators | |
7 | +dc.author=creators | |
8 | +creator=creators | |
9 | +dc.creator=creators | |
10 | + | |
11 | +data=document_issue_date | |
12 | +date=document_issue_date | |
13 | +dc.date=document_issue_date | |
14 | + | |
15 | +assunto=subjects | |
16 | +assuntos=subjects | |
17 | +subject=subjects | |
18 | +subjects=subjects | |
19 | +dc.assunto=subjects | |
20 | +dc.assuntos=subjects | |
21 | +dc.subject=subjects | |
22 | +dc.subjects=subjects | |
23 | + | |
24 | +abstract=descriptions | |
25 | +dc.description=descriptions | |
26 | + | |
27 | +type=document_type | |
28 | +types=document_type | |
29 | +dc.types=document_type | |
30 | +dc.types=document_type | |
31 | + | |
32 | +all=alltext | |
33 | + | |
34 | + | ... | ... |
config/Messages_en.properties
... | ... | @@ -0,0 +1,581 @@ |
1 | +# Page Related Strings | |
2 | + | |
3 | +# General Strings | |
4 | +webui.general.article = Document | |
5 | +webui.general.article.plural = Documents | |
6 | +webui.general.repository = Resource | |
7 | +webui.general.repository.plural = Resources | |
8 | +webui.general.rcaap.title = RCAAP - Repositório Científico de Acesso Aberto de Portugal | |
9 | +webui.general.title.acessibility = This website is WCAG 1.0 compliant with 1,2 and 3 priorities. Tested with eXaminator from UMIC | |
10 | +webui.general.alt.acessibility = Web accessibility symbol | |
11 | +webui.general.alt.mec = Ministério da Educação e Ciência | |
12 | +webui.general.alt.fct = Fundação para a Ciência e a Tecnologia | |
13 | +webui.general.alt.gov = Portuguese Government | |
14 | +webui.general.alt.umic = Agência para a Sociedade do Conhecimento | |
15 | +webui.general.alt.fccn = Fundação para a Computação Científica Nacional | |
16 | +webui.general.alt.uminho = Universidade do Minho | |
17 | +webui.general.alt.pos = Programa Operacional da Sociedade do Conhecimento | |
18 | +webui.general.alt.eu = EU | |
19 | +webui.general.alt.keeps = KEEP SOLUTIONS, LDA | |
20 | +webui.general.financed = Financed by | |
21 | +webui.general.developed = Developed by | |
22 | +webui.general.portuguese=Português | |
23 | +webui.general.english=English | |
24 | + | |
25 | +webui.header.rcaap.logo.label = Repositório Científico de Acesso Aberto de Portugal | |
26 | +webui.header.contact.us.label = Contact us for suggestions, informations or error reports. | |
27 | +webui.header.contact.us = Contacts | |
28 | +webui.header.home.label = Back to Homepage | |
29 | +webui.header.advanced.label = Advanced Search | |
30 | +webui.header.browse.rcaap.label = RCAAP Directory | |
31 | +webui.header.how.to.use.label = Help | |
32 | +webui.header.home = Home | |
33 | +webui.header.advanced = Advanced Search | |
34 | +webui.header.browse.rcaap = Directory | |
35 | +webui.header.how.to.use = Help | |
36 | +webui.header.rss = Subscribe RSS | |
37 | +webui.header.rss.label = Subscribe RSS | |
38 | + | |
39 | +webui.footer.home.label = Back to Homepage | |
40 | +webui.footer.home = Back to Homepage | |
41 | +webui.footer.top.label = Top | |
42 | +webui.footer.top = Top | |
43 | +webui.footer.about.label = About the RCAAP Project | |
44 | +webui.footer.about = About RCAAP | |
45 | +webui.footer.help.label = How to use RCAAP | |
46 | +webui.footer.help = Help | |
47 | +webui.footer.results.label = Back to results | |
48 | +webui.footer.results = Back to results | |
49 | +webui.footer.rcaap.copyright = © All rights reserved. | |
50 | + | |
51 | +webui.index.search.legend = Search | |
52 | +webui.index.search.label = enter keywords to search for | |
53 | +webui.index.submit.button.label = Search | |
54 | +webui.index.advanced.search.title = Advanced Search | |
55 | +webui.index.how.to.use = Help | |
56 | +webui.index.how.to.use.label = Help | |
57 | +webui.index.directory.label = Directory | |
58 | +webui.index.directory = Directory | |
59 | +webui.index.about.label = About RCAAP | |
60 | +webui.index.about = About RCAAP | |
61 | +webui.index.tagcloud.subjects.title = Subjects | |
62 | +webui.index.tagcloud.search.title = Queries | |
63 | +webui.index.tagcloud.collections.title = Collections | |
64 | +webui.index.format.belowBox=%1$d %2$s indexed from %3$d %4$s | |
65 | + | |
66 | +webui.directory.legend = Directory | |
67 | +webui.directory.number.of.documents = Number of documents | |
68 | +webui.directory.url.location = WWW | |
69 | +webui.directory.oai.interface = OAI | |
70 | +webui.directory.contact = Contact | |
71 | +webui.directory.number.of.documents.title= Documents from resource | |
72 | + | |
73 | + | |
74 | +webui.advanced.legend = Advanced Search | |
75 | +webui.advanced.description = Search several attributes | |
76 | +webui.advanced.see.more.items = More options | |
77 | +webui.advanced.see.few.items = Less option | |
78 | +webui.advanced.select = Select | |
79 | +webui.advanced.choose = Choose resources | |
80 | +webui.advanced.close = Close | |
81 | +webui.advanced.search.terms = Search Terms | |
82 | +webui.advanced.search.type = Type | |
83 | +webui.advanced.search.type.title = Title | |
84 | +webui.advanced.search.type.subject = Subject | |
85 | +webui.advanced.search.type.author = Author | |
86 | +webui.advanced.search.type.description = Abstract | |
87 | +webui.advanced.search.type.alltext = Full-text | |
88 | +webui.advanced.search.for = Search for | |
89 | +webui.advanced.search.compositors = and/or/not | |
90 | +webui.advanced.search.or = OR | |
91 | +webui.advanced.search.and = AND | |
92 | +webui.advanced.search.not = NOT | |
93 | +webui.advanced.search.label = Search | |
94 | +webui.advanced.presentation.options = Presentation options | |
95 | +webui.advanced.presentation.order.by = Sort by | |
96 | +webui.advanced.presentation.order.relevance = Relevance | |
97 | +webui.advanced.presentation.order.date = Issue Date | |
98 | +webui.advanced.presentation.order.label = Order | |
99 | +webui.advanced.presentation.order.views = Views | |
100 | +webui.advanced.presentation.order.desc = Descendent | |
101 | +webui.advanced.presentation.order.asc = Ascendent | |
102 | +webui.advanced.filters.label = Advanced filters | |
103 | +webui.advanced.filters.date.label = Date | |
104 | +webui.advanced.filters.date.since = from | |
105 | +webui.advanced.filters.date.until = to | |
106 | +webui.advanced.filters.document.type = Document Type | |
107 | +webui.advanced.filters.document.language = Language | |
108 | +webui.advanced.filters.repository.label = Resource | |
109 | + | |
110 | + | |
111 | +webui.results.see.more.items = More options | |
112 | +webui.results.see.few.items = Less options | |
113 | +webui.results.format.results = %1$d documents found, page %2$d of %3$d | |
114 | +webui.results.format.result = %1$d document found, page %2$d of %3$d | |
115 | +webui.results.search.by = Search by | |
116 | +webui.results.order.by = Sort by | |
117 | +webui.results.presentation.order.relevance = Relevance | |
118 | +webui.results.presentation.order.date = Issue Date | |
119 | +webui.results.presentation.order.views = Views | |
120 | +webui.results.order.label = Order | |
121 | +webui.results.order.asc = Ascendent | |
122 | +webui.results.order.desc = Descendent | |
123 | +webui.results.refresh = Refresh | |
124 | +webui.results.first.page = go first page | |
125 | +webui.results.last.page = go last page | |
126 | +webui.results.next.page = go next page | |
127 | +webui.results.previous.page = go previous page | |
128 | +webui.results.goto.page = go to page | |
129 | +webui.results.rss = rss feed search results | |
130 | +webui.results.item.date = Date | |
131 | +webui.results.item.origin = Origin | |
132 | +webui.results.item.more.info = More info. | |
133 | +webui.results.item.more.info.about = More information about | |
134 | +webui.results.filters.results = Results | |
135 | +webui.results.filters.results.below = | |
136 | +webui.results.filters.search.text.label = Queried text | |
137 | +webui.results.filters.refresh = Refresh | |
138 | +webui.results.filters.refine.label = Refine Results | |
139 | +webui.results.filters.refine.label.below = | |
140 | +webui.results.filters.refine.author.label = Author | |
141 | +webui.results.filters.refine.date.label = Date | |
142 | +webui.results.filters.refine.doctype.label = Document Type | |
143 | +webui.results.filters.refine.repository.label = Resource | |
144 | +webui.results.filters.refine.subject.label = Subject | |
145 | + | |
146 | +webui.details.legend = Document details | |
147 | +webui.details.author.label = Author(s) | |
148 | +webui.details.issue.date.label = Date | |
149 | +webui.details.identifier.label = Persistent ID | |
150 | +webui.details.origin.label = Origin | |
151 | +webui.details.subject.label = Subject(s) | |
152 | +webui.details.abstract.label = Description | |
153 | +webui.details.doctype.label = Document Type | |
154 | +webui.details.language.label = Language | |
155 | +webui.details.advisor.label = Advisor(s) | |
156 | +webui.details.editor.label = Editor(s) | |
157 | + | |
158 | +webui.details.related.label = Related documents | |
159 | +webui.details.related.none = No related documents | |
160 | +webui.details.related.more.info.about = More information about | |
161 | +webui.details.related.more.info.label = more | |
162 | +webui.details.related.date.label = Date | |
163 | + | |
164 | +webui.noresults.legend = No documents match your query | |
165 | +webui.noresults.message1 = Please try again. | |
166 | +webui.noresults.message2 = Check for language errors. | |
167 | +webui.noresults.message3 = Use a less restrictive search term. | |
168 | +webui.noresults.message4 = Use other keywords with the same meaning. | |
169 | +webui.noresults.search.again = Search again | |
170 | + | |
171 | +webui.error.legend = Error Occurred | |
172 | +webui.error.message = The action you have requested has resulted in an unexpected error. Please try again or contact the site administrator. | |
173 | + | |
174 | + | |
175 | +webui.help.legend = Help | |
176 | + | |
177 | +webui.doctype.article = Article | |
178 | +webui.doctype.bachelorThesis = Bachelor Thesis | |
179 | +webui.doctype.masterThesis = Master Thesis | |
180 | +webui.doctype.doctoralThesis = Doctoral Thesis | |
181 | +webui.doctype.book = Book | |
182 | +webui.doctype.bookPart = Part of book or chapter of book | |
183 | +webui.doctype.review = Review | |
184 | +webui.doctype.conferenceObject = Conference Object | |
185 | +webui.doctype.lecture = Lecture | |
186 | +webui.doctype.workingPaper = Research paper | |
187 | +webui.doctype.preprint = Preprint | |
188 | +webui.doctype.report = Report | |
189 | +webui.doctype.annotation = Annotation | |
190 | +webui.doctype.contributionToPeriodical = Contribution To Periodical | |
191 | +webui.doctype.patent = Patent | |
192 | +webui.doctype.other = Other | |
193 | +webui.doctype.draft = Draft | |
194 | +webui.doctype.submittedVersion = Submitted Version | |
195 | +webui.doctype.acceptedVersion = Accepted Version | |
196 | +webui.doctype.publishedVersion = Published Version | |
197 | +webui.doctype.updatedVersion = Updated Version | |
198 | +webui.doctype.scientificdata = Scientific data | |
199 | + | |
200 | +webui.language.por = Portuguese | |
201 | +webui.language.eng = English | |
202 | +webui.language.spa = Spanish | |
203 | +webui.language.fra = French | |
204 | +webui.language.deu = German | |
205 | +webui.language.mwl = Mirandês | |
206 | +webui.language.ita = Italian | |
207 | +webui.language.cmn = Chinese (Mandarin) | |
208 | +webui.language.jpn = Japanese | |
209 | +webui.language.other = Other | |
210 | + | |
211 | +# Menu Specific | |
212 | +webui.menu.section.repository = Resources | |
213 | +webui.menu.section.searchtagclouds = Tag Cloud de Pesquisa | |
214 | +webui.menu.section.subjecttagclouds = Tag Cloud de Assuntos | |
215 | +webui.menu.section.documents = Documentos | |
216 | +webui.menu.section.links = Links Portal | |
217 | +webui.menu.section.harvest = Harvester | |
218 | +webui.menu.item.index = Página Inicial | |
219 | +webui.menu.item.directory = Directório | |
220 | +webui.menu.item.list = Listagem | |
221 | +webui.menu.item.list.active = Listagem (Activos) | |
222 | +webui.menu.item.list.inactive = Listagem (Inactivos) | |
223 | +webui.menu.item.add = Adicionar | |
224 | +webui.menu.item.statistics = Estatísticas | |
225 | +webui.menu.item.harvest = Harvest | |
226 | + | |
227 | +# Admin Specific | |
228 | +webui.admin.administration.title = Administração | |
229 | +webui.admin.administration.docsRep = Nº de registos por repositório | |
230 | +webui.admin.administration.docsTime = Nº de registos ao longo do tempo | |
231 | +webui.admin.administration.stats = Estatísticas | |
232 | +webui.admin.administration.typeOfErrors = Tipo de erros | |
233 | +webui.admin.administration.topTen = Top 10 | |
234 | + | |
235 | + | |
236 | + | |
237 | +webui.admin.repository.activate = Activar | |
238 | +webui.admin.repository.deactivate = Desactivar | |
239 | +webui.admin.repository.modify = Modificar | |
240 | +webui.admin.repository.remove = Remover | |
241 | +webui.admin.repository.add2 = Escolha as características da agregação | |
242 | +webui.admin.repository.add3 = Insira outras informações à cerca do repositório | |
243 | + | |
244 | +webui.admin.repository.information = Informação do repositório | |
245 | +webui.admin.repository.harvestInformation = Caracteristicas da agregação | |
246 | + | |
247 | +webui.admin.information = Informação | |
248 | + | |
249 | +webui.admin.repository.inserted = Repositório agregado | |
250 | +webui.admin.repository.add = Adicionar repositório | |
251 | +webui.admin.repository.insertInformation = Insira os dados do repositório | |
252 | +webui.admin.repository.verify = Adicionar repositório | |
253 | +webui.admin.repository.name = Nome do repositório | |
254 | +webui.admin.repository.admin.mail = Email do administrador | |
255 | +webui.admin.repository.oaiphm.version = Versão do protocolo (OAI-PMH) | |
256 | +webui.admin.repository.sets = Sets a agregar | |
257 | +webui.admin.repository.sets.all = Todos | |
258 | +webui.admin.repository.allsets = Todos os sets | |
259 | +webui.admin.repository.image = Logótipo | |
260 | +webui.admin.repository.id = Sigla (única) | |
261 | +webui.admin.repository.oaiurl = Interface OAI (URL base) | |
262 | +webui.admin.repository.oaiurl.change = Alterar | |
263 | +webui.admin.repository.create = Inserir repositório | |
264 | +webui.admin.repository.description.en = Descrição em inglês | |
265 | +webui.admin.repository.description.pt = Descrição em português | |
266 | +webui.admin.repository.homepage = Página do repositório | |
267 | +webui.admin.repository.last.harvest = Última agregação | |
268 | +webui.admin.repository.list = Repositórios | |
269 | +webui.admin.repository.view = Detalhes do repositório | |
270 | +webui.admin.repository.not.harvested = Por agregar | |
271 | +webui.admin.repository.state = Estado | |
272 | +webui.admin.repository.state.active = Activo | |
273 | +webui.admin.repository.state.inactive = Inactivo | |
274 | +webui.admin.repository.method = Método de agregação | |
275 | +webui.admin.repository.method.clean = Nova agregação | |
276 | +webui.admin.repository.method.incremental = Incremental | |
277 | +webui.admin.repository.full_text = Recolha de texto integral | |
278 | +webui.admin.repository.full_text_1 = Activo | |
279 | +webui.admin.repository.save = Guardar | |
280 | +webui.admin.repository.changeurl = Alterar URL da interface OAI | |
281 | +webui.admin.repository.show.collections = Ver sets | |
282 | +webui.admin.repository.hide.collections = Esconder sets | |
283 | +webui.admin.repository.sure = Tem a certeza que pretende apagar este repositório? | |
284 | +webui.admin.repository.delete = Repositório apagado com sucesso | |
285 | +webui.admin.repository.delete.error = O Repositório não foi apagado (ver Log) | |
286 | +webui.admin.problem.label = Registo | |
287 | +webui.admin.problem.number = Nº de erros | |
288 | +webui.admin.problem.archive = Repositório | |
289 | +webui.admin.problem.filter = Filtrar por repositório | |
290 | +webui.admin.problem.title = Erros por repositório | |
291 | +webui.admin.problem.detail.legend = Detalhes dos erros | |
292 | +webui.admin.problem.detail.title = Título | |
293 | +webui.admin.problem.detail.repository = Repositório | |
294 | +webui.admin.problem.detail.register.details = Detalhes do registo | |
295 | +webui.admin.problem.legend = Erros | |
296 | +webui.admin.problem.errorsDetected = Erros detectados | |
297 | + | |
298 | +webui.admin.repository.changeurl.message1 = Todos os documentos associado ao repositório serão apagados | |
299 | +webui.admin.repository.changeurl.message2 = Todas as colecções associadas ao repositório serão apagadas | |
300 | +webui.admin.repository.changeurl.message3 = O repositório ficará pronto para um novo harvesting completo. | |
301 | + | |
302 | +webui.admin.statistics.legend = Estatísticas | |
303 | +webui.admin.statistics.views = Visualizações | |
304 | +webui.admin.statistics.title = Titulo | |
305 | +webui.admin.statistics.label = Documentos mais vistos | |
306 | +webui.admin.statistics.number.of.documents = Nº de registos | |
307 | +webui.admin.statistics.number.of.active.documents = Nº de registos visíveis | |
308 | +webui.admin.statistics.number.of.documents.with.problems = Nº de registos com erros | |
309 | +webui.admin.statistics.number.of.problems = Nº de erros | |
310 | +webui.admin.statistics.problem.percentage = % de registos com erros | |
311 | +webui.admin.statistics.problem = Problema | |
312 | +webui.admin.statistics.problem.count = Número | |
313 | +webui.admin.statistics.problem.document_issue_date = Data de publicação inválida | |
314 | +webui.admin.statistics.problem.document_link = Link para registo inexistente | |
315 | +webui.admin.statistics.problem.document_type = Tipo de documento desconhecido | |
316 | +webui.admin.statistics.problem.document_language = Idioma desconhecido | |
317 | +webui.admin.statistics.problem.rights = Acesso restrito | |
318 | +webui.admin.statistics.problem.zero_documents_to_extract = Sem documentos associados | |
319 | +webui.admin.statistics.problem.tika_extract_exception = Erro na extracção de texto integral | |
320 | +webui.admin.statistics.problem.harvest_event = Agregação falhada | |
321 | + | |
322 | + | |
323 | +webui.admin.index.welcome = Area de Administracao do Portal RCAAP | |
324 | + | |
325 | + | |
326 | +# Errors | |
327 | +webui.admin.error.message1 = Sigla fornecida já existe | |
328 | +webui.admin.error.message2 = Sigla fornecida é inválida | |
329 | +webui.admin.error.message3 = URL Base do OAI inválido | |
330 | +webui.admin.error.message4 = Ocorreu um erro, tente novamente. | |
331 | + | |
332 | + | |
333 | +webui.admin.repository.inserted.message = O repositório foi adicionado com sucesso (contudo ainda não está activo) | |
334 | +webui.admin.harvest.title = Agregação | |
335 | +webui.admin.harvest.separator = Agregação | |
336 | +webui.admin.harvest.message = O seu pedido está a ser processado. Pode ser um processo demorado,<br /> mas no fim da agregação irá receber um e-mail com o relatório. | |
337 | + | |
338 | + | |
339 | +# RSS | |
340 | +rss.untitleditem = Untitled item | |
341 | + | |
342 | +webui.repositories.countries.portugal = Portugal | |
343 | +webui.repositories.countries.brazil = Brazil | |
344 | + | |
345 | +webui.dynamic.collection.saramago = Saramago | |
346 | +webui.dynamic.collection.thesisAndDissertations = Electronic Thesis | |
347 | +webui.dynamic.collection.thesis = Doctoral Thesis | |
348 | +webui.dynamic.collection.dissertations = Master Thesis | |
349 | +webui.dynamic.collection.bullying = bullying | |
350 | +webui.dynamic.collection.h1n1 = h1n1 | |
351 | +webui.dynamic.collection.carlosFiolhais = Carlos Fiolhais | |
352 | + | |
353 | +webui.degois.title = Send item to Curriculum DeGóis | |
354 | +webui.degois.description = Choose the item's scientific area and login data to send this item to your Curriculum DeGois. | |
355 | +webui.degois.area = Scientific area: | |
356 | +webui.degois.username = Username: | |
357 | +webui.degois.password = Password: | |
358 | +webui.degois.submit = Send | |
359 | +webui.degois.createcurriculum = Create a DeGóis Curriculum | |
360 | +webui.degois.title.0 = Item sent! | |
361 | +webui.degois.description.0 = The item was correctly sent to your Curriculum DeGóis. Access your resume for verifying and complete information in this record.<br/><br/><a href="http://degois.pt" target="blank">http://degois.pt</a> | |
362 | +webui.degois.title.1 = Wrong login data to access Curriculum DeGóis! | |
363 | +webui.degois.description.1 = Unable to confirm access to Curriculum DeGóis. Please confirm if you are registered, otherwise you may register on the website <a href="http://degois.pt" target="_blank">http://degois.pt</a><br/><br/>Confirm your entry and try again!<br/><br/><a href="mailto:info@rcaap.pt">info@rcaap.pt</a> | |
364 | +webui.degois.title.2 = Error - Unable to send item! | |
365 | +webui.degois.description.2 = There was a problem sending the item to your resume. Please try again or contact us for more information!<br/><br/><a href="mailto:info@rcaap.pt">info@rcaap.pt</a> | |
366 | +webui.degois.areas.naturalSciences = Natural Sciences | |
367 | +webui.degois.areas.technology = Technology | |
368 | +webui.degois.areas.medicalSciences = Medical Sciences | |
369 | +webui.degois.areas.agriculturalSciences = Agricultural Sciences | |
370 | +webui.degois.areas.socialSciences = Social Sciences | |
371 | +webui.degois.areas.humanities = Humanities | |
372 | +webui.degois.areas.sciences = Exact Sciences | |
373 | + | |
374 | +webui.index.changecountrysearch.portugal = Search only in portuguese resources | |
375 | +webui.index.changecountrysearch.all = Search in portuguese and brazilian resources | |
376 | + | |
377 | +webui.directory.degois = Compliant with DeGóis | |
378 | +webui.directory.openaire = Compliant with OpenAire | |
379 | +webui.directory.fulltext = Full text extraction | |
380 | +webui.directory.driver = Compliant with DRIVER | |
381 | + | |
382 | +webui.repositoryinfo.delicious = Share document in Delicious | |
383 | +webui.repositoryinfo.facebook = Share document in Facebook | |
384 | +webui.repositoryinfo.linkedin = Share document in Linkedin | |
385 | +webui.repositoryinfo.twitter = Share document in Twitter | |
386 | + | |
387 | +webui.repositoryinfo.delicious.repository = Share resource in Delicious | |
388 | +webui.repositoryinfo.facebook.repository = Share resource in Facebook | |
389 | +webui.repositoryinfo.linkedin.repository = Share resource in Linkedin | |
390 | +webui.repositoryinfo.twitter.repository = Share resource in Twitter | |
391 | + | |
392 | +webui.repositoryinfo.directorio.luso.brasileiro = Directório Luso-Brasileiro | |
393 | +webui.repositoryinfo.back.to.directory = Back to Directory | |
394 | + | |
395 | +webui.detail.biblio.coins = Export bibliographic information to Mendeley | |
396 | +webui.detail.biblio.ris = Export bibliographic information to EndNote | |
397 | +webui.detail.biblio.bibtex = Export bibliographic information to BibTeX | |
398 | +webui.detail.biblio.degois = Send item to Curriculum DeGóis | |
399 | +webui.detail.authors.documents = Search documents from this author | |
400 | +webui.detail.authors.curriculum = Search for this author curriculum in DeGóis | |
401 | +######################### | |
402 | +# Validator (version 2) | |
403 | +######################### | |
404 | +webui.validator.header.index = RCAAP Validator | |
405 | +webui.validator.header.features = Features | |
406 | +webui.validator.header.about = About | |
407 | +webui.validator.header.contact = Contacts | |
408 | +webui.validator.header.help = Help | |
409 | +webui.validator.footer.index = Home | |
410 | +webui.validator.footer.features = Features | |
411 | +webui.validator.footer.about = About | |
412 | +webui.validator.footer.contact = Contacts | |
413 | +webui.validator.footer.help = Help | |
414 | +webui.validator.footer.img.gov = Portuguese Government | |
415 | +webui.validator.footer.img.gov_sep = Portuguese Government - Separator | |
416 | +webui.validator.footer.img.mec = Ministry of Science and Education | |
417 | +webui.validator.footer.img.fct = FCT | |
418 | +webui.validator.footer.img.um = University of Minho | |
419 | +webui.validator.footer.img.pos = POS Conhecimento e UE | |
420 | + | |
421 | +webui.validator.index.title = RCAAP Validator - Home | |
422 | +webui.validator.index.validate.smalldescription = The validation of the repositories and journals OAI-PMH interface is a way to ensure the quality of the metadata of this resources, ensuring interoperability with other systems and compliance with international guidelines. | |
423 | +webui.validator.index.validate.button = Validate now | |
424 | +webui.validator.index.column1.heading = Features | |
425 | +webui.validator.index.column1.text = See all the new <a href="/validator2/features">features</a> available in this version of the validator. | |
426 | +webui.validator.index.column2.heading = Validation Types | |
427 | +webui.validator.index.column2.text = There are several <a href="/validator2/features#validation_types">types of validation</a> available for your needs. | |
428 | +webui.validator.index.column3.heading = OpenAIRE | |
429 | +webui.validator.index.column3.text = Comply with the <a href="https://guidelines.openaire.eu" target="_blank">OpenAIRE guidelines</a> and validate your repository or journal in the <a href="http://validator.openaire.eu" target="_blank">validator of the OpenAIRE project. | |
430 | + | |
431 | +webui.validator.steps.progress.step1 = Step 1 | |
432 | +webui.validator.steps.progress.step2 = Step 2 | |
433 | +webui.validator.steps.progress.confirmation = Confirmation | |
434 | + | |
435 | +webui.validator.step1.title = RCAAP Validator - Step 1 | |
436 | +webui.validator.step1.heading = OAI-PMH Validator | |
437 | +webui.validator.step1.description = Fill in the information to start validating your OAI-PMH Data Provider (Repository or Journal). | |
438 | +webui.validator.step1.error.1 = All fields are mandatory! | |
439 | +webui.validator.step1.error.2 = Invalid syntax. Please provide a valid URL! | |
440 | +webui.validator.step1.error.3 = URL does not seem to be available at the moment! | |
441 | +webui.validator.step1.error.4 = Invalid syntax. Please provide a valid OAI-PMH URL! | |
442 | +webui.validator.step1.error.5 = OAI service does not seem to be available at the moment! | |
443 | +webui.validator.step1.error.6 = E-mail address is not valid! | |
444 | +webui.validator.step1.form.resource.label = Resource: | |
445 | +webui.validator.step1.form.resource.placeholder = Name of resource to validate | |
446 | +webui.validator.step1.form.url.label = URL: | |
447 | +webui.validator.step1.form.url.placeholder = URL of the repository/journal | |
448 | +webui.validator.step1.form.url.tooltip = Refers to the address that users use to resource access | |
449 | +webui.validator.step1.form.platform.label = Platform: | |
450 | +webui.validator.step1.form.oai.label = OAI-PMH: | |
451 | +webui.validator.step1.form.oai.placeholder = URL of the OAI-PMH interface | |
452 | +webui.validator.step1.form.oai.tooltip = Refers to base address of OAI-PMH interface, eg: http://www.recurso.com/oai/request | |
453 | +webui.validator.step1.form.email.label = Email: | |
454 | +webui.validator.step1.form.email.placeholder = Email | |
455 | +webui.validator.step1.form.submit = Next | |
456 | + | |
457 | +webui.validator.step2.title = RCAAP Validator - Step 2 | |
458 | +webui.validator.step2.heading = OAI-PMH Validator | |
459 | +webui.validator.step2.description = Fill in the information to start validating your OAI-PMH Data Provider (Repository or Journal). | |
460 | +webui.validator.step2.form.options.heading = Options | |
461 | +webui.validator.step2.form.options.set.label = Collection to validate: | |
462 | +webui.validator.step2.form.options.set.all_repository = Entire repository | |
463 | +webui.validator.step2.form.options.fulltext.label = Verify access to full-text? | |
464 | +webui.validator.step2.form.options.fulltext.value.true = Yes (takes more time!) | |
465 | +webui.validator.step2.form.options.fulltext.value.false = No | |
466 | +webui.validator.step2.form.profiles.heading = Validation profile | |
467 | +webui.validator.step2.form.profiles.moreInfo = More info. | |
468 | +webui.validator.step2.form.submit = Finish | |
469 | +webui.validator.step2.form.edit.step1 = Edit step 1 | |
470 | + | |
471 | +webui.validator.confirmation.title = RCAAP Validator - Confirmation | |
472 | +webui.validator.confirmation.heading = OAI-PMH Validator | |
473 | +webui.validator.confirmation.table.resource = Resource | |
474 | +webui.validator.confirmation.table.url = URL | |
475 | +webui.validator.confirmation.table.oai = OAI-PMH | |
476 | +webui.validator.confirmation.table.platform = Platform | |
477 | +webui.validator.confirmation.table.email = Email | |
478 | +webui.validator.confirmation.table.set = Collection to validate | |
479 | +webui.validator.confirmation.table.fulltext = Verify access to full-text? | |
480 | +webui.validator.confirmation.table.fulltext.value.true = Yes | |
481 | +webui.validator.confirmation.table.fulltext.value.false = No | |
482 | +webui.validator.confirmation.table.profile = Validation profile | |
483 | +webui.validator.confirmation.table.requestDate = Date | |
484 | +webui.validator.confirmation.success = Validation request submitted successfully. The validation process will initiate shortly. The process may take just a few minutes or various hours depending on the size of your repository and options selected. | |
485 | +webui.validator.confirmation.error = Something went wrong! Please try again and if the error persists, please contact our helpdesk team: <a href=\"mailto:helpdesk@rcaap.pt\">helpdesk@rcaap.pt</a> | |
486 | +webui.validator.confirmation.featured = Featured | |
487 | + | |
488 | +webui.validator.features.title = RCAAP Validator - Features | |
489 | +webui.validator.features.heading = Features | |
490 | +webui.validator.features.index = Features | |
491 | +webui.validator.features.1.title = Multiplatform | |
492 | +webui.validator.features.1.text = The Validator RCAAP allows the association of certain validation profiles for certain platforms, meeting the specific features of each. Thus, these platforms are considered: DSpace, OJS, Eprints, or any other with a generic OAI-PMH interface. | |
493 | +webui.validator.features.2.title = Set Selection | |
494 | +webui.validator.features.2.text = For each resource you can validate only a certain Set. This way, you can validate a community or repository collection based on a certain validation profile such as theses and dissertations. In the case of Open Journal System, you can validate a particular section of the journal. | |
495 | +webui.validator.features.3.title = Validation Types | |
496 | +webui.validator.features.3.text = Each validation profile has a set of characteristics and should be used for his specific purpose. The profiles can vary according to the type of platform chosen when you start the validation process. | |
497 | +webui.validator.features.3.1.title = DRIVER Guidelines | |
498 | +webui.validator.features.3.1.text = This profile allows you to validate the resource according to the <a href="http://www.driver-support.eu/documents/DRIVER_Guidelines_v2_Final_2008-11-13.pdf" target="_blank">DRIVER guidelines</a>. Oriented to the interoperability of repositories, it can also be used to make a journal more uniform and consistent with the repositories. This profile should be used for the integration of resources at <a href="http://www.rcaap.pt" target="_blank">Search Portal RCAAP</a>. | |
499 | +webui.validator.features.3.2.title = OpenAIRE Guidelines | |
500 | +webui.validator.features.3.2.text = The OpenAIRE profile filters all records of your resource and retrieves you a list of publications identifying European Commission funded content under FP7 or Horizon 2020 program. OpenAIRE guidelines set out the corresponding Portal aggregation of all Open Access content plus funded content, nevertheless this profile specifically works to identify EC funding publications. More information on <a href="http://www.openaire.eu" target="_blank">http://www.openaire.eu</a>. | |
501 | +webui.validator.features.3.3.title = FCT - Funding Agency for Science, Technology and Innovation | |
502 | +webui.validator.features.3.3.text = The FCT profile returns a list of publications that have associated funding from the <a href="http://www.fct.pt" target="_blank">Foundation for Science and Technology (FCT)</a>. The listing is then organized by the project identifier. See more information on monitoring the FCT policy on the <a href="http://projeto.rcaap.pt/index.php/lang-pt/como-auto-arquivar-documentos/politica-fct" target="_blank">website RCAAP</a>. | |
503 | +webui.validator.features.3.4.title = Thesis and Dissertations | |
504 | +webui.validator.features.3.4.text = This profile identifies doctoral thesis and dissertations based on the document type information and validates a number of other aspects related to the legal deposit. View more information on the project <a href="http://projeto.rcaap.pt/index.php/lang-pt/como-auto-arquivar-documentos/teses-a-dissertacoes" target="_blank">website RCAAP</a>. | |
505 | +webui.validator.features.4.title = Files and Formats | |
506 | +webui.validator.features.4.text = Validates the files associated with a resource. It identifies and characterizes the resource for the purpose of digital preservation, for now only available for DSpace repositories. | |
507 | + | |
508 | +webui.validator.about.title = RCAAP Validator - About | |
509 | +webui.validator.about.heading = About | |
510 | +webui.validator.about.1 = The validator tool was created to support the management of repositories. This tool allows to gauge the conformity level of repository with the guidelines defined for the project. | |
511 | +webui.validator.about.2 = This portal provides a validation service where by filling out a form, the users can request, to be mailed, a repository validation report. | |
512 | +webui.validator.about.3 = This service is one of the components from the <a href="http://projeto.rcaap.pt/">project Repositório Científico de Acesso Aberto de Portugal</a>. RCAAP project is an initiative from <a href="http://www.umic.pt/index.php?option=com_content&task=section&id=32&Itemid=360">UMIC Knowledge Society Agency</a>, developed by <a href="http://www.fccn.pt/pt/">FCCN - Fundação para a Computação Científica Nacional</a>, with the technical and scientific collaboration from Minho University. | |
513 | +webui.validator.about.4 = All information about the RCAAP project is available on the project website at: <a href=\"http://projecto.rcaap.pt\">http://projecto.rcaap.pt</a>. | |
514 | + | |
515 | +webui.validator.help.title = RCAAP Validator - Help | |
516 | +webui.validator.help.heading = Help | |
517 | +webui.validator.help.description = The help page presents a set of irregular situations that could emerge during the process of validation of repositories or journals. Each item has an explanation and a justification of its need. Not all items are validated at the same time, it depends of the requested type of validation. The references to the metadata elements use the simple version of the Dublin Core scheme instead of the qualified one. | |
518 | + | |
519 | +webui.validator.contact.title = RCAAP Validator - Contacts | |
520 | +webui.validator.contact.heading = Contacts | |
521 | +webui.validator.contact.description = Send us your suggestions, comments or ask for help by using the following form: | |
522 | +webui.validator.contact.error.1 = All fields are mandatory | |
523 | +webui.validator.contact.error.2 = Invalid name | |
524 | +webui.validator.contact.error.3 = Invalid email | |
525 | +webui.validator.contact.error.4 = Invalid comment | |
526 | +webui.validator.contact.error.5 = Invalid subject | |