From 2bf02e861e4265aadb56aa2fd5704e751aecc0a1 Mon Sep 17 00:00:00 2001 From: jengo Date: Wed, 27 Sep 2000 21:58:59 +0000 Subject: [PATCH] Fixed tables, they where missing a few fields --- doc/create_tables.mysql | 15 +- doc/create_tables.pgsql | 53 +-- doc/lang.sql | 836 ++++++++++++++++++++-------------------- 3 files changed, 453 insertions(+), 451 deletions(-) diff --git a/doc/create_tables.mysql b/doc/create_tables.mysql index c7a6d0de41..93d26b1756 100755 --- a/doc/create_tables.mysql +++ b/doc/create_tables.mysql @@ -58,13 +58,14 @@ CREATE TABLE preferences ( preference_appname varchar(50) ); -insert into preferences values ('demo','maxmatchs','10',''); -insert into preferences values ('demo','mainscreen_showbirthdays','True',''); -insert into preferences values ('demo','mainscreen_showevents','True',''); -insert into preferences values ('demo','timeformat','12',''); -insert into preferences values ('demo','dateformat','m/d/Y',''); -insert into preferences values ('demo','theme','default',''); -insert into preferences values ('demo','tz_offset','0',''); +insert into preferences (preference_owner, preference_name, preference_value, preference_appname) values ('demo','maxmatchs','10','common'); +insert into preferences (preference_owner, preference_name, preference_value, preference_appname) values ('demo','mainscreen_showbirthdays','True','common'); +insert into preferences (preference_owner, preference_name, preference_value, preference_appname) values ('demo','mainscreen_showevents','True','common'); +insert into preferences (preference_owner, preference_name, preference_value, preference_appname) values ('demo','timeformat','12','common'); +insert into preferences (preference_owner, preference_name, preference_value, preference_appname) values ('demo','dateformat','m/d/Y','common'); +insert into preferences (preference_owner, preference_name, preference_value, preference_appname) values ('demo','theme','default','common'); +insert into preferences (preference_owner, preference_name, preference_value, preference_appname) values ('demo','tz_offset','0','common'); + CREATE TABLE sessions ( session_id varchar(255) NOT NULL, diff --git a/doc/create_tables.pgsql b/doc/create_tables.pgsql index aa0855aa03..2a22de3380 100755 --- a/doc/create_tables.pgsql +++ b/doc/create_tables.pgsql @@ -1,9 +1,9 @@ -BEGIN WORK; + create table applications ( - app_name varchar(25) NOT NULL, - app_title varchar(50), - app_enabled int, + app_name varchar(25) NOT NULL, + app_title varchar(50), + app_enabled int, app_order int, app_tables varchar(255), unique(app_name) @@ -43,20 +43,20 @@ insert into accounts (account_ld,account_pwd,account_firstname,account_lastname, status) values ('demo','81dc9bdb52d04dc20036dbd8313ed055','Demo','Account',':admin:email:todo:addressbook:calendar:',',1,','A'); create table groups ( - group_id serial, - group_name varchar(50), - group_apps varchar(255) + group_id serial, + group_name varchar(50), + group_apps varchar(255) ); insert into groups (group_name) values ('Default'); create table sessions ( - session_id varchar(255), - session_lid varchar(20), - session_pwd varchar(255), - session_ip varchar(255), - session_logintime int, - session_dla int, + session_id varchar(255), + session_lid varchar(20), + session_pwd varchar(255), + session_ip varchar(255), + session_logintime int, + session_dla int, unique(session_id) ); @@ -70,16 +70,17 @@ CREATE TABLE app_sessions ( create table preferences ( preference_owner varchar(20), preference_name varchar(50), - preference_value varchar(50) + preference_value varchar(50), + preference_appname varchar(50) ); -insert into preferences values ('demo','maxmatchs','10',''); -insert into preferences values ('demo','mainscreen_showbirthdays','True',''); -insert into preferences values ('demo','mainscreen_showevents','True',''); -insert into preferences values ('demo','timeformat','12',''); -insert into preferences values ('demo','dateformat','m/d/Y',''); -insert into preferences values ('demo','theme','default',''); -insert into preferences values ('demo','tz_offset','0',''); +insert into preferences (preference_owner, preference_name, preference_value, preference_appname) values ('demo','maxmatchs','10','common'); +insert into preferences (preference_owner, preference_name, preference_value, preference_appname) values ('demo','mainscreen_showbirthdays','True','common'); +insert into preferences (preference_owner, preference_name, preference_value, preference_appname) values ('demo','mainscreen_showevents','True','common'); +insert into preferences (preference_owner, preference_name, preference_value, preference_appname) values ('demo','timeformat','12','common'); +insert into preferences (preference_owner, preference_name, preference_value, preference_appname) values ('demo','dateformat','m/d/Y','common'); +insert into preferences (preference_owner, preference_name, preference_value, preference_appname) values ('demo','theme','default','common'); +insert into preferences (preference_owner, preference_name, preference_value, preference_appname) values ('demo','tz_offset','0','common'); create table access_log ( sessionid varchar(30), @@ -182,11 +183,11 @@ CREATE TABLE users_newsgroups ( ); 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, + 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, unique(message_id,app_name,lang) ); -COMMIT; + diff --git a/doc/lang.sql b/doc/lang.sql index 1bb87ae7dc..7e91804888 100644 --- a/doc/lang.sql +++ b/doc/lang.sql @@ -1,418 +1,418 @@ -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'low','common','en','Low'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'forum','common','en','Forum'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'normal','common','en','Normal'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'medium','common','en','Medium'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'high','common','en','High'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'add','common','en','Add'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'create','common','en','Create'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'edit','common','en','Edit'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'copy','common','en','Copy'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'rename','common','en','Rename'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'delete','common','en','Delete'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'done','common','en','Done'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'change','common','en','Change'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'clear form','common','en','Clear Form'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'total','common','en','Total'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'view','common','en','View'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'save','common','en','Save'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'submit','common','en','Submit'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'search','common','en','Search'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'cancel','common','en','Cancel'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'exit','common','en','Exit'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'yes','common','en','Yes'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'no','common','en','No'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'ok','common','en','OK'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'clear','common','en','Clear'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'january','common','en','January'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'february','common','en','February'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'march','common','en','March'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'april','common','en','April'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'may','common','en','May'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'june','common','en','June'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'july','common','en','July'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'august','common','en','August'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'september','common','en','September'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'october','common','en','October'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'november','common','en','November'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'december','common','en','December'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'monday','common','en','Monday'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'tuesday','common','en','Tuesday'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'wednesday','common','en','Wednesday'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'thursday','common','en','Thursday'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'friday','common','en','Friday'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'saturday','common','en','Saturday'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'sunday','common','en','Sunday'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'access','common','en','Access'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'private','common','en','Private'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'access type','common','en','Access type'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'group access','common','en','Group Access'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'global public','common','en','Global Public'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'group public','common','en','Group Public'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'which groups','common','en','which groups'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'created by','common','en','Created By'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'administration','common','en','Administration'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'inventory','common','en','Inventory'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'todo list','common','en','Todo List'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'calendar','common','en','calendar'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'bookmarks','common','en','Bookmarks'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'addressbook','common','en','Addressbook'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'e-mail','common','en','E-Mail'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'chat','common','en','Chat'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'preferences','common','en','Preferences'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'login','common','en','Login'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'logout','common','en','Logout'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'first name','common','en','First name'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'last name','common','en','Last name'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'admin','common','en','Admin'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'email','common','en','E-Mail'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'headlines','common','en','Headlines'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'nntp','common','en','NNTP'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'groups','common','en','Groups'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'book marks','common','en','Book marks'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'name','common','en','Name'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'file manager','common','en','File manager'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'ftp','common','en','FTP'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'password','common','en','Password'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'date','common','en','Date'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'time','common','en','Time'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'priority','common','en','Priority'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'help','common','en','Help'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'error','common','en','Error'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'updated','common','en','Updated'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'home','common','en','Home'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'users','common','en','users'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'news headlines','common','en','News headlines'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'news reader','common','en','News Reader'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'human resources','common','en','Human Resources'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'address book','common','en','Address Book'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'current users','common','en','Current users'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'first page','common','en','first page'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'next page','common','en','next page'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'last page','common','en','last page'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'previous page','common','en','Previous page'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'filter','common','en','Filter'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'show all','common','en','show all'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'only yours','common','en','only yours'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'print','common','en','Print'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'trouble ticket system','common','en','Trouble Ticket System'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'you are required to change your password durring your first login','common','en','You are required to change your password durring your first login'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'powered by phpgroupware version x','common','en','Powered by phpGroupWare version %1'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'sorry, there was a problem processing your request.','common','en','Sorry, there was a problem processing your request.'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'your message has been sent','common','en','Your message has been sent'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'new entry added sucessfully','common','en','New entry added sucessfully'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'entry updated sucessfully','common','en','Entry updated sucessfully'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'entry has been deleted sucessfully','common','en','Entry has been deleted sucessfully'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'password has been updated','common','en','Password has been updated'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'session has been killed','common','en','Session has been killed'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'account has been updated','common','en','Account has been updated'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'account has been created','common','en','Account has been created'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'account has been deleted','common','en','Account has been deleted'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'error creating x x directory','common','en','Error creating %1%2 directory'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'error deleting x x directory','common','en','Error deleting %1%2 directory'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'error renaming x x directory','common','en','Error renaming %1%2 directory'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'please x by hand','common','en','Please %1 by hand'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'to correct this error for the future you will need to properly set the','common','en','To correct this error for the future you will need to properly set the'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'permissions to the files/users directory','common','en','permissions to the files/users directory'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'On *nix systems please type: x','common','en','On *nix systems please type: %1'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'your settings have been updated','common','en','Your settings have been Updated'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'group has been added','common','en','Group has been added'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'group has been deleted','common','en','Group has been deleted'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'group has been updated','common','en','Group has been updated'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'showing x - x of x','common','en','showing %1 - %2 of %3'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'showing x','common','en','showing %1'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'your search returned 1 match','common','en','your search returned 1 match'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'your search returned x matchs','common','en','your search returned %1 matchs'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'you have 1 new message!','common','en','You have 1 new message!'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'you have x new messages!','common','en','You have %1 new messages!'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'today is x\'s birthday!','common','en','Today is %1\'s birthday!'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'tommorow is x\'s birthday.','common','en','Tommorow is %1\'s birthday.'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'you have 1 high priority event on your calendar today.','common','en','You have 1 high priority event on your calendar today.'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'you have x high priority events on your calendar today.','common','en','You have %1 high priority events on your calendar today.'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'it has been more then x days since you changed your password','common','en','It has been more then %1 days since you changed your password'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'are you sure you want to delete this entry ?','common','en','Are you sure you want to delete this entry ?'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'are you sure you want to delete this entry ?','common','en','Are you sure you want to delete this entry ?'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'username','login','en','Username'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'password','login','en','Password'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'login','login','en','Login'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'use cookies','login','en','use cookies'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'you have been successfully logged out','login','en','You have been successfully logged out'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'sorry, your login has expired','login','en','Sorry, your login has expired'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'bad login or password','login','en','Bad login or password'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'your session could not be verified.','login','en','Your session could not be verified.'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'your session could not be verified.','login','en','Your session could not be verified.'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'address book','addressbook','en','Address Book'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'last name','addressbook','en','Last Name'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'first name','addressbook','en','First Name'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'e-mail','addressbook','en','E-Mail'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'home phone','addressbook','en','Home Phone'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'fax','addressbook','en','Fax'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'work phone','addressbook','en','Work Phone'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'pager','addressbook','en','Pager'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'mobile','addressbook','en','Mobile'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'other number','addressbook','en','Other Number'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'street','addressbook','en','Street'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'birthday','addressbook','en','Birthday'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'city','addressbook','en','City'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'state','addressbook','en','State'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'zip code','addressbook','en','ZIP Code'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'notes','addressbook','en','Notes'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'company name','addressbook','en','company name'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'company name','addressbook','en','company name'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'last x logins','admin','en','Last %1 logins'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'loginid','admin','en','LoginID'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'ip','admin','en','IP'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'total records','admin','en','Total records'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'user accounts','admin','en','User accounts'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'new group name','admin','en','New group name'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'create group','admin','en','Create Group'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'kill','admin','en','Kill'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'idle','admin','en','idle'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'login time','admin','en','Login Time'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'anonymous user','admin','en','Anonymous user'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'manager','admin','en','Manager'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'account active','admin','en','Account active'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 're-enter password','admin','en','Re-enter password'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'group name','admin','en','Group Name'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'display','admin','en','Display'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'base url','admin','en','Base URL'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'news file','admin','en','News File'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'minutes between reloads','admin','en','Minutes between Reloads'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'listings displayed','admin','en','Listings Displayed'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'news type','admin','en','News Type'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'user groups','admin','en','User groups'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'headline sites','admin','en','Headline Sites'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'network news','admin','en','Network News'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'site','admin','en','Site'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'view sessions','admin','en','View sessions'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'view access log','admin','en','View Access Log'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'active','admin','en','Active'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'disabled','admin','en','Disabled'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'last time read','admin','en','Last Time Read'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'permissions','admin','en','Permissions'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'title','admin','en','Title'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'enabled','admin','en','Enabled'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'applications','admin','en','Applications'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'edit group','admin','en','Edit Group'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'submit changes','admin','en','Submit Changes'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'you must add at least 1 permission to this account','admin','en','You must add at least 1 permission to this account'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'installed applications','admin','en','Installed applications'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'remove all users from this group','admin','en','Remove all users from this group'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'permissions this group has','admin','en','Permissions this group has'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'select permissions this group will have','admin','en','Select permissions this group will have'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'sorry, that group name has already been taking.','admin','en','Sorry, that group name has already been taking.'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'add new application','admin','en','Add new application'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'application name','admin','en','Application name'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'application title','admin','en','Application title'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'edit application','admin','en','Edit application'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'you must enter an application name and title.','admin','en','You must enter an application name and title.'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'are you sure you want to delete this application ?','admin','en','Are you sure you want to delete this application ?'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'are you sure you want to delete this group ?','admin','en','Are you sure you want to delete this group ?'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'are you sure you want to kill this session ?','admin','en','Are you sure you want to kill this session ?'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'all records and account information will be lost!','admin','en','All records and account information will be lost!'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'are you sure you want to delete this account ?','admin','en','Are you sure you want to delete this account ?'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'are you sure you want to delete this news site ?','admin','en','Are you sure you want to delete this news site ?'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'percent of users that logged out','admin','en','Percent of users that logged out'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'list of current users','admin','en','list of current users'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'new password [ leave blank for no change ]','admin','en','New password [ Leave blank for no change ]'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'the two passwords are not the same','admin','en','The two passwords are not the same'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'the login and password can not be the same','admin','en','The login and password can not be the same'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'you must enter a password','admin','en','You must enter a password'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'that loginid has already been taken','admin','en','That loginid has already been taken'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'you must enter a display','admin','en','You must enter a display'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'you must enter a base url','admin','en','You must enter a base url'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'you must enter a news url','admin','en','You must enter a news url'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'you must enter the number of minutes between reload','admin','en','You must enter the number of minutes between reload'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'you must enter the number of listings display','admin','en','You must enter the number of listings display'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'you must select a file type','admin','en','You must select a file type'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'that site has already been entered','admin','en','That site has already been entered'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'select users for inclusion','admin','en','Select users for inclusion'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'sorry, the follow users are still a member of the group x','admin','en','Sorry, the follow users are still a member of the group %1'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'they must be removed before you can continue','admin','en','They must be removed before you can continue'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'they must be removed before you can continue','admin','en','They must be removed before you can continue'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'today','calendar','en','Today'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'this week','calendar','en','This week'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'this month','calendar','en','This month'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'generate printer-friendly version','calendar','en','Generate printer-friendly version'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'printer friendly','calendar','en','Printer Friendly'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'you have not entered a\\nbrief description','calendar','en','You have not entered a\\nBrief Description'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'you have not entered a\\nvalid time of day.','calendar','en','You have not entered a\\nvalid time of day.'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'are you sure\\nyou want to\\ndelete this entry ?','calendar','en','Are you sure\\nyou want to\\ndelete this entry ?'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'participants','calendar','en','Participants'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'calendar - edit','calendar','en','Calendar - Edit'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'calendar - add','calendar','en','Calendar - Add'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'brief description','calendar','en','Brief Description'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'full description','calendar','en','Full Description'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'duration','calendar','en','Duration'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'minutes','calendar','en','minutes'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'repeat type','calendar','en','Repeat type'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'none','calendar','en','None'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'daily','calendar','en','Daily'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'weekly','calendar','en','weekly'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'monthly (by day)','calendar','en','Monthly (by day)'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'monthly (by date)','calendar','en','Monthly (by date)'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'yearly','calendar','en','Yearly'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'repeat end date','calendar','en','Repeat End date'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'use end date','calendar','en','Use End date'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'repeat day','calendar','en','Repeat day'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( '(for weekly)','calendar','en','(for Weekly)'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'frequency','calendar','en','Frequency'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'sun','calendar','en','Sun'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'mon','calendar','en','Mon'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'tue','calendar','en','Tue'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'wed','calendar','en','Wed'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'thu','calendar','en','Thu'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'fri','calendar','en','Fri'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'sat','calendar','en','Sat'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'su','calendar','en','Su'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'mo','calendar','en','M'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'tu','calendar','en','T'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'we','calendar','en','W'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'th','calendar','en','T'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'fr','calendar','en','F'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'sa','calendar','en','Sa'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'search results','calendar','en','Search Results'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'no matches found.','calendar','en','No matches found.'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( '1 match found','calendar','en','1 match found'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'x matches found','calendar','en','%1 matches found'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'description','calendar','en','Description'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'repetition','calendar','en','Repetition'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'days repeated','calendar','en','days repeated'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'go!','calendar','en','Go!'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'year','calendar','en','Year'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'month','calendar','en','Month'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'week','calendar','en','Week'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'new entry','calendar','en','New Entry'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'view this entry','calendar','en','View this entry'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'the following conflicts with the suggested time:','calendar','en','The following conflicts with the suggested time:'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'your suggested time of x - x conflicts with the following existing calendar entries:','calendar','en','Your suggested time of %1 - %2 conflicts with the following existing calendar entries:'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'you must enter one or more search keywords','calendar','en','You must enter one or more search keywords'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'are you sure\\nyou want to\\ndelete this entry ?\\n\\nthis will delete\\nthis entry for all users.','calendar','en','Are you sure\\nyou want to\\ndelete this entry ?\\n\\nThis will delete\\nthis entry for all users.'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'a','calendar','en',''); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'a','calendar','en',''); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'a','calendar','en',''); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'a','calendar','en',''); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'a','calendar','en',''); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'a','calendar','en',''); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'a','calendar','en',''); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'reply','email','en','Reply'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'reply all','email','en','Reply All'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'forward','email','en','Forward'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'delete','email','en','Delete'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'previous','email','en','Previous'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'next','email','en','Next'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'from','email','en','From'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'to','email','en','To'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'cc','email','en','CC'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'files','email','en','Files'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'date','email','en','Date'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'send','email','en','Send'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'subject','email','en','Subject'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'folder','email','en','Folder'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'size','email','en','Size'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'section','email','en','Section'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'image','email','en','Image'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'no subject','email','en','No Subject'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'compose','email','en','Compose'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'message','email','en','Message'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'messages','email','en','Messages'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'new message','email','en','New message'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'undisclosed sender','email','en','Undisclosed Sender'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'undisclosed recipients','email','en','Undisclosed Recipients'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'please select a message first','email','en','Please select a message first'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'this folder is empty','email','en','This folder is empty'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'switch current folder to','email','en','Switch Current Folder To'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'move selected messages into','email','en','Move Selected Messages into'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'add to addressbook','email','en','Add to addressbook'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( '1 message has been deleted','email','en','1 message has been deleted'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'x messages have been deleted','email','en','%1 messages have been deleted'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'monitor','email','en','Monitor'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'monitor','email','en','Monitor'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'usersfile_perm_error','filemanager','en','To correct this error you will need to properly set the permissions to the files/users directory.
On *nix systems please type: chmod 707'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'groupsfile_perm_error','filemanager','en','To correct this error you will need to properly set the permissions to the files/groups directory.
On *nix systems please type: chmod 707'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'private_files','filemanager','en','Private files'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'group_files','filemanager','en','group files'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'files','filemanager','en','Files'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'new_file','filemanager','en','New File'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'rename_to','filemanager','en','Rename to'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'file_upload','filemanager','en','File Upload'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'current_file','filemanager','en','Current File'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'clipboard_contents','filemanager','en','Clipboard Contents'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'copy_as','filemanager','en','Copy as'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'create','filemanager','en','Create'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'edit','filemanager','en','Edit'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'copy','filemanager','en','Copy'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'delete','filemanager','en','Delete'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'do_delete','filemanager','en','Delete'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'rename','filemanager','en','Rename'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'rename_to','filemanager','en','Rename'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'download','filemanager','en','Download'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'upload','filemanager','en','Upload'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'save','filemanager','en','Save'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'exit','filemanager','en','Exit'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'cancel','filemanager','en','Cancel'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'specify_file_name','filemanager','en','You must specify a name for the file you wish to create'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'no_file_name','filemanager','en','No filename was specified'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'err_saving_file','filemanager','en','Error saving file to disk'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'yes','filemanager','en','Yes'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'no','filemanager','en','No'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'no','filemanager','en','No'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'newsgroups','nntp','en','Newsgroups'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'update','nntp','en','Update'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'show all groups','nntp','en','Show All Groups'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'available groups','nntp','en','Available Groups'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'show groups containing','nntp','en','Show Groups Containing'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'next','nntp','en','Next'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'threads','nntp','en','Threads'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'message x','nntp','en','Message %1'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'author','nntp','en','Author'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'subject','nntp','en','Subject'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'date','nntp','en','Date'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'monitor','nntp','en','Monitor'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'monitor','nntp','en','Monitor'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'max matchs per page','preferences','en','Max matches per page'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'time zone offset','preferences','en','Time zone offset'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'this server is located in the x timezone','preferences','en',' timezone'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'date format','preferences','en','Date format'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'time format','preferences','en','Time format'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'language','preferences','en','Language'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'default sorting order','preferences','en','Default sorting order'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'default application','preferences','en','Default application'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'show text on navigation icons','preferences','en','Show text on navigation icons'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'show current users on navigation bar','preferences','en','Show current users on navigation bar'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'show new messages on main screen','preferences','en','Show new messages on main screen'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'email signature','preferences','en','E-Mail signature'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'show birthday reminders on main screen','preferences','en','Show birthday reminiders on main screen'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'show high priority events on main screen','preferences','en','Show high priority events on main screen'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'weekday starts on','preferences','en','Weekday starts on'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'work day starts on','preferences','en','Work day starts on'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'work day ends on','preferences','en','Work day ends on'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'select headline news sites','preferences','en','Select Headline News sites'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'change your password','preferences','en','Change your Password'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'select different theme','preferences','en','Select different Theme'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'change your settings','preferences','en','Change your Settings'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'change your profile','preferences','en','Change your profile'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'enter your new password','preferences','en','Enter your new password'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 're-enter your password','preferences','en','Re-Enter your password'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'the two passwords are not the same','preferences','en','The two passwords are not the same'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'you must enter a password','preferences','en','You must enter a password'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'your current theme is: x','preferences','en',''); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'please, select a new theme','preferences','en','Please, select a new theme'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'note: this feature does *not* change your email password. this will need to be done manually.','preferences','en','Note: This feature does *not* change your email password. This will need to be done manually.'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'monitor newsgroups','preferences','en','Monitor Newsgroups'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'monitor newsgroups','preferences','en','Monitor Newsgroups'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'todo list - add','todo','en','todo list - add'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'todo list - edit','todo','en','Todo list - edit'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'todo list','todo','en','Todo list'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'todo','todo','en','todo'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'status','todo','en','Status'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'urgency','todo','en','Urgency'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'completed','todo','en','completed'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'last updated','todo','en','Last Updated'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'access type','todo','en','Access type'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'which groups','todo','en','Which groups'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'clear form','todo','en','Clear form'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'date due','todo','en','Date Due'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'created by','todo','en','Created By'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'you have entered an invailed date','todo','en','you have entered an invailed date'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'are you sure you want to delete this entry','todo','en','Are you sure you want to delete this entry?'); -REPLACE INTO lang (message_id, app_name, lang, content) VALUES( 'are you sure you want to delete this entry','todo','en','Are you sure you want to delete this entry?'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'low','common','en','Low'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'forum','common','en','Forum'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'normal','common','en','Normal'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'medium','common','en','Medium'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'high','common','en','High'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'add','common','en','Add'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'create','common','en','Create'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'edit','common','en','Edit'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'copy','common','en','Copy'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'rename','common','en','Rename'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'delete','common','en','Delete'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'done','common','en','Done'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'change','common','en','Change'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'clear form','common','en','Clear Form'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'total','common','en','Total'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'view','common','en','View'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'save','common','en','Save'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'submit','common','en','Submit'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'search','common','en','Search'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'cancel','common','en','Cancel'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'exit','common','en','Exit'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'yes','common','en','Yes'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'no','common','en','No'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'ok','common','en','OK'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'clear','common','en','Clear'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'january','common','en','January'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'february','common','en','February'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'march','common','en','March'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'april','common','en','April'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'may','common','en','May'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'june','common','en','June'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'july','common','en','July'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'august','common','en','August'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'september','common','en','September'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'october','common','en','October'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'november','common','en','November'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'december','common','en','December'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'monday','common','en','Monday'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'tuesday','common','en','Tuesday'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'wednesday','common','en','Wednesday'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'thursday','common','en','Thursday'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'friday','common','en','Friday'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'saturday','common','en','Saturday'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'sunday','common','en','Sunday'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'access','common','en','Access'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'private','common','en','Private'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'access type','common','en','Access type'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'group access','common','en','Group Access'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'global public','common','en','Global Public'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'group public','common','en','Group Public'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'which groups','common','en','which groups'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'created by','common','en','Created By'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'administration','common','en','Administration'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'inventory','common','en','Inventory'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'todo list','common','en','Todo List'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'calendar','common','en','calendar'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'bookmarks','common','en','Bookmarks'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'addressbook','common','en','Addressbook'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'e-mail','common','en','E-Mail'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'chat','common','en','Chat'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'preferences','common','en','Preferences'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'login','common','en','Login'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'logout','common','en','Logout'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'first name','common','en','First name'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'last name','common','en','Last name'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'admin','common','en','Admin'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'email','common','en','E-Mail'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'headlines','common','en','Headlines'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'nntp','common','en','NNTP'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'groups','common','en','Groups'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'book marks','common','en','Book marks'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'name','common','en','Name'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'file manager','common','en','File manager'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'ftp','common','en','FTP'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'password','common','en','Password'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'date','common','en','Date'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'time','common','en','Time'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'priority','common','en','Priority'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'help','common','en','Help'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'error','common','en','Error'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'updated','common','en','Updated'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'home','common','en','Home'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'users','common','en','users'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'news headlines','common','en','News headlines'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'news reader','common','en','News Reader'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'human resources','common','en','Human Resources'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'address book','common','en','Address Book'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'current users','common','en','Current users'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'first page','common','en','first page'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'next page','common','en','next page'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'last page','common','en','last page'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'previous page','common','en','Previous page'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'filter','common','en','Filter'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'show all','common','en','show all'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'only yours','common','en','only yours'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'print','common','en','Print'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'trouble ticket system','common','en','Trouble Ticket System'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'you are required to change your password durring your first login','common','en','You are required to change your password durring your first login'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'powered by phpgroupware version x','common','en','Powered by phpGroupWare version %1'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'sorry, there was a problem processing your request.','common','en','Sorry, there was a problem processing your request.'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'your message has been sent','common','en','Your message has been sent'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'new entry added sucessfully','common','en','New entry added sucessfully'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'entry updated sucessfully','common','en','Entry updated sucessfully'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'entry has been deleted sucessfully','common','en','Entry has been deleted sucessfully'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'password has been updated','common','en','Password has been updated'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'session has been killed','common','en','Session has been killed'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'account has been updated','common','en','Account has been updated'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'account has been created','common','en','Account has been created'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'account has been deleted','common','en','Account has been deleted'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'error creating x x directory','common','en','Error creating %1%2 directory'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'error deleting x x directory','common','en','Error deleting %1%2 directory'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'error renaming x x directory','common','en','Error renaming %1%2 directory'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'please x by hand','common','en','Please %1 by hand'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'to correct this error for the future you will need to properly set the','common','en','To correct this error for the future you will need to properly set the'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'permissions to the files/users directory','common','en','permissions to the files/users directory'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'On *nix systems please type: x','common','en','On *nix systems please type: %1'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'your settings have been updated','common','en','Your settings have been Updated'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'group has been added','common','en','Group has been added'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'group has been deleted','common','en','Group has been deleted'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'group has been updated','common','en','Group has been updated'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'showing x - x of x','common','en','showing %1 - %2 of %3'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'showing x','common','en','showing %1'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'your search returned 1 match','common','en','your search returned 1 match'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'your search returned x matchs','common','en','your search returned %1 matchs'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'you have 1 new message!','common','en','You have 1 new message!'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'you have x new messages!','common','en','You have %1 new messages!'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'today is x\'s birthday!','common','en','Today is %1\'s birthday!'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'tommorow is x\'s birthday.','common','en','Tommorow is %1\'s birthday.'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'you have 1 high priority event on your calendar today.','common','en','You have 1 high priority event on your calendar today.'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'you have x high priority events on your calendar today.','common','en','You have %1 high priority events on your calendar today.'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'it has been more then x days since you changed your password','common','en','It has been more then %1 days since you changed your password'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'are you sure you want to delete this entry ?','common','en','Are you sure you want to delete this entry ?'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'are you sure you want to delete this entry ?','common','en','Are you sure you want to delete this entry ?'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'username','login','en','Username'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'password','login','en','Password'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'login','login','en','Login'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'use cookies','login','en','use cookies'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'you have been successfully logged out','login','en','You have been successfully logged out'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'sorry, your login has expired','login','en','Sorry, your login has expired'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'bad login or password','login','en','Bad login or password'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'your session could not be verified.','login','en','Your session could not be verified.'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'your session could not be verified.','login','en','Your session could not be verified.'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'address book','addressbook','en','Address Book'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'last name','addressbook','en','Last Name'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'first name','addressbook','en','First Name'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'e-mail','addressbook','en','E-Mail'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'home phone','addressbook','en','Home Phone'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'fax','addressbook','en','Fax'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'work phone','addressbook','en','Work Phone'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'pager','addressbook','en','Pager'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'mobile','addressbook','en','Mobile'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'other number','addressbook','en','Other Number'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'street','addressbook','en','Street'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'birthday','addressbook','en','Birthday'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'city','addressbook','en','City'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'state','addressbook','en','State'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'zip code','addressbook','en','ZIP Code'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'notes','addressbook','en','Notes'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'company name','addressbook','en','company name'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'company name','addressbook','en','company name'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'last x logins','admin','en','Last %1 logins'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'loginid','admin','en','LoginID'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'ip','admin','en','IP'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'total records','admin','en','Total records'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'user accounts','admin','en','User accounts'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'new group name','admin','en','New group name'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'create group','admin','en','Create Group'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'kill','admin','en','Kill'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'idle','admin','en','idle'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'login time','admin','en','Login Time'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'anonymous user','admin','en','Anonymous user'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'manager','admin','en','Manager'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'account active','admin','en','Account active'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 're-enter password','admin','en','Re-enter password'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'group name','admin','en','Group Name'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'display','admin','en','Display'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'base url','admin','en','Base URL'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'news file','admin','en','News File'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'minutes between reloads','admin','en','Minutes between Reloads'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'listings displayed','admin','en','Listings Displayed'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'news type','admin','en','News Type'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'user groups','admin','en','User groups'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'headline sites','admin','en','Headline Sites'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'network news','admin','en','Network News'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'site','admin','en','Site'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'view sessions','admin','en','View sessions'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'view access log','admin','en','View Access Log'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'active','admin','en','Active'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'disabled','admin','en','Disabled'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'last time read','admin','en','Last Time Read'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'permissions','admin','en','Permissions'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'title','admin','en','Title'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'enabled','admin','en','Enabled'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'applications','admin','en','Applications'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'edit group','admin','en','Edit Group'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'submit changes','admin','en','Submit Changes'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'you must add at least 1 permission to this account','admin','en','You must add at least 1 permission to this account'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'installed applications','admin','en','Installed applications'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'remove all users from this group','admin','en','Remove all users from this group'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'permissions this group has','admin','en','Permissions this group has'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'select permissions this group will have','admin','en','Select permissions this group will have'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'sorry, that group name has already been taking.','admin','en','Sorry, that group name has already been taking.'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'add new application','admin','en','Add new application'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'application name','admin','en','Application name'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'application title','admin','en','Application title'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'edit application','admin','en','Edit application'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'you must enter an application name and title.','admin','en','You must enter an application name and title.'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'are you sure you want to delete this application ?','admin','en','Are you sure you want to delete this application ?'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'are you sure you want to delete this group ?','admin','en','Are you sure you want to delete this group ?'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'are you sure you want to kill this session ?','admin','en','Are you sure you want to kill this session ?'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'all records and account information will be lost!','admin','en','All records and account information will be lost!'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'are you sure you want to delete this account ?','admin','en','Are you sure you want to delete this account ?'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'are you sure you want to delete this news site ?','admin','en','Are you sure you want to delete this news site ?'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'percent of users that logged out','admin','en','Percent of users that logged out'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'list of current users','admin','en','list of current users'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'new password [ leave blank for no change ]','admin','en','New password [ Leave blank for no change ]'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'the two passwords are not the same','admin','en','The two passwords are not the same'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'the login and password can not be the same','admin','en','The login and password can not be the same'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'you must enter a password','admin','en','You must enter a password'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'that loginid has already been taken','admin','en','That loginid has already been taken'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'you must enter a display','admin','en','You must enter a display'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'you must enter a base url','admin','en','You must enter a base url'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'you must enter a news url','admin','en','You must enter a news url'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'you must enter the number of minutes between reload','admin','en','You must enter the number of minutes between reload'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'you must enter the number of listings display','admin','en','You must enter the number of listings display'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'you must select a file type','admin','en','You must select a file type'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'that site has already been entered','admin','en','That site has already been entered'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'select users for inclusion','admin','en','Select users for inclusion'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'sorry, the follow users are still a member of the group x','admin','en','Sorry, the follow users are still a member of the group %1'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'they must be removed before you can continue','admin','en','They must be removed before you can continue'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'they must be removed before you can continue','admin','en','They must be removed before you can continue'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'today','calendar','en','Today'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'this week','calendar','en','This week'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'this month','calendar','en','This month'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'generate printer-friendly version','calendar','en','Generate printer-friendly version'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'printer friendly','calendar','en','Printer Friendly'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'you have not entered a\\nbrief description','calendar','en','You have not entered a\\nBrief Description'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'you have not entered a\\nvalid time of day.','calendar','en','You have not entered a\\nvalid time of day.'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'are you sure\\nyou want to\\ndelete this entry ?','calendar','en','Are you sure\\nyou want to\\ndelete this entry ?'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'participants','calendar','en','Participants'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'calendar - edit','calendar','en','Calendar - Edit'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'calendar - add','calendar','en','Calendar - Add'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'brief description','calendar','en','Brief Description'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'full description','calendar','en','Full Description'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'duration','calendar','en','Duration'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'minutes','calendar','en','minutes'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'repeat type','calendar','en','Repeat type'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'none','calendar','en','None'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'daily','calendar','en','Daily'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'weekly','calendar','en','weekly'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'monthly (by day)','calendar','en','Monthly (by day)'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'monthly (by date)','calendar','en','Monthly (by date)'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'yearly','calendar','en','Yearly'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'repeat end date','calendar','en','Repeat End date'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'use end date','calendar','en','Use End date'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'repeat day','calendar','en','Repeat day'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( '(for weekly)','calendar','en','(for Weekly)'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'frequency','calendar','en','Frequency'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'sun','calendar','en','Sun'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'mon','calendar','en','Mon'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'tue','calendar','en','Tue'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'wed','calendar','en','Wed'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'thu','calendar','en','Thu'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'fri','calendar','en','Fri'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'sat','calendar','en','Sat'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'su','calendar','en','Su'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'mo','calendar','en','M'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'tu','calendar','en','T'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'we','calendar','en','W'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'th','calendar','en','T'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'fr','calendar','en','F'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'sa','calendar','en','Sa'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'search results','calendar','en','Search Results'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'no matches found.','calendar','en','No matches found.'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( '1 match found','calendar','en','1 match found'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'x matches found','calendar','en','%1 matches found'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'description','calendar','en','Description'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'repetition','calendar','en','Repetition'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'days repeated','calendar','en','days repeated'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'go!','calendar','en','Go!'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'year','calendar','en','Year'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'month','calendar','en','Month'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'week','calendar','en','Week'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'new entry','calendar','en','New Entry'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'view this entry','calendar','en','View this entry'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'the following conflicts with the suggested time:','calendar','en','The following conflicts with the suggested time:'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'your suggested time of x - x conflicts with the following existing calendar entries:','calendar','en','Your suggested time of %1 - %2 conflicts with the following existing calendar entries:'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'you must enter one or more search keywords','calendar','en','You must enter one or more search keywords'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'are you sure\\nyou want to\\ndelete this entry ?\\n\\nthis will delete\\nthis entry for all users.','calendar','en','Are you sure\\nyou want to\\ndelete this entry ?\\n\\nThis will delete\\nthis entry for all users.'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'a','calendar','en',''); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'a','calendar','en',''); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'a','calendar','en',''); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'a','calendar','en',''); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'a','calendar','en',''); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'a','calendar','en',''); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'a','calendar','en',''); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'reply','email','en','Reply'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'reply all','email','en','Reply All'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'forward','email','en','Forward'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'delete','email','en','Delete'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'previous','email','en','Previous'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'next','email','en','Next'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'from','email','en','From'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'to','email','en','To'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'cc','email','en','CC'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'files','email','en','Files'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'date','email','en','Date'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'send','email','en','Send'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'subject','email','en','Subject'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'folder','email','en','Folder'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'size','email','en','Size'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'section','email','en','Section'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'image','email','en','Image'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'no subject','email','en','No Subject'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'compose','email','en','Compose'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'message','email','en','Message'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'messages','email','en','Messages'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'new message','email','en','New message'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'undisclosed sender','email','en','Undisclosed Sender'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'undisclosed recipients','email','en','Undisclosed Recipients'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'please select a message first','email','en','Please select a message first'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'this folder is empty','email','en','This folder is empty'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'switch current folder to','email','en','Switch Current Folder To'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'move selected messages into','email','en','Move Selected Messages into'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'add to addressbook','email','en','Add to addressbook'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( '1 message has been deleted','email','en','1 message has been deleted'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'x messages have been deleted','email','en','%1 messages have been deleted'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'monitor','email','en','Monitor'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'monitor','email','en','Monitor'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'usersfile_perm_error','filemanager','en','To correct this error you will need to properly set the permissions to the files/users directory.
On *nix systems please type: chmod 707'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'groupsfile_perm_error','filemanager','en','To correct this error you will need to properly set the permissions to the files/groups directory.
On *nix systems please type: chmod 707'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'private_files','filemanager','en','Private files'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'group_files','filemanager','en','group files'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'files','filemanager','en','Files'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'new_file','filemanager','en','New File'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'rename_to','filemanager','en','Rename to'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'file_upload','filemanager','en','File Upload'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'current_file','filemanager','en','Current File'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'clipboard_contents','filemanager','en','Clipboard Contents'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'copy_as','filemanager','en','Copy as'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'create','filemanager','en','Create'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'edit','filemanager','en','Edit'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'copy','filemanager','en','Copy'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'delete','filemanager','en','Delete'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'do_delete','filemanager','en','Delete'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'rename','filemanager','en','Rename'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'rename_to','filemanager','en','Rename'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'download','filemanager','en','Download'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'upload','filemanager','en','Upload'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'save','filemanager','en','Save'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'exit','filemanager','en','Exit'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'cancel','filemanager','en','Cancel'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'specify_file_name','filemanager','en','You must specify a name for the file you wish to create'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'no_file_name','filemanager','en','No filename was specified'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'err_saving_file','filemanager','en','Error saving file to disk'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'yes','filemanager','en','Yes'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'no','filemanager','en','No'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'no','filemanager','en','No'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'newsgroups','nntp','en','Newsgroups'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'update','nntp','en','Update'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'show all groups','nntp','en','Show All Groups'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'available groups','nntp','en','Available Groups'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'show groups containing','nntp','en','Show Groups Containing'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'next','nntp','en','Next'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'threads','nntp','en','Threads'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'message x','nntp','en','Message %1'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'author','nntp','en','Author'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'subject','nntp','en','Subject'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'date','nntp','en','Date'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'monitor','nntp','en','Monitor'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'monitor','nntp','en','Monitor'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'max matchs per page','preferences','en','Max matches per page'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'time zone offset','preferences','en','Time zone offset'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'this server is located in the x timezone','preferences','en',' timezone'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'date format','preferences','en','Date format'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'time format','preferences','en','Time format'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'language','preferences','en','Language'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'default sorting order','preferences','en','Default sorting order'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'default application','preferences','en','Default application'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'show text on navigation icons','preferences','en','Show text on navigation icons'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'show current users on navigation bar','preferences','en','Show current users on navigation bar'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'show new messages on main screen','preferences','en','Show new messages on main screen'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'email signature','preferences','en','E-Mail signature'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'show birthday reminders on main screen','preferences','en','Show birthday reminiders on main screen'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'show high priority events on main screen','preferences','en','Show high priority events on main screen'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'weekday starts on','preferences','en','Weekday starts on'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'work day starts on','preferences','en','Work day starts on'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'work day ends on','preferences','en','Work day ends on'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'select headline news sites','preferences','en','Select Headline News sites'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'change your password','preferences','en','Change your Password'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'select different theme','preferences','en','Select different Theme'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'change your settings','preferences','en','Change your Settings'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'change your profile','preferences','en','Change your profile'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'enter your new password','preferences','en','Enter your new password'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 're-enter your password','preferences','en','Re-Enter your password'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'the two passwords are not the same','preferences','en','The two passwords are not the same'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'you must enter a password','preferences','en','You must enter a password'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'your current theme is: x','preferences','en',''); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'please, select a new theme','preferences','en','Please, select a new theme'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'note: this feature does *not* change your email password. this will need to be done manually.','preferences','en','Note: This feature does *not* change your email password. This will need to be done manually.'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'monitor newsgroups','preferences','en','Monitor Newsgroups'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'monitor newsgroups','preferences','en','Monitor Newsgroups'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'todo list - add','todo','en','todo list - add'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'todo list - edit','todo','en','Todo list - edit'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'todo list','todo','en','Todo list'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'todo','todo','en','todo'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'status','todo','en','Status'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'urgency','todo','en','Urgency'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'completed','todo','en','completed'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'last updated','todo','en','Last Updated'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'access type','todo','en','Access type'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'which groups','todo','en','Which groups'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'clear form','todo','en','Clear form'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'date due','todo','en','Date Due'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'created by','todo','en','Created By'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'you have entered an invailed date','todo','en','you have entered an invailed date'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'are you sure you want to delete this entry','todo','en','Are you sure you want to delete this entry?'); +INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'are you sure you want to delete this entry','todo','en','Are you sure you want to delete this entry?');