From 7ab18bae529af643ec0a79d46ddfdbc42212e30f Mon Sep 17 00:00:00 2001 From: Tibor Simko Date: Mon, 19 Dec 2011 20:46:21 +0100 Subject: [PATCH] Invenio v0.99.4 --- AUTHORS | 3 +++ ChangeLog | 31 +++++++++++++++++++++++++++++++ INSTALL | 28 ++++++++++++++-------------- Makefile.am | 5 ++++- NEWS | 9 +++++++++ RELEASE-NOTES | 43 +++++++++++++++++-------------------------- po/bg.po | 7 ++++--- po/ca.po | 7 ++++--- po/cds-invenio.pot | 2 +- po/cs.po | 7 ++++--- po/de.po | 7 ++++--- po/el.po | 4 ++-- po/en.po | 4 ++-- po/es.po | 7 ++++--- po/fr.po | 4 ++-- po/hr.po | 7 ++++--- po/hu.po | 10 ++++++---- po/it.po | 4 ++-- po/ja.po | 10 ++++++---- po/no.po | 4 ++-- po/pl.po | 7 ++++--- po/pt.po | 4 ++-- po/ru.po | 7 ++++--- po/sk.po | 7 ++++--- po/sv.po | 4 ++-- po/uk.po | 7 ++++--- po/zh_CN.po | 7 ++++--- po/zh_TW.po | 7 ++++--- 28 files changed, 153 insertions(+), 100 deletions(-) diff --git a/AUTHORS b/AUTHORS index 9ad6d8a7f7..60bd39364d 100644 --- a/AUTHORS +++ b/AUTHORS @@ -28,6 +28,9 @@ The CERN development group currently consists of: extension for the indexer. Improvents to the task scheduler and session hander, etc. + - Ludmila Marian + Fixes to several modules. + - Chris Montarbaud Multimedia and photo management. diff --git a/ChangeLog b/ChangeLog index 1b5149103f..6cb8633e59 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,34 @@ +CDS Invenio v0.99.4 (released 2011-12-19) +========================================= + +2011-09-12 Samuele Kaplun + + BibIndex: fix double-stemming upon indexing + * In get_words_from_phrase(), certain phrases could have + resulted in returning double-stemmed terms, thus causing + these terms not to be correctly indexed. + + * In order to fully apply the fix one have also to run + + $ bibindex --reindex + + on any index that is configured to use stemming. + + Co-authored-by: Ludmila Marian + +2011-08-30 Ludmila Marian + + WebSearch: fix collection translation in admin UI + * Fixes collection translation in the admin interface + when only one language is enabled for the site. + +2011-06-24 Ludmila Marian + + BibConvert: fix UP and DOWN for UTF-8 strings + * Since Python lower and upper function are not correctly + converting UTF-8 characters, a workaround is put in place + by converting via Unicode. + CDS Invenio v0.99.3 (released 2010-12-13) ========================================= diff --git a/INSTALL b/INSTALL index 9b71e08595..c661d767b2 100644 --- a/INSTALL +++ b/INSTALL @@ -183,13 +183,13 @@ Contents ---------------- $ cd /usr/local/src/ - $ wget http://invenio-software.org/download/cds-invenio-0.99.3.tar.gz - $ wget http://invenio-software.org/download/cds-invenio-0.99.3.tar.gz.md5 - $ wget http://invenio-software.org/download/cds-invenio-0.99.3.tar.gz.sig - $ md5sum -v -c cds-invenio-0.99.3.tar.gz.md5 - $ gpg --verify cds-invenio-0.99.3.tar.gz.sig cds-invenio-0.99.3.tar.gz - $ tar xvfz cds-invenio-0.99.3.tar.gz - $ cd cds-invenio-0.99.3 + $ wget http://invenio-software.org/download/cds-invenio-0.99.4.tar.gz + $ wget http://invenio-software.org/download/cds-invenio-0.99.4.tar.gz.md5 + $ wget http://invenio-software.org/download/cds-invenio-0.99.4.tar.gz.sig + $ md5sum -v -c cds-invenio-0.99.4.tar.gz.md5 + $ gpg --verify cds-invenio-0.99.4.tar.gz.sig cds-invenio-0.99.4.tar.gz + $ tar xvfz cds-invenio-0.99.4.tar.gz + $ cd cds-invenio-0.99.4 $ ./configure $ make $ make install @@ -232,20 +232,20 @@ Contents CDS Invenio. (The built files will be installed into different "target" directories later.) - $ wget http://invenio-software.org/download/cds-invenio-0.99.3.tar.gz - $ wget http://invenio-software.org/download/cds-invenio-0.99.3.tar.gz.md5 - $ wget http://invenio-software.org/download/cds-invenio-0.99.3.tar.gz.sig + $ wget http://invenio-software.org/download/cds-invenio-0.99.4.tar.gz + $ wget http://invenio-software.org/download/cds-invenio-0.99.4.tar.gz.md5 + $ wget http://invenio-software.org/download/cds-invenio-0.99.4.tar.gz.sig Fetch CDS Invenio source tarball from the CDS Software Consortium distribution server, together with MD5 checksum and GnuPG cryptographic signature files useful for verifying the integrity of the tarball. - $ md5sum -v -c cds-invenio-0.99.3.tar.gz.md5 + $ md5sum -v -c cds-invenio-0.99.4.tar.gz.md5 Verify MD5 checksum. - $ gpg --verify cds-invenio-0.99.3.tar.gz.sig cds-invenio-0.99.3.tar.gz + $ gpg --verify cds-invenio-0.99.4.tar.gz.sig cds-invenio-0.99.4.tar.gz Verify GnuPG cryptographic signature. Note that you may first have to import my public key into your keyring, if you @@ -257,11 +257,11 @@ Contents warning that may follow after the signature has been successfully verified. - $ tar xvfz cds-invenio-0.99.3.tar.gz + $ tar xvfz cds-invenio-0.99.4.tar.gz Untar the distribution tarball. - $ cd cds-invenio-0.99.3 + $ cd cds-invenio-0.99.4 Go to the source directory. diff --git a/Makefile.am b/Makefile.am index d3cc9a2d45..ddc26b28ec 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,5 @@ ## This file is part of CDS Invenio. -## Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 CERN. +## Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 CERN. ## ## CDS Invenio is free software; you can redistribute it and/or ## modify it under the terms of the GNU General Public License as @@ -257,4 +257,7 @@ update-v0.99.1-tables: update-v0.99.2-tables: @echo "Nothing to do; table structure did not change between v0.99.2 and v0.99.3." +update-v0.99.3-tables: + @echo "Nothing to do; table structure did not change between v0.99.3 and v0.99.4." + CLEANFILES = *~ diff --git a/NEWS b/NEWS index 19b3ff99b7..1bda3f4be9 100644 --- a/NEWS +++ b/NEWS @@ -6,6 +6,15 @@ releases. For more information about the current release, please consult RELEASE-NOTES. For more information about changes, please consult ChangeLog. +CDS Invenio v0.99.4 -- released 2011-12-19 +------------------------------------------ + + *) fixed double stemming during indexing (BibRank) + + *) fixed collection translation in admin UI (WebSearch) + + *) fixed UP and DOWN functions for UTF-8 strings (BibConvert) + CDS Invenio v0.99.3 -- released 2010-12-13 ------------------------------------------ diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 9f89071d81..9729538a24 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -1,43 +1,29 @@ -------------------------------------------------------------------- -CDS Invenio v0.99.3 is released -December 13, 2010 +CDS Invenio v0.99.4 is released +December 19, 2011 http://invenio-software.org/ -------------------------------------------------------------------- -CDS Invenio v0.99.3 was released on December 13, 2010. +CDS Invenio v0.99.4 was released on December 19, 2011. This is a minor bugfix release only. It is recommended to all CDS -Invenio sites using v0.99.2 or previous releases. +Invenio sites using v0.99.3 or previous releases. What's new: ----------- - *) fixed issues in the harvesting daemon when harvesting from more - than one OAI repository (BibHarvest) + *) fixed double stemming during indexing (BibRank) - *) fixed failure in formatting engine when dealing with - not-yet-existing records (BibFormat) + *) fixed collection translation in admin UI (WebSearch) - *) fixed traversal of final URL parts in the URL dispatcher - (WebStyle) - - *) improved bibdocfile URL recognition upon upload of MARC files - (BibUpload) - - *) fixed bug in admin interface for adding authorizations (WebAccess) - - *) keyword extractor is now compatible with rdflib releases older - than 2.3.2 (BibClassify) - - *) output of `bibsched status' now shows the queue mode status as - AUTOMATIC or MANUAL to help queue monitoring (BibSched) + *) fixed UP and DOWN functions for UTF-8 strings (BibConvert) Download: --------- - - - + + + Installation notes: ------------------- @@ -47,19 +33,24 @@ Please follow the INSTALL file bundled in the distribution tarball. Upgrade notes: -------------- -If you are upgrading from CDS Invenio v0.99.2, then: +If you are upgrading from CDS Invenio v0.99.3, then: - please stop your bibsched queue and your Apache server - install the update: - $ cd cds-invenio-0.99.3 + $ cd cds-invenio-0.99.4 $ cp -a /opt/cds-invenio/etc /opt/cds-invenio/etc.OLD $ sh /opt/cds-invenio/etc/build/config.nice $ make install $ /opt/cds-invenio/bin/inveniocfg --update-all $ cp -a /opt/cds-invenio/etc.OLD /opt/cds-invenio/etc + - in order to apply the double-stemming fix for the indexer, + reindexing of those indexes that use stemming is recommended: + + $ bibindex -u admin --reindex + - restart your Apache server and your bibsched queue - you are done diff --git a/po/bg.po b/po/bg.po index 3927768b20..5990d0eefd 100644 --- a/po/bg.po +++ b/po/bg.po @@ -16,9 +16,9 @@ # # 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. msgid "" msgstr "" -"Project-Id-Version: CDS-Invenio 0.99.3\n" +"Project-Id-Version: CDS-Invenio 0.99.4\n" "Report-Msgid-Bugs-To: cds.support@cern.ch\n" -"POT-Creation-Date: 2010-10-20 20:36+0200\n" +"POT-Creation-Date: 2011-12-19 20:55+0100\n" "PO-Revision-Date: 2008-03-27 02:25+0200\n" "Last-Translator: Nikolay Dyankov \n" "Language-Team: BG \n" @@ -995,8 +995,9 @@ msgid "Help Central" msgstr "Централна помощ" #: modules/bibformat/etc/format_templates/Default_HTML_actions.bft:6 +#, fuzzy msgid "Export as" -msgstr "" +msgstr "Докладване на обида" #: modules/websearch/doc/search-guide.webdoc:341 #: modules/websearch/doc/search-guide.webdoc:376 diff --git a/po/ca.po b/po/ca.po index 3fa2010b4b..da8cf102ca 100644 --- a/po/ca.po +++ b/po/ca.po @@ -16,9 +16,9 @@ # # 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. msgid "" msgstr "" -"Project-Id-Version: CDS-Invenio 0.99.3\n" +"Project-Id-Version: CDS-Invenio 0.99.4\n" "Report-Msgid-Bugs-To: cds.support@cern.ch\n" -"POT-Creation-Date: 2010-10-20 20:36+0200\n" +"POT-Creation-Date: 2011-12-19 20:55+0100\n" "PO-Revision-Date: 2008-02-28 18:47+0100\n" "Last-Translator: Ferran Jorba \n" "Language-Team: CA \n" @@ -1016,8 +1016,9 @@ msgid "collection" msgstr "col·lecció" #: modules/websearch/doc/admin/websearch-admin-guide.webdoc:21 +#, fuzzy msgid "WebSearch Admin Guide" -msgstr "" +msgstr "Administració de lliuraments" #: modules/websearch/doc/search-guide.webdoc:331 #: modules/websearch/doc/search-guide.webdoc:367 diff --git a/po/cds-invenio.pot b/po/cds-invenio.pot index ddb3b09100..f27e1a6ec6 100644 --- a/po/cds-invenio.pot +++ b/po/cds-invenio.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: cds.support@cern.ch\n" -"POT-Creation-Date: 2010-10-20 20:36+0200\n" +"POT-Creation-Date: 2011-12-19 20:55+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/po/cs.po b/po/cs.po index dd2e33cdb7..759135ebe8 100644 --- a/po/cs.po +++ b/po/cs.po @@ -16,9 +16,9 @@ # # 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. msgid "" msgstr "" -"Project-Id-Version: CDS-Invenio 0.99.3\n" +"Project-Id-Version: CDS-Invenio 0.99.4\n" "Report-Msgid-Bugs-To: cds.support@cern.ch\n" -"POT-Creation-Date: 2010-10-20 20:36+0200\n" +"POT-Creation-Date: 2011-12-19 20:55+0100\n" "PO-Revision-Date: 2008-02-29 14:34+0100\n" "Last-Translator: Tibor Simko \n" "Language-Team: CS \n" @@ -1017,8 +1017,9 @@ msgid "collection" msgstr "kolekce" #: modules/websearch/doc/admin/websearch-admin-guide.webdoc:21 +#, fuzzy msgid "WebSearch Admin Guide" -msgstr "" +msgstr "Administrace Přidávání" #: modules/websearch/doc/search-guide.webdoc:331 #: modules/websearch/doc/search-guide.webdoc:367 diff --git a/po/de.po b/po/de.po index 2cb3029d0e..cbc3d791b7 100644 --- a/po/de.po +++ b/po/de.po @@ -16,9 +16,9 @@ # # 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. msgid "" msgstr "" -"Project-Id-Version: CDS-Invenio 0.99.3\n" +"Project-Id-Version: CDS-Invenio 0.99.4\n" "Report-Msgid-Bugs-To: cds.support@cern.ch\n" -"POT-Creation-Date: 2010-10-20 20:36+0200\n" +"POT-Creation-Date: 2011-12-19 20:55+0100\n" "PO-Revision-Date: 2008-02-28 18:33+0100\n" "Last-Translator: Benedikt Koeppel \n" "Language-Team: DE \n" @@ -1018,8 +1018,9 @@ msgid "collection" msgstr "Sammlung" #: modules/websearch/doc/admin/websearch-admin-guide.webdoc:21 +#, fuzzy msgid "WebSearch Admin Guide" -msgstr "" +msgstr "WebSubmit Verwaltung" #: modules/websearch/doc/search-guide.webdoc:331 #: modules/websearch/doc/search-guide.webdoc:367 diff --git a/po/el.po b/po/el.po index 5f14350f16..dbc0b97c43 100644 --- a/po/el.po +++ b/po/el.po @@ -16,9 +16,9 @@ # # 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. msgid "" msgstr "" -"Project-Id-Version: CDS-Invenio 0.99.3\n" +"Project-Id-Version: CDS-Invenio 0.99.4\n" "Report-Msgid-Bugs-To: cds.support@cern.ch\n" -"POT-Creation-Date: 2010-10-20 20:36+0200\n" +"POT-Creation-Date: 2011-12-19 20:55+0100\n" "PO-Revision-Date: 2008-03-11 12:15+0100\n" "Last-Translator: Theodoropoulos Theodoros \n" "Language-Team: EL \n" diff --git a/po/en.po b/po/en.po index 272af47573..33c3b3fa4e 100644 --- a/po/en.po +++ b/po/en.po @@ -16,9 +16,9 @@ # # 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. msgid "" msgstr "" -"Project-Id-Version: CDS-Invenio 0.99.3\n" +"Project-Id-Version: CDS-Invenio 0.99.4\n" "Report-Msgid-Bugs-To: cds.support@cern.ch\n" -"POT-Creation-Date: 2010-10-20 20:36+0200\n" +"POT-Creation-Date: 2011-12-19 20:55+0100\n" "PO-Revision-Date: 2006-10-12 17:50+0200\n" "Last-Translator: Tibor Simko \n" "Language-Team: EN \n" diff --git a/po/es.po b/po/es.po index 1b528b19e1..c0226247c0 100644 --- a/po/es.po +++ b/po/es.po @@ -16,9 +16,9 @@ # # 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. msgid "" msgstr "" -"Project-Id-Version: CDS-Invenio 0.99.3\n" +"Project-Id-Version: CDS-Invenio 0.99.4\n" "Report-Msgid-Bugs-To: cds.support@cern.ch\n" -"POT-Creation-Date: 2010-10-20 20:36+0200\n" +"POT-Creation-Date: 2011-12-19 20:55+0100\n" "PO-Revision-Date: 2008-02-28 18:42+0100\n" "Last-Translator: Ferran Jorba \n" "Language-Team: ES \n" @@ -1018,8 +1018,9 @@ msgid "collection" msgstr "colección" #: modules/websearch/doc/admin/websearch-admin-guide.webdoc:21 +#, fuzzy msgid "WebSearch Admin Guide" -msgstr "" +msgstr "Administración de WebSubmit" #: modules/websearch/doc/search-guide.webdoc:331 #: modules/websearch/doc/search-guide.webdoc:367 diff --git a/po/fr.po b/po/fr.po index e38babddb3..682396c7d0 100644 --- a/po/fr.po +++ b/po/fr.po @@ -16,9 +16,9 @@ # # 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. msgid "" msgstr "" -"Project-Id-Version: CDS-Invenio 0.99.3\n" +"Project-Id-Version: CDS-Invenio 0.99.4\n" "Report-Msgid-Bugs-To: cds.support@cern.ch\n" -"POT-Creation-Date: 2010-10-20 20:36+0200\n" +"POT-Creation-Date: 2011-12-19 20:55+0100\n" "PO-Revision-Date: 2008-07-10 13:37+0200\n" "Last-Translator: Jérôme Caffaro \n" "Language-Team: FR \n" diff --git a/po/hr.po b/po/hr.po index b5b922798e..55e76fb5a8 100644 --- a/po/hr.po +++ b/po/hr.po @@ -16,9 +16,9 @@ # # 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. msgid "" msgstr "" -"Project-Id-Version: CDS-Invenio 0.99.3\n" +"Project-Id-Version: CDS-Invenio 0.99.4\n" "Report-Msgid-Bugs-To: cds.support@cern.ch\n" -"POT-Creation-Date: 2010-10-20 20:36+0200\n" +"POT-Creation-Date: 2011-12-19 20:55+0100\n" "PO-Revision-Date: 2008-02-29 15:34+0100\n" "Last-Translator: Alen Vodopijevec \n" "Language-Team: HR \n" @@ -1019,8 +1019,9 @@ msgid "collection" msgstr "kolekcija" #: modules/websearch/doc/admin/websearch-admin-guide.webdoc:21 +#, fuzzy msgid "WebSearch Admin Guide" -msgstr "" +msgstr "Administracija unosa" #: modules/websearch/doc/search-guide.webdoc:331 #: modules/websearch/doc/search-guide.webdoc:367 diff --git a/po/hu.po b/po/hu.po index 67c7946747..24873ed144 100644 --- a/po/hu.po +++ b/po/hu.po @@ -16,9 +16,9 @@ # # 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. msgid "" msgstr "" -"Project-Id-Version: CDS-Invenio 0.99.3\n" +"Project-Id-Version: CDS-Invenio 0.99.4\n" "Report-Msgid-Bugs-To: cds.support@cern.ch\n" -"POT-Creation-Date: 2010-10-20 20:36+0200\n" +"POT-Creation-Date: 2011-12-19 20:55+0100\n" "PO-Revision-Date: 2008-07-03 22:58+0200\n" "Last-Translator: Eva Papp \n" "Language-Team: HU \n" @@ -1015,8 +1015,9 @@ msgid "collection" msgstr "" #: modules/websearch/doc/admin/websearch-admin-guide.webdoc:21 +#, fuzzy msgid "WebSearch Admin Guide" -msgstr "" +msgstr "Keresési Útmutató" #: modules/websearch/doc/search-guide.webdoc:331 #: modules/websearch/doc/search-guide.webdoc:367 @@ -1312,8 +1313,9 @@ msgid "Add to personal basket" msgstr "" #: modules/websubmit/doc/admin/websubmit-admin-guide.webdoc:21 +#, fuzzy msgid "WebSubmit Admin Guide" -msgstr "" +msgstr "Feltöltési Útmutató" #: modules/bibformat/etc/format_templates/Default_HTML_files.bft:4 msgid "No fulltext" diff --git a/po/it.po b/po/it.po index 41a1fe9975..79e2dca331 100644 --- a/po/it.po +++ b/po/it.po @@ -16,9 +16,9 @@ # # 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. msgid "" msgstr "" -"Project-Id-Version: CDS-Invenio 0.99.3\n" +"Project-Id-Version: CDS-Invenio 0.99.4\n" "Report-Msgid-Bugs-To: cds.support@cern.ch\n" -"POT-Creation-Date: 2010-10-20 20:36+0200\n" +"POT-Creation-Date: 2011-12-19 20:55+0100\n" "PO-Revision-Date: 2008-07-01 19:12+0200\n" "Last-Translator: Samuele Kaplun \n" "Language-Team: IT \n" diff --git a/po/ja.po b/po/ja.po index 40e8dca6d1..dad84295de 100644 --- a/po/ja.po +++ b/po/ja.po @@ -16,9 +16,9 @@ # # 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. msgid "" msgstr "" -"Project-Id-Version: CDS-Invenio 0.99.3\n" +"Project-Id-Version: CDS-Invenio 0.99.4\n" "Report-Msgid-Bugs-To: cds.support@cern.ch\n" -"POT-Creation-Date: 2010-10-20 20:36+0200\n" +"POT-Creation-Date: 2011-12-19 20:55+0100\n" "PO-Revision-Date: 2008-06-13 13:00+0100\n" "Last-Translator: Marko Niinimaki \n" "Language-Team: JA \n" @@ -1016,8 +1016,9 @@ msgid "collection" msgstr "コレクション" #: modules/websearch/doc/admin/websearch-admin-guide.webdoc:21 +#, fuzzy msgid "WebSearch Admin Guide" -msgstr "" +msgstr "ガイドを見てください" #: modules/websearch/doc/search-guide.webdoc:331 #: modules/websearch/doc/search-guide.webdoc:367 @@ -1315,8 +1316,9 @@ msgid "Add to personal basket" msgstr "個人バスケットに追加" #: modules/websubmit/doc/admin/websubmit-admin-guide.webdoc:21 +#, fuzzy msgid "WebSubmit Admin Guide" -msgstr "" +msgstr "堤出しなさい助け" #: modules/bibformat/etc/format_templates/Default_HTML_files.bft:4 #, fuzzy diff --git a/po/no.po b/po/no.po index d20988aeb3..abd53232f5 100644 --- a/po/no.po +++ b/po/no.po @@ -16,9 +16,9 @@ # # 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. msgid "" msgstr "" -"Project-Id-Version: CDS-Invenio 0.99.3\n" +"Project-Id-Version: CDS-Invenio 0.99.4\n" "Report-Msgid-Bugs-To: cds.support@cern.ch\n" -"POT-Creation-Date: 2010-10-20 20:36+0200\n" +"POT-Creation-Date: 2011-12-19 20:55+0100\n" "PO-Revision-Date: 2008-07-10 13:15+0200\n" "Last-Translator: Lars Christian Raae \n" "Language-Team: NO \n" diff --git a/po/pl.po b/po/pl.po index 8b61ca7b41..8825b66590 100644 --- a/po/pl.po +++ b/po/pl.po @@ -16,9 +16,9 @@ # # 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. msgid "" msgstr "" -"Project-Id-Version: CDS-Invenio 0.99.3\n" +"Project-Id-Version: CDS-Invenio 0.99.4\n" "Report-Msgid-Bugs-To: cds.support@cern.ch\n" -"POT-Creation-Date: 2010-10-20 20:36+0200\n" +"POT-Creation-Date: 2011-12-19 20:55+0100\n" "PO-Revision-Date: 2008-02-29 13:54+0100\n" "Last-Translator: Zbigniew Leonowicz \n" "Language-Team: PL \n" @@ -1016,8 +1016,9 @@ msgid "collection" msgstr "zbiór" #: modules/websearch/doc/admin/websearch-admin-guide.webdoc:21 +#, fuzzy msgid "WebSearch Admin Guide" -msgstr "" +msgstr "Administracja WebSubmit" #: modules/websearch/doc/search-guide.webdoc:331 #: modules/websearch/doc/search-guide.webdoc:367 diff --git a/po/pt.po b/po/pt.po index 49eb1276fc..4997a171a0 100644 --- a/po/pt.po +++ b/po/pt.po @@ -16,9 +16,9 @@ # # 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. msgid "" msgstr "" -"Project-Id-Version: CDS-Invenio 0.99.3\n" +"Project-Id-Version: CDS-Invenio 0.99.4\n" "Report-Msgid-Bugs-To: cds.support@cern.ch\n" -"POT-Creation-Date: 2010-10-20 20:36+0200\n" +"POT-Creation-Date: 2011-12-19 20:55+0100\n" "PO-Revision-Date: 2008-03-26 15:56+0100\n" "Last-Translator: Joaquim Silvestre \n" "Language-Team: PT \n" diff --git a/po/ru.po b/po/ru.po index 375efcef17..3cdb11dbf6 100644 --- a/po/ru.po +++ b/po/ru.po @@ -16,9 +16,9 @@ # # 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. msgid "" msgstr "" -"Project-Id-Version: CDS-Invenio 0.99.3\n" +"Project-Id-Version: CDS-Invenio 0.99.4\n" "Report-Msgid-Bugs-To: cds.support@cern.ch\n" -"POT-Creation-Date: 2010-10-20 20:36+0200\n" +"POT-Creation-Date: 2011-12-19 20:55+0100\n" "PO-Revision-Date: 2008-02-29 14:25+0100\n" "Last-Translator: Iaroslav Gaponenko \n" "Language-Team: RU \n" @@ -1017,8 +1017,9 @@ msgid "collection" msgstr "набор" #: modules/websearch/doc/admin/websearch-admin-guide.webdoc:21 +#, fuzzy msgid "WebSearch Admin Guide" -msgstr "" +msgstr "Администрация Внесения" #: modules/websearch/doc/search-guide.webdoc:331 #: modules/websearch/doc/search-guide.webdoc:367 diff --git a/po/sk.po b/po/sk.po index 86ec81fee9..28ed5323b1 100644 --- a/po/sk.po +++ b/po/sk.po @@ -16,9 +16,9 @@ # # 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. msgid "" msgstr "" -"Project-Id-Version: CDS-Invenio 0.99.3\n" +"Project-Id-Version: CDS-Invenio 0.99.4\n" "Report-Msgid-Bugs-To: cds.support@cern.ch\n" -"POT-Creation-Date: 2010-10-20 20:36+0200\n" +"POT-Creation-Date: 2011-12-19 20:55+0100\n" "PO-Revision-Date: 2008-02-29 14:29+0100\n" "Last-Translator: Tibor Simko \n" "Language-Team: SK \n" @@ -1017,8 +1017,9 @@ msgid "collection" msgstr "kolekcia" #: modules/websearch/doc/admin/websearch-admin-guide.webdoc:21 +#, fuzzy msgid "WebSearch Admin Guide" -msgstr "" +msgstr "Administrácia Pridávania" #: modules/websearch/doc/search-guide.webdoc:331 #: modules/websearch/doc/search-guide.webdoc:367 diff --git a/po/sv.po b/po/sv.po index 987c1dd117..d506358151 100644 --- a/po/sv.po +++ b/po/sv.po @@ -16,9 +16,9 @@ # # 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. msgid "" msgstr "" -"Project-Id-Version: CDS-Invenio 0.99.3\n" +"Project-Id-Version: CDS-Invenio 0.99.4\n" "Report-Msgid-Bugs-To: cds.support@cern.ch\n" -"POT-Creation-Date: 2010-10-20 20:36+0200\n" +"POT-Creation-Date: 2011-12-19 20:55+0100\n" "PO-Revision-Date: 2008-06-06 15:55+0100\n" "Last-Translator: Marko Niinimaki \n" "Language-Team: SV \n" diff --git a/po/uk.po b/po/uk.po index 87aa6a4e2e..385a6d63aa 100644 --- a/po/uk.po +++ b/po/uk.po @@ -16,9 +16,9 @@ # # 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. msgid "" msgstr "" -"Project-Id-Version: CDS-Invenio 0.99.3\n" +"Project-Id-Version: CDS-Invenio 0.99.4\n" "Report-Msgid-Bugs-To: cds.support@cern.ch\n" -"POT-Creation-Date: 2010-10-20 20:36+0200\n" +"POT-Creation-Date: 2011-12-19 20:55+0100\n" "PO-Revision-Date: 2008-02-29 15:25+0100\n" "Last-Translator: Tibor Simko \n" "Language-Team: UK \n" @@ -1017,8 +1017,9 @@ msgid "collection" msgstr "розділ" #: modules/websearch/doc/admin/websearch-admin-guide.webdoc:21 +#, fuzzy msgid "WebSearch Admin Guide" -msgstr "" +msgstr "Адміністрування подання" #: modules/websearch/doc/search-guide.webdoc:331 #: modules/websearch/doc/search-guide.webdoc:367 diff --git a/po/zh_CN.po b/po/zh_CN.po index d725b9b49c..3a27f776ac 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -16,9 +16,9 @@ # # 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. msgid "" msgstr "" -"Project-Id-Version: CDS-Invenio 0.99.3\n" +"Project-Id-Version: CDS-Invenio 0.99.4\n" "Report-Msgid-Bugs-To: cds.support@cern.ch\n" -"POT-Creation-Date: 2010-10-20 20:36+0200\n" +"POT-Creation-Date: 2011-12-19 20:55+0100\n" "PO-Revision-Date: 2008-02-29 15:37+0100\n" "Last-Translator: Kam-ming Ku \n" "Language-Team: ZH_CN \n" @@ -1017,8 +1017,9 @@ msgid "collection" msgstr "汇集" #: modules/websearch/doc/admin/websearch-admin-guide.webdoc:21 +#, fuzzy msgid "WebSearch Admin Guide" -msgstr "" +msgstr "WebSubmit 管理" #: modules/websearch/doc/search-guide.webdoc:331 #: modules/websearch/doc/search-guide.webdoc:367 diff --git a/po/zh_TW.po b/po/zh_TW.po index 40f5c8e5d1..52281f4c02 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -16,9 +16,9 @@ # # 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. msgid "" msgstr "" -"Project-Id-Version: CDS-Invenio 0.99.3\n" +"Project-Id-Version: CDS-Invenio 0.99.4\n" "Report-Msgid-Bugs-To: cds.support@cern.ch\n" -"POT-Creation-Date: 2010-10-20 20:36+0200\n" +"POT-Creation-Date: 2011-12-19 20:55+0100\n" "PO-Revision-Date: 2008-02-29 15:40+0100\n" "Last-Translator: Kam-ming Ku \n" "Language-Team: ZH_TW \n" @@ -1017,8 +1017,9 @@ msgid "collection" msgstr "彙集" #: modules/websearch/doc/admin/websearch-admin-guide.webdoc:21 +#, fuzzy msgid "WebSearch Admin Guide" -msgstr "" +msgstr "WebSubmit 管理" #: modules/websearch/doc/search-guide.webdoc:331 #: modules/websearch/doc/search-guide.webdoc:367