93 lines
1.5 KiB
C
93 lines
1.5 KiB
C
/*
|
|
* $Id$
|
|
*/
|
|
|
|
/* Language Support Module */
|
|
|
|
/* Language name: Serbian */
|
|
/* ISO language code (2 chars): SR */
|
|
/* Codepage: Latin II - 852 */
|
|
|
|
#include "hbdefs.h"
|
|
|
|
char *hb_monthsname[ 12 ] =
|
|
{
|
|
"januar",
|
|
"februar",
|
|
"mart",
|
|
"april",
|
|
"maj",
|
|
"jun",
|
|
"jul",
|
|
"avgust",
|
|
"septembar",
|
|
"oktobar",
|
|
"novembar",
|
|
"decembar"
|
|
};
|
|
|
|
char *hb_daysname[ 7 ] =
|
|
{
|
|
"nedelja",
|
|
"ponedeljak",
|
|
"utorak",
|
|
"sreda",
|
|
"Ÿetvrtak",
|
|
"petak",
|
|
"subota"
|
|
};
|
|
|
|
char *hb_errorsGeneric[] =
|
|
{
|
|
"Unknown error",
|
|
"Argument error",
|
|
"Bound error",
|
|
"String overflow",
|
|
"Numeric overflow",
|
|
"Zero divisor",
|
|
"Numeric error",
|
|
"Syntax error",
|
|
"Operation too complex",
|
|
"",
|
|
"",
|
|
"Memory low",
|
|
"Undefined function",
|
|
"No exported method",
|
|
"Variable does not exist",
|
|
"Alias does not exist",
|
|
"No exported variable",
|
|
"Illegal characters in alias",
|
|
"Alias already in use",
|
|
"",
|
|
"Create error",
|
|
"Open error",
|
|
"Close error",
|
|
"Read error",
|
|
"Write error",
|
|
"Print error",
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
"Operation not supported",
|
|
"Limit exceeded",
|
|
"Corruption detected",
|
|
"Data type error",
|
|
"Data width error",
|
|
"Workarea not in use",
|
|
"Workarea not indexed",
|
|
"Exclusive required",
|
|
"Lock required",
|
|
"Write not allowed",
|
|
"Append lock failed",
|
|
"Lock Failure",
|
|
"",
|
|
"",
|
|
"",
|
|
"Incorrect number of arguments",
|
|
"array access",
|
|
"array assign",
|
|
"not an array",
|
|
"conditional"
|
|
};
|