aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChad Little <clittle@users.sourceforge.net>2002-09-22 19:26:42 +0000
committerChad Little <clittle@users.sourceforge.net>2002-09-22 19:26:42 +0000
commit81213424e58a6074d966d1916096517a18d45a2c (patch)
tree4e3536f144441428ca4bf828207bb0019fc9e243
parent1c1b930790d9ceb7970b8337fa993be6bfc85720 (diff)
downloadphpicalendar-81213424e58a6074d966d1916096517a18d45a2c.tar.gz
phpicalendar-81213424e58a6074d966d1916096517a18d45a2c.tar.bz2
phpicalendar-81213424e58a6074d966d1916096517a18d45a2c.zip
*** empty log message ***
-rw-r--r--config.inc.php2
-rw-r--r--init.inc.php2
2 files changed, 3 insertions, 1 deletions
diff --git a/config.inc.php b/config.inc.php
index c9a4a0d..990c54e 100644
--- a/config.inc.php
+++ b/config.inc.php
@@ -5,7 +5,7 @@ $fullpath = "webcal://"; // what iCal file are we using
$calendar_path = "./calendars"; // path to directory with calendars
$default_view = "day"; // default view for calendars
$default_cal = "Home"; // filename of calendar without .ics
-$language = "English"; // Language support
+$language = "English"; // Language support - "English", "Polish"
$week_start_day = "Tuesday"; // Day of the week your week starts on
$time_format = "24" // Enter "12" for 12 hour clock, "24" for 24 hour clock (military, european)
diff --git a/init.inc.php b/init.inc.php
index ed9921a..0c963a0 100644
--- a/init.inc.php
+++ b/init.inc.php
@@ -12,6 +12,8 @@ include('./config.inc.php');
// define supported languages
if ($language == "English") {
include "languages/english.inc.php";
+} elseif ($language == "Polish") {
+ include "languages/polish.inc.php";
} else {
include "languages/english.inc.php";
}

© 2014-2024 Faster IT GmbH | imprint | privacy policy