From 025bb8f49ee4903f723867bdf53178f65377ffbc Mon Sep 17 00:00:00 2001
From: Katrin Fischer <Katrin.Fischer.83@web.de>
Date: Mon, 19 Mar 2012 18:10:10 +0100
Subject: [PATCH] [SIGNED-OFF] Bug 7749: Not all OKs on the start page are translatable
Content-Type: text/plain; charset="utf-8"

I don't really understand, why the " OK " would not get picked up by
the translation script, but removing the spaces made it work.

To test:
Verify that all OK buttons on the start page are translatable. The one
resisting translation was "Search catalog:"

Signed-off-by: mveron <veron@veron.ch>
---
 .../intranet-tmpl/prog/en/modules/intranet-main.tt |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt
index 12861f6..a4377df 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt
@@ -51,7 +51,7 @@
                         <label for="navkeyword">
                             Search catalog:&nbsp;
                         </label><input type="text" id="navkeyword" name="q" size="10" accesskey="q" />
-                        <input type="submit" value=" OK " class="submit" />
+                        <input type="submit" value="OK" class="submit" />
                         </form>
                      </li>
 				</ul>
-- 
1.7.2.5