Spelling and english language corrections.
authorpawelzc <pawelzc>
Thu, 12 Jul 2001 11:12:11 +0000 (11:12 +0000)
committerpawelzc <pawelzc>
Thu, 12 Jul 2001 11:12:11 +0000 (11:12 +0000)
translator/translator.readme

index c4baaa7..450329b 100644 (file)
@@ -1,28 +1,31 @@
-This is small note about 'translator.pl'.
+This is small note about 'translator.pl'.
 Author: Pawel Skuza
 email: pawelzc@cz.top.pl
 
-Script 'translator.pl' do two things:
-1. Prepare strings which can be translate;
-2. Translate strings used gettext.
+The Script 'translator.pl' does two things:
+1. Prepares strings that can be translated;
+2. Translates strings using gettext.
 
-1. Prepare strings which can be translate.
-Copy file 'translator.pl' into root koha directory and execute it.
+1. Prepare strings which can be translated.
+Copy file 'translator.pl' into koha root directory and execute it.
 eg. 
     cd /usr/src/koha
     cp scripts/translator.pl .
     ./translator.pl some_file_name
-    xgettext some_file_name -okoha.po
-    vi koha.po                                         //now you must translate koha.po
-    msgfmt koha.po -okoha.mo
+    xgettext some_file_name -okoha.pot
+    vi koha.pot                                //now you must translate koha.pot
+    msgfmt koha.pot -okoha.mo 
     cp koha.mo /usr/share/locale/$$/LC_MESSAGES //where $$ is your language
     
-note: if you omnit 'some_file_name' translator create 'koha.gettext.c'
+note: if you omit 'some_file_name' the translator will create 'koha.gettext.c'
     
-2. Translate strings used gettext.
-You have to configure your apache. Put this lines in koha and opac virtual:
+2. Translate strings using gettext.
+You have to configure your apache. Put these lines into koha and opac virtual servers:
 
-    Action text/html /cgi-bin/koha/translator.pl
-    Action text/plane /cgi-bin/koha/translator.pl
+    Action text/html /cgi-bin/koha/translator/translator.pl
+    Action text/plane /cgi-bin/koha/translator/translator.pl
 
-Don't forget set up the language preference in your browser.
+Don't forget to set up the language preference in your browser.
+
+Enjoy koha in your language!