2013-04-03 03:02 UTC+0200 Viktor Szakats (harbour syenar.net)

* config/lang.hb
    + enabled pulling all translation for core-lang

  * src/lang/l_es_419.c
    ! fixed lang ID

  * src/lang/l_*.c
    * rebuilt automatically from translations pulled from Transifex

  * config/lang2po.hb
    + added further clarification to one of the translations, in
      sync with Transifex comment. (comments cannot be pushed/pulled via .po)

  * bin/check.hb
    * minor
This commit is contained in:
Viktor Szakats
2013-04-03 03:04:01 +02:00
parent 942cfa22da
commit 2e18ae8387
37 changed files with 350 additions and 1801 deletions

View File

@@ -10,6 +10,23 @@
* Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment
*/
2013-04-03 03:02 UTC+0200 Viktor Szakats (harbour syenar.net)
* config/lang.hb
+ enabled pulling all translation for core-lang
* src/lang/l_es_419.c
! fixed lang ID
* src/lang/l_*.c
* rebuilt automatically from translations pulled from Transifex
* config/lang2po.hb
+ added further clarification to one of the translations, in
sync with Transifex comment. (comments cannot be pushed/pulled via .po)
* bin/check.hb
* minor
2013-04-03 01:48 UTC+0200 Viktor Szakats (harbour syenar.net)
* tests/lang2po.hb -> config/lang2po.hb
* tests/po2lang.hb -> config/po2lang.hb

View File

@@ -25,7 +25,10 @@
*/
/* TODO: Apply transformations:
Uncrustify, hbformat, optipng, jpgclean, css/html/xml format, etc */
Uncrustify, hbformat,
pngout/pngcrush/optipng/advpng,
jpgoptim/jpegtran/jpegrescan,
css/html/xml format, etc */
#pragma -w3
#pragma -km+

View File

