2013-03-28 16:02 UTC+0100 Viktor Szakats (harbour syenar.net)

* src/lang/l_cs.c
  * src/lang/l_de.c
  * src/lang/l_he.c
  * src/lang/l_hr.c
  * src/lang/l_is.c
  * src/lang/l_pt.c
  * src/lang/l_sk.c
    * cleaned copyright holder lists

  * tests/lang2po.hb
    % convert same as original translations to empty strings
This commit is contained in:
Viktor Szakats
2013-03-28 16:03:46 +01:00
parent 3b35de952a
commit f7e766d38c
9 changed files with 20 additions and 11 deletions

View File

@@ -10,6 +10,19 @@
* Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment
*/
2013-03-28 16:02 UTC+0100 Viktor Szakats (harbour syenar.net)
* src/lang/l_cs.c
* src/lang/l_de.c
* src/lang/l_he.c
* src/lang/l_hr.c
* src/lang/l_is.c
* src/lang/l_pt.c
* src/lang/l_sk.c
* cleaned copyright holder lists
* tests/lang2po.hb
% convert same as original translations to empty strings
2013-03-28 15:53 UTC+0100 Viktor Szakats (harbour syenar.net)
* contrib/hbnetio/utils/hbnetio/netiomgm.hb
* src/rtl/hbdoc.prg

View File

@@ -2,10 +2,9 @@
* Harbour Project source code:
* Language Support Module (cs)
*
* Copyright 2000 Viktor Szakats (harbour syenar.net) (English)
* Copyright 2000 Roman Masek <woodoo@iol.cz>
* Copyright 2000 Davor Siklic <siki@msoft.cz>
* Copyright 2006 Vojtech Obrdlik <vobrdlik@centrum.cz>
* Copyright 2000 Davor Siklic <siki@msoft.cz>
* Copyright 2000 Roman Masek <woodoo@iol.cz>
* www - http://harbour-project.org
*
* This program is free software; you can redistribute it and/or modify

View File

@@ -2,8 +2,7 @@
* Harbour Project source code:
* Language Support Module (de)
*
* Copyright 1999 {list of individual authors and e-mail addresses}
* modified 2003 Guenther Steiner <byte-one@aon.at>
* Copyright 1999 Guenther Steiner <byte-one@aon.at>
* www - http://harbour-project.org
*
* This program is free software; you can redistribute it and/or modify

View File

@@ -2,7 +2,6 @@
* Harbour Project source code:
* Language Support Module (he)
*
* Copyright 2000 Viktor Szakats (harbour syenar.net) (English)
* Copyright 2000 Chen Kedem <niki@synel.co.il> (Hebrew)
* www - http://harbour-project.org
*

View File

@@ -2,7 +2,6 @@
* Harbour Project source code:
* Language Support Module (hr)
*
* Copyright 2000 Viktor Szakats (harbour syenar.net) (English)
* Copyright 2000 Davor Siklic <siki@msoft.cz>
* Copyright 2003 Vladimir Miholic <vmiholic@sk.hinet.hr> (Croatien)
* Copyright 2012 Alen Uzelac <alen.uzelac@gmail.com>

View File

@@ -2,7 +2,6 @@
* Harbour Project source code:
* Language Support Module (is)
*
* Copyright 2000 Viktor Szakats (harbour syenar.net) (English)
* Copyright 2000 David G. Holm <dholm@jsd-llc.com> (Icelandic)
* www - http://harbour-project.org
*

View File

@@ -2,8 +2,8 @@
* Harbour Project source code:
* Language Support Module (pt)
*
* Copyright 1999 {list of individual authors and e-mail addresses}
* Copyright 2000 Felipe Coury <fcoury@creation.com.br> (small fixes, internal error names)
* Copyright 1999 {list of individual authors and e-mail addresses}
* www - http://harbour-project.org
*
* This program is free software; you can redistribute it and/or modify

View File

@@ -2,8 +2,8 @@
* Harbour Project source code:
* Language Support Module (sk)
*
* Copyright 2008, 2012 Gyula Bartal <gybartal@gmail.com> (from CSWIN)
* Copyright 2012 Jaroslav Janík <jarojanik@hotmail.com>
* Copyright 2008, 2012 Gyula Bartal <gybartal@gmail.com> (from CSWIN)
* www - http://harbour-project.org
*
* This program is free software; you can redistribute it and/or modify

View File

@@ -32,7 +32,8 @@ PROCEDURE Main()
/* TODO: do something with the metadata (position 0 to 5) */
FOR tmp1 := HB_LANG_ITEM_BASE_MONTH TO HB_LANG_ITEM_MAX_ - 1
IF ! Empty( hb_langMessage( tmp1, "en" ) )
cPO += Item( hb_langMessage( tmp1, "en" ), hb_langMessage( tmp1, cName ) )
cPO += Item( hb_langMessage( tmp1, "en" ), ;
iif( hb_langMessage( tmp1, "en" ) == hb_langMessage( tmp1, cName ), "", hb_langMessage( tmp1, cName ) ) )
ENDIF
NEXT
hb_MemoWrit( Lower( hb_FNameName( cName ) ) + ".po", hb_StrShrink( cPO, Len( hb_eol() ) ) )