LP1655232: Fix misspellings of "messsage(s)" user/abowling/lp1655232_fix_misspellings_of_message
authorAdam Bowling <abowling@emeralddata.net>
Tue, 10 Jan 2017 18:05:34 +0000 (13:05 -0500)
committerAdam Bowling <abowling@emeralddata.net>
Tue, 10 Jan 2017 18:05:34 +0000 (13:05 -0500)
Fixes the various misspellings of "messsages" in templates and localization files.

Signed-off-by: Adam Bowling <abowling@emeralddata.net>
19 files changed:
Open-ILS/src/sql/Pg/000.english.pg92.fts-config.sql [changed from symlink to file mode: 0644]
Open-ILS/src/sql/Pg/000.english.pg93.fts-config.sql [changed from symlink to file mode: 0644]
Open-ILS/src/sql/Pg/000.english.pg94.fts-config.sql [changed from symlink to file mode: 0644]
Open-ILS/src/sql/Pg/000.english.pg95.fts-config.sql [changed from symlink to file mode: 0644]
Open-ILS/src/templates/opac/myopac/messages/list.tt2
Open-ILS/src/templates/opac/myopac/messages/single_message.tt2
build/i18n/po/tpac/ar-AR.po
build/i18n/po/tpac/cs-CZ.po
build/i18n/po/tpac/de-DE.po
build/i18n/po/tpac/en-CA.po
build/i18n/po/tpac/en-GB.po
build/i18n/po/tpac/es-ES.po
build/i18n/po/tpac/fi-FI.po
build/i18n/po/tpac/fr-CA.po
build/i18n/po/tpac/hy-AM.po
build/i18n/po/tpac/oc-FR.po
build/i18n/po/tpac/pt-BR.po
build/i18n/po/tpac/tpac.pot
build/i18n/po/tpac/tr-TR.po

deleted file mode 120000 (symlink)
index 0b24fd90f5cf980c8644bae82aecd795dd8a6017..0000000000000000000000000000000000000000
+++ /dev/null
@@ -1 +0,0 @@
-000.english.pg91.fts-config.sql
\ No newline at end of file
new file mode 100644 (file)
index 0000000000000000000000000000000000000000..8bae23e091aae784cdeca502bf510dee3d6a574d
--- /dev/null
@@ -0,0 +1,57 @@
+/*
+ * Copyright (C) 2004-2008  Georgia Public Library Service
+ * Copyright (C) 2008  Equinox Software, Inc., Laurentian University
+ * Mike Rylander <miker@esilibrary.com>
+ * Dan Scott <dscott@laurentian.ca>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ */
+
+BEGIN;
+
+SET search_path = public, pg_catalog;
+
+CREATE OR REPLACE FUNCTION oils_tsearch2 () RETURNS TRIGGER AS $$
+BEGIN
+       NEW.index_vector = to_tsvector((TG_ARGV[0])::regconfig, NEW.value);
+       RETURN NEW;
+END;
+$$ LANGUAGE PLPGSQL;
+
+DO $$
+DECLARE
+lang TEXT;
+BEGIN
+FOR lang IN SELECT substring(pptsd.dictname from '(.*)_stem$') AS lang FROM pg_catalog.pg_ts_dict pptsd JOIN pg_catalog.pg_namespace ppn ON ppn.oid = pptsd.dictnamespace
+WHERE ppn.nspname = 'pg_catalog' AND pptsd.dictname LIKE '%_stem' LOOP
+RAISE NOTICE 'FOUND LANGUAGE %', lang;
+
+EXECUTE 'DROP TEXT SEARCH DICTIONARY IF EXISTS ' || lang || '_nostop CASCADE;
+CREATE TEXT SEARCH DICTIONARY ' || lang || '_nostop (TEMPLATE=pg_catalog.snowball, language=''' || lang || ''');
+COMMENT ON TEXT SEARCH DICTIONARY ' || lang || '_nostop IS ''' ||lang || ' snowball stemmer with no stopwords for ASCII words only.'';
+CREATE TEXT SEARCH CONFIGURATION ' || lang || '_nostop ( COPY = pg_catalog.' || lang || ' );
+ALTER TEXT SEARCH CONFIGURATION ' || lang || '_nostop ALTER MAPPING FOR word, hword, hword_part WITH pg_catalog.simple;
+ALTER TEXT SEARCH CONFIGURATION ' || lang || '_nostop ALTER MAPPING FOR asciiword, asciihword, hword_asciipart WITH ' || lang || '_nostop;';
+
+END LOOP;
+END;
+$$;
+CREATE TEXT SEARCH CONFIGURATION title ( COPY = english_nostop );
+CREATE TEXT SEARCH CONFIGURATION author ( COPY = english_nostop );
+CREATE TEXT SEARCH CONFIGURATION subject ( COPY = english_nostop );
+CREATE TEXT SEARCH CONFIGURATION keyword ( COPY = english_nostop );
+CREATE TEXT SEARCH CONFIGURATION identifier ( COPY = english_nostop );
+CREATE TEXT SEARCH CONFIGURATION series ( COPY = english_nostop );
+CREATE TEXT SEARCH CONFIGURATION "default" ( COPY = english_nostop );
+
+
+COMMIT;
deleted file mode 120000 (symlink)
index 0b24fd90f5cf980c8644bae82aecd795dd8a6017..0000000000000000000000000000000000000000
+++ /dev/null
@@ -1 +0,0 @@
-000.english.pg91.fts-config.sql
\ No newline at end of file
new file mode 100644 (file)
index 0000000000000000000000000000000000000000..8bae23e091aae784cdeca502bf510dee3d6a574d
--- /dev/null
@@ -0,0 +1,57 @@
+/*
+ * Copyright (C) 2004-2008  Georgia Public Library Service
+ * Copyright (C) 2008  Equinox Software, Inc., Laurentian University
+ * Mike Rylander <miker@esilibrary.com>
+ * Dan Scott <dscott@laurentian.ca>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ */
+
+BEGIN;
+
+SET search_path = public, pg_catalog;
+
+CREATE OR REPLACE FUNCTION oils_tsearch2 () RETURNS TRIGGER AS $$
+BEGIN
+       NEW.index_vector = to_tsvector((TG_ARGV[0])::regconfig, NEW.value);
+       RETURN NEW;
+END;
+$$ LANGUAGE PLPGSQL;
+
+DO $$
+DECLARE
+lang TEXT;
+BEGIN
+FOR lang IN SELECT substring(pptsd.dictname from '(.*)_stem$') AS lang FROM pg_catalog.pg_ts_dict pptsd JOIN pg_catalog.pg_namespace ppn ON ppn.oid = pptsd.dictnamespace
+WHERE ppn.nspname = 'pg_catalog' AND pptsd.dictname LIKE '%_stem' LOOP
+RAISE NOTICE 'FOUND LANGUAGE %', lang;
+
+EXECUTE 'DROP TEXT SEARCH DICTIONARY IF EXISTS ' || lang || '_nostop CASCADE;
+CREATE TEXT SEARCH DICTIONARY ' || lang || '_nostop (TEMPLATE=pg_catalog.snowball, language=''' || lang || ''');
+COMMENT ON TEXT SEARCH DICTIONARY ' || lang || '_nostop IS ''' ||lang || ' snowball stemmer with no stopwords for ASCII words only.'';
+CREATE TEXT SEARCH CONFIGURATION ' || lang || '_nostop ( COPY = pg_catalog.' || lang || ' );
+ALTER TEXT SEARCH CONFIGURATION ' || lang || '_nostop ALTER MAPPING FOR word, hword, hword_part WITH pg_catalog.simple;
+ALTER TEXT SEARCH CONFIGURATION ' || lang || '_nostop ALTER MAPPING FOR asciiword, asciihword, hword_asciipart WITH ' || lang || '_nostop;';
+
+END LOOP;
+END;
+$$;
+CREATE TEXT SEARCH CONFIGURATION title ( COPY = english_nostop );
+CREATE TEXT SEARCH CONFIGURATION author ( COPY = english_nostop );
+CREATE TEXT SEARCH CONFIGURATION subject ( COPY = english_nostop );
+CREATE TEXT SEARCH CONFIGURATION keyword ( COPY = english_nostop );
+CREATE TEXT SEARCH CONFIGURATION identifier ( COPY = english_nostop );
+CREATE TEXT SEARCH CONFIGURATION series ( COPY = english_nostop );
+CREATE TEXT SEARCH CONFIGURATION "default" ( COPY = english_nostop );
+
+
+COMMIT;
deleted file mode 120000 (symlink)
index 0b24fd90f5cf980c8644bae82aecd795dd8a6017..0000000000000000000000000000000000000000
+++ /dev/null
@@ -1 +0,0 @@
-000.english.pg91.fts-config.sql
\ No newline at end of file
new file mode 100644 (file)
index 0000000000000000000000000000000000000000..8bae23e091aae784cdeca502bf510dee3d6a574d
--- /dev/null
@@ -0,0 +1,57 @@
+/*
+ * Copyright (C) 2004-2008  Georgia Public Library Service
+ * Copyright (C) 2008  Equinox Software, Inc., Laurentian University
+ * Mike Rylander <miker@esilibrary.com>
+ * Dan Scott <dscott@laurentian.ca>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ */
+
+BEGIN;
+
+SET search_path = public, pg_catalog;
+
+CREATE OR REPLACE FUNCTION oils_tsearch2 () RETURNS TRIGGER AS $$
+BEGIN
+       NEW.index_vector = to_tsvector((TG_ARGV[0])::regconfig, NEW.value);
+       RETURN NEW;
+END;
+$$ LANGUAGE PLPGSQL;
+
+DO $$
+DECLARE
+lang TEXT;
+BEGIN
+FOR lang IN SELECT substring(pptsd.dictname from '(.*)_stem$') AS lang FROM pg_catalog.pg_ts_dict pptsd JOIN pg_catalog.pg_namespace ppn ON ppn.oid = pptsd.dictnamespace
+WHERE ppn.nspname = 'pg_catalog' AND pptsd.dictname LIKE '%_stem' LOOP
+RAISE NOTICE 'FOUND LANGUAGE %', lang;
+
+EXECUTE 'DROP TEXT SEARCH DICTIONARY IF EXISTS ' || lang || '_nostop CASCADE;
+CREATE TEXT SEARCH DICTIONARY ' || lang || '_nostop (TEMPLATE=pg_catalog.snowball, language=''' || lang || ''');
+COMMENT ON TEXT SEARCH DICTIONARY ' || lang || '_nostop IS ''' ||lang || ' snowball stemmer with no stopwords for ASCII words only.'';
+CREATE TEXT SEARCH CONFIGURATION ' || lang || '_nostop ( COPY = pg_catalog.' || lang || ' );
+ALTER TEXT SEARCH CONFIGURATION ' || lang || '_nostop ALTER MAPPING FOR word, hword, hword_part WITH pg_catalog.simple;
+ALTER TEXT SEARCH CONFIGURATION ' || lang || '_nostop ALTER MAPPING FOR asciiword, asciihword, hword_asciipart WITH ' || lang || '_nostop;';
+
+END LOOP;
+END;
+$$;
+CREATE TEXT SEARCH CONFIGURATION title ( COPY = english_nostop );
+CREATE TEXT SEARCH CONFIGURATION author ( COPY = english_nostop );
+CREATE TEXT SEARCH CONFIGURATION subject ( COPY = english_nostop );
+CREATE TEXT SEARCH CONFIGURATION keyword ( COPY = english_nostop );
+CREATE TEXT SEARCH CONFIGURATION identifier ( COPY = english_nostop );
+CREATE TEXT SEARCH CONFIGURATION series ( COPY = english_nostop );
+CREATE TEXT SEARCH CONFIGURATION "default" ( COPY = english_nostop );
+
+
+COMMIT;
deleted file mode 120000 (symlink)
index 0b24fd90f5cf980c8644bae82aecd795dd8a6017..0000000000000000000000000000000000000000
+++ /dev/null
@@ -1 +0,0 @@
-000.english.pg91.fts-config.sql
\ No newline at end of file
new file mode 100644 (file)
index 0000000000000000000000000000000000000000..8bae23e091aae784cdeca502bf510dee3d6a574d
--- /dev/null
@@ -0,0 +1,57 @@
+/*
+ * Copyright (C) 2004-2008  Georgia Public Library Service
+ * Copyright (C) 2008  Equinox Software, Inc., Laurentian University
+ * Mike Rylander <miker@esilibrary.com>
+ * Dan Scott <dscott@laurentian.ca>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ */
+
+BEGIN;
+
+SET search_path = public, pg_catalog;
+
+CREATE OR REPLACE FUNCTION oils_tsearch2 () RETURNS TRIGGER AS $$
+BEGIN
+       NEW.index_vector = to_tsvector((TG_ARGV[0])::regconfig, NEW.value);
+       RETURN NEW;
+END;
+$$ LANGUAGE PLPGSQL;
+
+DO $$
+DECLARE
+lang TEXT;
+BEGIN
+FOR lang IN SELECT substring(pptsd.dictname from '(.*)_stem$') AS lang FROM pg_catalog.pg_ts_dict pptsd JOIN pg_catalog.pg_namespace ppn ON ppn.oid = pptsd.dictnamespace
+WHERE ppn.nspname = 'pg_catalog' AND pptsd.dictname LIKE '%_stem' LOOP
+RAISE NOTICE 'FOUND LANGUAGE %', lang;
+
+EXECUTE 'DROP TEXT SEARCH DICTIONARY IF EXISTS ' || lang || '_nostop CASCADE;
+CREATE TEXT SEARCH DICTIONARY ' || lang || '_nostop (TEMPLATE=pg_catalog.snowball, language=''' || lang || ''');
+COMMENT ON TEXT SEARCH DICTIONARY ' || lang || '_nostop IS ''' ||lang || ' snowball stemmer with no stopwords for ASCII words only.'';
+CREATE TEXT SEARCH CONFIGURATION ' || lang || '_nostop ( COPY = pg_catalog.' || lang || ' );
+ALTER TEXT SEARCH CONFIGURATION ' || lang || '_nostop ALTER MAPPING FOR word, hword, hword_part WITH pg_catalog.simple;
+ALTER TEXT SEARCH CONFIGURATION ' || lang || '_nostop ALTER MAPPING FOR asciiword, asciihword, hword_asciipart WITH ' || lang || '_nostop;';
+
+END LOOP;
+END;
+$$;
+CREATE TEXT SEARCH CONFIGURATION title ( COPY = english_nostop );
+CREATE TEXT SEARCH CONFIGURATION author ( COPY = english_nostop );
+CREATE TEXT SEARCH CONFIGURATION subject ( COPY = english_nostop );
+CREATE TEXT SEARCH CONFIGURATION keyword ( COPY = english_nostop );
+CREATE TEXT SEARCH CONFIGURATION identifier ( COPY = english_nostop );
+CREATE TEXT SEARCH CONFIGURATION series ( COPY = english_nostop );
+CREATE TEXT SEARCH CONFIGURATION "default" ( COPY = english_nostop );
+
+
+COMMIT;
index ba97d60..885112b 100644 (file)
@@ -50,7 +50,7 @@
     <div class="clear-both"></div>
     <div id="messages_main">
         <form method="post" id="messages-form"
-         onsubmit="if (document.getElementById('acct_messages_actions').value == 'mark_deleted') { return confirm('[% l("Are you sure you wish to permanently delete the selected messsage(s)?") %]') } else { return true; }">
+         onsubmit="if (document.getElementById('acct_messages_actions').value == 'mark_deleted') { return confirm('[% l("Are you sure you wish to permanently delete the selected message(s)?") %]') } else { return true; }">
             <div>
                 <span>
                     <select name="action" id="acct_messages_actions"
index 79ae7a1..2e49ddb 100644 (file)
@@ -13,7 +13,7 @@
                 [% l('Return to Message List') %]
                 </a>
                 <button type="submit" name="action" value="mark_deleted" class="opac-button"
-                    onclick="return confirm('[% l("Are you sure you wish to permanently delete this messsage?") %]')">
+                    onclick="return confirm('[% l("Are you sure you wish to permanently delete this message?") %]')">
                     [% l('Delete') %]
                 </button>
                 <button type="submit" name="action" value="mark_unread" class="opac-button">
index 8add751..baa5f23 100644 (file)
@@ -478,11 +478,11 @@ msgid "Are you sure you wish to delete the selected item(s)?"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/messages/list.tt2:53
-msgid "Are you sure you wish to permanently delete the selected messsage(s)?"
+msgid "Are you sure you wish to permanently delete the selected message(s)?"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/messages/single_message.tt2:16
-msgid "Are you sure you wish to permanently delete this messsage?"
+msgid "Are you sure you wish to permanently delete this message?"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/circs.tt2:37
index d3b8d73..cfd60f4 100644 (file)
@@ -489,11 +489,11 @@ msgid "Are you sure you wish to delete the selected item(s)?"
 msgstr "Opravdu chcete smazat vybrané položky?"
 
 #: ../../Open-ILS/src/templates/opac/myopac/messages/list.tt2:53
