http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10509

--- Comment #10 from M. de Rooy <[email protected]> ---
Just thinking about this, we could do something else too :)
What do you think about running the English file with i18n calls while defining
i18n for the German translation in this case with something as:

DELIMITER //
DROP FUNCTION IF EXISTS i18n//
CREATE FUNCTION i18n (d text) RETURNS text DETERMINISTIC
BEGIN
RETURN CASE d
WHEN 'Remaining circulation permissions'
'Übrige Ausleihberechtigungen'
WHEN 'Override blocked renewals'
'Gesperrte Verlängerungen überschreiben'
WHEN 'Execute overdue items report'
'Überfälligkeiten-Report ausführen'
[ etc. etc.]
WHEN 'Configure plugins'
'Plugins konfigurieren'
ELSE d
END;
END //

This file could also be very easily created from a POD file..

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to