@@ -36,6 +36,15 @@
#include "directry.ch"
STATIC sc_hLangMapping := { ;
"zh_CN" => "zh_tra", ;
"zh_CN.GB2312" => "zh_sim", ;
"sr" => "sr_cyr", ;
"sr@latin" => "sr_lat", ;
"fr_FR" => "fr", ;
"es_ES" => "es", ;
"pt_BR" => "pt" }
PROCEDURE Main( cCommand, cMain, ... )
LOCAL hCommand := { ;
@@ -401,14 +410,7 @@ STATIC FUNCTION _HAGetDef( xContainer, xDefault, ... )
RETURN xDefault
STATIC FUNCTION LangToCoreLang( cLang )
RETURN hb_HGetDef( { ;
"zh_CN" => "zh_tra", ;
"zh_CN.GB2312" => "zh_sim", ;
"sr" => "sr_cyr", ;
"sr@latin" => "sr_lat", ;
"fr_FR" => "fr", ;
"es_ES" => "es", ;
"pt_BR" => "pt" }, cLang, cLang )
RETURN hb_HGetDef( sc_hLangMapping, cLang, cLang )
STATIC FUNCTION LoadPar( cMain )
@@ -416,6 +418,7 @@ STATIC FUNCTION LoadPar( cMain )
LOCAL cConfig
LOCAL item
LOCAL tmp
hPar[ "project" ] := "harbour"
hPar[ "entry" ] := cMain
@@ -423,9 +426,15 @@ STATIC FUNCTION LoadPar( cMain )
hPar[ "name" ] := hb_FNameName( hPar[ "entry" ] )
IF hPar[ "entry" ] == "core-lang"
// hPar[ "langs" ] := { "hu", "el", "fr_FR", "it", "es_ES", "es_419", "pt_BR", "de" }
// hPar[ "langs" ] := { "zh_CN", "zh_CN.GB2312" } // CoreLangList()
hPar[ "langs" ] := { "hu" }
hPar[ "langs" ] := CoreLangList()
FOR EACH item IN hPar[ "langs" ]
FOR EACH tmp IN sc_hLangMapping
IF tmp == Lower( item )
item := tmp:__enumKey()
EXIT
ENDIF
NEXT
NEXT
hPar[ "baselang" ] := "en"
hPar[ "po" ] := NIL
ELSE

View File

@@ -161,7 +161,7 @@ STATIC FUNCTION Comment( nPos )
SWITCH nPos
CASE 22 ; RETURN "Colums must be aligned to positions: 1, 19, 32, 48"
CASE 29 ; RETURN "Abbrev of 'Overwrite' using same length as 'Ins', can be spaces only (fill with 3 spaces if in doubt)"
CASE 102 ; RETURN "Local date format, where YYYY=year, MM=month, DD=day"
CASE 102 ; RETURN "Local date format, where YYYY=year, MM=month, DD=day. DO NOT TRANSLATE "YYYY", "MM" or "DD", only reorder and set delimiter per country standards."
ENDSWITCH
RETURN ""

View File

@@ -1,50 +1,4 @@
/*
* Harbour Project source code:
* Language Support Module (be)
*
* Copyright 2004 Pavel Tsarenko <tpe2@mail.ru>
* www - http://www.xharbour.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING.txt. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/* Last Translator: hbtest <harbour@syenar.net> */
#include "hbapilng.h"
@@ -53,12 +7,12 @@ static HB_LANG s_lang =
{
/* Identification */
"be", /* ISO ID (2 chars) */
"Belorussian", /* Name (in English) */
"Беларуская", /* Name (in native language) */
"BY", /* RFC ID */
"UTF8", /* Codepage */
"", /* Version */
"be",
"Belorussian",
"Беларуская",
"",
"UTF8",
"",
/* Month names */
@@ -148,7 +102,7 @@ static HB_LANG s_lang =
"",
"",
"",
"",
"Object destructor failure",
"Няправільная колькасць аргументаў",
"доступ да масіву",
"надання масіў",
@@ -169,7 +123,7 @@ static HB_LANG s_lang =
"hb_xrealloc не можа пераразмеркаваць памяць",
"hb_xfree выкліканы з няправільным паказальнікам",
"hb_xfree выкліканы з NULL паказальнікам",
"Не знойдзеная стартавая працэдура: \'%s\'",
"Не знойдзеная стартавая працэдура: '%s'",
"Адсутнічае стартавая працэдура",
"VM: Невядомы код",
"%s: чакаўся сімвал",

View File

@@ -1,50 +1,4 @@
/*
* Harbour Project source code:
* Language Support Module (bg)
*
* Copyright 1999-2005 Viktor Szakats (harbour syenar.net)
* www - http://harbour-project.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING.txt. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/* Last Translator: hbtest <harbour@syenar.net> */
#include "hbapilng.h"
@@ -53,12 +7,12 @@ static HB_LANG s_lang =
{
/* Identification */
"bg", /* ISO ID (2 chars) */
"Bulgarian", /* Name (in English) */
"Български", /* Name (in native language) */
"BG", /* RFC ID */
"UTF8", /* Codepage */
"", /* Version */
"bg",
"Bulgarian",
"Български",
"",
"UTF8",
"",
/* Month names */
@@ -148,7 +102,7 @@ static HB_LANG s_lang =
"",
"",
"",
"",
"Object destructor failure",
"достъп до масив",
"присвояване на масив",
"размерност на масив",
@@ -169,7 +123,7 @@ static HB_LANG s_lang =
"hb_xrealloc не може да задели памет",
"hb_xfree извикана с невалиден указател",
"hb_xfree извикана с NULL указател",
"Не може да определи началната процедура: \'%s\'",
"Не може да определи началната процедура: '%s'",
"Няма начална процедура",
"Неподържан VM opcode",
"Символен артикул очакван от %s",

View File

@@ -1,50 +1,4 @@
/*
* Harbour Project source code:
* Language Support Module (ca)
*
* Copyright 2000 Jose Lalin <dezac@corevia.com>
* www - http://harbour-project.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING.txt. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/* Last Translator: hbtest <harbour@syenar.net> */
#include "hbapilng.h"
@@ -53,12 +7,12 @@ static HB_LANG s_lang =
{
/* Identification */
"ca", /* ISO ID (2 chars) */
"Catalan", /* Name (in English) */
"Catalán", /* Name (in native language) */
"CA", /* RFC ID */
"UTF8", /* Codepage */
"", /* Version */
"ca",
"Catalan",
"Catalán",
"",
"UTF8",
"",
/* Month names */
@@ -148,7 +102,7 @@ static HB_LANG s_lang =
"",
"",
"",
"",
"Object destructor failure",
"array access",
"array assign",
"array dimension",
@@ -169,7 +123,7 @@ static HB_LANG s_lang =
"hb_xrealloc can't reallocate memory",
"hb_xfree called with an invalid pointer",
"hb_xfree called with a NULL pointer",
"Can\'t locate the starting procedure: \'%s\'",
"Can't locate the starting procedure: '%s'",
"No starting procedure",
"Unsupported VM opcode",
"Symbol item expected from %s",

View File

@@ -1,52 +1,4 @@
/*
* Harbour Project source code:
* Language Support Module (cs)
*
* 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
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING.txt. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/* Last Translator: hbtest <harbour@syenar.net> */
#include "hbapilng.h"
@@ -55,12 +7,12 @@ static HB_LANG s_lang =
{
/* Identification */
"cs", /* ISO ID (2 chars) */
"Czech", /* Name (in English) */
"Česky", /* Name (in native language) */
"CS", /* RFC ID */
"UTF8", /* Codepage */
"", /* Version */
"cs",
"Czech",
"Česky",
"",
"UTF8",
"",
/* Month names */
@@ -150,14 +102,14 @@ static HB_LANG s_lang =
"",
"",
"",
"",
"Object destructor failure",
"přístup k poli",
"přiřazení pole",
"změna dimenze pole",
"není pole",
"podmínka",
/* Internal error names */
/* Internal error names */
"Unrecoverable error %d: ",
"Error recovery failure",
@@ -171,7 +123,7 @@ static HB_LANG s_lang =
"hb_xrealloc can't reallocate memory",
"hb_xfree called with an invalid pointer",
"hb_xfree called with a NULL pointer",
"Can\'t locate the starting procedure: \'%s\'",
"Can't locate the starting procedure: '%s'",
"No starting procedure",
"Unsupported VM opcode",
"Symbol item expected from %s",

View File

@@ -1,50 +1,4 @@
/*
* Harbour Project source code:
* Language Support Module (de)
*
* 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
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING.txt. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/* Last Translator: hbtest <harbour@syenar.net> */
#include "hbapilng.h"
@@ -53,12 +7,12 @@ static HB_LANG s_lang =
{
/* Identification */
"de", /* ISO ID (2 chars) */
"German", /* Name (in English) */
"Deutsch", /* Name (in native language) */
"DE", /* RFC ID */
"UTF8", /* Codepage */
"", /* Version */
"de",
"German",
"Deutsch",
"",
"UTF8",
"",
/* Month names */
@@ -148,7 +102,7 @@ static HB_LANG s_lang =
"",
"",
"",
"",
"Object destructor failure",
"array access",
"array assign",
"array dimension",
@@ -169,7 +123,7 @@ static HB_LANG s_lang =
"hb_xrealloc can't reallocate memory",
"hb_xfree called with an invalid pointer",
"hb_xfree called with a NULL pointer",
"Can\'t locate the starting procedure: \'%s\'",
"Can't locate the starting procedure: '%s'",
"No starting procedure",
"Unsupported VM opcode",
"Symbol item expected from %s",

View File

@@ -1,4 +1,4 @@
/* Last Translator: Pete_wg <pete_westg@yahoo.gr> */
/* Last Translator: hbtest <harbour@syenar.net> */
#include "hbapilng.h"
@@ -7,12 +7,12 @@ static HB_LANG s_lang =
{
/* Identification */
"el", /* ISO ID (2 chars) */
"Greek", /* Name (in English) */
"Ελληνικά", /* Name (in native language) */
"EL", /* RFC ID */
"UTF8", /* Codepage */
"", /* Version */
"el",
"Greek",
"Ελληνικά",
"",
"UTF8",
"",
/* Month names */

View File

@@ -1,50 +1,4 @@
/*
* Harbour Project source code:
* Language Support Module (eo)
*
* Copyright 2000 Jose Lalin <dezac@corevia.com>
* www - http://harbour-project.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING.txt. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/* Last Translator: hbtest <harbour@syenar.net> */
#include "hbapilng.h"
@@ -53,12 +7,12 @@ static HB_LANG s_lang =
{
/* Identification */
"eo", /* ISO ID (2 chars) */
"Esperanto", /* Name (in English) */
"Esperanto", /* Name (in native language) */
"EO", /* RFC ID */
"UTF8", /* Codepage */
"", /* Version */
"eo",
"Esperanto",
"Esperanto",
"",
"UTF8",
"",
/* Month names */
@@ -148,7 +102,7 @@ static HB_LANG s_lang =
"",
"",
"",
"",
"Object destructor failure",
"array access",
"array assign",
"array dimension",
@@ -169,7 +123,7 @@ static HB_LANG s_lang =
"hb_xrealloc can't reallocate memory",
"hb_xfree called with an invalid pointer",
"hb_xfree called with a NULL pointer",
"Can\'t locate the starting procedure: \'%s\'",
"Can't locate the starting procedure: '%s'",
"No starting procedure",
"Unsupported VM opcode",
"Symbol item expected from %s",

View File

@@ -1,51 +1,4 @@
/*
* Harbour Project source code:
* Language Support Module (es)
*
* Copyright 2000 Jose Lalin <dezac@corevia.com>
* Copyright 2000 Antonio Linares <alinares@fivetechsoft.com>
* www - http://harbour-project.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING.txt. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/* Last Translator: hbtest <harbour@syenar.net> */
#include "hbapilng.h"
@@ -54,12 +7,12 @@ static HB_LANG s_lang =
{
/* Identification */
"es", /* ISO ID (2 chars) */
"Spanish", /* Name (in English) */
"Español", /* Name (in native language) */
"ES", /* RFC ID */
"UTF8", /* Codepage */
"", /* Version */
"es",
"Spanish",
"Español",
"",
"UTF8",
"",
/* Month names */
@@ -149,12 +102,12 @@ static HB_LANG s_lang =
"",
"",
"",
"",
"Error en destructor del objecto",
"acceso al array",
"asignación del array",
"dimensión del array",
"no es un array",
"conditional",
"condicional",
/* Internal error names */
@@ -170,7 +123,7 @@ static HB_LANG s_lang =
"hb_xrealloc no puede reubicar la memoria",
"hb_xfree llamado con un puntero no válido",
"hb_xfree llamado con un puntero nulo",
"No se puede localizar el procedimiento de inicio: \'%s\'",
"No se puede localizar el procedimiento de inicio: '%s'",
"No hay procedimiento de inicio",
"Opcode no soportado por la VM",
"Símbolo item esperado desde %s",

View File

@@ -1,51 +1,4 @@
/*
* Harbour Project source code:
* Language Support Module (es_419)
*
* Copyright 2000 Jose Lalin <dezac@corevia.com>
* Copyright 2000 Antonio Linares <alinares@fivetechsoft.com>
* www - http://harbour-project.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING.txt. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/* Last Translator: hbtest <harbour@syenar.net> */
#include "hbapilng.h"
@@ -54,12 +7,12 @@ static HB_LANG s_lang =
{
/* Identification */
"es_419", /* ISO ID (2 chars) */
"Spanish (Latin American)", /* Name (in English) */
"Español", /* Name (in native language) */
"ES", /* RFC ID */
"UTF8", /* Codepage */
"", /* Version */
"es_419",
"Spanish",
"Español",
"",
"UTF8",
"",
/* Month names */
@@ -149,7 +102,7 @@ static HB_LANG s_lang =
"",
"",
"",
"",
"Object destructor failure",
"acceso al array",
"asignación del array",
"dimensión del array",
@@ -170,7 +123,7 @@ static HB_LANG s_lang =
"hb_xrealloc no puede reubicar la memoria",
"hb_xfree llamado con un puntero no válido",
"hb_xfree llamado con un puntero nulo",
"No se puede localizar el procedimiento de inicio: \'%s\'",
"No se puede localizar el procedimiento de inicio: '%s'",
"No hay procedimiento de inicio",
"Opcode no soportado por la VM",
"Símbolo item esperado desde %s",
@@ -193,5 +146,5 @@ static HB_LANG s_lang =
}
};
#define HB_LANG_ID ES
#define HB_LANG_ID ES_419
#include "hbmsgreg.h"

View File

@@ -1,50 +1,4 @@
/*
* Harbour Project source code:
* Language Support Module (eu)
*
* Copyright 2000 Nicolas del Pozo <niko@geroa.com>
* www - http://harbour-project.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING.txt. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/* Last Translator: hbtest <harbour@syenar.net> */
#include "hbapilng.h"
@@ -53,12 +7,12 @@ static HB_LANG s_lang =
{
/* Identification */
"eu", /* ISO ID (2 chars) */
"Basque", /* Name (in English) */
"English", /* Name (in native language) */
"EU", /* RFC ID */
"UTF8", /* Codepage */
"", /* Version */
"eu",
"Basque",
"English",
"",
"UTF8",
"",
/* Month names */
@@ -148,7 +102,7 @@ static HB_LANG s_lang =
"",
"",
"",
"",
"Object destructor failure",
"taula-atzipena",
"yaula-esleipen",
"array dimension",
@@ -169,7 +123,7 @@ static HB_LANG s_lang =
"hb_xrealloc can't reallocate memory",
"hb_xfree called with an invalid pointer",
"hb_xfree called with a NULL pointer",
"Can\'t locate the starting procedure: \'%s\'",
"Can't locate the starting procedure: '%s'",
"No starting procedure",
"Unsupported VM opcode",
"Symbol item expected from %s",

View File

@@ -1,50 +1,4 @@
/*
* Harbour Project source code:
* Language Support Module (fr)
*
* Copyright 1999-2001 Viktor Szakats (harbour syenar.net)
* www - http://harbour-project.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING.txt. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/* Last Translator: hbtest <harbour@syenar.net> */
#include "hbapilng.h"
@@ -53,12 +7,12 @@ static HB_LANG s_lang =
{
/* Identification */
"fr", /* ISO ID (2 chars) */
"French", /* Name (in English) */
"français", /* Name (in native language) */
"FR", /* RFC ID */
"UTF8", /* Codepage */
"", /* Version */
"fr",
"French",
"français",
"",
"UTF8",
"",
/* Month names */
@@ -148,7 +102,7 @@ static HB_LANG s_lang =
"",
"",
"",
"",
"Object destructor failure",
"array access",
"array assign",
"array dimension",
@@ -169,7 +123,7 @@ static HB_LANG s_lang =
"hb_xrealloc can't reallocate memory",
"hb_xfree called with an invalid pointer",
"hb_xfree called with a NULL pointer",
"Can\'t locate the starting procedure: \'%s\'",
"Can't locate the starting procedure: '%s'",
"No starting procedure",
"Unsupported VM opcode",
"Symbol item expected from %s",

View File

@@ -1,50 +1,4 @@
/*
* Harbour Project source code:
* Language Support Module (gl)
*
* Copyright 2000 Jose Lalin <dezac@corevia.com>
* www - http://harbour-project.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING.txt. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/* Last Translator: hbtest <harbour@syenar.net> */
#include "hbapilng.h"
@@ -53,12 +7,12 @@ static HB_LANG s_lang =
{
/* Identification */
"gl", /* ISO ID (2 chars) */
"Galician", /* Name (in English) */
"Galego", /* Name (in native language) */
"GL", /* RFC ID */
"UTF8", /* Codepage */
"", /* Version */
"gl",
"Galician",
"Galego",
"",
"UTF8",
"",
/* Month names */
@@ -148,7 +102,7 @@ static HB_LANG s_lang =
"",
"",
"",
"",
"Object destructor failure",
"array access",
"array assign",
"array dimension",
@@ -169,7 +123,7 @@ static HB_LANG s_lang =
"hb_xrealloc can't reallocate memory",
"hb_xfree called with an invalid pointer",
"hb_xfree called with a NULL pointer",
"Can\'t locate the starting procedure: \'%s\'",
"Can't locate the starting procedure: '%s'",
"No starting procedure",
"Unsupported VM opcode",
"Symbol item expected from %s",

View File

@@ -1,50 +1,4 @@
/*
* Harbour Project source code:
* Language Support Module (he)
*
* Copyright 2000 Chen Kedem <niki@synel.co.il>
* www - http://harbour-project.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING.txt. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/* Last Translator: hbtest <harbour@syenar.net> */
#include "hbapilng.h"
@@ -53,12 +7,12 @@ static HB_LANG s_lang =
{
/* Identification */
"he", /* ISO ID (2 chars) */
"Hebrew", /* Name (in English) */
"עברית", /* Name (in native language) */
"HE", /* RFC ID */
"UTF8", /* Codepage */
"", /* Version */
"he",
"Hebrew",
"עברית",
"",
"UTF8",
"",
/* Month names */
@@ -87,9 +41,9 @@ static HB_LANG s_lang =
/* CA-Cl*pper compatible natmsg items */
"גודל עדכון אחרון מס\' רשומות קבצי נתונים",
"גודל עדכון אחרון מס' רשומות קבצי נתונים",
"האם ברצונך דוגמאות נוספות ?",
"עמוד מס\'",
"עמוד מס'",
"** סיכום ביניים **",
"* סיכום מישנה *",
"*** סה\"כ ***",
@@ -148,7 +102,7 @@ static HB_LANG s_lang =
"",
"",
"",
"",
"Object destructor failure",
"גישה למערך",
"array assign",
"גודל מערך שגוי",
@@ -169,7 +123,7 @@ static HB_LANG s_lang =
"hb_xrealloc can't reallocate memory",
"hb_xfree called with an invalid pointer",
"hb_xfree called with a NULL pointer",
"Can\'t locate the starting procedure: \'%s\'",
"Can't locate the starting procedure: '%s'",
"No starting procedure",
"Unsupported VM opcode",
"Symbol item expected from %s",

View File

@@ -1,52 +1,4 @@
/*
* Harbour Project source code:
* Language Support Module (hr)
*
* Copyright 2012 Alen Uzelac <alen.uzelac@gmail.com>
* Copyright 2003 Vladimir Miholic <vmiholic@sk.hinet.hr>
* Copyright 2000 Davor Siklic <siki@msoft.cz>
* www - http://harbour-project.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING.txt. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/* Last Translator: hbtest <harbour@syenar.net> */
#include "hbapilng.h"
@@ -55,12 +7,12 @@ static HB_LANG s_lang =
{
/* Identification */
"hr", /* ISO ID (2 chars) */
"Croatian", /* Name (in English) */
"Hrvatski", /* Name (in native language) */
"HR", /* RFC ID */
"UTF8", /* Codepage */
"", /* Version */
"hr",
"Croatian",
"Hrvatski",
"",
"UTF8",
"",
/* Month names */
@@ -150,7 +102,7 @@ static HB_LANG s_lang =
"",
"",
"",
"",
"Object destructor failure",
"pristup matrici",
"pridruživanje matrici",
"dimenzija matrice",
@@ -171,7 +123,7 @@ static HB_LANG s_lang =
"hb_xrealloc ne može realocirati memoriju",
"hb_xfree pozvan s neispravnim pokazivačem",
"hb_xfree pozvan s NULL pokazivačem",
"Nije moguće pronaći početnu proceduru: \'%s\'",
"Nije moguće pronaći početnu proceduru: '%s'",
"Nema početne procedure",
"Nepodržan VM opcod",
"Simbol element očekivan iz %s",

View File

@@ -1,50 +1,4 @@
/*
* Harbour Project source code:
* Language Support Module (id)
*
* Copyright 2000 Andi Jahja <andij@aonlippo.co.id>
* www - http://harbour-project.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING.txt. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/* Last Translator: hbtest <harbour@syenar.net> */
#include "hbapilng.h"
@@ -53,12 +7,12 @@ static HB_LANG s_lang =
{
/* Identification */
"id", /* ISO ID (2 chars) */
"Indonesian", /* Name (in English) */
"Bahasa Indonesia", /* Name (in native language) */
"ID", /* RFC ID */
"UTF8", /* Codepage */
"", /* Version */
"id",
"Indonesian",
"Bahasa Indonesia",
"",
"UTF8",
"",
/* Month names */
@@ -148,7 +102,7 @@ static HB_LANG s_lang =
"",
"",
"",
"",
"Object destructor failure",
"array access",
"array assign",
"array dimension",
@@ -169,7 +123,7 @@ static HB_LANG s_lang =
"hb_xrealloc can't reallocate memory",
"hb_xfree called with an invalid pointer",
"hb_xfree called with a NULL pointer",
"Can\'t locate the starting procedure: \'%s\'",
"Can't locate the starting procedure: '%s'",
"No starting procedure",
"Unsupported VM opcode",
"Symbol item expected from %s",

View File

@@ -1,50 +1,4 @@
/*
* Harbour Project source code:
* Language Support Module (is)
*
* Copyright 2000 David G. Holm <dholm@jsd-llc.com>
* www - http://harbour-project.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING.txt. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/* Last Translator: hbtest <harbour@syenar.net> */
#include "hbapilng.h"
@@ -53,12 +7,12 @@ static HB_LANG s_lang =
{
/* Identification */
"is", /* ISO ID (2 chars) */
"Icelandic", /* Name (in English) */
"Íslenska", /* Name (in native language) */
"IS", /* RFC ID */
"UTF8", /* Codepage */
"", /* Version */
"is",
"Icelandic",
"Íslenska",
"",
"UTF8",
"",
/* Month names */
@@ -148,7 +102,7 @@ static HB_LANG s_lang =
"",
"",
"",
"",
"Object destructor failure",
"array access",
"array assign",
"array dimension",
@@ -169,7 +123,7 @@ static HB_LANG s_lang =
"hb_xrealloc can't reallocate memory",
"hb_xfree called with an invalid pointer",
"hb_xfree called with a NULL pointer",
"Can\'t locate the starting procedure: \'%s\'",
"Can't locate the starting procedure: '%s'",
"No starting procedure",
"Unsupported VM opcode",
"Symbol item expected from %s",

View File

@@ -1,50 +1,4 @@
/*
* Harbour Project source code:
* Language Support Module (it)
*
* Copyright 2000 Maurilio Longo <maurilio.longo@libero.it>
* www - http://harbour-project.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING.txt. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/* Last Translator: hbtest <harbour@syenar.net> */
#include "hbapilng.h"
@@ -53,12 +7,12 @@ static HB_LANG s_lang =
{
/* Identification */
"it", /* ISO ID (2 chars) */
"Italian", /* Name (in English) */
"Italiano", /* Name (in native language) */
"IT", /* RFC ID */
"UTF8", /* Codepage */
"", /* Version */
"it",
"Italian",
"Italiano",
"",
"UTF8",
"",
/* Month names */
@@ -148,7 +102,7 @@ static HB_LANG s_lang =
"",
"",
"",
"",
"Distruttore dell'oggetto fallito",
"accesso all'array",
"assegnazione all'array",
"dimensione dell'array",
@@ -169,7 +123,7 @@ static HB_LANG s_lang =
"hb_xrealloc non riesce a modificare la dimensione della memoria riservata",
"hb_xfree chiamato con un puntatore non valido",
"hb_xfree chiamato con un puntatore nullo",
"Non trovo la procedura iniziale: \'%s\'",
"Non trovo la procedura iniziale: '%s'",
"Manca una procedura iniziale",
"VM opcode non supportato",
"Symbol item atteso per %s",
@@ -179,7 +133,7 @@ static HB_LANG s_lang =
"Stack underflow",
"An item was going to be copied to itself from %s",
"Invalid symbol item passed as memvar %s",
"Memory buffer overflow",
"Overflow del buffer di memoria",
"hb_xgrab requested to allocate zero bytes",
"hb_xrealloc requested to resize to zero bytes",
"hb_xalloc requested to allocate zero bytes",

View File

@@ -1,50 +1,4 @@
/*
* Harbour Project source code:
* Language Support Module (ko)
*
* Copyright 2000 Kwon, Oh-Jun <ohjun@fivetech.net>
* www - http://harbour-project.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING.txt. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/* Last Translator: hbtest <harbour@syenar.net> */
#include "hbapilng.h"
@@ -53,12 +7,12 @@ static HB_LANG s_lang =
{
/* Identification */
"ko", /* ISO ID (2 chars) */
"Korean", /* Name (in English) */
"한국어", /* Name (in native language) */
"KO", /* RFC ID */
"UTF8", /* Codepage */
"", /* Version */
"ko",
"Korean",
"한국어",
"",
"UTF8",
"",
/* Month names */
@@ -148,7 +102,7 @@ static HB_LANG s_lang =
"",
"",
"",
"",
"Object destructor failure",
"array access",
"array assign",
"array dimension",
@@ -169,7 +123,7 @@ static HB_LANG s_lang =
"hb_xrealloc can't reallocate memory",
"hb_xfree called with an invalid pointer",
"hb_xfree called with a NULL pointer",
"Can\'t locate the starting procedure: \'%s\'",
"Can't locate the starting procedure: '%s'",
"No starting procedure",
"Unsupported VM opcode",
"Symbol item expected from %s",

View File

@@ -1,50 +1,4 @@
/*
* Harbour Project source code:
* Language Support Module (lt)
*
* Copyright 2003 Mindaugas Kavaliauskas <dbtopas@dbtopas.lt>
* www - http://harbour-project.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING.txt. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/* Last Translator: hbtest <harbour@syenar.net> */
#include "hbapilng.h"
@@ -53,12 +7,12 @@ static HB_LANG s_lang =
{
/* Identification */
"lt", /* ISO ID (2 chars) */
"Lithuanian", /* Name (in English) */
"Lietuvių", /* Name (in native language) */
"LT", /* RFC ID */
"UTF8", /* Codepage */
"", /* Version */
"lt",
"Lithuanian",
"Lietuvių",
"",
"UTF8",
"",
/* Month names */
@@ -148,7 +102,7 @@ static HB_LANG s_lang =
"",
"",
"",
"",
"Object destructor failure",
"array access",
"array assign",
"array dimension",
@@ -169,7 +123,7 @@ static HB_LANG s_lang =
"hb_xrealloc can't reallocate memory",
"hb_xfree called with an invalid pointer",
"hb_xfree called with a NULL pointer",
"Can\'t locate the starting procedure: \'%s\'",
"Can't locate the starting procedure: '%s'",
"No starting procedure",
"Unsupported VM opcode",
"Symbol item expected from %s",

View File

@@ -1,50 +1,4 @@
/*
* Harbour Project source code:
* Language Support Module (nl)
*
* Copyright 2007 Rene Koot <rene / at / plantenkennis.com>
* www - http://harbour-project.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING.txt. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/* Last Translator: hbtest <harbour@syenar.net> */
#include "hbapilng.h"
@@ -53,12 +7,12 @@ static HB_LANG s_lang =
{
/* Identification */
"nl", /* ISO ID (2 chars) */
"Dutch", /* Name (in English) */
"Nederlands", /* Name (in native language) */
"NL", /* RFC ID */
"UTF8", /* Codepage */
"", /* Version */
"nl",
"Dutch",
"Nederlands",
"",
"UTF8",
"",
/* Month names */
@@ -148,7 +102,7 @@ static HB_LANG s_lang =
"",
"",
"",
"",
"Object destructor failure",
"array toegang",
"array toewijzing",
"array afmeting",
@@ -169,7 +123,7 @@ static HB_LANG s_lang =
"hb_xrealloc kan het geheugen niet opnieuw toewijzen",
"hb_xfree aangeroepen met een ongeldige aanwijzer",
"hb_xfree aangeroepen met een lege aanwijzer",
"Kan de startende procedure niet vinden: \'%s\'",
"Kan de startende procedure niet vinden: '%s'",
"Geen startende procedure",
"Niet ondersteunde VM opcode",
"Symbool onderdeel verondersteld van %s",

View File

@@ -1,50 +1,4 @@
/*
* Harbour Project source code:
* Language Support Module (pl)
*
* 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
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING.txt. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/* Last Translator: hbtest <harbour@syenar.net> */
#include "hbapilng.h"
@@ -53,12 +7,12 @@ static HB_LANG s_lang =
{
/* Identification */
"pl", /* ISO ID (2 chars) */
"Polish", /* Name (in English) */
"Polski", /* Name (in native language) */
"PL", /* RFC ID */
"UTF8", /* Codepage */
"", /* Version */
"pl",
"Polish",
"Polski",
"",
"UTF8",
"",
/* Month names */
@@ -93,8 +47,8 @@ static HB_LANG s_lang =
"** Subtotal **",
"* Subsubtotal *",
"*** Total ***",
"Wst", /* wstaw */
"Zas", /* zastap */
"Wst",
"Zas",
"Nieprawidłowa data",
"Zakres: ",
" - ",
@@ -169,12 +123,12 @@ static HB_LANG s_lang =
"hb_xrealloc nie może powiększyć bloku pamięci",
"hb_xfree wywołany ze złym wskaźnikiem",
"hb_xfree wywołany ze wskaźnikiem NULL",
"Brak definicji procedury startowej: \'%s\'",
"Brak definicji procedury startowej: '%s'",
"Brak procedury startowej",
"Nieprawidłowa wartość VM opcode",
"W %s wymagany jest item typu \'Symbol\'",
"W %s wymagany jest item typu 'Symbol'",
"W %s podano zły item dla SELF",
"W %s oczekiwany jest item typu \'Codeblock\'",
"W %s oczekiwany jest item typu 'Codeblock'",
"Funkcja %s wymaga innego typu na stosie",
"Stos poniżej dna",
"Item nie może być skopiowany w %s",

View File

@@ -1,51 +1,4 @@
/*
* Harbour Project source code:
* Language Support Module (pt)
*
* Copyright 2000 Felipe Coury <fcoury@creation.com.br>
* 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
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING.txt. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/* Last Translator: SAMI <sami@laham.com.br> */
#include "hbapilng.h"
@@ -54,12 +7,12 @@ static HB_LANG s_lang =
{
/* Identification */
"pt", /* ISO ID (2 chars) */
"Portuguese", /* Name (in English) */
"Portugues", /* Name (in native language) */
"PT", /* RFC ID */
"UTF8", /* Codepage */
"", /* Version */
"pt",
"Portuguese",
"Portugues",
"",
"UTF8",
"",
/* Month names */
@@ -138,7 +91,7 @@ static HB_LANG s_lang =
"Limite excedido",
"Detectado índice corrompido",
"Tipo incorreto de dado",
"Tamanho do dato muito longo",
"Tamanho do dado muito longo",
"Workarea não está em uso",
"Workarea não indexada",
"Uso exclusivo requerido",
@@ -149,10 +102,10 @@ static HB_LANG s_lang =
"",
"",
"",
"",
"Falha Object destructor",
"acesso de array",
"array assign",
"",
"matriz atribuir",
"dimensão da matriz",
"não é um array",
"condicional",
@@ -170,17 +123,17 @@ static HB_LANG s_lang =
"hb_xrealloc nao pode realocar memória",
"hb_xfree chamado com ponteiro inválido",
"hb_xfree chamado com ponteiro NULL",
"Impossivel localizar procedure de inícializaçao: \'%s\'",
"Impossivel localizar procedure de inícializaçao: '%s'",
"Nao ha procedure de inicializaçao",
"VM opcode nao suportado",
"Item de símbolo esperado de %s",
"Tipo de símbolo inválido para self em %s",
"Codeblock esperado em %s",
"Tipo incorreto de item na pilha tentando executar um pop de %s",
"Stack underflow",
"Stack underflow \"estouro negativo de pilha\"",
"Um item iria ser copiado para ele mesmo em %s",
"Symbol item inválido passado como memvar %s",
"Memory buffer overflow",
"Buffer overflow de memória",
"hb_xgrab requisitou para alocar zero bytes",
"hb_xrealloc requisitou para redimensiorar para zero byte",
"hb_xalloc requisitou para alocar zero bytes",

View File

@@ -1,50 +1,4 @@
/*
* Harbour Project source code:
* Language Support Module (ro)
*
* Copyright 1999-2001 Viktor Szakats (harbour syenar.net)
* www - http://harbour-project.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING.txt. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/* Last Translator: hbtest <harbour@syenar.net> */
#include "hbapilng.h"
@@ -53,12 +7,12 @@ static HB_LANG s_lang =
{
/* Identification */
"ro", /* ISO ID (2 chars) */
"Romanian", /* Name (in English) */
"Român", /* Name (in native language) */
"RO", /* RFC ID */
"UTF8", /* Codepage */
"", /* Version */
"ro",
"Romanian",
"Român",
"",
"UTF8",
"",
/* Month names */
@@ -148,7 +102,7 @@ static HB_LANG s_lang =
"",
"",
"",
"",
"Object destructor failure",
"array access",
"array assign",
"array dimension",
@@ -169,7 +123,7 @@ static HB_LANG s_lang =
"hb_xrealloc can't reallocate memory",
"hb_xfree called with an invalid pointer",
"hb_xfree called with a NULL pointer",
"Can\'t locate the starting procedure: \'%s\'",
"Can't locate the starting procedure: '%s'",
"No starting procedure",
"Unsupported VM opcode",
"Symbol item expected from %s",

View File

@@ -1,50 +1,4 @@
/*
* Harbour Project source code:
* Language Support Module (ru)
*
* Copyright 2002 Alexander S.Kresin <alex@belacy.belgorod.su>
* www - http://harbour-project.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING.txt. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/* Last Translator: hbtest <harbour@syenar.net> */
#include "hbapilng.h"
@@ -53,12 +7,12 @@ static HB_LANG s_lang =
{
/* Identification */
"ru", /* ISO ID (2 chars) */
"Russian", /* Name (in English) */
"Русский", /* Name (in native language) */
"RU", /* RFC ID */
"UTF8", /* Codepage */
"", /* Version */
"ru",
"Russian",
"Русский",
"",
"UTF8",
"",
/* Month names */
@@ -148,7 +102,7 @@ static HB_LANG s_lang =
"",
"",
"",
"",
"Object destructor failure",
"Неверное количество аргументов",
"доступ к массиву",
"присвоение массива",
@@ -169,7 +123,7 @@ static HB_LANG s_lang =
"hb_xrealloc ене может перераспределить память",
"hb_xfree вызван с неверным указателем",
"hb_xfree вызван с NULL указателем",
"Не найдена стартовая процедура: \'%s\'",
"Не найдена стартовая процедура: '%s'",
"Отсутствует стартовая процедура",
"VM: Неизвестный код",
"%s: ожидался символ",

View File

@@ -1,51 +1,4 @@
/*
* Harbour Project source code:
* Language Support Module (sk)
*
* Copyright 2012 Jaroslav Janík <jarojanik@hotmail.com>
* Copyright 2008, 2012 Gyula Bartal <gybartal@gmail.com>
* www - http://harbour-project.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING.txt. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/* Last Translator: hbtest <harbour@syenar.net> */
#include "hbapilng.h"
@@ -54,12 +7,12 @@ static HB_LANG s_lang =
{
/* Identification */
"sk", /* ISO ID (2 chars) */
"Slovak", /* Name (in English) */
"Slovensky", /* Name (in native language) */
"SK", /* RFC ID */
"UTF8", /* Codepage */
"", /* Version */
"sk",
"Slovak",
"Slovensky",
"",
"UTF8",
"",
/* Month names */
@@ -156,7 +109,7 @@ static HB_LANG s_lang =
"nie je to pole",
"podmienka",
/* Internal error names */
/* Internal error names */
"Neidentifikovateľná chyba %d: ",
"Zlyhanie identifikácie chyby",
@@ -170,7 +123,7 @@ static HB_LANG s_lang =
"hb_xrealloc nemôže realokovať pamäť",
"hb_xfree volaný s neplatným pointrom",
"hb_xfree volaný s NULL pointrom",
"Nenájdená štartovacia procedúra : \'%s\'",
"Nenájdená štartovacia procedúra : '%s'",
"Štartovacia procedúra neurčená",
"Nepodporovaný VM opcode",
"Symbolová položka očakávaná pre %s",

View File

@@ -1,50 +1,4 @@
/*
* Harbour Project source code:
* Language Support Module (sl)
*
* Copyright 2003 Mitja Podgornik <Mitja.Podgornik@zgs.gov.si>
* www - http://harbour-project.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING.txt. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/* Last Translator: hbtest <harbour@syenar.net> */
#include "hbapilng.h"
@@ -53,12 +7,12 @@ static HB_LANG s_lang =
{
/* Identification */
"sl", /* ISO ID (2 chars) */
"Slovenian", /* Name (in English) */
"Slovenščina", /* Name (in native language) */
"SL", /* RFC ID */
"UTF8", /* Codepage */
"", /* Version */
"sl",
"Slovenian",
"Slovenščina",
"",
"UTF8",
"",
/* Month names */
@@ -148,7 +102,7 @@ static HB_LANG s_lang =
"",
"",
"",
"",
"Object destructor failure",
"array access",
"array assign",
"array dimension",
@@ -169,7 +123,7 @@ static HB_LANG s_lang =
"hb_xrealloc can't reallocate memory",
"hb_xfree called with an invalid pointer",
"hb_xfree called with a NULL pointer",
"Can\'t locate the starting procedure: \'%s\'",
"Can't locate the starting procedure: '%s'",
"No starting procedure",
"Unsupported VM opcode",
"Symbol item expected from %s",

View File

@@ -1,50 +1,4 @@
/*
* Harbour Project source code:
* Language Support Module (sr_cyr)
*
* Copyright 2003 Srdjan Dragojlovic <digikv@yahoo.com>
* www - http://www.xharbour.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING.txt. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/* Last Translator: hbtest <harbour@syenar.net> */
#include "hbapilng.h"
@@ -53,12 +7,12 @@ static HB_LANG s_lang =
{
/* Identification */
"sr_cyr", /* ISO ID (2 chars) */
"Serbian (cyrillic)", /* Name (in English) */
"Српски", /* Name (in native language) */
"SR", /* RFC ID */
"UTF8", /* Codepage */
"", /* Version */
"sr_cyr",
"Serbian (cyrillic)",
"Српски",
"",
"UTF8",
"",
/* Month names */
@@ -148,7 +102,7 @@ static HB_LANG s_lang =
"",
"",
"",
"",
"Object destructor failure",
"Неверное количество аргументов",
"приступ низу",
"величина низа",
@@ -169,7 +123,7 @@ static HB_LANG s_lang =
"hb_xrealloc ене может перераспределить память",
"hb_xfree вызван с неверным указателем",
"hb_xfree вызван с NULL указателем",
"Не найдена стартовая процедура: \'%s\'",
"Не найдена стартовая процедура: '%s'",
"Отсутствует стартовая процедура",
"VM: Неизвестный код",
"%s: ожидался символ",

View File

@@ -1,50 +1,4 @@
/*
* Harbour Project source code:
* Language Support Module (sr_lat)
*
* Copyright 2000 Davor Siklic <siki@msoft.cz>
* www - http://harbour-project.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING.txt. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/* Last Translator: hbtest <harbour@syenar.net> */
#include "hbapilng.h"
@@ -53,12 +7,12 @@ static HB_LANG s_lang =
{
/* Identification */
"sr_lat", /* ISO ID (2 chars) */
"Serbian (latin)", /* Name (in English) */
"Srpski", /* Name (in native language) */
"SR", /* RFC ID */
"UTF8", /* Codepage */
"", /* Version */
"sr_lat",
"Serbian (latin)",
"Srpski",
"",
"UTF8",
"",
/* Month names */
@@ -148,7 +102,7 @@ static HB_LANG s_lang =
"",
"",
"",
"",
"Object destructor failure",
"array access",
"array assign",
"array dimension",
@@ -169,7 +123,7 @@ static HB_LANG s_lang =
"hb_xrealloc can't reallocate memory",
"hb_xfree called with an invalid pointer",
"hb_xfree called with a NULL pointer",
"Can\'t locate the starting procedure: \'%s\'",
"Can't locate the starting procedure: '%s'",
"No starting procedure",
"Unsupported VM opcode",
"Symbol item expected from %s",

View File

@@ -1,50 +1,4 @@
/*
* Harbour Project source code:
* Language Support Module (sv)
*
* Copyright 2006 Klas Engwall <klas dot engwall at engwall dot com>
* www - http://harbour-project.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING.txt. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/* Last Translator: hbtest <harbour@syenar.net> */
#include "hbapilng.h"
@@ -53,12 +7,12 @@ static HB_LANG s_lang =
{
/* Identification */
"sv", /* ISO ID (2 chars) */
"Swedish", /* Name (in English) */
"svenska", /* Name (in native language) */
"SV", /* RFC ID */
"UTF8", /* Codepage */
"", /* Version */
"sv",
"Swedish",
"svenska",
"",
"UTF8",
"",
/* Month names */
@@ -169,7 +123,7 @@ static HB_LANG s_lang =
"hb_xrealloc can't reallocate memory",
"hb_xfree called with an invalid pointer",
"hb_xfree called with a NULL pointer",
"Can\'t locate the starting procedure: \'%s\'",
"Can't locate the starting procedure: '%s'",
"No starting procedure",
"Unsupported VM opcode",
"Symbol item expected from %s",

View File

@@ -1,50 +1,4 @@
/*
* Harbour Project source code:
* Language Support Module (tr)
*
* Copyright 2006 Bicahi Esgici <esgici@yahoo.com>
* www - http://harbour-project.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING.txt. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/* Last Translator: hbtest <harbour@syenar.net> */
#include "hbapilng.h"
@@ -53,12 +7,12 @@ static HB_LANG s_lang =
{
/* Identification */
"tr", /* ISO ID (2 chars) */
"Turkish", /* Name (in English) */
"Türkçe", /* Name (in native language) */
"TR", /* RFC ID */
"UTF8", /* Codepage */
"", /* Version */
"tr",
"Turkish",
"Türkçe",
"",
"UTF8",
"",
/* Month names */
@@ -148,7 +102,7 @@ static HB_LANG s_lang =
"",
"",
"",
"",
"Object destructor failure",
"array erişim",
"array atama",
"array boyut",
@@ -169,7 +123,7 @@ static HB_LANG s_lang =
"hb_xrealloc tekrar hafıza atayamadı",
"hb_xfree geçersiz bir pointer tarafından çağrıldı",
"hb_xfree NULL pointer tarafından çağrıldı",
"Başlama prosedürü bulunamdı : \'%s\'",
"Başlama prosedürü bulunamdı : '%s'",
"Başlama prosedürü yok",
"Desteklenmeyen VP işlem kodu",
"%s için sembol maddesi lâzım",

View File

@@ -1,50 +1,4 @@
/*
* Harbour Project source code:
* Language Support Module (uk)
*
* Copyright 2004 Pavel Tsarenko <tpe2@mail.ru>
* www - http://www.xharbour.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING.txt. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/* Last Translator: hbtest <harbour@syenar.net> */
#include "hbapilng.h"
@@ -53,12 +7,12 @@ static HB_LANG s_lang =
{
/* Identification */
"uk", /* ISO ID (2 chars) */
"Ukrainian", /* Name (in English) */
"Українська", /* Name (in native language) */
"UA", /* RFC ID */
"UTF8", /* Codepage */
"", /* Version */
"uk",
"Ukrainian",
"Українська",
"",
"UTF8",
"",
/* Month names */
@@ -148,7 +102,7 @@ static HB_LANG s_lang =
"",
"",
"",
"",
"Object destructor failure",
"Помилкова кількість аргументів",
"доступ до масиву",
"присвоєння масиву",
@@ -169,7 +123,7 @@ static HB_LANG s_lang =
"hb_xrealloc не може перерозподілити пам'ять",
"hb_xfree викликано з помилковим покажчиком",
"hb_xfree викликано з NULL покажчиком",
"Не знайдена стартова процедура: \'%s\'",
"Не знайдена стартова процедура: '%s'",
"Відсутня стартова процедура",
"VM: Невідомий код",
"%s: очікувався символ",

View File

@@ -1,50 +1,4 @@
/*
* Harbour Project source code:
* Language Support Module (zh_sim)
*
* Copyright 1999-2001 dongming <dongming@km169.net>
* www - http://harbour-project.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING.txt. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/* Last Translator: hbtest <harbour@syenar.net> */
#include "hbapilng.h"
@@ -53,12 +7,12 @@ static HB_LANG s_lang =
{
/* Identification */
"zh_sim", /* ISO ID (2 chars) */
"Chinese Simplified", /* Name (in English) */
"中文简体", /* Name (in native language) */
"ZH", /* RFC ID */
"UTF8", /* Codepage */
"", /* Version */
"zh_sim",
"Chinese Simplified",
"中文简体",
"",
"UTF8",
"",
/* Month names */
@@ -148,7 +102,7 @@ static HB_LANG s_lang =
"",
"",
"",
"",
"Object destructor failure",
"array access",
"array assign",
"array dimension",
@@ -169,7 +123,7 @@ static HB_LANG s_lang =
"hb_xrealloc can't reallocate memory",
"hb_xfree called with an invalid pointer",
"hb_xfree called with a NULL pointer",
"Can\'t locate the starting procedure: \'%s\'",
"Can't locate the starting procedure: '%s'",
"No starting procedure",
"Unsupported VM opcode",
"Symbol item expected from %s",

View File

@@ -1,50 +1,4 @@
/*
* Harbour Project source code:
* Language Support Module (zh_tra)
*
* Copyright 1999-2001 dongming <dongming@km169.net>
* www - http://harbour-project.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING.txt. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/* Last Translator: hbtest <harbour@syenar.net> */
#include "hbapilng.h"
@@ -53,12 +7,12 @@ static HB_LANG s_lang =
{
/* Identification */
"zh_tra", /* ISO ID (2 chars) */
"Chinese Traditional", /* Name (in English) */
"中文繁體", /* Name (in native language) */
"ZH", /* RFC ID */
"UTF8", /* Codepage */
"", /* Version */
"zh_tra",
"Chinese Traditional",
"中文繁體",
"",
"UTF8",
"",
/* Month names */
@@ -148,7 +102,7 @@ static HB_LANG s_lang =
"",
"",
"",
"",
"Object destructor failure",
"array access",
"array assign",
"array dimension",
@@ -169,7 +123,7 @@ static HB_LANG s_lang =
"hb_xrealloc can't reallocate memory",
"hb_xfree called with an invalid pointer",
"hb_xfree called with a NULL pointer",
"Can\'t locate the starting procedure: \'%s\'",
"Can't locate the starting procedure: '%s'",
"No starting procedure",
"Unsupported VM opcode",
"Symbol item expected from %s",