-msgid "Are you sure you wish to permanently delete the selected messsage(s)?"
+msgid "Are you sure you wish to permanently delete the selected message(s)?"
 msgstr "Opravdu chcete trvale smazat vybrané zprávy?"
 
 #: ../../Open-ILS/src/templates/opac/myopac/messages/single_message.tt2:16
-msgid "Are you sure you wish to permanently delete this messsage?"
+msgid "Are you sure you wish to permanently delete this message?"
 msgstr "Opravdu chcete trvale smazat tuto zprávu"
 
 #: ../../Open-ILS/src/templates/opac/myopac/circs.tt2:37
index a2e2ab0..71a5222 100644 (file)
@@ -471,11 +471,11 @@ msgid "Are you sure you wish to delete the selected item(s)?"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/messages/list.tt2:53
-msgid "Are you sure you wish to permanently delete the selected messsage(s)?"
+msgid "Are you sure you wish to permanently delete the selected message(s)?"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/messages/single_message.tt2:16
-msgid "Are you sure you wish to permanently delete this messsage?"
+msgid "Are you sure you wish to permanently delete this message?"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/circs.tt2:37
index cf82838..ae651ad 100644 (file)
@@ -475,11 +475,11 @@ msgid "Are you sure you wish to delete the selected item(s)?"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/messages/list.tt2:53
-msgid "Are you sure you wish to permanently delete the selected messsage(s)?"
+msgid "Are you sure you wish to permanently delete the selected message(s)?"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/messages/single_message.tt2:16
-msgid "Are you sure you wish to permanently delete this messsage?"
+msgid "Are you sure you wish to permanently delete this message?"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/circs.tt2:37
index f8469fe..eef587f 100644 (file)
@@ -475,11 +475,11 @@ msgid "Are you sure you wish to delete the selected item(s)?"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/messages/list.tt2:53
-msgid "Are you sure you wish to permanently delete the selected messsage(s)?"
+msgid "Are you sure you wish to permanently delete the selected message(s)?"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/messages/single_message.tt2:16
-msgid "Are you sure you wish to permanently delete this messsage?"
+msgid "Are you sure you wish to permanently delete this message?"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/circs.tt2:37
index 7a98e6a..8582195 100644 (file)
@@ -491,14 +491,14 @@ msgid "Are you sure you wish to delete the selected item(s)?"
 msgstr "¿Está seguro que desea eliminar los elementos seleccionados?"
 
 #: ../../Open-ILS/src/templates/opac/myopac/messages/list.tt2:53
