Commit 69b3ff60 authored by Claes Sjofors's avatar Claes Sjofors

Translation text max size increased to 160

parent 4a3e57db
...@@ -484,7 +484,8 @@ bool Lng::read_files( char *fname1, char *fname2, bool first_set, pwr_tStatus *s ...@@ -484,7 +484,8 @@ bool Lng::read_files( char *fname1, char *fname2, bool first_set, pwr_tStatus *s
strncpy( key.text, r1.text, sizeof(key.text)); strncpy( key.text, r1.text, sizeof(key.text));
key.type = r1.type; key.type = r1.type;
record = (lang_sRecord *) tree_Insert( sts, tree, &key); record = (lang_sRecord *) tree_Insert( sts, tree, &key);
strcpy( record->transl, r2.text); strncpy( record->transl, r2.text, sizeof(record->transl));
record->transl[sizeof(record->transl)-1] = 0;
// printf ( "%c %d.%d.%d '%s' '%s'\n", r1.type, r1.n1, r1.n2, r1.n3, r1.text,r2.text); // printf ( "%c %d.%d.%d '%s' '%s'\n", r1.type, r1.n1, r1.n2, r1.n3, r1.text,r2.text);
} }
} }
......
...@@ -209,7 +209,7 @@ typedef struct { ...@@ -209,7 +209,7 @@ typedef struct {
typedef struct { typedef struct {
tree_sNode n; tree_sNode n;
lang_sKey key; lang_sKey key;
char transl[80]; char transl[160];
} lang_sRecord; } lang_sRecord;
class Row { class Row {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment