Index: app/dist/common/description.def
===================================================================
--- app/dist/common/description.def	(revision 25ae32e4c2354e0ed6756bbe1de83f39cd814652)
+++ app/dist/common/description.def	(revision 25ae32e4c2354e0ed6756bbe1de83f39cd814652)
@@ -0,0 +1,1 @@
+I put here some description.
Index: app/dist/common/description.pl.def
===================================================================
--- app/dist/common/description.pl.def	(revision 25ae32e4c2354e0ed6756bbe1de83f39cd814652)
+++ app/dist/common/description.pl.def	(revision 25ae32e4c2354e0ed6756bbe1de83f39cd814652)
@@ -0,0 +1,1 @@
+Tu umieszczÄ opis po polsku.
Index: app/dist/common/release.def
===================================================================
--- app/dist/common/release.def	(revision 25ae32e4c2354e0ed6756bbe1de83f39cd814652)
+++ app/dist/common/release.def	(revision 25ae32e4c2354e0ed6756bbe1de83f39cd814652)
@@ -0,0 +1,1 @@
+1
Index: app/dist/common/utt_make_config.pl
===================================================================
--- app/dist/common/utt_make_config.pl	(revision 25ae32e4c2354e0ed6756bbe1de83f39cd814652)
+++ app/dist/common/utt_make_config.pl	(revision 25ae32e4c2354e0ed6756bbe1de83f39cd814652)
@@ -0,0 +1,53 @@
+#!/usr/bin/perl
+
+use Cwd 'abs_path';
+use File::Basename;
+use POSIX;
+
+my $cur_dir = dirname(abs_path($0));
+
+open(FILE, ">$cur_dir/conf/utt.conf");
+
+# we put some description into utt.conf file
+print FILE "# ************************************************************\n";
+print FILE "# * This file was created automatically during installation. *\n";
+print FILE "# * If you don't need do not change it.                      *\n";
+print FILE "# *                                                          *\n";
+print FILE "# * UAM Text Tools                                           *\n";
+print FILE "# * Adam Mickiewicz University, Poland                       *\n";
+print FILE "# * http://utt.amu.edu.pl                                    *\n";
+print FILE "# ************************************************************\n";
+print FILE "\n\n";
+
+# we need utt home directory
+print FILE "# absolute path to utt directory\n";
+print FILE "UTT_HOME=$cur_dir\n\n";
+
+
+# we need user default locale
+$best_locale = findLocale();
+print FILE "# user locale\n";
+print FILE "UTT_LOCALE=$best_locale\n";
+print FILE "\n";
+
+close FILE;
+
+
+
+sub findLocale() {
+	$cur_locale = setlocale(LC_CTYPE);
+
+	# we replace Latinx to ISO-8859-x
+	$cur_locale =~ s/(.+?)Latin(.+?)/$1ISO\-8859\-$2/g;
+
+	if($cur_locale =~ /\w+_\w+\.\S+/) {
+	  $best_locale = $cur_locale;
+	}
+	elsif($cur_locale =~ /\w+_\w+/) {
+	  $best_locale = $cur_locale.".UTF-8";
+	}
+	else {
+	  $best_locale = toupper($cur_locale).'_'.tolower($cur_locale).'.UTF-8';
+	}
+	return $best_locale;
+}
Index: app/dist/common/version.def
===================================================================
--- app/dist/common/version.def	(revision 25ae32e4c2354e0ed6756bbe1de83f39cd814652)
+++ app/dist/common/version.def	(revision 25ae32e4c2354e0ed6756bbe1de83f39cd814652)
@@ -0,0 +1,1 @@
+0.9
