From 2e18ae8387365bd0462eaba2ff436480d02374c1 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Wed, 3 Apr 2013 03:04:01 +0200 Subject: [PATCH] 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 --- ChangeLog.txt | 17 ++++++++++ bin/check.hb | 5 ++- config/lang.hb | 31 ++++++++++++------- config/lang2po.hb | 2 +- src/lang/l_be.c | 64 ++++++-------------------------------- src/lang/l_bg.c | 64 ++++++-------------------------------- src/lang/l_ca.c | 64 ++++++-------------------------------- src/lang/l_cs.c | 68 ++++++---------------------------------- src/lang/l_de.c | 64 ++++++-------------------------------- src/lang/l_el.c | 14 ++++----- src/lang/l_eo.c | 64 ++++++-------------------------------- src/lang/l_es.c | 67 ++++++---------------------------------- src/lang/l_es_419.c | 67 ++++++---------------------------------- src/lang/l_eu.c | 64 ++++++-------------------------------- src/lang/l_fr.c | 64 ++++++-------------------------------- src/lang/l_gl.c | 64 ++++++-------------------------------- src/lang/l_he.c | 68 +++++++--------------------------------- src/lang/l_hr.c | 66 ++++++--------------------------------- src/lang/l_id.c | 64 ++++++-------------------------------- src/lang/l_is.c | 64 ++++++-------------------------------- src/lang/l_it.c | 66 ++++++--------------------------------- src/lang/l_ko.c | 64 ++++++-------------------------------- src/lang/l_lt.c | 64 ++++++-------------------------------- src/lang/l_nl.c | 64 ++++++-------------------------------- src/lang/l_pl.c | 70 ++++++++---------------------------------- src/lang/l_pt.c | 75 +++++++++------------------------------------ src/lang/l_ro.c | 64 ++++++-------------------------------- src/lang/l_ru.c | 64 ++++++-------------------------------- src/lang/l_sk.c | 65 ++++++--------------------------------- src/lang/l_sl.c | 64 ++++++-------------------------------- src/lang/l_sr_cyr.c | 64 ++++++-------------------------------- src/lang/l_sr_lat.c | 64 ++++++-------------------------------- src/lang/l_sv.c | 62 +++++-------------------------------- src/lang/l_tr.c | 64 ++++++-------------------------------- src/lang/l_uk.c | 64 ++++++-------------------------------- src/lang/l_zh_sim.c | 64 ++++++-------------------------------- src/lang/l_zh_tra.c | 64 ++++++-------------------------------- 37 files changed, 350 insertions(+), 1801 deletions(-) diff --git a/ChangeLog.txt b/ChangeLog.txt index 1118b84798..7880bd255b 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -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 diff --git a/bin/check.hb b/bin/check.hb index d3e89d774f..01d0b78e33 100644 --- a/bin/check.hb +++ b/bin/check.hb @@ -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+ diff --git a/config/lang.hb b/config/lang.hb index 859f4c09a0..5f89b4b483 100644 --- a/config/lang.hb +++ b/config/lang.hb @@ -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 diff --git a/config/lang2po.hb b/config/lang2po.hb index a7c9fd6a22..d7fb9ba85b 100644 --- a/config/lang2po.hb +++ b/config/lang2po.hb @@ -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 "" diff --git a/src/lang/l_be.c b/src/lang/l_be.c index 8cc3fd4b66..67c6beeaac 100644 --- a/src/lang/l_be.c +++ b/src/lang/l_be.c @@ -1,50 +1,4 @@ -/* - * Harbour Project source code: - * Language Support Module (be) - * - * Copyright 2004 Pavel Tsarenko - * 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 */ #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: чакаўся сімвал", diff --git a/src/lang/l_bg.c b/src/lang/l_bg.c index 1ac6f3e3c8..d04325728a 100644 --- a/src/lang/l_bg.c +++ b/src/lang/l_bg.c @@ -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 */ #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", diff --git a/src/lang/l_ca.c b/src/lang/l_ca.c index 942f4b6cb0..0f2efb1d15 100644 --- a/src/lang/l_ca.c +++ b/src/lang/l_ca.c @@ -1,50 +1,4 @@ -/* - * Harbour Project source code: - * Language Support Module (ca) - * - * Copyright 2000 Jose Lalin - * 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 */ #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", diff --git a/src/lang/l_cs.c b/src/lang/l_cs.c index 6ce170498c..9a59761296 100644 --- a/src/lang/l_cs.c +++ b/src/lang/l_cs.c @@ -1,52 +1,4 @@ -/* - * Harbour Project source code: - * Language Support Module (cs) - * - * Copyright 2006 Vojtech Obrdlik - * Copyright 2000 Davor Siklic - * Copyright 2000 Roman Masek - * 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 */ #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", diff --git a/src/lang/l_de.c b/src/lang/l_de.c index 229a0ca59a..baa011827f 100644 --- a/src/lang/l_de.c +++ b/src/lang/l_de.c @@ -1,50 +1,4 @@ -/* - * Harbour Project source code: - * Language Support Module (de) - * - * Copyright 1999 Guenther Steiner - * 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 */ #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", diff --git a/src/lang/l_el.c b/src/lang/l_el.c index 7695123073..d01e2751c3 100644 --- a/src/lang/l_el.c +++ b/src/lang/l_el.c @@ -1,4 +1,4 @@ -/* Last Translator: Pete_wg */ +/* Last Translator: hbtest */ #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 */ diff --git a/src/lang/l_eo.c b/src/lang/l_eo.c index 809dc50dcb..e5d98e0dc3 100644 --- a/src/lang/l_eo.c +++ b/src/lang/l_eo.c @@ -1,50 +1,4 @@ -/* - * Harbour Project source code: - * Language Support Module (eo) - * - * Copyright 2000 Jose Lalin - * 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 */ #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", diff --git a/src/lang/l_es.c b/src/lang/l_es.c index b82394564f..9080f40fe6 100644 --- a/src/lang/l_es.c +++ b/src/lang/l_es.c @@ -1,51 +1,4 @@ -/* - * Harbour Project source code: - * Language Support Module (es) - * - * Copyright 2000 Jose Lalin - * Copyright 2000 Antonio Linares - * 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 */ #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", diff --git a/src/lang/l_es_419.c b/src/lang/l_es_419.c index 063122b18e..13456602b6 100644 --- a/src/lang/l_es_419.c +++ b/src/lang/l_es_419.c @@ -1,51 +1,4 @@ -/* - * Harbour Project source code: - * Language Support Module (es_419) - * - * Copyright 2000 Jose Lalin - * Copyright 2000 Antonio Linares - * 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 */ #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" diff --git a/src/lang/l_eu.c b/src/lang/l_eu.c index 965310a63f..8f8a3f0956 100644 --- a/src/lang/l_eu.c +++ b/src/lang/l_eu.c @@ -1,50 +1,4 @@ -/* - * Harbour Project source code: - * Language Support Module (eu) - * - * Copyright 2000 Nicolas del Pozo - * 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 */ #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", diff --git a/src/lang/l_fr.c b/src/lang/l_fr.c index f17dd7a735..4fb15d0a69 100644 --- a/src/lang/l_fr.c +++ b/src/lang/l_fr.c @@ -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 */ #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", diff --git a/src/lang/l_gl.c b/src/lang/l_gl.c index 101c57f76a..29491fd835 100644 --- a/src/lang/l_gl.c +++ b/src/lang/l_gl.c @@ -1,50 +1,4 @@ -/* - * Harbour Project source code: - * Language Support Module (gl) - * - * Copyright 2000 Jose Lalin - * 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 */ #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", diff --git a/src/lang/l_he.c b/src/lang/l_he.c index 693a2bfa4a..5cbd281903 100644 --- a/src/lang/l_he.c +++ b/src/lang/l_he.c @@ -1,50 +1,4 @@ -/* - * Harbour Project source code: - * Language Support Module (he) - * - * Copyright 2000 Chen Kedem - * 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 */ #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", diff --git a/src/lang/l_hr.c b/src/lang/l_hr.c index 6d3865b318..5e84b3afcb 100644 --- a/src/lang/l_hr.c +++ b/src/lang/l_hr.c @@ -1,52 +1,4 @@ -/* - * Harbour Project source code: - * Language Support Module (hr) - * - * Copyright 2012 Alen Uzelac - * Copyright 2003 Vladimir Miholic - * Copyright 2000 Davor Siklic - * 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 */ #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", diff --git a/src/lang/l_id.c b/src/lang/l_id.c index 60d6f0afc0..2e9abb077a 100644 --- a/src/lang/l_id.c +++ b/src/lang/l_id.c @@ -1,50 +1,4 @@ -/* - * Harbour Project source code: - * Language Support Module (id) - * - * Copyright 2000 Andi Jahja - * 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 */ #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", diff --git a/src/lang/l_is.c b/src/lang/l_is.c index 65a60277b7..24b37990f6 100644 --- a/src/lang/l_is.c +++ b/src/lang/l_is.c @@ -1,50 +1,4 @@ -/* - * Harbour Project source code: - * Language Support Module (is) - * - * Copyright 2000 David G. Holm - * 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 */ #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", diff --git a/src/lang/l_it.c b/src/lang/l_it.c index 09cef4e61d..d8e47eec1d 100644 --- a/src/lang/l_it.c +++ b/src/lang/l_it.c @@ -1,50 +1,4 @@ -/* - * Harbour Project source code: - * Language Support Module (it) - * - * Copyright 2000 Maurilio Longo - * 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 */ #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", diff --git a/src/lang/l_ko.c b/src/lang/l_ko.c index e2b0ca1cc6..19ceb886b1 100644 --- a/src/lang/l_ko.c +++ b/src/lang/l_ko.c @@ -1,50 +1,4 @@ -/* - * Harbour Project source code: - * Language Support Module (ko) - * - * Copyright 2000 Kwon, Oh-Jun - * 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 */ #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", diff --git a/src/lang/l_lt.c b/src/lang/l_lt.c index 9391137695..224b7e0f32 100644 --- a/src/lang/l_lt.c +++ b/src/lang/l_lt.c @@ -1,50 +1,4 @@ -/* - * Harbour Project source code: - * Language Support Module (lt) - * - * Copyright 2003 Mindaugas Kavaliauskas - * 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 */ #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", diff --git a/src/lang/l_nl.c b/src/lang/l_nl.c index 7d89bf4413..afbe513b0b 100644 --- a/src/lang/l_nl.c +++ b/src/lang/l_nl.c @@ -1,50 +1,4 @@ -/* - * Harbour Project source code: - * Language Support Module (nl) - * - * Copyright 2007 Rene Koot - * 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 */ #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", diff --git a/src/lang/l_pl.c b/src/lang/l_pl.c index 45ac4b010a..fad9ed091d 100644 --- a/src/lang/l_pl.c +++ b/src/lang/l_pl.c @@ -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 */ #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", diff --git a/src/lang/l_pt.c b/src/lang/l_pt.c index 2705d68a57..a1f2f4afe7 100644 --- a/src/lang/l_pt.c +++ b/src/lang/l_pt.c @@ -1,51 +1,4 @@ -/* - * Harbour Project source code: - * Language Support Module (pt) - * - * Copyright 2000 Felipe Coury - * 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 */ #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", diff --git a/src/lang/l_ro.c b/src/lang/l_ro.c index 64d0b9d31e..5793f24f1f 100644 --- a/src/lang/l_ro.c +++ b/src/lang/l_ro.c @@ -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 */ #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", diff --git a/src/lang/l_ru.c b/src/lang/l_ru.c index d58c1a3316..259f6fb088 100644 --- a/src/lang/l_ru.c +++ b/src/lang/l_ru.c @@ -1,50 +1,4 @@ -/* - * Harbour Project source code: - * Language Support Module (ru) - * - * Copyright 2002 Alexander S.Kresin - * 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 */ #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: ожидался символ", diff --git a/src/lang/l_sk.c b/src/lang/l_sk.c index d3e5f2551d..ef4d3285fe 100644 --- a/src/lang/l_sk.c +++ b/src/lang/l_sk.c @@ -1,51 +1,4 @@ -/* - * Harbour Project source code: - * Language Support Module (sk) - * - * Copyright 2012 Jaroslav Janík - * Copyright 2008, 2012 Gyula Bartal - * 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 */ #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", diff --git a/src/lang/l_sl.c b/src/lang/l_sl.c index 26ac6aaf81..b6380e7d80 100644 --- a/src/lang/l_sl.c +++ b/src/lang/l_sl.c @@ -1,50 +1,4 @@ -/* - * Harbour Project source code: - * Language Support Module (sl) - * - * Copyright 2003 Mitja Podgornik - * 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 */ #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", diff --git a/src/lang/l_sr_cyr.c b/src/lang/l_sr_cyr.c index e19159e31e..da8d99d8bb 100644 --- a/src/lang/l_sr_cyr.c +++ b/src/lang/l_sr_cyr.c @@ -1,50 +1,4 @@ -/* - * Harbour Project source code: - * Language Support Module (sr_cyr) - * - * Copyright 2003 Srdjan Dragojlovic - * 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 */ #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: ожидался символ", diff --git a/src/lang/l_sr_lat.c b/src/lang/l_sr_lat.c index 6896dc4819..0237bfd993 100644 --- a/src/lang/l_sr_lat.c +++ b/src/lang/l_sr_lat.c @@ -1,50 +1,4 @@ -/* - * Harbour Project source code: - * Language Support Module (sr_lat) - * - * Copyright 2000 Davor Siklic - * 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 */ #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", diff --git a/src/lang/l_sv.c b/src/lang/l_sv.c index 897b942c5a..a69d6eb63a 100644 --- a/src/lang/l_sv.c +++ b/src/lang/l_sv.c @@ -1,50 +1,4 @@ -/* - * Harbour Project source code: - * Language Support Module (sv) - * - * Copyright 2006 Klas Engwall - * 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 */ #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", diff --git a/src/lang/l_tr.c b/src/lang/l_tr.c index 5f41676e48..c523b71f12 100644 --- a/src/lang/l_tr.c +++ b/src/lang/l_tr.c @@ -1,50 +1,4 @@ -/* - * Harbour Project source code: - * Language Support Module (tr) - * - * Copyright 2006 Bicahi Esgici - * 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 */ #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", diff --git a/src/lang/l_uk.c b/src/lang/l_uk.c index 2a6d45c288..cc01d9a8f2 100644 --- a/src/lang/l_uk.c +++ b/src/lang/l_uk.c @@ -1,50 +1,4 @@ -/* - * Harbour Project source code: - * Language Support Module (uk) - * - * Copyright 2004 Pavel Tsarenko - * 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 */ #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: очікувався символ", diff --git a/src/lang/l_zh_sim.c b/src/lang/l_zh_sim.c index b6956991a6..ae2902e60c 100644 --- a/src/lang/l_zh_sim.c +++ b/src/lang/l_zh_sim.c @@ -1,50 +1,4 @@ -/* - * Harbour Project source code: - * Language Support Module (zh_sim) - * - * Copyright 1999-2001 dongming - * 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 */ #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", diff --git a/src/lang/l_zh_tra.c b/src/lang/l_zh_tra.c index 2b780231a3..a9bbabcd12 100644 --- a/src/lang/l_zh_tra.c +++ b/src/lang/l_zh_tra.c @@ -1,50 +1,4 @@ -/* - * Harbour Project source code: - * Language Support Module (zh_tra) - * - * Copyright 1999-2001 dongming - * 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 */ #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",