Files
harbour-core/harbour/source/lang/msghu852.c
2000-07-27 08:10:42 +00:00

192 lines
5.2 KiB
C
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/*
* $Id$
*/
/*
* Harbour Project source code:
* Language Support Module (HU852)
*
* Copyright 2000 Victor Szakats <info@szelvesz.hu>
* www - http://www.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 of the License, or
* (at your option) any later version, with one exception:
*
* The exception is that if you link the Harbour Runtime Library (HRL)
* and/or the Harbour Virtual Machine (HVM) 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 HRL
* and/or HVM code into it.
*
* 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 program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA (or visit
* their web site at http://www.gnu.org/).
*
*/
/* Language name: Hungarian */
/* ISO language code (2 chars): HU */
/* Codepage: 852 */
#include "hbapilng.h"
static HB_LANG s_lang =
{
{
/* Identification */
"HU852", /* ID */
"Hungarian", /* Name (in English) */
"Magyar", /* Name (in native language) */
"HU", /* RFC ID */
"852", /* Codepage */
"$Revision$ $Date$", /* Version */
/* Month names */
"janu r",
"febru r",
"m rcius",
" prilis",
"m jus",
"j£nius",
"j£lius",
"augusztus",
"szeptember",
"okt¢ber",
"november",
"december",
/* Day names */
"vas rnap",
"htf",
"kedd",
"szerda",
"cs<EFBFBD>t”rt”k",
"pntek",
"szombat",
/* CA-Cl*pper compatible natmsg items */
"Adatb zisok Ttelsz m Utols¢ m¢d. Mret",
"Kri a tov bbi rszeket?",
"lapsz m",
"** ™sszesen **",
"* Rsz”sszesen *",
"*** Mind”sszesen ***",
"Ins",
" ",
"Rossz d tum",
" Hat rok ",
" - ",
"I/N",
"INVALID EXPRESSION",
/* Error description names */
"Ismeretlen hiba",
"Paramter hiba",
"T”mbindex hiba",
"Karakteres v ltoz¢ t£lcsordul s",
"Numerikus t£lcsordul s",
"Null val val¢ oszt s",
"Numerikus hiba",
"Szintaktikus hiba",
"T£l ”sszetett mûvelet",
"",
"",
"Kevs mem¢ria",
"Nem defini lt f<>ggvny",
"Nem export lt met¢dus",
"Nem ltez v ltoz¢",
"Nem ltez munkater<65>let nv",
"Nem export lt v ltoz¢",
"Helytelen munkater<65>let nv",
"M r haszn lt munkater<65>let nv",
"",
"Ltrehoz si hiba",
"Megnyit si hiba",
"Lez r si hiba",
"Olvas si hiba",
"Ör s hiba",
"Nyomtat si hiba",
"",
"",
"",
"",
"Nem t mogatott mûvelet",
"Korl t t£llpve",
"Index hiba felfedezve",
"Nem megfelel adatt¡pus",
"T£l szles adat",
"Nem megnyitott munkater<65>let",
"Nem indexelt munkater<65>let",
"Kiz r¢lagos megnyit si m¢d sz<73>ksges",
"Z rol s sz<73>ksges",
"Ör s nem megengedett",
"Z rol s nem siker<65>lt £j rekord felvitelekor",
"Z rol s nem siker<65>lt",
"",
"",
"",
"",
"t”mbelem hozz frs",
"t”mbelem rtkad s",
"t”mbelem dimenzi¢",
"nem t”mb",
"feltteles",
/* Internal error names */
"Kezelhetetlen hiba %lu: ",
"Hiba kezelsi hiba",
"Nincs ERRORBLOCK() a hiba kezelshez",
"T£l sok rekurz¡v hiba kezel h¡v s",
"Az RDD hib s vagy nem siker<65>lt bet”lteni",
"Nem megfelel t¡pus£ met¢dus (%s)",
"hb_xgrab can't allocate memory",
"hb_xrealloc called with a NULL pointer",
"hb_xrealloc called with an invalid pointer",
"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\'",
"No starting procedure",
"Unsupported VM opcode",
"Symbol item expected from %s",
"Invalid symbol type for self from %s",
"Codeblock expected from %s",
"Incorrect item type on the stack trying to pop from %s",
"Stack underflow",
"An item was going to be copied to itself from %s",
"Invalid symbol item passed as memvar %s",
"Memory buffer overflow",
/* Texts */
"YYYY.MM.DD",
"I",
"N"
}
};
HB_LANG_ANNOUNCE( HU852 );
HB_CALL_ON_STARTUP_BEGIN( hb_lang_Init_HU852 )
hb_langRegister( &s_lang );
HB_CALL_ON_STARTUP_END( hb_lang_Init_HU852 )
#if ! defined(__GNUC__) && ! defined(_MSC_VER)
#pragma startup hb_lang_Init_HU852
#endif