moving to new translation system

This commit is contained in:
seek3r
2000-09-07 20:49:55 +00:00
parent 9f00336800
commit ba68c71ebb
44 changed files with 376 additions and 359 deletions

View File

@ -184,3 +184,10 @@ CREATE TABLE users_newsgroups (
newsgroup int(11) NOT NULL
);
CREATE TABLE lang (
message_id varchar(150) DEFAULT '' NOT NULL,
app_name varchar(100) DEFAULT 'common' NOT NULL,
lang varchar(5) DEFAULT '' NOT NULL,
content text NOT NULL,
PRIMARY KEY (message_id,app_name,lang)
);