From cf1baba1804d22a2577ee05eb2f6879b16223382 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20V=C3=A9ron?= Date: Mon, 13 Jun 2016 14:21:47 +0200 Subject: [PATCH] Bug 16718 - Translatability: Fix problems with sentence splitting by in about.tt This patch removes sentence splitting by tags in koha-tmpl/intranet-tmpl/prog/en/modules/about.tt for better translatability. --- koha-tmpl/intranet-tmpl/prog/en/modules/about.tt | 42 +++++++++++----------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt index 6df64b2..d560b69 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt @@ -139,9 +139,9 @@ You have set UseQueryParser but there was a problem inititializing QueryParser. [% IF QueryParserError.fallback %] The 'queryparser_config' entry is missing in your configuration file. - [% QueryParserError.file %] was used instead without success. + The following configuration file was used without success: [% QueryParserError.file %]. [% ELSE %] - The following configuration file was used without success: [% QueryParserError.file %]. + The following configuration file was used without success: [% QueryParserError.file %]. [% END %] @@ -167,71 +167,71 @@ Warning The <zebra_bib_index_mode> entry is missing in your configuration file. - It should be set to dom or grs1 (deprecated). - It will default to dom. + It should be set to 'dom' or 'grs1' (deprecated). + It will default to 'dom'. [% ELSIF config_entry.error == 'zebra_bib_mode_seems_grs1' %] Info - Your configuration file still seems to be set up for grs1. + Your configuration file still seems to be set up for 'grs1'. [% ELSIF config_entry.error == 'zebra_bib_mode_seems_dom' %] Info - Your configuration file seems to be set up for dom. + Your configuration file seems to be set up for 'dom'. [% ELSIF config_entry.error == 'zebra_auth_index_mode_warn' %] Warning The <zebra_auth_index_mode> entry is missing in your configuration file. - It should be set to dom or grs1 (deprecated). - It will default to dom. + It should be set to 'dom' or 'grs1' (deprecated). + It will default to 'dom'. [% ELSIF config_entry.error == 'zebra_auth_mode_seems_grs1' %] Info - Your configuration file still seems to be set up for grs1. + Your configuration file still seems to be set up for 'grs1'. [% ELSIF config_entry.error == 'zebra_auth_mode_seems_dom' %] Info - Your configuration file seems to be set up for dom. + Your configuration file seems to be set up for 'dom'. [% ELSIF config_entry.error == 'zebra_bib_grs_warn' %] Warning - The <zebra_bib_index_mode> entry is set to grs1. + The <zebra_bib_index_mode> entry is set to 'grs1'. GRS-1 support is now deprecated and will be removed in future releases. Please use DOM instead by setting <zebra_bib_index_mode> to - dom (full reindex required). + 'dom' (full reindex required). [% ELSIF config_entry.error == 'zebra_bib_index_mode_mismatch_warn' %] Warning - The <zebra_bib_index_mode> entry is set to dom, but your system still appears to be set up for grs1 indexing. + The <zebra_bib_index_mode> entry is set to 'dom', but your system still appears to be set up for 'grs1' indexing. [% ELSIF config_entry.error == 'zebra_auth_grs_warn' %] Warning - The <zebra_auth_index_mode> entry is set to grs1. + The <zebra_auth_index_mode> entry is set to 'grs1'. GRS-1 support is now deprecated and will be removed in future releases. Please use DOM instead by setting <zebra_auth_index_mode> to - dom (full reindex required). + 'dom' (full reindex required). [% ELSIF config_entry.error == 'zebra_auth_index_mode_mismatch_warn' %] Warning - The <zebra_auth_index_mode> entry is set to dom, but your system still appears to be set up for grs1 indexing. + The <zebra_auth_index_mode> entry is set to 'dom', but your system still appears to be set up for 'grs1' indexing. [% ELSIF config_entry.error == 'queryparser_entry_missing' %] Warning You have set UseQueryParser but the 'queryparser_config' entry is missing in your configuration - file. [% config_entry.file %] is used as a fallback. + file. [% config_entry.file %] is used as a fallback. [% ELSIF config_entry.error == 'use_zebra_facets_entry_missing' %] @@ -244,7 +244,7 @@ [% ELSIF config_entry.error == 'use_zebra_facets_needs_dom' %] Warning - You have set <use_zebra_facets> but the <zebra_bib_index_mode> is not set to dom. Falling back + You have set <use_zebra_facets> but the <zebra_bib_index_mode> is not set to 'dom'. Falling back to legacy facet calculation. @@ -258,16 +258,16 @@ [% ELSIF config_entry.error == 'uploadpath_entry_missing' %] Warning - You are missing the <upload_path> entry in your koha-conf.xml file. Please + You are missing the <upload_path> entry in your koha-conf.xml file. Please add it, pointing to the configured file upload directory for your Koha instance. [% ELSIF config_entry.error == 'uploadpath_and_opacbaseurl_entry_missing' %] Warning - You are missing the <upload_path> entry in your koha-conf.xml file. Please + You are missing the <upload_path> entry in your koha-conf.xml file. Please add it, pointing to the configured file upload directory for your Koha instance. - Also note that you need to properly set the OPACBaseURL preference for the file upload plugin to work. + Also note that you need to properly set the OPACBaseURL preference for the file upload plugin to work. [% END %] -- 1.7.10.4