-msgid "Are you sure you wish to permanently delete the selected messsage(s)?"
+msgid "Are you sure you wish to permanently delete the selected message(s)?"
 msgstr ""
-"¿Está seguro de que desea eliminar permanentemente el messsage(s) "
+"¿Está seguro de que desea eliminar permanentemente el message(s) "
 "seleccionado ?"
 
 #: ../../Open-ILS/src/templates/opac/myopac/messages/single_message.tt2:16
-msgid "Are you sure you wish to permanently delete this messsage?"
-msgstr "¿Está seguro que desea permanentemente eliminar este messsage ?"
+msgid "Are you sure you wish to permanently delete this message?"
+msgstr "¿Está seguro que desea permanentemente eliminar este message ?"
 
 #: ../../Open-ILS/src/templates/opac/myopac/circs.tt2:37
 msgid "Are you sure you wish to renew the selected item(s)?"
index a75a7b8..961dd37 100644 (file)
@@ -476,11 +476,11 @@ msgid "Are you sure you wish to delete the selected item(s)?"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/messages/list.tt2:53
-msgid "Are you sure you wish to permanently delete the selected messsage(s)?"
+msgid "Are you sure you wish to permanently delete the selected message(s)?"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/messages/single_message.tt2:16
-msgid "Are you sure you wish to permanently delete this messsage?"
+msgid "Are you sure you wish to permanently delete this message?"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/circs.tt2:37
index 89c764d..61e64f6 100644 (file)
@@ -487,11 +487,11 @@ msgid "Are you sure you wish to delete the selected item(s)?"
 msgstr "Désirez-vous vraiment supprimer les articles sélectionnés?"
 
 #: ../../Open-ILS/src/templates/opac/myopac/messages/list.tt2:53
