From 45073075f939c6381a65d164c77a82057d3ecb15 Mon Sep 17 00:00:00 2001 From: Andrew McMillan Date: Sun, 5 Nov 2006 12:06:56 +1300 Subject: [PATCH] Include our I18n framework. --- inc/always.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/inc/always.php b/inc/always.php index d4597126..299c6796 100644 --- a/inc/always.php +++ b/inc/always.php @@ -19,7 +19,6 @@ $c->save_time_zone_defs = 1; $c->stylesheets = array( "/rscds.css" ); $c->collections_always_exist = true; - // Kind of private configuration values $c->total_query_time = 0; @@ -27,6 +26,11 @@ $c->dbg = array( ); require_once("AWLUtilities.php"); +// Internationalisation framework +require_once("Translation.php"); +init_gettext( 'rscds', '../locale' ); + + /** * Calculate the simplest form of reference to this page, excluding the PATH_INFO following the script name. */