-msgid "Are you sure you wish to permanently delete the selected messsage(s)?"
+msgid "Are you sure you wish to permanently delete the selected message(s)?"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/messages/single_message.tt2:16
-msgid "Are you sure you wish to permanently delete this messsage?"
+msgid "Are you sure you wish to permanently delete this message?"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/circs.tt2:37
index 4b0f803..ed9cb30 100644 (file)
@@ -487,11 +487,11 @@ msgid "Are you sure you wish to delete the selected item(s)?"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/messages/list.tt2:53
-msgid "Are you sure you wish to permanently delete the selected messsage(s)?"
+msgid "Are you sure you wish to permanently delete the selected message(s)?"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/messages/single_message.tt2:16
-msgid "Are you sure you wish to permanently delete this messsage?"
+msgid "Are you sure you wish to permanently delete this message?"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/circs.tt2:37
index 57511c8..2b8d145 100644 (file)
@@ -471,11 +471,11 @@ msgid "Are you sure you wish to delete the selected item(s)?"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/messages/list.tt2:53
-msgid "Are you sure you wish to permanently delete the selected messsage(s)?"
+msgid "Are you sure you wish to permanently delete the selected message(s)?"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/messages/single_message.tt2:16
-msgid "Are you sure you wish to permanently delete this messsage?"
+msgid "Are you sure you wish to permanently delete this message?"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/circs.tt2:37
index e31a15b..b3c3a55 100644 (file)
@@ -487,11 +487,11 @@ msgid "Are you sure you wish to delete the selected item(s)?"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/messages/list.tt2:53
-msgid "Are you sure you wish to permanently delete the selected messsage(s)?"
+msgid "Are you sure you wish to permanently delete the selected message(s)?"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/messages/single_message.tt2:16
-msgid "Are you sure you wish to permanently delete this messsage?"
+msgid "Are you sure you wish to permanently delete this message?"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/circs.tt2:37
index 54df69e..1b20dbe 100644 (file)
@@ -457,11 +457,11 @@ msgid "Are you sure you wish to delete the selected item(s)?"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/messages/list.tt2:53
-msgid "Are you sure you wish to permanently delete the selected messsage(s)?"
+msgid "Are you sure you wish to permanently delete the selected message(s)?"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/messages/single_message.tt2:16
-msgid "Are you sure you wish to permanently delete this messsage?"
+msgid "Are you sure you wish to permanently delete this message?"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/circs.tt2:37
index 7dabb77..f92f593 100644 (file)
@@ -471,11 +471,11 @@ msgid "Are you sure you wish to delete the selected item(s)?"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/messages/list.tt2:53
-msgid "Are you sure you wish to permanently delete the selected messsage(s)?"
+msgid "Are you sure you wish to permanently delete the selected message(s)?"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/messages/single_message.tt2:16
-msgid "Are you sure you wish to permanently delete this messsage?"
+msgid "Are you sure you wish to permanently delete this message?"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/circs.tt2:37