From 1d02c5e73f52358e0aed18466e040aa7ec97b835 Mon Sep 17 00:00:00 2001 From: JT Smith Date: Sun, 7 Mar 2004 23:58:05 +0000 Subject: [PATCH] preparing for 6.0.0 release --- docs/create.sql | 3819 ++++++++++++++++++++++++++++------------------- 1 file changed, 2257 insertions(+), 1562 deletions(-) diff --git a/docs/create.sql b/docs/create.sql index da043a1e1..801404121 100644 --- a/docs/create.sql +++ b/docs/create.sql @@ -23,10 +23,10 @@ CREATE TABLE Article ( -- -INSERT INTO Article VALUES (-2,NULL,'','','',0); -INSERT INTO Article VALUES (-3,NULL,'','',NULL,0); -INSERT INTO Article VALUES (-4,NULL,'','',NULL,0); -INSERT INTO Article VALUES (-5,NULL,'','',NULL,0); +INSERT INTO Article VALUES (1,NULL,'','',NULL,0); +INSERT INTO Article VALUES (2,NULL,'','',NULL,0); +INSERT INTO Article VALUES (3,NULL,'','',NULL,0); +INSERT INTO Article VALUES (4,NULL,'','',NULL,0); -- -- Table structure for table `DataForm` @@ -46,6 +46,7 @@ CREATE TABLE DataForm ( -- +INSERT INTO DataForm VALUES (7,'Thank you for telling your friends about WebGUI!',1,2,3,1); -- -- Table structure for table `DataForm_entry` @@ -103,6 +104,7 @@ CREATE TABLE DataForm_field ( rows int(11) default NULL, isMailField int(11) NOT NULL default '0', label varchar(255) default NULL, + DataForm_tabId int(11) NOT NULL default '0', PRIMARY KEY (DataForm_fieldId) ) TYPE=MyISAM; @@ -111,6 +113,31 @@ CREATE TABLE DataForm_field ( -- +INSERT INTO DataForm_field VALUES (7,1000,1,'from','required','email','','',0,'',0,1,'Your Email Address',0); +INSERT INTO DataForm_field VALUES (7,1001,2,'to','required','email','','',0,'',0,1,'Your Friends Email Address',0); +INSERT INTO DataForm_field VALUES (7,1002,3,'cc','hidden','email',NULL,NULL,0,NULL,NULL,1,'Cc',0); +INSERT INTO DataForm_field VALUES (7,1003,4,'bcc','hidden','email',NULL,NULL,0,NULL,NULL,1,'Bcc',0); +INSERT INTO DataForm_field VALUES (7,1004,5,'subject','hidden','text','','Cool CMS',0,'',0,1,'Subject',0); +INSERT INTO DataForm_field VALUES (7,1005,6,'url','visible','url','','http://www.plainblack.com/webgui',0,'',0,1,'URL',0); +INSERT INTO DataForm_field VALUES (7,1006,7,'message','required','textarea','','Hey I just wanted to tell you about this great program called WebGUI that I found: http://www.plainblack.com/webgui\r\n\r\nYou should really check it out.',34,'',6,0,'Message',0); + +-- +-- Table structure for table `DataForm_tab` +-- + +CREATE TABLE DataForm_tab ( + wobjectId int(11) NOT NULL default '0', + label varchar(255) NOT NULL default '', + subtext text, + sequenceNumber int(11) NOT NULL default '0', + DataForm_tabId int(11) NOT NULL default '0' +) TYPE=MyISAM; + +-- +-- Dumping data for table `DataForm_tab` +-- + + -- -- Table structure for table `EventsCalendar` @@ -156,58 +183,6 @@ CREATE TABLE EventsCalendar_event ( --- --- Table structure for table `ExtraColumn` --- - -CREATE TABLE ExtraColumn ( - wobjectId int(11) NOT NULL default '0', - spacer int(11) default NULL, - width int(11) default NULL, - class varchar(50) default NULL, - PRIMARY KEY (wobjectId) -) TYPE=MyISAM; - --- --- Dumping data for table `ExtraColumn` --- - - - --- --- Table structure for table `FAQ` --- - -CREATE TABLE FAQ ( - wobjectId int(11) NOT NULL default '0', - PRIMARY KEY (wobjectId) -) TYPE=MyISAM; - --- --- Dumping data for table `FAQ` --- - - - --- --- Table structure for table `FAQ_question` --- - -CREATE TABLE FAQ_question ( - wobjectId int(11) NOT NULL default '0', - FAQ_questionId int(11) NOT NULL default '0', - question text, - answer text, - sequenceNumber int(11) NOT NULL default '0', - PRIMARY KEY (FAQ_questionId) -) TYPE=MyISAM; - --- --- Dumping data for table `FAQ_question` --- - - - -- -- Table structure for table `FileManager` -- @@ -276,54 +251,60 @@ CREATE TABLE HttpProxy ( -- --- Table structure for table `Item` +-- Table structure for table `IndexedSearch` -- -CREATE TABLE Item ( +CREATE TABLE IndexedSearch ( wobjectId int(11) NOT NULL default '0', - linkURL text, - attachment varchar(255) default NULL, + indexName varchar(35) default 'Search_index', + users text, + searchRoot text, + pageList text, + namespaces text, + paginateAfter int(11) default NULL, + languages text, + contentTypes text, + previewLength int(11) default NULL, + highlight int(11) default NULL, + highlight_1 varchar(35) default NULL, + highlight_2 varchar(35) default NULL, + highlight_3 varchar(35) default NULL, + highlight_4 varchar(35) default NULL, + highlight_5 varchar(35) default NULL, PRIMARY KEY (wobjectId) ) TYPE=MyISAM; -- --- Dumping data for table `Item` +-- Dumping data for table `IndexedSearch` -- -- --- Table structure for table `LinkList` +-- Table structure for table `IndexedSearch_docInfo` -- -CREATE TABLE LinkList ( +CREATE TABLE IndexedSearch_docInfo ( + docId int(11) NOT NULL default '0', + indexName varchar(35) NOT NULL default 'Search_index', + pageId int(11) NOT NULL default '0', wobjectId int(11) NOT NULL default '0', - PRIMARY KEY (wobjectId) + page_groupIdView int(11) default NULL, + wobject_groupIdView int(11) default NULL, + wobject_special_groupIdView int(11) default NULL, + languageId int(11) NOT NULL default '0', + namespace varchar(35) default NULL, + location varchar(255) default NULL, + headerShortcut text, + bodyShortcut text, + contentType text NOT NULL, + ownerId int(11) default '1', + dateIndexed int(11) NOT NULL default '0', + PRIMARY KEY (docId,indexName) ) TYPE=MyISAM; -- --- Dumping data for table `LinkList` --- - - - --- --- Table structure for table `LinkList_link` --- - -CREATE TABLE LinkList_link ( - wobjectId int(11) NOT NULL default '0', - LinkList_linkId int(11) NOT NULL default '0', - name varchar(128) default NULL, - url text, - description text, - sequenceNumber int(11) NOT NULL default '0', - newWindow int(11) NOT NULL default '0', - PRIMARY KEY (LinkList_linkId) -) TYPE=MyISAM; - --- --- Dumping data for table `LinkList_link` +-- Dumping data for table `IndexedSearch_docInfo` -- @@ -361,6 +342,52 @@ CREATE TABLE MessageBoard_forums ( +-- +-- Table structure for table `Navigation` +-- + +CREATE TABLE Navigation ( + navigationId int(11) NOT NULL default '0', + identifier varchar(30) NOT NULL default 'undefined', + depth int(11) NOT NULL default '99', + method varchar(35) NOT NULL default 'descendants', + startAt varchar(35) NOT NULL default 'current', + stopAtLevel int(11) NOT NULL default '-1', + templateId int(11) NOT NULL default '1', + showSystemPages int(11) NOT NULL default '0', + showHiddenPages int(11) NOT NULL default '0', + showUnprivilegedPages int(11) NOT NULL default '0', + reverse int(11) NOT NULL default '0', + PRIMARY KEY (navigationId,identifier) +) TYPE=MyISAM; + +-- +-- Dumping data for table `Navigation` +-- + + +INSERT INTO Navigation VALUES (1,'crumbTrail',99,'self_and_ancestors','current',-1,2,0,0,0,1); +INSERT INTO Navigation VALUES (2,'FlexMenu',99,'pedigree','current',2,1,0,0,0,0); +INSERT INTO Navigation VALUES (3,'currentMenuVertical',1,'descendants','current',-1,1,0,0,0,0); +INSERT INTO Navigation VALUES (4,'currentMenuHorizontal',1,'descendants','current',-1,3,0,0,0,0); +INSERT INTO Navigation VALUES (5,'PreviousDropMenu',99,'self_and_sisters','current',-1,4,0,0,0,0); +INSERT INTO Navigation VALUES (6,'previousMenuVertical',1,'descendants','mother',-1,1,0,0,0,0); +INSERT INTO Navigation VALUES (7,'previousMenuHorizontal',1,'descendants','mother',-1,3,0,0,0,0); +INSERT INTO Navigation VALUES (8,'rootmenu',1,'daughters','root',-1,3,0,0,0,0); +INSERT INTO Navigation VALUES (9,'SpecificDropMenu',3,'descendants','home',-1,4,0,0,0,0); +INSERT INTO Navigation VALUES (10,'SpecificSubMenuVertical',3,'descendants','home',-1,1,0,0,0,0); +INSERT INTO Navigation VALUES (11,'SpecificSubMenuHorizontal',1,'descendants','home',-1,3,0,0,0,0); +INSERT INTO Navigation VALUES (12,'TopLevelMenuVertical',0,'descendants','WebGUIroot',-1,1,0,0,0,0); +INSERT INTO Navigation VALUES (13,'TopLevelMenuHorizontal',0,'descendants','WebGUIroot',-1,3,0,0,0,0); +INSERT INTO Navigation VALUES (14,'RootTab',99,'daughters','root',-1,5,0,0,0,0); +INSERT INTO Navigation VALUES (15,'TopDropMenu',0,'decendants','WebGUIroot',-1,4,0,0,0,0); +INSERT INTO Navigation VALUES (16,'dtree',99,'self_and_descendants','WebGUIroot',-1,6,0,0,0,0); +INSERT INTO Navigation VALUES (17,'coolmenu',99,'descendants','WebGUIroot',-1,7,0,0,0,0); +INSERT INTO Navigation VALUES (18,'Synopsis',99,'self_and_descendants','current',-1,8,0,0,0,0); +INSERT INTO Navigation VALUES (1000,'TopLevelMenuHorizontal_1000',0,'WebGUIroot','WebGUIroot',-1,1000,0,0,0,0); +INSERT INTO Navigation VALUES (1001,'currentMenuHorizontal_1001',1,'descendants','current',-1,1001,0,0,0,0); +INSERT INTO Navigation VALUES (1002,'FlexMenu_1002',99,'pedigree','current',2,1,0,0,0,0); + -- -- Table structure for table `Poll` -- @@ -538,16 +565,11 @@ CREATE TABLE Product_specification ( CREATE TABLE SQLReport ( wobjectId int(11) NOT NULL default '0', - template text, dbQuery text, - DSN varchar(255) default NULL, - username varchar(255) default NULL, - identifier varchar(255) default NULL, - convertCarriageReturns int(11) NOT NULL default '0', paginateAfter int(11) NOT NULL default '50', preprocessMacros int(11) NOT NULL default '0', debugMode int(11) NOT NULL default '0', - databaseLinkId int(11) default NULL, + databaseLinkId int(11) NOT NULL default '0', PRIMARY KEY (wobjectId) ) TYPE=MyISAM; @@ -576,6 +598,7 @@ CREATE TABLE SiteMap ( INSERT INTO SiteMap VALUES (-1,1,0,5,0); +INSERT INTO SiteMap VALUES (8,0,0,5,0); -- -- Table structure for table `Survey` @@ -589,6 +612,12 @@ CREATE TABLE Survey ( mode varchar(30) default NULL, Survey_id int(11) NOT NULL default '0', anonymous char(1) NOT NULL default '0', + questionsPerPage int(11) NOT NULL default '1', + responseTemplateId int(11) NOT NULL default '1', + reportcardTemplateId int(11) NOT NULL default '1', + overviewTemplateId int(11) NOT NULL default '1', + maxResponsesPerUser int(11) NOT NULL default '1', + questionsPerResponse int(11) NOT NULL default '9999999', PRIMARY KEY (wobjectId) ) TYPE=MyISAM; @@ -631,6 +660,7 @@ CREATE TABLE Survey_question ( allowComment int(11) NOT NULL default '0', randomizeAnswers int(11) NOT NULL default '0', answerFieldType varchar(35) default NULL, + gotoQuestion int(11) default NULL, PRIMARY KEY (Survey_questionId) ) TYPE=MyISAM; @@ -640,21 +670,40 @@ CREATE TABLE Survey_question ( +-- +-- Table structure for table `Survey_questionResponse` +-- + +CREATE TABLE Survey_questionResponse ( + Survey_id int(11) default NULL, + Survey_questionId int(11) NOT NULL default '0', + Survey_answerId int(11) NOT NULL default '0', + Survey_responseId int(11) NOT NULL default '0', + response varchar(255) default NULL, + comment text, + dateOfResponse int(11) default NULL, + PRIMARY KEY (Survey_questionId,Survey_answerId,Survey_responseId) +) TYPE=MyISAM; + +-- +-- Dumping data for table `Survey_questionResponse` +-- + + + -- -- Table structure for table `Survey_response` -- CREATE TABLE Survey_response ( Survey_id int(11) default NULL, - Survey_questionId int(11) NOT NULL default '0', - Survey_answerId int(11) NOT NULL default '0', Survey_responseId int(11) NOT NULL default '0', userId varchar(11) default NULL, username varchar(255) default NULL, ipAddress varchar(15) default NULL, - response varchar(255) default NULL, - comment text, - dateOfResponse int(11) default NULL, + startDate int(11) default NULL, + endDate int(11) default NULL, + isComplete int(11) NOT NULL default '0', PRIMARY KEY (Survey_responseId) ) TYPE=MyISAM; @@ -680,6 +729,7 @@ CREATE TABLE SyndicatedContent ( -- +INSERT INTO SyndicatedContent VALUES (6,'http://www.plainblack.com/news?wid=920&func=viewRSS',3); -- -- Table structure for table `USS` @@ -696,6 +746,8 @@ CREATE TABLE USS ( filterContent varchar(30) NOT NULL default 'javascript', sortBy varchar(35) NOT NULL default 'dateUpdated', sortOrder varchar(4) NOT NULL default 'desc', + USS_id int(11) NOT NULL default '0', + submissionFormTemplateId int(11) NOT NULL default '1', PRIMARY KEY (wobjectId) ) TYPE=MyISAM; @@ -704,13 +756,13 @@ CREATE TABLE USS ( -- +INSERT INTO USS VALUES (5,3,1000,'Approved',4,0,1,'none','sequenceNumber','asc',1000,3); -- -- Table structure for table `USS_submission` -- CREATE TABLE USS_submission ( - wobjectId int(11) NOT NULL default '0', USS_submissionId int(11) NOT NULL default '0', title varchar(128) default NULL, dateSubmitted int(11) default NULL, @@ -720,12 +772,19 @@ CREATE TABLE USS_submission ( image varchar(255) default NULL, attachment varchar(255) default NULL, status varchar(30) NOT NULL default 'Approved', - convertCarriageReturns int(11) NOT NULL default '0', views int(11) NOT NULL default '0', forumId int(11) default NULL, dateUpdated int(11) NOT NULL default '0', + sequenceNumber int(11) NOT NULL default '0', + USS_id int(11) NOT NULL default '0', + contentType varchar(35) NOT NULL default 'mixed', + userDefined1 text, + userDefined2 text, + userDefined3 text, + userDefined4 text, + userDefined5 text, PRIMARY KEY (USS_submissionId), - KEY test (wobjectId,status,userId) + KEY test (status,userId) ) TYPE=MyISAM; -- @@ -733,6 +792,39 @@ CREATE TABLE USS_submission ( -- +INSERT INTO USS_submission VALUES (1,'Talk to the Experts',1076705448,'Admin',3,' Our website contains all of the different methods for reaching us. Our friendly staff will be happy to assist you in any way possible.\r\n\r\n',NULL,NULL,'Approved',0,1004,1076706084,0,1000,'html','http://www.plainblack.com/contact_us','0',NULL,NULL,NULL); +INSERT INTO USS_submission VALUES (2,'Request an Interactive Demonstration CD',1076705448,'Admin',3,'This CD shows all of the excellent features that WebGUI provides and gives you a brief overview of the product. It also provides examples of how the product works and how it can be used in your environment.',NULL,NULL,'Approved',0,1005,1076706084,0,1000,'html','http://www.plainblack.com/presentation_cd','0',NULL,NULL,NULL); +INSERT INTO USS_submission VALUES (3,'Get the Manual',1076705448,'Admin',3,'Ruling WebGUI is the definitive guide to everything WebGUI related. It has been compiled by the experts at Plain Black Software and covers almost all aspects of WebGUI. When you purchase Ruling WebGUI, you will receive updates to this great manual for one full year.',NULL,NULL,'Approved',0,1006,1076706084,0,1000,'html','http://www.plainblack.com/ruling_webgui','0',NULL,NULL,NULL); +INSERT INTO USS_submission VALUES (4,'Purchase Technical Support',1076705448,'Admin',3,'The WebGUI Support Center is there to help you when you get stuck. With a system as large as WebGUI, you\'ll likely have some questions, and our courteous and knowlegable staff is available to answer those questions. And best of all, you get Ruling WebGUI free when you sign up for the Support Center.\r\n\r\n',NULL,NULL,'Approved',0,1007,1076706084,0,1000,'html','http://www.plainblack.com/support_programs','0',NULL,NULL,NULL); +INSERT INTO USS_submission VALUES (5,'Sign Up for Hosting',1076705448,'Admin',3,'We provide professional hosting services for you so you don\'t have to go through the trouble of finding a hoster who likely won\'t know what to do with WebGUI anyway.',NULL,NULL,'Approved',0,1008,1076706084,0,1000,'html','http://www.plainblack.com/hosting','0',NULL,NULL,NULL); +INSERT INTO USS_submission VALUES (6,'Look Great',1076705448,'Admin',3,'Let Plain Black\'s design team build you a professional looking design. Our award-winning designers can get you the look you need on time and on budget, every time.',NULL,NULL,'Approved',0,1009,1076706084,0,1000,'html','http://www.plainblack.com/design','0',NULL,NULL,NULL); + +-- +-- Table structure for table `WSClient` +-- + +CREATE TABLE WSClient ( + wobjectId int(11) NOT NULL default '0', + call text NOT NULL, + uri varchar(255) NOT NULL default '', + proxy varchar(255) NOT NULL default '', + preprocessMacros int(11) NOT NULL default '0', + paginateAfter int(11) NOT NULL default '50', + paginateVar varchar(35) default NULL, + debugMode int(11) NOT NULL default '0', + params text, + execute_by_default tinyint(4) NOT NULL default '1', + templateId int(11) NOT NULL default '1', + decodeUtf8 tinyint(3) unsigned NOT NULL default '0', + httpHeader varchar(50) default NULL, + PRIMARY KEY (wobjectId) +) TYPE=MyISAM; + +-- +-- Dumping data for table `WSClient` +-- + + -- -- Table structure for table `WobjectProxy` @@ -779,6 +871,14 @@ INSERT INTO authentication VALUES (1,'LDAP','connectDN',NULL); INSERT INTO authentication VALUES (3,'LDAP','connectDN',''); INSERT INTO authentication VALUES (1,'WebGUI','identifier','No Login'); INSERT INTO authentication VALUES (3,'WebGUI','identifier','RvlMjeFPs2aAhQdo/xt/Kg'); +INSERT INTO authentication VALUES (1,'WebGUI','passwordLastUpdated','1078704037'); +INSERT INTO authentication VALUES (1,'WebGUI','passwordTimeout','3122064000'); +INSERT INTO authentication VALUES (1,'WebGUI','changeUsername','1'); +INSERT INTO authentication VALUES (1,'WebGUI','changePassword','1'); +INSERT INTO authentication VALUES (3,'WebGUI','passwordLastUpdated','1078704037'); +INSERT INTO authentication VALUES (3,'WebGUI','passwordTimeout','3122064000'); +INSERT INTO authentication VALUES (3,'WebGUI','changeUsername','1'); +INSERT INTO authentication VALUES (3,'WebGUI','changePassword','1'); -- -- Table structure for table `collateral` @@ -872,6 +972,7 @@ CREATE TABLE forum ( archiveAfter int(11) NOT NULL default '31536000', postsPerPage int(11) NOT NULL default '30', masterForumId int(11) default NULL, + groupToView int(11) NOT NULL default '7', PRIMARY KEY (forumId) ) TYPE=MyISAM; @@ -880,10 +981,16 @@ CREATE TABLE forum ( -- -INSERT INTO forum VALUES (1000,1,'javascript',0,7,3600,0,4,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,31536000,30,NULL); -INSERT INTO forum VALUES (1001,1,'javascript',0,7,3600,0,4,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,31536000,30,NULL); -INSERT INTO forum VALUES (1002,1,'javascript',0,2,3600,0,4,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,31536000,30,NULL); -INSERT INTO forum VALUES (1003,1,'javascript',0,7,3600,0,4,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,31536000,30,NULL); +INSERT INTO forum VALUES (1000,1,'javascript',0,7,3600,0,4,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,31536000,30,NULL,7); +INSERT INTO forum VALUES (1001,1,'javascript',0,7,3600,0,4,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,31536000,30,NULL,7); +INSERT INTO forum VALUES (1002,1,'javascript',0,2,3600,0,4,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,31536000,30,NULL,7); +INSERT INTO forum VALUES (1003,1,'javascript',0,7,3600,0,4,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,31536000,30,NULL,7); +INSERT INTO forum VALUES (1004,1,'javascript',0,2,3600,0,4,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,31536000,30,NULL,7); +INSERT INTO forum VALUES (1005,1,'javascript',0,2,3600,0,4,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,31536000,30,NULL,7); +INSERT INTO forum VALUES (1006,1,'javascript',0,2,3600,0,4,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,31536000,30,NULL,7); +INSERT INTO forum VALUES (1007,1,'javascript',0,2,3600,0,4,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,31536000,30,NULL,7); +INSERT INTO forum VALUES (1008,1,'javascript',0,2,3600,0,4,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,31536000,30,NULL,7); +INSERT INTO forum VALUES (1009,1,'javascript',0,2,3600,0,4,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,31536000,30,NULL,7); -- -- Table structure for table `forumPost` @@ -1035,6 +1142,22 @@ CREATE TABLE groupGroupings ( -- +INSERT INTO groupGroupings VALUES (4,12); +INSERT INTO groupGroupings VALUES (6,12); +INSERT INTO groupGroupings VALUES (8,12); +INSERT INTO groupGroupings VALUES (9,12); +INSERT INTO groupGroupings VALUES (10,12); +INSERT INTO groupGroupings VALUES (11,12); +INSERT INTO groupGroupings VALUES (3,2); +INSERT INTO groupGroupings VALUES (3,4); +INSERT INTO groupGroupings VALUES (3,5); +INSERT INTO groupGroupings VALUES (3,6); +INSERT INTO groupGroupings VALUES (3,7); +INSERT INTO groupGroupings VALUES (3,8); +INSERT INTO groupGroupings VALUES (3,9); +INSERT INTO groupGroupings VALUES (3,10); +INSERT INTO groupGroupings VALUES (3,11); +INSERT INTO groupGroupings VALUES (3,12); -- -- Table structure for table `groupings` @@ -1053,10 +1176,11 @@ CREATE TABLE groupings ( -- -INSERT INTO groupings VALUES (5,3,2114402400,0); -INSERT INTO groupings VALUES (4,3,2114402400,0); +INSERT INTO groupings VALUES (1,1,2114402400,0); INSERT INTO groupings VALUES (3,3,2114402400,0); -INSERT INTO groupings VALUES (6,3,2114402400,0); +INSERT INTO groupings VALUES (7,1,2114402400,0); +INSERT INTO groupings VALUES (7,3,2114402400,0); +INSERT INTO groupings VALUES (2,3,2114402400,0); -- -- Table structure for table `groups` @@ -1081,6 +1205,8 @@ CREATE TABLE groups ( databaseLinkId int(11) NOT NULL default '0', dbCacheTimeout int(11) NOT NULL default '3600', dbQuery text, + isEditable int(11) NOT NULL default '1', + showInForms int(11) NOT NULL default '1', PRIMARY KEY (groupId) ) TYPE=MyISAM; @@ -1089,17 +1215,17 @@ CREATE TABLE groups ( -- -INSERT INTO groups VALUES (1,'Visitors','This is the public group that has no privileges.',314496000,1000000000,NULL,997938000,997938000,14,-14,NULL,0,NULL,0,0,0,3600,NULL); -INSERT INTO groups VALUES (2,'Registered Users','All registered users belong to this group automatically. There are no associated privileges other than that the user has an account and is logged in.',314496000,1000000000,NULL,997938000,997938000,14,-14,NULL,0,NULL,0,0,0,3600,NULL); -INSERT INTO groups VALUES (3,'Admins','Anyone who belongs to this group has privileges to do anything and everything.',314496000,1000000000,NULL,997938000,997938000,14,-14,NULL,0,NULL,0,0,0,3600,NULL); -INSERT INTO groups VALUES (4,'Content Managers','Users that have privileges to edit content on this site. The user still needs to be added to a group that has editing privileges on specific pages.',314496000,1000000000,NULL,997938000,997938000,14,-14,NULL,0,NULL,0,0,0,3600,NULL); -INSERT INTO groups VALUES (5,'Style Managers','Users that have privileges to edit styles for this site. These privileges do not allow the user to assign privileges to a page, just define them to be used.',314496000,1000000000,NULL,997938000,997938000,14,-14,NULL,0,NULL,0,0,0,3600,NULL); -INSERT INTO groups VALUES (6,'Package Managers','Users that have privileges to add, edit, and delete packages of wobjects and pages to deploy.',314496000,1000000000,NULL,997938000,997938000,14,-14,NULL,0,NULL,0,0,0,3600,NULL); -INSERT INTO groups VALUES (7,'Everyone','A group that automatically includes all users including Visitors.',314496000,1000000000,NULL,997938000,997938000,14,-14,NULL,0,NULL,0,0,0,3600,NULL); -INSERT INTO groups VALUES (8,'Template Managers','Users that have privileges to edit templates for this site.',314496000,1000000000,NULL,997938000,997938000,14,-14,NULL,0,NULL,0,0,0,3600,NULL); -INSERT INTO groups VALUES (9,'Theme Managers','Users in this group can use the theme manager to create new themes and install themes from other systems.',314496000,1000000000,NULL,997938000,997938000,14,-14,NULL,0,NULL,0,0,0,3600,NULL); -INSERT INTO groups VALUES (10,'Translation Managers','Users that can edit language translations for WebGUI.',314496000,1000000000,NULL,997938000,997938000,14,-14,NULL,0,NULL,0,0,0,3600,NULL); -INSERT INTO groups VALUES (11,'Secondary Admins','Users that have limited administrative privileges.',314496000,1000000000,NULL,997938000,997938000,14,-14,NULL,0,NULL,0,0,0,3600,NULL); +INSERT INTO groups VALUES (1,'Visitors','This is the public group that has no privileges.',314496000,1000000000,NULL,997938000,997938000,14,-14,NULL,0,NULL,0,0,0,3600,NULL,0,1); +INSERT INTO groups VALUES (2,'Registered Users','All registered users belong to this group automatically. There are no associated privileges other than that the user has an account and is logged in.',314496000,1000000000,NULL,997938000,997938000,14,-14,NULL,0,NULL,0,0,0,3600,NULL,0,1); +INSERT INTO groups VALUES (3,'Admins','Anyone who belongs to this group has privileges to do anything and everything.',314496000,1000000000,NULL,997938000,997938000,14,-14,NULL,0,NULL,0,0,0,3600,NULL,1,1); +INSERT INTO groups VALUES (4,'Content Managers','Users that have privileges to edit content on this site. The user still needs to be added to a group that has editing privileges on specific pages.',314496000,1000000000,NULL,997938000,997938000,14,-14,NULL,0,NULL,0,0,0,3600,NULL,1,1); +INSERT INTO groups VALUES (6,'Package Managers','Users that have privileges to add, edit, and delete packages of wobjects and pages to deploy.',314496000,1000000000,NULL,997938000,997938000,14,-14,NULL,0,NULL,0,0,0,3600,NULL,1,1); +INSERT INTO groups VALUES (7,'Everyone','A group that automatically includes all users including Visitors.',314496000,1000000000,NULL,997938000,997938000,14,-14,NULL,0,NULL,0,0,0,3600,NULL,0,1); +INSERT INTO groups VALUES (8,'Template Managers','Users that have privileges to edit templates for this site.',314496000,1000000000,NULL,997938000,997938000,14,-14,NULL,0,NULL,0,0,0,3600,NULL,1,1); +INSERT INTO groups VALUES (9,'Theme Managers','Users in this group can use the theme manager to create new themes and install themes from other systems.',314496000,1000000000,NULL,997938000,997938000,14,-14,NULL,0,NULL,0,0,0,3600,NULL,1,1); +INSERT INTO groups VALUES (10,'Translation Managers','Users that can edit language translations for WebGUI.',314496000,1000000000,NULL,997938000,997938000,14,-14,NULL,0,NULL,0,0,0,3600,NULL,1,1); +INSERT INTO groups VALUES (11,'Secondary Admins','Users that have limited administrative privileges.',314496000,1000000000,NULL,997938000,997938000,14,-14,NULL,0,NULL,0,0,0,3600,NULL,1,1); +INSERT INTO groups VALUES (12,'Turn Admin On','These users can enable admin mode.',314496000,1000000000,NULL,997938000,997938000,14,-14,NULL,0,NULL,0,0,0,3600,NULL,1,0); -- -- Table structure for table `help` @@ -1126,26 +1252,23 @@ INSERT INTO help VALUES (28,'WebGUI',678,633,'1,WebGUI;3,WebGUI;'); INSERT INTO help VALUES (31,'WebGUI',681,636,'30,WebGUI;1,WebGUI;3,WebGUI;'); INSERT INTO help VALUES (30,'WebGUI',680,635,'31,WebGUI;'); INSERT INTO help VALUES (25,'WebGUI',675,630,'60,WebGUI;'); -INSERT INTO help VALUES (1,'Item',61,71,'2,Item;21,WebGUI;'); INSERT INTO help VALUES (6,'WebGUI',656,611,'12,WebGUI;'); INSERT INTO help VALUES (46,'WebGUI',696,651,'66,WebGUI;'); INSERT INTO help VALUES (22,'WebGUI',672,627,'12,WebGUI;'); -INSERT INTO help VALUES (1,'USS',61,71,'71,WebGUI;3,USS;2,USS;21,WebGUI;'); +INSERT INTO help VALUES (1,'USS',61,71,'71,WebGUI;4,USS;3,USS;2,USS;21,WebGUI;'); INSERT INTO help VALUES (24,'WebGUI',674,629,'12,WebGUI;'); -INSERT INTO help VALUES (1,'FAQ',61,71,'3,FAQ;2,FAQ;21,WebGUI;'); +INSERT INTO help VALUES (78,'WebGUI',1073,1074,'60,WebGUI;18,WebGUI;50,WebGUI;33,WebGUI;'); INSERT INTO help VALUES (13,'WebGUI',663,618,'12,WebGUI;'); INSERT INTO help VALUES (1,'SyndicatedContent',61,71,'2,SyndicatedContent;21,WebGUI;'); INSERT INTO help VALUES (1,'EventsCalendar',61,71,'2,EventsCalendar;3,EventsCalendar;21,WebGUI;'); INSERT INTO help VALUES (1,'MessageBoard',61,71,'3,MessageBoard;2,MessageBoard;21,WebGUI;'); -INSERT INTO help VALUES (1,'LinkList',61,71,'3,LinkList;2,LinkList;21,WebGUI;'); INSERT INTO help VALUES (21,'WebGUI',671,626,'19,WebGUI;18,WebGUI;27,WebGUI;14,WebGUI;'); INSERT INTO help VALUES (1,'Article',61,71,'2,Article;71,WebGUI;21,WebGUI;'); -INSERT INTO help VALUES (1,'ExtraColumn',61,71,'21,WebGUI;'); -INSERT INTO help VALUES (27,'WebGUI',677,632,'1,Article;1,EventsCalendar;1,ExtraColumn;1,FAQ;1,FileManager;1,HttpProxy;1,Item;1,LinkList;1,DataForm;1,MessageBoard;1,Poll;1,Product;1,SiteMap;1,SQLReport;1,Survey;1,SyndicatedContent;1,USS;1,WobjectProxy;21,WebGUI;'); +INSERT INTO help VALUES (27,'WebGUI',677,632,'1,Article;1,EventsCalendar;1,FileManager;1,HttpProxy;1,DataForm;1,MessageBoard;1,Poll;1,Product;1,SiteMap;1,SQLReport;1,Survey;1,SyndicatedContent;1,USS;1,WobjectProxy;21,WebGUI;'); INSERT INTO help VALUES (1,'Poll',61,71,'2,Poll;21,WebGUI;'); INSERT INTO help VALUES (1,'SiteMap',61,71,'2,SiteMap;21,WebGUI;'); INSERT INTO help VALUES (1,'SQLReport',61,71,'21,WebGUI;'); -INSERT INTO help VALUES (18,'WebGUI',668,623,NULL); +INSERT INTO help VALUES (18,'WebGUI',668,623,'52,WebGUI;78,WebGUI;'); INSERT INTO help VALUES (17,'WebGUI',667,622,'10,WebGUI;'); INSERT INTO help VALUES (2,'WebGUI',652,607,'12,WebGUI;'); INSERT INTO help VALUES (15,'WebGUI',665,620,'10,WebGUI;'); @@ -1170,8 +1293,7 @@ INSERT INTO help VALUES (66,'WebGUI',960,961,'46,WebGUI;'); INSERT INTO help VALUES (65,'WebGUI',957,958,'67,WebGUI;'); INSERT INTO help VALUES (2,'FileManager',72,73,'1,FileManager;'); INSERT INTO help VALUES (2,'EventsCalendar',72,73,'4,EventsCalendar;1,EventsCalendar;'); -INSERT INTO help VALUES (2,'FAQ',72,73,'1,FAQ;'); -INSERT INTO help VALUES (2,'LinkList',72,73,'1,LinkList;'); +INSERT INTO help VALUES (4,'USS',93,94,'1,USS;'); INSERT INTO help VALUES (47,'WebGUI',697,698,'1,Article;17,WebGUI;1,MessageBoard;1,Poll;2,WebGUI;1,USS;'); INSERT INTO help VALUES (1,'WobjectProxy',5,6,'21,WebGUI;'); INSERT INTO help VALUES (1,'Product',38,39,'5,Product;4,Product;6,Product;2,Product;3,Product;7,Product;21,WebGUI;'); @@ -1185,13 +1307,10 @@ INSERT INTO help VALUES (1,'Survey',3,4,'21,WebGUI;'); INSERT INTO help VALUES (49,'WebGUI',785,786,'53,WebGUI;54,WebGUI;56,WebGUI;20,WebGUI;61,WebGUI;55,WebGUI;'); INSERT INTO help VALUES (50,'WebGUI',825,826,'33,WebGUI;'); INSERT INTO help VALUES (2,'Article',72,73,'1,Article;51,WebGUI;'); -INSERT INTO help VALUES (51,'WebGUI',827,828,'2,Article;3,DataForm;3,EventsCalendar;3,FAQ;3,FileManager;2,Item;3,LinkList;2,MessageBoard;7,Product;2,SiteMap;2,SyndicatedContent;33,WebGUI;2,USS;'); -INSERT INTO help VALUES (3,'EventsCalendar',94,95,'1,EventsCalendar;51,WebGUI;'); -INSERT INTO help VALUES (3,'FAQ',76,77,'1,FAQ;51,WebGUI;'); +INSERT INTO help VALUES (51,'WebGUI',827,828,'2,Article;3,DataForm;3,EventsCalendar;3,FileManager;2,MessageBoard;7,Product;2,SiteMap;2,SyndicatedContent;33,WebGUI;2,USS;'); +INSERT INTO help VALUES (3,'EventsCalendar',94,95,'1,EventsCalendar;79,WebGUI;51,WebGUI;'); INSERT INTO help VALUES (3,'FileManager',75,76,'1,FileManager;51,WebGUI;'); INSERT INTO help VALUES (4,'EventsCalendar',96,97,'2,EventsCalendar;51,WebGUI;'); -INSERT INTO help VALUES (2,'Item',73,74,'1,Item;51,WebGUI;'); -INSERT INTO help VALUES (3,'LinkList',75,76,'1,LinkList;51,WebGUI;'); INSERT INTO help VALUES (2,'MessageBoard',73,74,'75,WebGUI;76,WebGUI;73,WebGUI;77,WebGUI;72,WebGUI;74,WebGUI;1,MessageBoard;51,WebGUI;'); INSERT INTO help VALUES (2,'SiteMap',72,73,'1,SiteMap;51,WebGUI;'); INSERT INTO help VALUES (2,'USS',74,75,'1,USS;51,WebGUI;'); @@ -1204,14 +1323,14 @@ INSERT INTO help VALUES (56,'WebGUI',837,838,'49,WebGUI;'); INSERT INTO help VALUES (57,'WebGUI',839,840,'19,WebGUI;'); INSERT INTO help VALUES (58,'WebGUI',841,842,'19,WebGUI;'); INSERT INTO help VALUES (59,'WebGUI',843,844,'19,WebGUI;'); -INSERT INTO help VALUES (60,'WebGUI',845,846,'19,WebGUI;16,WebGUI;'); +INSERT INTO help VALUES (60,'WebGUI',845,846,'19,WebGUI;78,WebGUI;'); INSERT INTO help VALUES (2,'SyndicatedContent',72,73,'1,SyndicatedContent;'); INSERT INTO help VALUES (1,'HttpProxy',10,11,'21,WebGUI;'); INSERT INTO help VALUES (67,'WebGUI',968,969,'65,WebGUI;'); INSERT INTO help VALUES (1,'DataForm',61,71,'2,DataForm;4,DataForm;3,DataForm;21,WebGUI;'); INSERT INTO help VALUES (2,'DataForm',62,72,'3,DataForm;1,DataForm;'); INSERT INTO help VALUES (2,'Poll',73,74,'1,Poll;51,WebGUI;'); -INSERT INTO help VALUES (61,'WebGUI',931,932,'49,WebGUI;9,WebGUI;33,WebGUI;64,WebGUI;62,WebGUI;63,WebGUI;'); +INSERT INTO help VALUES (61,'WebGUI',931,932,'49,WebGUI;33,WebGUI;64,WebGUI;62,WebGUI;63,WebGUI;'); INSERT INTO help VALUES (62,'WebGUI',933,934,'61,WebGUI;'); INSERT INTO help VALUES (63,'WebGUI',936,937,'61,WebGUI;'); INSERT INTO help VALUES (64,'WebGUI',938,939,'61,WebGUI;'); @@ -1228,6 +1347,16 @@ INSERT INTO help VALUES (75,'WebGUI',1062,1063,'71,WebGUI;73,WebGUI;50,WebGUI;33 INSERT INTO help VALUES (76,'WebGUI',1065,1066,'71,WebGUI;73,WebGUI;50,WebGUI;33,WebGUI;'); INSERT INTO help VALUES (77,'WebGUI',1067,1068,'71,WebGUI;50,WebGUI;33,WebGUI;'); INSERT INTO help VALUES (3,'MessageBoard',78,79,'71,WebGUI;1,MessageBoard;'); +INSERT INTO help VALUES (1,'WSClient',61,71,'2,WSClient;21,WebGUI;'); +INSERT INTO help VALUES (2,'WSClient',72,73,'1,WSClient;51,WebGUI;'); +INSERT INTO help VALUES (1,'IndexedSearch',26,27,'21,WebGUI;2,IndexedSearch'); +INSERT INTO help VALUES (2,'IndexedSearch',29,28,'21,WebGUI;1,IndexedSearch;'); +INSERT INTO help VALUES (79,'WebGUI',1085,1086,'51,WebGUI;'); +INSERT INTO help VALUES (80,'WebGUI',1087,1088,'79,WebGUI;2,Survey;3,Survey;'); +INSERT INTO help VALUES (81,'WebGUI',1089,1090,'3,Survey;1,Survey;'); +INSERT INTO help VALUES (2,'Survey',88,89,'3,Survey;1,Survey;51,WebGUI;'); +INSERT INTO help VALUES (3,'Survey',90,91,'2,Survey;'); +INSERT INTO help VALUES (82,'WebGUI',1091,1092,'79,WebGUI;3,Survey;1,Survey;'); -- -- Table structure for table `incrementer` @@ -1245,14 +1374,12 @@ CREATE TABLE incrementer ( INSERT INTO incrementer VALUES ('groupId',26); -INSERT INTO incrementer VALUES ('pageId',1000); -INSERT INTO incrementer VALUES ('styleId',1000); +INSERT INTO incrementer VALUES ('pageId',1005); +INSERT INTO incrementer VALUES ('USS_id',1001); INSERT INTO incrementer VALUES ('userId',26); -INSERT INTO incrementer VALUES ('wobjectId',1); +INSERT INTO incrementer VALUES ('wobjectId',9); INSERT INTO incrementer VALUES ('EventsCalendar_eventId',1000); -INSERT INTO incrementer VALUES ('LinkList_linkId',1000); -INSERT INTO incrementer VALUES ('FAQ_questionId',1000); -INSERT INTO incrementer VALUES ('USS_submissionId',1); +INSERT INTO incrementer VALUES ('USS_submissionId',7); INSERT INTO incrementer VALUES ('EventsCalendar_recurringId',1000); INSERT INTO incrementer VALUES ('messageLogId',1000); INSERT INTO incrementer VALUES ('FileManager_fileId',1); @@ -1263,7 +1390,7 @@ INSERT INTO incrementer VALUES ('collateralFolderId',1000); INSERT INTO incrementer VALUES ('Product_featureId',1000); INSERT INTO incrementer VALUES ('Product_specificationId',1000); INSERT INTO incrementer VALUES ('languageId',1000); -INSERT INTO incrementer VALUES ('DataForm_fieldId',1000); +INSERT INTO incrementer VALUES ('DataForm_fieldId',1007); INSERT INTO incrementer VALUES ('DataForm_entryId',1000); INSERT INTO incrementer VALUES ('Product_benefitId',1000); INSERT INTO incrementer VALUES ('Survey_answerId',1000); @@ -1273,10 +1400,12 @@ INSERT INTO incrementer VALUES ('Survey_id',1000); INSERT INTO incrementer VALUES ('themeId',1000); INSERT INTO incrementer VALUES ('themeComponentId',1000); INSERT INTO incrementer VALUES ('databaseLinkId',1000); -INSERT INTO incrementer VALUES ('forumId',1004); +INSERT INTO incrementer VALUES ('forumId',1010); INSERT INTO incrementer VALUES ('forumThreadId',1); INSERT INTO incrementer VALUES ('forumPostId',1); INSERT INTO incrementer VALUES ('replacementId',1000); +INSERT INTO incrementer VALUES ('DataForm_tabId',1000); +INSERT INTO incrementer VALUES ('navigationId',1003); -- -- Table structure for table `international` @@ -1304,14 +1433,8 @@ INSERT INTO international VALUES (1,'Article',4,'Art INSERT INTO international VALUES (1,'Article',5,'Artigo',1031510000,NULL); INSERT INTO international VALUES (37,'USS',3,'Verwijder',1038528247,NULL); INSERT INTO international VALUES (89,'EventsCalendar',1,'Show 3 months from start.',1038190646,NULL); -INSERT INTO international VALUES (10,'LinkList',2,'Link Liste bearbeiten',1040644971,NULL); +INSERT INTO international VALUES (88,'Survey',1,'Survey Template',1078223096,NULL); INSERT INTO international VALUES (35,'USS',3,'Titel',1038528241,NULL); -INSERT INTO international VALUES (1,'ExtraColumn',1,'Extra Column',1031514049,NULL); -INSERT INTO international VALUES (1,'ExtraColumn',4,'Columna Extra',1065116244,NULL); -INSERT INTO international VALUES (1,'ExtraColumn',5,'Coluna extra',1031510000,NULL); -INSERT INTO international VALUES (34,'USS',3,'Return converteren',1038528234,NULL); -INSERT INTO international VALUES (1,'Item',1,'Link URL',1031514049,NULL); -INSERT INTO international VALUES (5,'ExtraColumn',6,'StyleSheet Class',1031510000,NULL); INSERT INTO international VALUES (700,'WebGUI',6,'dagar',1050402828,NULL); INSERT INTO international VALUES (4,'WebGUI',6,'Hantera inställningar.',1047894209,NULL); INSERT INTO international VALUES (10,'Poll',2,'Abstimmung zurücksetzen',1040646831,NULL); @@ -1342,29 +1465,23 @@ INSERT INTO international VALUES (4,'SiteMap',6,'Niv INSERT INTO international VALUES (4,'Poll',6,'Vem kan rösta?',1031510000,NULL); INSERT INTO international VALUES (10,'SQLReport',2,'Fehler: Das SQL-Statement ist im falschen Format.',1040649121,NULL); INSERT INTO international VALUES (17,'SQLReport',3,'Debug: Query:',1038527904,NULL); -INSERT INTO international VALUES (2,'FAQ',1,'F.A.Q.',1031514049,NULL); -INSERT INTO international VALUES (2,'FAQ',4,'F.A.Q.',1065116358,NULL); -INSERT INTO international VALUES (2,'FAQ',5,'Perguntas mais frequentes',1031510000,NULL); -INSERT INTO international VALUES (2,'Item',1,'Attachment',1031514049,NULL); INSERT INTO international VALUES (16,'SQLReport',3,'Debug?',1038527891,NULL); INSERT INTO international VALUES (1,'Article',10,'Artikkel',1032469833,NULL); INSERT INTO international VALUES (2,'MessageBoard',1,'Message Board',1031514049,NULL); INSERT INTO international VALUES (2,'MessageBoard',4,'Tablero de Mensajes',1039628673,NULL); INSERT INTO international VALUES (2,'MessageBoard',5,'Quadro de mensagens',1031510000,NULL); -INSERT INTO international VALUES (4,'ExtraColumn',6,'Bredd',1031510000,NULL); INSERT INTO international VALUES (15,'SQLReport',3,'Verwerk macros voor query?',1038527884,NULL); INSERT INTO international VALUES (2,'SiteMap',1,'Site Map',1031514049,NULL); INSERT INTO international VALUES (2,'SiteMap',5,'Mapa do site',1031510000,NULL); INSERT INTO international VALUES (10,'WebGUI',2,' Verwalten: Mülleimer',1040640519,NULL); INSERT INTO international VALUES (4,'Article',6,'Slutdatum',1032257354,NULL); -INSERT INTO international VALUES (3,'WebGUI',6,'Klistra in från klippbord...',1031510000,NULL); +INSERT INTO international VALUES (26,'Navigation',1,'Stop traversing when reaching level',1077080617,''); INSERT INTO international VALUES (14,'SQLReport',3,'Breek pagina af na',1038527876,NULL); INSERT INTO international VALUES (2,'SyndicatedContent',1,'Syndicated Content',1031514049,NULL); INSERT INTO international VALUES (2,'SyndicatedContent',5,'Conteudo sindical',1031510000,NULL); INSERT INTO international VALUES (2,'USS',1,'Who can contribute?',1031514049,NULL); INSERT INTO international VALUES (2,'USS',4,'Quiénes pueden contribuir?',1065116374,NULL); INSERT INTO international VALUES (2,'USS',5,'Quem pode contribuir?',1031510000,NULL); -INSERT INTO international VALUES (13,'SQLReport',3,'Converteer Return?',1038527870,NULL); INSERT INTO international VALUES (2,'WebGUI',1,'Page',1031514049,NULL); INSERT INTO international VALUES (2,'WebGUI',4,'Página',1065116378,NULL); INSERT INTO international VALUES (2,'WebGUI',5,'Página',1031510000,NULL); @@ -1372,19 +1489,15 @@ INSERT INTO international VALUES (3,'Article',1,'Start Date',1031514049,NULL); INSERT INTO international VALUES (3,'Article',4,'Fecha de Inicio',1065116449,NULL); INSERT INTO international VALUES (3,'Article',5,'Data de inicio',1031510000,NULL); INSERT INTO international VALUES (11,'Article',2,'(Bitte anklicken, falls Sie nicht <br> in Ihrem Text hinzufügen.)',1040597800,NULL); -INSERT INTO international VALUES (3,'SQLReport',6,'Rapportmall',1032859295,NULL); +INSERT INTO international VALUES (4,'WSClient',1,'SOAP Method/Call',1033575504,NULL); INSERT INTO international VALUES (3,'SiteMap',6,'Starta från denna nivå?',1031510000,NULL); INSERT INTO international VALUES (3,'Poll',6,'Aktiv',1031510000,NULL); -INSERT INTO international VALUES (3,'ExtraColumn',1,'Spacer',1031514049,NULL); -INSERT INTO international VALUES (3,'ExtraColumn',4,'Espaciador',1065116504,NULL); -INSERT INTO international VALUES (3,'ExtraColumn',5,'Espaçamento',1031510000,NULL); INSERT INTO international VALUES (564,'WebGUI',6,'Vem kan posta?',1031510000,NULL); -INSERT INTO international VALUES (3,'LinkList',6,'Öppna i nytt fönster?',1031649790,NULL); -INSERT INTO international VALUES (3,'Item',1,'Delete Attachment',1031514049,NULL); +INSERT INTO international VALUES (92,'USS',6,'Öppna i nytt fönster?',1031649790,NULL); INSERT INTO international VALUES (11,'FileManager',2,'Neuen Download hinzufügen.',1040644692,NULL); INSERT INTO international VALUES (11,'Poll',3,'Stem!',1038526637,NULL); -INSERT INTO international VALUES (3,'LinkList',1,'Open in new window?',1031514049,NULL); -INSERT INTO international VALUES (3,'LinkList',5,'Abrir numa nova janela?',1031510000,NULL); +INSERT INTO international VALUES (92,'USS',1,'Open in new window?',1031514049,NULL); +INSERT INTO international VALUES (92,'USS',5,'Abrir numa nova janela?',1031510000,NULL); INSERT INTO international VALUES (564,'WebGUI',1,'Who can post?',1031514049,NULL); INSERT INTO international VALUES (564,'WebGUI',4,'Quienes pueden participar?',1039818508,NULL); INSERT INTO international VALUES (564,'WebGUI',5,'Quem pode colocar novas?',1031510000,NULL); @@ -1394,47 +1507,33 @@ INSERT INTO international VALUES (3,'Poll',5,'Activo',1031510000,NULL); INSERT INTO international VALUES (3,'SiteMap',1,'Start With',1039908390,NULL); INSERT INTO international VALUES (3,'SiteMap',5,'Iniciando neste nível?',1031510000,NULL); INSERT INTO international VALUES (565,'WebGUI',3,'Wie kan bewerken?',1039780755,NULL); -INSERT INTO international VALUES (3,'SQLReport',1,'Report Template',1031514049,NULL); -INSERT INTO international VALUES (3,'SQLReport',4,'Plantilla de Informe',1065116523,NULL); -INSERT INTO international VALUES (3,'SQLReport',5,'Template',1031510000,NULL); -INSERT INTO international VALUES (3,'ExtraColumn',6,'Mellanrum',1031649752,NULL); +INSERT INTO international VALUES (11,'WSClient',1,'Execute by default?',1033575504,NULL); +INSERT INTO international VALUES (8,'WSClient',1,'Preprocess macros on query?',1033575504,NULL); +INSERT INTO international VALUES (5,'WSClient',1,'SOAP Call Parameters',1033575504,NULL); INSERT INTO international VALUES (3,'Article',6,'Startdatum',1032257347,NULL); -INSERT INTO international VALUES (4,'Item',3,'Item',1038487811,NULL); -INSERT INTO international VALUES (5,'Item',3,'Download bijlage',1038487819,NULL); INSERT INTO international VALUES (3,'USS',1,'You have a new user submission to approve.',1031514049,NULL); INSERT INTO international VALUES (3,'USS',5,'Tem nova submissão para aprovar.',1031510000,NULL); -INSERT INTO international VALUES (3,'WebGUI',1,'Paste from clipboard...',1031514049,NULL); -INSERT INTO international VALUES (3,'WebGUI',4,'Pegar desde el portapapeles...',1065116538,NULL); -INSERT INTO international VALUES (3,'WebGUI',5,'Colar do clipboard...',1031510000,NULL); +INSERT INTO international VALUES (9,'Navigation',1,'sisters',1077078821,'Option on question \"return a loop with\"'); +INSERT INTO international VALUES (21,'Navigation',1,'List all Navigation.',1077080151,''); INSERT INTO international VALUES (11,'Poll',2,'Abstimmen!',1040646855,NULL); -INSERT INTO international VALUES (3,'Item',3,'Verwijder bijlage',1038487804,NULL); INSERT INTO international VALUES (4,'Article',1,'End Date',1031514049,NULL); INSERT INTO international VALUES (4,'Article',4,'Fecha de Finalización',1065116787,NULL); INSERT INTO international VALUES (4,'Article',5,'Data de fim',1031510000,NULL); -INSERT INTO international VALUES (2,'Item',3,'Bijlage',1038487747,NULL); INSERT INTO international VALUES (4,'EventsCalendar',1,'Happens only once.',1031514049,NULL); INSERT INTO international VALUES (4,'EventsCalendar',4,'Sucede solo una vez.',1065116599,NULL); INSERT INTO international VALUES (4,'EventsCalendar',5,'Apenas uma vez.',1031510000,NULL); -INSERT INTO international VALUES (1,'Item',3,'Link URL',1038487737,NULL); -INSERT INTO international VALUES (4,'ExtraColumn',1,'Width',1031514049,NULL); -INSERT INTO international VALUES (4,'ExtraColumn',4,'Ancho',1065116753,NULL); -INSERT INTO international VALUES (4,'ExtraColumn',5,'Largura',1031510000,NULL); INSERT INTO international VALUES (2,'USS',6,'Vem kan göra inlägg?',1031510000,NULL); INSERT INTO international VALUES (2,'SyndicatedContent',6,'Syndicated inehåll',1031510000,NULL); -INSERT INTO international VALUES (4,'Item',1,'Item',1031514049,NULL); INSERT INTO international VALUES (1023,'WebGUI',1,'Unsubscribe from discussion',1065875186,'A label for a link that unsubscribes the user from the discussion they are currently viewing.'); INSERT INTO international VALUES (4,'Poll',1,'Who can vote?',1031514049,NULL); INSERT INTO international VALUES (4,'Poll',4,'Quiénes pueden votar?',1065116748,NULL); INSERT INTO international VALUES (4,'Poll',5,'Quem pode votar?',1031510000,NULL); -INSERT INTO international VALUES (13,'FAQ',3,'Zet [top] link aan?',1038487340,NULL); INSERT INTO international VALUES (4,'SiteMap',1,'Depth To Traverse',1031514049,NULL); INSERT INTO international VALUES (4,'SiteMap',5,'profundidade a travessar',1031510000,NULL); INSERT INTO international VALUES (11,'SQLReport',2,'Fehler: Es gab ein Problem mit der Abfrage.',1040649134,NULL); -INSERT INTO international VALUES (12,'FAQ',3,'Zet V/A aan?',1038487333,NULL); INSERT INTO international VALUES (4,'SQLReport',1,'Query',1031514049,NULL); INSERT INTO international VALUES (4,'SQLReport',4,'Consulta',1065116742,NULL); INSERT INTO international VALUES (4,'SQLReport',5,'Query',1031510000,NULL); -INSERT INTO international VALUES (11,'FAQ',3,'Zet inhoud aan?',1038487324,NULL); INSERT INTO international VALUES (4,'SyndicatedContent',1,'Edit Syndicated Content',1031514049,NULL); INSERT INTO international VALUES (4,'SyndicatedContent',5,'Modificar conteudo sindical',1031510000,NULL); INSERT INTO international VALUES (19,'EventsCalendar',3,'Breek pagina af na',1038486795,NULL); @@ -1444,18 +1543,13 @@ INSERT INTO international VALUES (4,'WebGUI',1,'Manage settings.',1031514049,NUL INSERT INTO international VALUES (4,'WebGUI',4,'Gestionar opciones.',1065273343,NULL); INSERT INTO international VALUES (4,'WebGUI',5,'Organizar preferências.',1031510000,NULL); INSERT INTO international VALUES (11,'WebGUI',2,'Mülleimer leeren',1040650325,NULL); -INSERT INTO international VALUES (38,'USS',1,'(Select \"No\" if you\'re writing an HTML/Rich Edit submission.)',1031514049,NULL); INSERT INTO international VALUES (20,'EventsCalendar',1,'Add an event.',1031514049,NULL); INSERT INTO international VALUES (700,'WebGUI',1,'Day(s)',1031514049,NULL); INSERT INTO international VALUES (700,'WebGUI',4,'Día(s)',1065544154,NULL); INSERT INTO international VALUES (700,'WebGUI',5,'Dia',1031510000,NULL); -INSERT INTO international VALUES (5,'ExtraColumn',1,'StyleSheet Class',1031514049,NULL); -INSERT INTO international VALUES (5,'ExtraColumn',4,'Clase de Hoja de Estilos',1065116887,NULL); -INSERT INTO international VALUES (5,'ExtraColumn',5,'StyleSheet Class',1031510000,NULL); -INSERT INTO international VALUES (5,'FAQ',1,'Question',1031514049,NULL); -INSERT INTO international VALUES (5,'FAQ',4,'Pregunta',1065116855,NULL); -INSERT INTO international VALUES (5,'FAQ',5,'Questão',1031510000,NULL); -INSERT INTO international VALUES (5,'Item',1,'Download Attachment',1031514049,NULL); +INSERT INTO international VALUES (85,'USS',1,'Question',1031514049,NULL); +INSERT INTO international VALUES (85,'USS',4,'Pregunta',1065116855,NULL); +INSERT INTO international VALUES (85,'USS',5,'Questão',1031510000,NULL); INSERT INTO international VALUES (816,'WebGUI',1,'Status',1038431169,NULL); INSERT INTO international VALUES (566,'WebGUI',1,'Edit Timeout',1031514049,NULL); INSERT INTO international VALUES (566,'WebGUI',4,'Expiración de la Edición',1065308068,NULL); @@ -1468,9 +1562,6 @@ INSERT INTO international VALUES (5,'Poll',5,'Largura do gr INSERT INTO international VALUES (5,'SiteMap',1,'Edit Site Map',1031514049,NULL); INSERT INTO international VALUES (5,'SiteMap',5,'Editar mapa do site',1031510000,NULL); INSERT INTO international VALUES (14,'EventsCalendar',3,'Startdatum',1038486779,NULL); -INSERT INTO international VALUES (5,'SQLReport',1,'DSN',1031514049,NULL); -INSERT INTO international VALUES (5,'SQLReport',4,'DSN',1065116840,NULL); -INSERT INTO international VALUES (5,'SQLReport',5,'DSN',1031510000,NULL); INSERT INTO international VALUES (93,'EventsCalendar',1,'Next Event',1038202290,NULL); INSERT INTO international VALUES (5,'USS',1,'Your submission has been denied.',1031514049,NULL); INSERT INTO international VALUES (5,'USS',5,'A sua submissão não foi aprovada.',1031510000,NULL); @@ -1484,16 +1575,11 @@ INSERT INTO international VALUES (20,'EventsCalendar',3,'Evenement toevoegen',10 INSERT INTO international VALUES (701,'WebGUI',1,'Week(s)',1031514049,NULL); INSERT INTO international VALUES (701,'WebGUI',4,'Semana(s)',1065544162,NULL); INSERT INTO international VALUES (701,'WebGUI',5,'Semana',1031510000,NULL); -INSERT INTO international VALUES (6,'ExtraColumn',1,'Edit Extra Column',1031514049,NULL); -INSERT INTO international VALUES (6,'ExtraColumn',4,'Editar Columna Extra',1065117000,NULL); -INSERT INTO international VALUES (6,'ExtraColumn',5,'Modificar coluna extra',1031510000,NULL); -INSERT INTO international VALUES (6,'FAQ',1,'Answer',1031514049,NULL); -INSERT INTO international VALUES (6,'FAQ',4,'Respuesta',1065116989,NULL); -INSERT INTO international VALUES (6,'FAQ',5,'Resposta',1031510000,NULL); +INSERT INTO international VALUES (86,'USS',1,'Answer',1031514049,NULL); +INSERT INTO international VALUES (86,'USS',4,'Respuesta',1065116989,NULL); +INSERT INTO international VALUES (86,'USS',5,'Resposta',1031510000,NULL); INSERT INTO international VALUES (12,'FileManager',2,'Sind Sie sicher, dass Sie diesen Download löschen möchten?',1040644704,NULL); -INSERT INTO international VALUES (6,'LinkList',1,'Link List',1031514049,NULL); -INSERT INTO international VALUES (6,'LinkList',4,'Lista de Enlaces',1065116985,NULL); -INSERT INTO international VALUES (6,'LinkList',5,'Lista de hiperlinks',1031510000,NULL); +INSERT INTO international VALUES (91,'Survey',1,'The following template variables are available in all survey templates.\r\n\r\nuser.canViewReports
\r\nA boolean indicating whether the user has the privileges to view survey reports.\r\n

\r\n\r\ndelete.all.responses.url
\r\nThis URL will delete all of the responses to this survey.\r\n

\r\n\r\ndelete.all.responses.label
\r\nThe default label for delete.all.responses.url.\r\n

\r\n\r\nexport.answers.url
\r\nThe URL to create a tab delimited file containing all of the answers to the questions in this survey.\r\n

\r\n\r\nexport.answers.label
\r\nThe default label for export.answers.url.\r\n

\r\n\r\nexport.questions.url
\r\nThe URL to create a tab delimited file containing all of the questions in this survey.\r\n

\r\n\r\nexport.questions.label
\r\nThe default label for export.questions.url.\r\n

\r\n\r\nexport.responses.url
\r\nThe URL to create a tab delimited file containing all of the responses to the questions in this survey.\r\n

\r\n\r\nexport.responses.label
\r\nThe default label for export.responses.url\r\n

\r\n\r\nexport.composite.url
\r\nThe URL to create a tab delimited file containing a composite view of all of the data in this survey.\r\n

\r\n\r\nexport.composite.label
\r\nThe default label for export.composite.url.\r\n

\r\n\r\nreport.gradebook.url
\r\nThe URL to view the gradebook report for this quiz.\r\n

\r\n\r\nreport.gradebook.label
\r\nThe default label for report.gradebook.url.\r\n

\r\n\r\nreport.overview.url
\r\nThe URL to view statistical overview report for this survey.\r\n

\r\n\r\nreport.overview.label
\r\nThe default label for report.overview.url.\r\n

\r\n\r\nsurvey.url
\r\nThe URL to view the survey. Usually used to get back to the survey after looking at a report.\r\n

\r\n\r\nsurvey.label
\r\nThe default label for survey.url.\r\n

\r\n',1078223067,NULL); INSERT INTO international VALUES (6,'MessageBoard',1,'Edit Message Board',1031514049,NULL); INSERT INTO international VALUES (6,'MessageBoard',4,'Editar Tablero de Mensajes',1065116916,NULL); INSERT INTO international VALUES (6,'MessageBoard',5,'Modificar quadro de mensagens',1031510000,NULL); @@ -1504,29 +1590,20 @@ INSERT INTO international VALUES (6,'SiteMap',1,'Indent',1031514049,NULL); INSERT INTO international VALUES (6,'SiteMap',5,'Destaque',1031510000,NULL); INSERT INTO international VALUES (12,'EventsCalendar',2,'Veranstaltungskalender bearbeiten',1040644246,NULL); INSERT INTO international VALUES (20,'FileManager',3,'Breek pagina af na',1039783664,NULL); -INSERT INTO international VALUES (6,'SQLReport',1,'Database User',1031514049,NULL); -INSERT INTO international VALUES (6,'SQLReport',4,'Usuario de la Base de Datos',1065116966,NULL); -INSERT INTO international VALUES (6,'SQLReport',5,'User da base de dados',1031510000,NULL); +INSERT INTO international VALUES (71,'WSClient',1,'A Web Services Client allows a user to query data from any SOAP server to which they have access. This wobject is in development status and should not be made accessible to un-trusted site administratores.

\n\nSOAP URI/WSDL
\nFrom the SOAP::Lite manpage, \"URIs are just identifiers. They may look like URLs, but they are not guaranteed to point to anywhere and shouldn\'t be used as such pointers. URIs assume to be unique within the space of all XML documents, so consider them as unique identifiers and nothing else.\" If you specify a URI, you probably also need a proxy below. Alternatively, you can specify a WSDL file in place of a URI. This file refers to a real location at which a SOAP service description can be downloaded and used. For our purposes, the file must end in \".wsdl\" to be properly recognized. If you use a WSDL file, you probably don\'t need to specify a proxy.

\n\nSOAP Proxy
\nThe SOAP proxy is the full name of the server and/or script that is listening for SOAP calls. For example:\nhttp://mydomain.com/cgi-bin/soaplistener.pl

\n\nSOAP Method/Call
\nThe SOAP method is the name of the function to be invoked by the SOAP server. Include any extra parameters in the SOAP Call Parameters field below.

\n\nSOAP Call Parameters
\nIf your SOAP call requires any additional parameters, include them here as a valid perl hash, array or scalar. For example: \'userid\' => \'12\', companyid => \'^FormParam(\"companyid\"); Whether you need to use scalar, hash or array is entirely dependent on what your SOAP service expects as input. Likewise, what you get back is entirely dependent on what the service deems to return.\'.

\n\nExecute by default?
\nLeave this set to yes unless your page is calling itself with additional parameters. You will probably know if/when you need to turn off default execution. To force execution when it has been disabled by default, pass a form variable \"targetWobjects\" specifying the name of the SOAP call to force execution.

\n\nTemplate
\nChoose a layout for this SOAP client.

\n\nPreprocess macros on query?
\nIf you\'re using WebGUI macros in your query you\'ll want to check this box.

\n\nPagination After
\nHow many rows should be displayed before splitting the results into separate pages? In other words, how many rows should be displayed per page?

\n\nPagination Variable
\nBecause a SOAP call can return complex data structures, you\'ll need to specify which named variable is to be paginated. If none is specified, no pagination will occur.

\n\nDebug?
\nIf you want to display debugging and error messages on the page, check this box.

\n\nDecode utf8?
\nThis option will only display if you have Data::Structure::Util installed. SOAP calls return utf8 strings even if they may not have utf8 characters within them. This converts utf8 characters to that there aren\'t collisions with any character sets specified in the page header. Deocing is turned off by default, but try turning it on if you see goofy gibberish, especially with the display of copyright symbols and the like.',1033739828,NULL); +INSERT INTO international VALUES (35,'WSClient',1,'Debug: No template specified, using default.',1033575504,NULL); INSERT INTO international VALUES (10,'HttpProxy',1,'HTTP Proxy, Add/Edit',1047858432,NULL); -INSERT INTO international VALUES (12,'LinkList',2,'Link bearbeiten',1040644982,NULL); +INSERT INTO international VALUES (90,'USS',2,'Link bearbeiten',1040644982,NULL); INSERT INTO international VALUES (19,'FileManager',3,'U heeft geen bestanden beschikbaar.',1039741230,NULL); INSERT INTO international VALUES (6,'USS',1,'Submissions Per Page',1031514049,NULL); INSERT INTO international VALUES (6,'USS',4,'Contribuciones por Página',1065116975,NULL); INSERT INTO international VALUES (6,'USS',5,'Submissões por página',1031510000,NULL); -INSERT INTO international VALUES (6,'WebGUI',1,'Manage styles.',1031514049,NULL); -INSERT INTO international VALUES (6,'WebGUI',4,'Gestionar estilos.',1065273383,NULL); -INSERT INTO international VALUES (6,'WebGUI',5,'Organizar estilos.',1031510000,NULL); INSERT INTO international VALUES (18,'FileManager',3,'Alternatieve Versie #2',1038487540,NULL); INSERT INTO international VALUES (7,'Article',1,'Link Title',1031514049,NULL); INSERT INTO international VALUES (7,'Article',4,'Título del Enlace',1065117036,NULL); INSERT INTO international VALUES (7,'Article',5,'Titulo da hiperlink',1031510000,NULL); INSERT INTO international VALUES (2,'SiteMap',6,'Innehållskarta',1050403252,NULL); INSERT INTO international VALUES (2,'MessageBoard',6,'Meddelandeforum',1031650036,NULL); -INSERT INTO international VALUES (7,'FAQ',1,'Are you certain that you want to delete this question?',1031514049,NULL); -INSERT INTO international VALUES (7,'FAQ',4,'Está seguro de querer eliminar esta pregunta?',1065117088,NULL); -INSERT INTO international VALUES (7,'FAQ',5,'Tem a certeza que quer apagar esta questão?',1031510000,NULL); -INSERT INTO international VALUES (2,'Item',6,'Bilagor',1031510000,NULL); -INSERT INTO international VALUES (2,'FAQ',6,'F.A.Q.',1031510000,NULL); INSERT INTO international VALUES (17,'FileManager',3,'Alternatieve Versie #1',1038487532,NULL); INSERT INTO international VALUES (1061,'WebGUI',1,'These are the template variables for the thread template.\r\n

\r\n\r\ncallback.url
\r\nThe url to the calling object such as an article or a user submission.\r\n

\r\n\r\ncallback.label
\r\nThe default label for callback.url\r\n

\r\n\r\nuser.canpost
\r\nA condition indicating whether the current user can post a new message.\r\n

\r\n\r\nuser.isVisitor
\r\nA condition indicating whether the current user is a visitor.\r\n

\r\n\r\nuser.isModerator
\r\nA condition indicating whether the current user is a moderator.\r\n

\r\n\r\nuser.isSubscribed
\r\nA condition indicating whether the current user is subscribed to this thread.\r\n

\r\n\r\nthread.layout.nested.label
\r\nThe default label for thread.layout.nested.url.\r\n

\r\n\r\nthread.layout.nested.url
\r\nA url that will change the layout of the thread to nested.\r\n

\r\n\r\nthread.layout.flat.url
\r\nA url that will change the layout of the thread to flat.\r\n

\r\n\r\nthread.layout.flat.label
\r\nThe default label for thread.layout.flat.url.\r\n

\r\n\r\nthread.layout.threaded.label
\r\nThe default label for thread.layout.threaded.url.\r\n

\r\n\r\nthread.layout.threaded.url
\r\nA url that will change the layout of the thread to threaded.\r\n

\r\n\r\nthread.layout.isThreaded
\r\nA condition indicating whether the thread layout is threaded.\r\n

\r\n\r\nthread.layout.isNested
\r\nA condition indicationg whether the thread layout is nested.\r\n

\r\n\r\nthread.layout.isFlat
\r\nA condition indicationg whether the thread layout is flat.\r\n

\r\n\r\nthread.subscribe.url
\r\nA url that will subscribe the current user to this thread.\r\n

\r\n\r\nthread.subscribe.label
\r\nThe default label for thread.subscribe.url.\r\n

\r\n\r\nthread.unsubscribe.url
\r\nA url that will unsubscribe the current user from this thread.\r\n

\r\n\r\nthread.unsubscribe.label
\r\nThe default label for thread.unsubscribe.url.\r\n

\r\n\r\nthread.isSticky
\r\nA condition indicating whether the thread is sticky.\r\n

\r\n\r\nthread.stick.url
\r\nA url that will make this thread sticky.\r\n

\r\n\r\nthread.stick.label
\r\nThe default label for thread.stick.url.\r\n

\r\n\r\nthread.unstick.url
\r\nA url that will make a sticky thread unstick.\r\n

\r\n\r\nthread.unstick.label
\r\nThe default label for thread.unstick.url.\r\n

\r\n\r\nthread.isLocked
\r\nA condition indicating whether this thread is locked.\r\n

\r\n\r\nthread.lock.url
\r\nA url that will lock this thread.\r\n

\r\n\r\nthread.lock.label
\r\nThe default label for thread.lock.url.\r\n

\r\n\r\nthread.unlock.url
\r\nA url that will unlock this thread.\r\n

\r\n\r\nthread.unlock.label
\r\nThe default label for thread.unlock.url.\r\n

\r\n\r\npost_loop
\r\nA loop containing all the posts in this thread.\r\n

\r\n\r\n

\r\n\r\npost.indent_loop
\r\nA loop to be used for indenting.\r\n

\r\n

\r\ndepth
\r\nAn integer indicating the depth. Not really useful, just hear to fill out the loop.\r\n
\r\n

\r\n\r\npost.indent.depth
\r\nAn integer indicating how many levels deep this post is.\r\n

\r\n\r\npost.isCurrent
\r\nA condition indicating whether this post is the one selected for viewing by the user.\r\n

\r\n\r\nNOTE: All of the variables from the post template are also available here.\r\n\r\n

\r\n\r\n

\r\n\r\nthread.subject.label
\r\nThe default label for subjects.\r\n

\r\n\r\nthread.date.label
\r\nThe default label for dates.\r\n

\r\n\r\nthread.user.label
\r\nThe default label for authors.\r\n

\r\n\r\nthread.new.url
\r\nA url to create a new url.\r\n

\r\n\r\nthread.new.label
\r\nThe default label for thread.new.url.\r\n

\r\n\r\nthread.previous.url
\r\nA url that will display the previous thread.\r\n

\r\n\r\nthread.previous.label
\r\nThe default label for thread.previous.url.\r\n

\r\n\r\nthread.next.url
\r\nA url that will display the next thread.\r\n

\r\n\r\nthread.next.label
\r\nThe default label for thread.next.url.\r\n

\r\n\r\nthread.list.url\r\nA url to take the user back to the thread list (aka the forum).\r\n

\r\n\r\nthread.list.label
\r\nThe default label for thread.list.url.\r\n

\r\n\r\nforum.title
\r\nThe title of this forum as passed by the calling object.\r\n

\r\n\r\nforum.description
\r\nThe description of this forum as passed by the calling object.\r\n

\r\n\r\n',1068919471,NULL); INSERT INTO international VALUES (12,'SQLReport',2,'Fehler: Datenbankverbindung konnte nicht aufgebaut werden.',1040649187,NULL); @@ -1534,9 +1611,7 @@ INSERT INTO international VALUES (7,'Poll',1,'Answers',1031514049,NULL); INSERT INTO international VALUES (7,'Poll',4,'Respuestas',1065117069,NULL); INSERT INTO international VALUES (7,'Poll',5,'Respostas',1031510000,NULL); INSERT INTO international VALUES (16,'FileManager',3,'Upload datum',1038487525,NULL); -INSERT INTO international VALUES (7,'SQLReport',1,'Database Password',1031514049,NULL); -INSERT INTO international VALUES (7,'SQLReport',4,'Contraseña de la Base de Datos',1065117063,NULL); -INSERT INTO international VALUES (7,'SQLReport',5,'Password da base de dados',1031510000,NULL); +INSERT INTO international VALUES (1080,'WebGUI',1,'Use admin style?',1073161583,'A label asking the user if they want to use a seperate admin style from the main page style.'); INSERT INTO international VALUES (15,'FileManager',3,'Beschrijving',1038487513,NULL); INSERT INTO international VALUES (560,'WebGUI',1,'Approved',1031514049,NULL); INSERT INTO international VALUES (560,'WebGUI',4,'Aprobado',1065306931,NULL); @@ -1551,13 +1626,10 @@ INSERT INTO international VALUES (8,'Article',5,'URL da hiperlink',1031510000,NU INSERT INTO international VALUES (8,'EventsCalendar',1,'Recurs every',1031514049,NULL); INSERT INTO international VALUES (8,'EventsCalendar',4,'Se repite cada',1065117127,NULL); INSERT INTO international VALUES (8,'EventsCalendar',5,'Repetição',1031510000,NULL); -INSERT INTO international VALUES (8,'FAQ',1,'Edit F.A.Q.',1031514049,NULL); -INSERT INTO international VALUES (8,'FAQ',4,'Editar F.A.Q.',1065117233,NULL); -INSERT INTO international VALUES (8,'FAQ',5,'Modificar perguntas mais frequentes',1031510000,NULL); INSERT INTO international VALUES (12,'FileManager',3,'Weet u zeker dat u dit bestand wilt verwijderen?',1039741211,NULL); -INSERT INTO international VALUES (8,'LinkList',1,'URL',1031514049,NULL); -INSERT INTO international VALUES (8,'LinkList',4,'URL',1065117229,NULL); -INSERT INTO international VALUES (8,'LinkList',5,'URL',1031510000,NULL); +INSERT INTO international VALUES (91,'USS',1,'URL',1031514049,NULL); +INSERT INTO international VALUES (91,'USS',4,'URL',1065117229,NULL); +INSERT INTO international VALUES (91,'USS',5,'URL',1031510000,NULL); INSERT INTO international VALUES (12,'USS',2,'(Bitte deaktivieren, wenn Ihr Beitrag in HTML geschrieben ist)',1040649805,NULL); INSERT INTO international VALUES (11,'FileManager',3,'Nieuw bestand toevoegen',1039741190,NULL); INSERT INTO international VALUES (8,'Poll',1,'(Enter one answer per line. No more than 20.)',1031514049,NULL); @@ -1584,22 +1656,17 @@ INSERT INTO international VALUES (9,'EventsCalendar',4,'hasta',1065117302,NULL); INSERT INTO international VALUES (9,'EventsCalendar',5,'até',1031510000,NULL); INSERT INTO international VALUES (13,'Article',2,'Löschen',1040597823,NULL); INSERT INTO international VALUES (7,'FileManager',3,'Groep die mag downloaden',1038487619,NULL); -INSERT INTO international VALUES (9,'FAQ',1,'Add a new question.',1031514049,NULL); -INSERT INTO international VALUES (9,'FAQ',4,'Agregar una nueva pregunta.',1065117362,NULL); -INSERT INTO international VALUES (9,'FAQ',5,'Adicionar nova questão.',1031510000,NULL); +INSERT INTO international VALUES (83,'USS',1,'Add a new question.',1031514049,NULL); +INSERT INTO international VALUES (83,'USS',4,'Agregar una nueva pregunta.',1065117362,NULL); +INSERT INTO international VALUES (83,'USS',5,'Adicionar nova questão.',1031510000,NULL); INSERT INTO international VALUES (728,'WebGUI',1,'Are you certain you wish to delete this file?',1031514049,NULL); INSERT INTO international VALUES (6,'FileManager',3,'Bestand',1039741252,NULL); -INSERT INTO international VALUES (9,'LinkList',1,'Are you certain that you want to delete this link?',1031514049,NULL); -INSERT INTO international VALUES (9,'LinkList',4,'Está seguro de querer eliminar este enlace?',1065117350,NULL); -INSERT INTO international VALUES (9,'LinkList',5,'Tem a certeza que quer apagar esta hiperlink?',1031510000,NULL); INSERT INTO international VALUES (5,'FileManager',3,'Bestandstitel',1038487583,NULL); INSERT INTO international VALUES (9,'Poll',1,'Edit Poll',1031514049,NULL); INSERT INTO international VALUES (9,'Poll',4,'Editar Encuesta',1065117337,NULL); INSERT INTO international VALUES (9,'Poll',5,'Modificar sondagem',1031510000,NULL); INSERT INTO international VALUES (3,'FileManager',3,'Doorgaan met bestand toevoegen?',1038487572,NULL); -INSERT INTO international VALUES (9,'SQLReport',1,'Debug: Error: The DSN specified is of an improper format.',1031514049,NULL); -INSERT INTO international VALUES (9,'SQLReport',4,'Error: El DSN especificado está en un formato incorrecto.',1065117331,NULL); -INSERT INTO international VALUES (9,'SQLReport',5,'Erro: O DSN especificado tem um formato impróprio.',1031510000,NULL); +INSERT INTO international VALUES (8,'Auth/WebGUI',1,'Your Password Has Expired',1071507773,''); INSERT INTO international VALUES (13,'EventsCalendar',2,'Veranstaltung bearbeiten',1040644259,NULL); INSERT INTO international VALUES (562,'WebGUI',1,'Pending',1031514049,NULL); INSERT INTO international VALUES (562,'WebGUI',4,'Pendiente',1065306960,NULL); @@ -1611,15 +1678,12 @@ INSERT INTO international VALUES (9,'WebGUI',5,'Ver o clipboard.',1031510000,NUL INSERT INTO international VALUES (10,'Article',1,'Convert carriage returns?',1031514049,NULL); INSERT INTO international VALUES (10,'Article',4,'Convertir saltos de línea?',1039818142,NULL); INSERT INTO international VALUES (10,'Article',5,'Converter o caracter de retorno (CR) ?',1031510000,NULL); -INSERT INTO international VALUES (13,'LinkList',2,'Neuen Link hinzufügen',1040644996,NULL); +INSERT INTO international VALUES (89,'USS',2,'Neuen Link hinzufügen',1040644996,NULL); INSERT INTO international VALUES (577,'WebGUI',2,'Antworten',1041629793,NULL); INSERT INTO international VALUES (28,'Article',3,'Bekijk reacties',1037903267,NULL); -INSERT INTO international VALUES (10,'FAQ',1,'Edit Question',1031514049,NULL); -INSERT INTO international VALUES (10,'FAQ',4,'Editar Pregunta',1065117542,NULL); -INSERT INTO international VALUES (10,'FAQ',5,'Modificar questão',1031510000,NULL); -INSERT INTO international VALUES (10,'LinkList',1,'Edit Link List',1031514049,NULL); -INSERT INTO international VALUES (10,'LinkList',4,'Editar Lista de Enlaces',1065117537,NULL); -INSERT INTO international VALUES (10,'LinkList',5,'Modificar lista de hiperlinks',1031510000,NULL); +INSERT INTO international VALUES (84,'USS',1,'Edit Question',1031514049,NULL); +INSERT INTO international VALUES (84,'USS',4,'Editar Pregunta',1065117542,NULL); +INSERT INTO international VALUES (84,'USS',5,'Modificar questão',1031510000,NULL); INSERT INTO international VALUES (394,'WebGUI',2,' Verwalten: Uploads',1040640559,NULL); INSERT INTO international VALUES (6,'Article',10,'Billede',1031510000,NULL); INSERT INTO international VALUES (4,'Article',10,'Til dato',1031510000,NULL); @@ -1674,9 +1738,9 @@ INSERT INTO international VALUES (354,'WebGUI',3,'Bekijk berichten log.',1038529 INSERT INTO international VALUES (12,'EventsCalendar',1,'Edit Events Calendar',1031514049,NULL); INSERT INTO international VALUES (12,'EventsCalendar',4,'Editar Calendario de Eventos',1065170468,NULL); INSERT INTO international VALUES (12,'EventsCalendar',5,'Modificar calendário de eventos',1031510000,NULL); -INSERT INTO international VALUES (12,'LinkList',1,'Edit Link',1031514049,NULL); -INSERT INTO international VALUES (12,'LinkList',4,'Editar Enlace',1065170576,NULL); -INSERT INTO international VALUES (12,'LinkList',5,'Modificar hiperlink',1031510000,NULL); +INSERT INTO international VALUES (90,'USS',1,'Edit Link',1031514049,NULL); +INSERT INTO international VALUES (90,'USS',4,'Editar Enlace',1065170576,NULL); +INSERT INTO international VALUES (90,'USS',5,'Modificar hiperlink',1031510000,NULL); INSERT INTO international VALUES (353,'WebGUI',3,'U heeft nu geen berichten log toevoegingen.',1038529844,NULL); INSERT INTO international VALUES (807,'WebGUI',1,'Manage the groups in this group.',1037579473,NULL); INSERT INTO international VALUES (352,'WebGUI',3,'Datum van toevoeging',1038529833,NULL); @@ -1702,9 +1766,9 @@ INSERT INTO international VALUES (13,'EventsCalendar',1,'Edit Event',1031514049, INSERT INTO international VALUES (13,'EventsCalendar',4,'Editar Evento',1065170588,NULL); INSERT INTO international VALUES (13,'EventsCalendar',5,'Modificar evento',1031510000,NULL); INSERT INTO international VALUES (387,'WebGUI',2,'Upload von',1040399607,NULL); -INSERT INTO international VALUES (13,'LinkList',1,'Add a new link.',1031514049,NULL); -INSERT INTO international VALUES (13,'LinkList',4,'Añadir un nuevo enlace.',1065170673,NULL); -INSERT INTO international VALUES (13,'LinkList',5,'Adicionar nova hiperlink.',1031510000,NULL); +INSERT INTO international VALUES (89,'USS',1,'Add a new link.',1031514049,NULL); +INSERT INTO international VALUES (89,'USS',4,'Añadir un nuevo enlace.',1065170673,NULL); +INSERT INTO international VALUES (89,'USS',5,'Adicionar nova hiperlink.',1031510000,NULL); INSERT INTO international VALUES (385,'WebGUI',2,'Parameter',1041631959,NULL); INSERT INTO international VALUES (347,'WebGUI',3,'Bekijk profiel van',1038529785,NULL); INSERT INTO international VALUES (577,'WebGUI',1,'Post Reply',1031514049,NULL); @@ -1743,7 +1807,6 @@ INSERT INTO international VALUES (341,'WebGUI',3,'Bewerk profiel.',1038529738,NU INSERT INTO international VALUES (16,'USS',1,'Untitled',1031514049,NULL); INSERT INTO international VALUES (16,'USS',4,'Sin título',1065170746,NULL); INSERT INTO international VALUES (16,'USS',5,'Sem titulo',1031510000,NULL); -INSERT INTO international VALUES (380,'WebGUI',2,'Style ID',1040596050,NULL); INSERT INTO international VALUES (340,'WebGUI',3,'Vrouw',1038529731,NULL); INSERT INTO international VALUES (16,'WebGUI',1,'February',1031514049,NULL); INSERT INTO international VALUES (16,'WebGUI',4,'Febrero',1065170741,NULL); @@ -1847,15 +1910,13 @@ INSERT INTO international VALUES (320,'WebGUI',3,'Yahoo! Messenger Id',1067289786,NULL); INSERT INTO international VALUES (105,'WebGUI',3,'Layout',1063589926,NULL); INSERT INTO international VALUES (106,'WebGUI',3,'Vink \"Ja\" aan om deze stijl in alle onderliggende pagina\'s te gebruiken.',1038528461,NULL); -INSERT INTO international VALUES (155,'WebGUI',1,'Are you certain you wish to delete this style and migrate all pages using this style to the \"Fail Safe\" style?',1031514049,NULL); -INSERT INTO international VALUES (155,'WebGUI',4,'Está seguro de querer eliminar este estilo y migrar todas la páginas que lo usen al estilo \"Fail Safe\"?',1065304337,NULL); -INSERT INTO international VALUES (155,'WebGUI',5,'\"Tem a certeza que quer apagar este estilo e migrar todas as páginas para o estilo \"\"Fail Safe\"\"?\"',1031510000,NULL); -INSERT INTO international VALUES (156,'WebGUI',1,'Edit Style',1031514049,NULL); -INSERT INTO international VALUES (156,'WebGUI',4,'Editar Estilo',1065304345,NULL); -INSERT INTO international VALUES (156,'WebGUI',5,'Modificar estilo',1031510000,NULL); INSERT INTO international VALUES (104,'WebGUI',3,'Pagina URL',1038528420,NULL); -INSERT INTO international VALUES (157,'WebGUI',1,'Styles',1031514049,NULL); -INSERT INTO international VALUES (157,'WebGUI',4,'Estilos',1065304351,NULL); -INSERT INTO international VALUES (157,'WebGUI',5,'Estilos',1031510000,NULL); INSERT INTO international VALUES (103,'WebGUI',3,'Pagina eigenschappen',1063589913,NULL); -INSERT INTO international VALUES (158,'WebGUI',1,'Add a new style.',1031514049,NULL); -INSERT INTO international VALUES (158,'WebGUI',4,'Añadir un estilo nuevo.',1065304586,NULL); -INSERT INTO international VALUES (158,'WebGUI',5,'Adicionar novo estilo.',1031510000,NULL); INSERT INTO international VALUES (102,'WebGUI',3,'Bewerk pagina',1038528401,NULL); INSERT INTO international VALUES (471,'WebGUI/Profile',10,'Rediger bruger profil felt',1031510000,NULL); INSERT INTO international VALUES (159,'WebGUI',4,'Correo Entrante',1065304912,NULL); @@ -2553,27 +2583,23 @@ INSERT INTO international VALUES (361,'WebGUI',1,'Three Over One',1031514049,NUL INSERT INTO international VALUES (362,'WebGUI',1,'SideBySide',1031514049,NULL); INSERT INTO international VALUES (363,'WebGUI',1,'Page Template Position',1034736999,NULL); INSERT INTO international VALUES (364,'WebGUI',1,'Search',1031514049,NULL); -INSERT INTO international VALUES (365,'WebGUI',1,'Search results...',1031514049,NULL); -INSERT INTO international VALUES (366,'WebGUI',1,'No pages were found with content that matched your query.',1031514049,NULL); INSERT INTO international VALUES (368,'WebGUI',1,'Add a new group to this user.',1031514049,NULL); INSERT INTO international VALUES (369,'WebGUI',1,'Expire Date',1031514049,NULL); INSERT INTO international VALUES (370,'WebGUI',1,'Edit Grouping',1031514049,NULL); INSERT INTO international VALUES (371,'WebGUI',1,'Add Grouping',1031514049,NULL); INSERT INTO international VALUES (372,'WebGUI',1,'Edit User\'s Groups',1031514049,NULL); INSERT INTO international VALUES (374,'WebGUI',1,'Manage packages.',1031514049,NULL); -INSERT INTO international VALUES (375,'WebGUI',1,'Select Package To Deploy',1031514049,NULL); +INSERT INTO international VALUES (7,'Navigation',1,'my daughter\'s level (./page)',1077078687,'Option of \"Base page\"'); INSERT INTO international VALUES (376,'WebGUI',1,'Package',1031514049,NULL); -INSERT INTO international VALUES (377,'WebGUI',1,'No packages have been defined by your package manager(s) or administrator(s).',1031514049,NULL); +INSERT INTO international VALUES (12,'Navigation',1,'self and descendants',1077079020,'Option on question \"return a loop with\"'); INSERT INTO international VALUES (11,'Poll',1,'Vote!',1031514049,NULL); INSERT INTO international VALUES (31,'USS',1,'Content',1031514049,NULL); INSERT INTO international VALUES (32,'USS',1,'Image',1031514049,NULL); INSERT INTO international VALUES (33,'USS',1,'Attachment',1031514049,NULL); -INSERT INTO international VALUES (34,'USS',1,'Convert Carriage Returns',1031514049,NULL); INSERT INTO international VALUES (35,'USS',1,'Title',1031514049,NULL); INSERT INTO international VALUES (71,'DataForm',21,'ðÒÉ ÐÏÍÏÝÉ ÜÔÏÇÏ ÍÏÄÕÌÑ ÍÏÖÎÏ ÓÏÚÄÁÔØ ÐÒÏÓÔÕÀ ÆÏÒÍÕ ÏÔÐÒÁ×ÌÑÅÍÕÀ ÐÏ e-mail.\r\n

\r\nûÉÒÉÎÁ
\r\n÷×ÅÄÉÔÅ ÛÉÒÉÎÕ ×ÓÅÈ ÐÏÌÅÊ ÆÏÒÍÙ. ðÏ ÕÍÏÌÞÁÎÉÀ ÉÓÐÏÌØÚÕÅÔÓÑ ÚÎÁÞÅÎÉÅ 45.\r\n

\r\nïÔ, ëÏÍÕ, Cc, Bcc, ôÅÍÁ
\r\n÷ ÜÔÉÈ ÐÏÌÑÈ ÎÁÄÏ ××ÅÓÔÉ email ÐÏÌÕÞÁÔÅÌÑ. ÷Ù ÍÏÖÅÔÅ ÄÁÔØ ÐÏÌØÚÏ×ÁÔÅÌÑÍ ×ÏÚÍÏÖÎÏÓÔØ ÉÚÍÅÎÉÔØ ÎÅËÏÔÏÒÙÅ ÉÌÉ ×ÓÅ ÐÏÌÑ, ÎÏ ÏÂÙÞÎÏ ÉÚÍÅÎÑÅÍÙÍÉ ÐÏÌÑÍÉ Ñ×ÌÑÀÔÓÑ ÐÏÌÑ \"ïÔ\" É \"ôÅÍÁ\". ó ÐÏÍÏÝØÀ ×ÙÐÁÄÁÀÝÅÇÏ ÍÅÎÀ ×Ù ÍÏÖÅÔÅ ÚÁÄÁÔØ ÄÌÑ ËÁÖÄÏÇÏ ÐÏÌÑ, ÉÍÅÅÔ ÌÉ ÐÒÁ×Ï ÐÏÌØÚÏ×ÁÔÅÌØ ÅÇÏ ÍÅÎÑÔØ ÉÌÉ ÎÅÔ.\r\n

\r\nðÏÄÔ×ÅÒÖÄÅÎÉÅ
\r\nüÔÏ ÓÏÏÂÝÅÎÉÅ ÂÕÄÅÔ ÏÔÏÂÒÁÖÅÎÏ ÐÏÓÌÅ ÎÁÖÁÔÉÑ ÎÁ ËÎÏÐËÕ \"ðÏÓÌÁÔØ\".\r\n

\r\nóÏÈÒÁÎÉÔØ ÚÁÐÉÓÉ?
\r\nåÓÌÉ ×Ù ×ÙÂÅÒÉÔÅ \"äÁ\", ÔÏ ÚÁÐÏÌÎÅÎÎÙÅ ÐÏÌÑ ÆÏÒÍÙ ÂÕÄÕÔ ÓÏÈÒÁÎÅÎÙ.\r\n

\r\näÏÂÁ×ÉÔØ ÅÝÅ ÏÄÎÏ ÐÏÌÅ?
\r\nåÓÌÉ ×Ù ÈÏÔÉÔÅ ÓÒÁÚÕ ÄÏÂÁ×ÉÔØ ÎÏ×ÏÅ ÐÏÌÅ, ÔÏ ×ÙÂÅÒÉÔÅ \"äÁ\".',1041689302,NULL); INSERT INTO international VALUES (378,'WebGUI',1,'User ID',1031514049,NULL); INSERT INTO international VALUES (379,'WebGUI',1,'Group ID',1031514049,NULL); -INSERT INTO international VALUES (380,'WebGUI',1,'Style ID',1031514049,NULL); INSERT INTO international VALUES (381,'WebGUI',1,'WebGUI received a malformed request and was unable to continue. Proprietary characters being passed through a form typically cause this. Please feel free to hit your back button and try again.',1031514049,NULL); INSERT INTO international VALUES (1,'FileManager',1,'File Manager',1038028463,NULL); INSERT INTO international VALUES (90,'EventsCalendar',1,'Default Month',1038190708,NULL); @@ -2593,7 +2619,7 @@ INSERT INTO international VALUES (16,'FileManager',1,'Date Uploaded',1031514049, INSERT INTO international VALUES (766,'WebGUI',1,'Back to collateral list.',1036892898,NULL); INSERT INTO international VALUES (770,'WebGUI',1,'Edit Snippet',1036893050,NULL); INSERT INTO international VALUES (37,'USS',1,'Delete',1031514049,NULL); -INSERT INTO international VALUES (13,'SQLReport',1,'Convert carriage returns?',1031514049,NULL); +INSERT INTO international VALUES (83,'Survey',1,'Questions Per Page',1075639327,'Ask the user how many questions should be displayed per page on the survey.'); INSERT INTO international VALUES (17,'FileManager',1,'Alternate Version #1',1031514049,NULL); INSERT INTO international VALUES (18,'FileManager',1,'Alternate Version #2',1031514049,NULL); INSERT INTO international VALUES (19,'FileManager',1,'You have no files available.',1038882995,NULL); @@ -2615,7 +2641,6 @@ INSERT INTO international VALUES (394,'WebGUI',1,'Manage collateral.',1036954925 INSERT INTO international VALUES (395,'WebGUI',1,'Add a new image.',1031514049,NULL); INSERT INTO international VALUES (723,'WebGUI',10,'Undertrykt',1036855601,NULL); INSERT INTO international VALUES (715,'WebGUI',10,'Rediriger URL',1036855743,NULL); -INSERT INTO international VALUES (398,'WebGUI',1,'Document Type Declaration',1031514049,NULL); INSERT INTO international VALUES (399,'WebGUI',1,'Validate this page.',1031514049,NULL); INSERT INTO international VALUES (400,'WebGUI',1,'Prevent Proxy Caching',1031514049,NULL); INSERT INTO international VALUES (401,'WebGUI',1,'Are you certain you wish to delete this message and all messages under it in this thread?',1031514049,NULL); @@ -2647,14 +2672,8 @@ INSERT INTO international VALUES (163,'WebGUI',2,'Benutzer hinzufügen',1041 INSERT INTO international VALUES (162,'WebGUI',2,'Sind Sie sicher, dass Sie alle Seiten und Wobjects im Mülleimer löschen möchten?',1040647879,NULL); INSERT INTO international VALUES (160,'WebGUI',2,'Erstellungsdatum',1041610945,NULL); INSERT INTO international VALUES (161,'WebGUI',2,'Erstellt von',1041610954,NULL); -INSERT INTO international VALUES (158,'WebGUI',2,'Neuen Style hinzufügen.',1040596030,NULL); INSERT INTO international VALUES (506,'WebGUI',1,'Manage Templates',1031514049,NULL); INSERT INTO international VALUES (159,'WebGUI',2,'Ausstehende Beiträge',1041610285,NULL); -INSERT INTO international VALUES (157,'WebGUI',2,'Styles',1040596005,NULL); -INSERT INTO international VALUES (156,'WebGUI',2,'Style bearbeiten',1040595987,NULL); -INSERT INTO international VALUES (155,'WebGUI',2,'Sind Sie sicher, dass Sie diesen Style löschen möchten? Beachten Sie, dass alle Seiten, die diesen Style benutzen, auf den Style \"Fail Safe\" umgestellt werden.',1040595965,NULL); -INSERT INTO international VALUES (154,'WebGUI',2,'Style Sheet',1041610928,NULL); -INSERT INTO international VALUES (151,'WebGUI',2,'Style Name',1040595820,NULL); INSERT INTO international VALUES (149,'WebGUI',2,'Benutzer',1041610918,NULL); INSERT INTO international VALUES (146,'WebGUI',2,'Aktive Sitzungen',1041610873,NULL); INSERT INTO international VALUES (148,'WebGUI',2,'Wobjects',1045392042,NULL); @@ -2736,7 +2755,9 @@ INSERT INTO international VALUES (58,'USS',1,'Previous Submission',1031514049,NU INSERT INTO international VALUES (76,'MessageBoard',1,'Are you certain you wish to delete this forum and all the posts it contains?',1066055963,'A question prompting the admin whether they truely want to delete a forum from a message board.'); INSERT INTO international VALUES (28,'Article',1,'View Responses',1031514049,NULL); INSERT INTO international VALUES (55,'Product',1,'Add a benefit.',1031514049,NULL); -INSERT INTO international VALUES (416,'WebGUI',1,'

Problem With Request

We have encountered a problem with your request. Please use your back button and try again. If this problem persists, please contact us with what you were trying to do and the time and date of the problem.',1031514049,NULL); +INSERT INTO international VALUES (61,'USS',16,'System zg³aszania propozycji, Dodawanie/Edycja',1076558715,NULL); +INSERT INTO international VALUES (61,'SyndicatedContent',16,'Kana³y informacji, Dodawanie/Edycja',1076558688,NULL); +INSERT INTO international VALUES (72,'SiteMap',16,'Szablon spisu tre¶ci',1076558663,NULL); INSERT INTO international VALUES (417,'WebGUI',1,'

Security Violation

You attempted to access a wobject not associated with this page. This incident has been reported.',1031514049,NULL); INSERT INTO international VALUES (418,'WebGUI',1,'Filter Content',1046604931,NULL); INSERT INTO international VALUES (420,'WebGUI',1,'Remove nothing.',1046637549,NULL); @@ -2796,8 +2817,6 @@ INSERT INTO international VALUES (37,'USS',2,'Löschen',1040649997,NULL); INSERT INTO international VALUES (36,'WebGUI',2,'Um diese Funktion ausführen zu können, müssen Sie Administrator sein. Bitte nehmen Sie Kontakt mit einem Ihrer Administratoren auf.',1058172207,NULL); INSERT INTO international VALUES (35,'WebGUI',2,'Administrative Funktion',1041628286,NULL); INSERT INTO international VALUES (35,'USS',2,'Titel',1040639629,NULL); -INSERT INTO international VALUES (34,'WebGUI',2,'Datum setzen',1041628390,NULL); -INSERT INTO international VALUES (34,'USS',2,'Carriage Return beachten?',1040649988,NULL); INSERT INTO international VALUES (33,'WebGUI',2,'Samstag',1041611459,NULL); INSERT INTO international VALUES (32,'WebGUI',2,'Freitag',1041611445,NULL); INSERT INTO international VALUES (33,'USS',2,'Anhang',1040639638,NULL); @@ -2833,13 +2852,12 @@ INSERT INTO international VALUES (4,'EventsCalendar',6,'Intr INSERT INTO international VALUES (20,'WebGUI',2,'Juni',1041610842,NULL); INSERT INTO international VALUES (20,'USS',2,'Neuen Beitrag schreiben',1040649897,NULL); INSERT INTO international VALUES (1017,'WebGUI',2,'Letzte Antwort',1040646685,NULL); -INSERT INTO international VALUES (4,'Item',6,'Post',1031510000,NULL); INSERT INTO international VALUES (4,'SQLReport',6,'Query',1031510000,NULL); INSERT INTO international VALUES (20,'FileManager',2,'Einträge pro Seite',1041594596,NULL); INSERT INTO international VALUES (19,'WebGUI',2,'Mai',1041607729,NULL); INSERT INTO international VALUES (19,'USS',2,'Beitrag bearbeiten',1040649874,NULL); INSERT INTO international VALUES (1016,'WebGUI',2,'Antworten',1040646664,NULL); -INSERT INTO international VALUES (5,'FAQ',6,'Fråga',1031510000,NULL); +INSERT INTO international VALUES (85,'USS',6,'Fråga',1031510000,NULL); INSERT INTO international VALUES (19,'EventsCalendar',2,'Einträge pro Seite',1041594657,NULL); INSERT INTO international VALUES (19,'FileManager',2,'Sie besitzen keine Dateien, die zum Download bereitstehen.',1040644770,NULL); INSERT INTO international VALUES (18,'WebGUI',2,'April',1041607719,NULL); @@ -2871,7 +2889,6 @@ INSERT INTO international VALUES (14,'FileManager',2,'Datei',1040644713,NULL); INSERT INTO international VALUES (762,'WebGUI',1,'Add a file.',1036892774,NULL); INSERT INTO international VALUES (13,'WebGUI',2,'Anschauen: Hilfe',1040640807,NULL); INSERT INTO international VALUES (13,'USS',2,'Erstellungsdatum',1040649817,NULL); -INSERT INTO international VALUES (13,'SQLReport',2,'Carriage Return beachten?',1040649235,NULL); INSERT INTO international VALUES (439,'WebGUI',1,'Personal Information',1031514049,NULL); INSERT INTO international VALUES (440,'WebGUI',1,'Contact Information',1031514049,NULL); INSERT INTO international VALUES (441,'WebGUI',1,'Email To Pager Gateway',1031514049,NULL); @@ -2935,46 +2952,37 @@ INSERT INTO international VALUES (499,'WebGUI',1,'Wobject ID',1031514049,NULL); INSERT INTO international VALUES (500,'WebGUI',1,'Page ID',1031514049,NULL); INSERT INTO international VALUES (5,'Poll',6,'Bredd på staplar',1031650849,NULL); INSERT INTO international VALUES (5,'SiteMap',6,'Redigera innehållskartan',1050403176,NULL); -INSERT INTO international VALUES (5,'SQLReport',6,'DSN',1031510000,NULL); INSERT INTO international VALUES (5,'USS',6,'Ditt meddelande har blivit nekat validering.',1031648653,NULL); INSERT INTO international VALUES (5,'WebGUI',6,'Hantera grupper.',1047894338,NULL); INSERT INTO international VALUES (6,'Article',6,'Bild',1031510000,NULL); INSERT INTO international VALUES (701,'WebGUI',6,'veckor',1050402859,NULL); -INSERT INTO international VALUES (6,'ExtraColumn',6,'Lägg till extra column',1031510000,NULL); -INSERT INTO international VALUES (6,'FAQ',6,'Svar',1031510000,NULL); -INSERT INTO international VALUES (6,'LinkList',6,'Länklista',1032257336,NULL); +INSERT INTO international VALUES (86,'USS',6,'Svar',1031510000,NULL); INSERT INTO international VALUES (6,'MessageBoard',6,'Redigera Meddelande Forum',1031510000,NULL); INSERT INTO international VALUES (6,'Poll',6,'Fråga',1031510000,NULL); INSERT INTO international VALUES (6,'SiteMap',6,'Indentering',1031510000,NULL); -INSERT INTO international VALUES (6,'SQLReport',6,'Databas användare',1031651366,NULL); INSERT INTO international VALUES (6,'USS',6,'Inlägg per sida',1031510000,NULL); -INSERT INTO international VALUES (6,'WebGUI',6,'Hantera stilar.',1047894359,NULL); INSERT INTO international VALUES (7,'Article',6,'Länktitel',1032859374,NULL); -INSERT INTO international VALUES (7,'FAQ',6,'Är du säker på att du vill radera denna fråga?',1031510000,NULL); INSERT INTO international VALUES (1060,'WebGUI',1,'Forum Thread Template',1066578513,NULL); INSERT INTO international VALUES (7,'Poll',6,'Svar',1031510000,NULL); -INSERT INTO international VALUES (7,'SQLReport',6,'Databas lösenord',1031651382,NULL); INSERT INTO international VALUES (560,'WebGUI',6,'Godkänt',1047850822,NULL); INSERT INTO international VALUES (7,'WebGUI',6,'Hantera användare.',1047894382,NULL); INSERT INTO international VALUES (8,'Article',6,'Länk-URL',1032859384,NULL); INSERT INTO international VALUES (8,'EventsCalendar',6,'Återkommer varje',1031649719,NULL); -INSERT INTO international VALUES (8,'FAQ',6,'Redigera F.A.Q.',1031510000,NULL); -INSERT INTO international VALUES (8,'LinkList',6,'URL',1031510000,NULL); +INSERT INTO international VALUES (91,'USS',6,'URL',1031510000,NULL); INSERT INTO international VALUES (8,'Poll',6,'(Mata in ett svar per rad. Max 20.)',1031510000,NULL); INSERT INTO international VALUES (8,'SQLReport',6,'Redigera SQL Rapport',1031510000,NULL); INSERT INTO international VALUES (561,'WebGUI',6,'Nekat',1031510000,NULL); INSERT INTO international VALUES (8,'WebGUI',6,'Visa page not found.',1031510000,NULL); INSERT INTO international VALUES (9,'Article',6,'Bilagor',1031510000,NULL); INSERT INTO international VALUES (9,'EventsCalendar',6,'till',1031649729,NULL); -INSERT INTO international VALUES (9,'FAQ',6,'Lägg till ny fråga.',1031510000,NULL); -INSERT INTO international VALUES (9,'LinkList',6,'Är du säker att du vill radera denna länk?',1031510000,NULL); +INSERT INTO international VALUES (83,'USS',6,'Lägg till ny fråga.',1031510000,NULL); INSERT INTO international VALUES (9,'Poll',6,'Redigera fråga',1031510000,NULL); -INSERT INTO international VALUES (9,'SQLReport',6,'Debug: Error: The DSN specified is of an improper format.',1047893389,NULL); +INSERT INTO international VALUES (10,'Auth/WebGUI',1,'Old Password',1071507875,''); +INSERT INTO international VALUES (9,'Auth/WebGUI',1,'Expire passwords on user creation?',1071507780,''); INSERT INTO international VALUES (562,'WebGUI',6,'Väntande',1031510000,NULL); INSERT INTO international VALUES (9,'WebGUI',6,'Visa klippbord.',1031510000,NULL); INSERT INTO international VALUES (10,'Article',6,'Konvertera radbrytning?',1031510000,NULL); -INSERT INTO international VALUES (10,'FAQ',6,'Redigera fråga',1031510000,NULL); -INSERT INTO international VALUES (10,'LinkList',6,'Redigera länklista',1032257325,NULL); +INSERT INTO international VALUES (84,'USS',6,'Redigera fråga',1031510000,NULL); INSERT INTO international VALUES (10,'Poll',6,'Återställ röster.',1031510000,NULL); INSERT INTO international VALUES (10,'SQLReport',6,'Debug: Error: The SQL specified is of an improper format.',1047893431,NULL); INSERT INTO international VALUES (563,'WebGUI',6,'Standardstatus',1031580967,NULL); @@ -2985,13 +2993,13 @@ INSERT INTO international VALUES (11,'SQLReport',6,'Debug: Error: There w INSERT INTO international VALUES (11,'WebGUI',6,'Töm skräpkorgen.',1031648713,NULL); INSERT INTO international VALUES (12,'Article',6,'Redigera artikel',1031841932,NULL); INSERT INTO international VALUES (12,'EventsCalendar',6,'Redigera Händelser Kalender',1031649518,NULL); -INSERT INTO international VALUES (12,'LinkList',6,'Redigera Länk',1031510000,NULL); +INSERT INTO international VALUES (90,'USS',6,'Redigera Länk',1031510000,NULL); INSERT INTO international VALUES (12,'SQLReport',6,'Debug: Error: Could not connect to the database.',1047893506,NULL); INSERT INTO international VALUES (12,'USS',6,'(Avkryssa om du skriver ett HTML-inlägg)',1031648376,NULL); INSERT INTO international VALUES (12,'WebGUI',6,'Stäng av administratörsverktyg.',1047893028,NULL); INSERT INTO international VALUES (13,'Article',6,'Radera',1031510000,NULL); INSERT INTO international VALUES (13,'EventsCalendar',6,'Lägg till händelse',1031510000,NULL); -INSERT INTO international VALUES (13,'LinkList',6,'Lägg till en ny länk.',1031510000,NULL); +INSERT INTO international VALUES (89,'USS',6,'Lägg till en ny länk.',1031510000,NULL); INSERT INTO international VALUES (577,'WebGUI',6,'Skicka svar',1031510000,NULL); INSERT INTO international VALUES (13,'USS',6,'Inlagt den',1031510000,NULL); INSERT INTO international VALUES (13,'WebGUI',6,'Visa hjälpindex.',1031510000,NULL); @@ -3033,7 +3041,6 @@ INSERT INTO international VALUES (30,'WebGUI',6,'onsdag',1050401642,NULL); INSERT INTO international VALUES (31,'WebGUI',6,'torsdag',1050401655,NULL); INSERT INTO international VALUES (32,'WebGUI',6,'fredag',1050401666,NULL); INSERT INTO international VALUES (33,'WebGUI',6,'lördag',1050401679,NULL); -INSERT INTO international VALUES (34,'WebGUI',6,'sätt datum',1031510000,NULL); INSERT INTO international VALUES (35,'WebGUI',6,'Administrativa funktioner',1031510000,NULL); INSERT INTO international VALUES (36,'WebGUI',6,'Du måste vara administratör för att utföra denna funktion. Var vänlig kontakta någon av administratörerna. Följande är en lista av administratörer i systemet:',1031510000,NULL); INSERT INTO international VALUES (37,'WebGUI',6,'Åtkomst nekas!',1031510000,NULL); @@ -3134,13 +3141,6 @@ INSERT INTO international VALUES (146,'WebGUI',6,'Aktiva sessioner',1031510000,N INSERT INTO international VALUES (147,'WebGUI',6,'Sidor',1031510000,NULL); INSERT INTO international VALUES (148,'WebGUI',6,'Wobjects',1031510000,NULL); INSERT INTO international VALUES (149,'WebGUI',6,'Användare',1031510000,NULL); -INSERT INTO international VALUES (151,'WebGUI',6,'Stilnamn',1032859552,NULL); -INSERT INTO international VALUES (501,'WebGUI',1,'Body',1031514049,NULL); -INSERT INTO international VALUES (154,'WebGUI',6,'Stil schema (style sheet)',1031649332,NULL); -INSERT INTO international VALUES (155,'WebGUI',6,'Är du säker på att du vill radera denna stil och vilket resulterar i att alla sidor som använder den stilen kommer använda \"Fail Safe\" stilen?',1031510000,NULL); -INSERT INTO international VALUES (156,'WebGUI',6,'Redigera stil',1031510000,NULL); -INSERT INTO international VALUES (157,'WebGUI',6,'Stilar',1031510000,NULL); -INSERT INTO international VALUES (158,'WebGUI',6,'Lägg till en ny stil.',1031510000,NULL); INSERT INTO international VALUES (159,'WebGUI',6,'Inbox',1031649349,NULL); INSERT INTO international VALUES (160,'WebGUI',6,'Inlagt den',1031510000,NULL); INSERT INTO international VALUES (161,'WebGUI',6,'Skrivet av',1031510000,NULL); @@ -3222,26 +3222,21 @@ INSERT INTO international VALUES (361,'WebGUI',6,'Tre INSERT INTO international VALUES (362,'WebGUI',6,'Sida vid sida',1031648324,NULL); INSERT INTO international VALUES (363,'WebGUI',6,'Mall-position',1031648339,NULL); INSERT INTO international VALUES (364,'WebGUI',6,'Sök',1031510000,NULL); -INSERT INTO international VALUES (365,'WebGUI',6,'Sökresultaten..',1031510000,NULL); -INSERT INTO international VALUES (366,'WebGUI',6,'Inga sidor hittades som stämde med din förfrågan.',1031510000,NULL); INSERT INTO international VALUES (368,'WebGUI',6,'Lägg till en ny grupp till denna användare.',1031510000,NULL); INSERT INTO international VALUES (369,'WebGUI',6,'Bäst före datum',1031648357,NULL); INSERT INTO international VALUES (370,'WebGUI',6,'Redigera gruppering',1031510000,NULL); INSERT INTO international VALUES (371,'WebGUI',6,'Lägg till gruppering',1031510000,NULL); INSERT INTO international VALUES (372,'WebGUI',6,'Redigera användares grupper',1032859654,NULL); INSERT INTO international VALUES (374,'WebGUI',6,'Hantera paket.',1031510000,NULL); -INSERT INTO international VALUES (375,'WebGUI',6,'Välj ett paket att använda',1031510000,NULL); INSERT INTO international VALUES (376,'WebGUI',6,'Paket',1031510000,NULL); -INSERT INTO international VALUES (377,'WebGUI',6,'Inga paket har definierats av din pakethanterare eller administratör.',1031581099,NULL); +INSERT INTO international VALUES (18,'Navigation',1,'Edit this Navigation.',1077079911,''); INSERT INTO international VALUES (11,'Poll',6,'Rösta!',1031510000,NULL); INSERT INTO international VALUES (31,'USS',6,'Innehåll',1031648476,NULL); INSERT INTO international VALUES (32,'USS',6,'Bild',1031510000,NULL); INSERT INTO international VALUES (33,'USS',6,'Bilaga',1031648631,NULL); -INSERT INTO international VALUES (34,'USS',6,'Konvertera radbrytningar',1031510000,NULL); INSERT INTO international VALUES (35,'USS',6,'Titel',1031510000,NULL); INSERT INTO international VALUES (378,'WebGUI',6,'Användar-ID',1031581110,NULL); INSERT INTO international VALUES (379,'WebGUI',6,'Grupp-ID',1031581117,NULL); -INSERT INTO international VALUES (380,'WebGUI',6,'Stil-ID',1031581134,NULL); INSERT INTO international VALUES (381,'WebGUI',6,'WebGUI fick in en felformulerad förfrågan och kunde inte fortsätta. Oftast beror detta på ovanliga tecken som skickas från ett formulär. Du kan försöka med att gå tillbaka och försöka igen.',1031510000,NULL); INSERT INTO international VALUES (1,'FileManager',6,'Filhanterare',1031510000,NULL); INSERT INTO international VALUES (3,'FileManager',6,'Fortsätt med att lägga till fil?',1031510000,NULL); @@ -3259,7 +3254,7 @@ INSERT INTO international VALUES (16,'FileManager',6,'Uppladdat den',1032859243, INSERT INTO international VALUES (768,'WebGUI',1,'Name',1036892946,NULL); INSERT INTO international VALUES (773,'WebGUI',1,'File',1036893165,NULL); INSERT INTO international VALUES (37,'USS',6,'Radera',1031510000,NULL); -INSERT INTO international VALUES (13,'SQLReport',6,'Konvertera radbrytning?',1031510000,NULL); +INSERT INTO international VALUES (84,'Survey',1,'Max Responses Per User',1075639389,'Ask the user how many responses the user should be able to submit to the survey.'); INSERT INTO international VALUES (17,'FileManager',6,'Alternativ version #1',1032859401,NULL); INSERT INTO international VALUES (18,'FileManager',6,'Alternativ version #2',1032859416,NULL); INSERT INTO international VALUES (19,'FileManager',6,'Du har inga filer att ladda ned.',1031510000,NULL); @@ -3283,7 +3278,6 @@ INSERT INTO international VALUES (782,'WebGUI',1,'Any',1036913053,NULL); INSERT INTO international VALUES (394,'WebGUI',6,'Hantera bilder.',1031510000,NULL); INSERT INTO international VALUES (395,'WebGUI',6,'Lägg till en ny bild.',1031510000,NULL); INSERT INTO international VALUES (720,'WebGUI',10,'OK',1036855648,NULL); -INSERT INTO international VALUES (398,'WebGUI',6,'Dokumenttypsdeklaration',1032859737,NULL); INSERT INTO international VALUES (399,'WebGUI',6,'Validera denna sida.',1031510000,NULL); INSERT INTO international VALUES (400,'WebGUI',6,'Blockera proxy caching',1031582451,NULL); INSERT INTO international VALUES (401,'WebGUI',6,'Är du säker på att du vill radera meddelandet och alla undermeddelanden i denna diskussion?',1050526159,NULL); @@ -3310,7 +3304,9 @@ INSERT INTO international VALUES (24,'Article',6,'Skicka svar',1031510000,NULL); INSERT INTO international VALUES (578,'WebGUI',1,'You have a pending message to approve.',1031514049,NULL); INSERT INTO international VALUES (28,'Article',6,'Visa svar',1031510000,NULL); INSERT INTO international VALUES (54,'Product',1,'Benefits',1031514049,NULL); -INSERT INTO international VALUES (416,'WebGUI',6,'

Problem med förfrågan

\r\nVi har stött på ett problem med din förfrågan. Var vänlig och gå tillbaka och fösök igen. Om problemet kvarstår var vänlig och rapportera detta till oss med tid och datum samt vad du försökte göra.',1031582660,NULL); +INSERT INTO international VALUES (671,'WebGUI',16,'Obiekty WWW (Wobjects), U¿ycie',1076559129,NULL); +INSERT INTO international VALUES (642,'WebGUI',16,'Strona, Dodawanie/Edycja',1076559064,NULL); +INSERT INTO international VALUES (529,'WebGUI',16,'wyników na stronie',1076559030,NULL); INSERT INTO international VALUES (417,'WebGUI',6,'

Säkerhetsöverträdelse


Du försökte att komma åt en wobject som inte associeras med denna sida. Denna incident har rapporterats.',1032859766,NULL); INSERT INTO international VALUES (418,'WebGUI',6,'Ta bort inmatad HTML',1031510000,NULL); INSERT INTO international VALUES (419,'WebGUI',6,'Ta bort alla taggar.',1031510000,NULL); @@ -3402,9 +3398,6 @@ INSERT INTO international VALUES (51,'USS',1,'Display thumbnails?',1031514049,NU INSERT INTO international VALUES (52,'USS',1,'Thumbnail',1031514049,NULL); INSERT INTO international VALUES (53,'USS',1,'Layout',1031514049,NULL); INSERT INTO international VALUES (57,'USS',1,'Responses',1031514049,NULL); -INSERT INTO international VALUES (11,'FAQ',1,'Turn TOC on?',1031514049,NULL); -INSERT INTO international VALUES (12,'FAQ',1,'Turn Q/A on?',1031514049,NULL); -INSERT INTO international VALUES (13,'FAQ',1,'Turn [top] link on?',1031514049,NULL); INSERT INTO international VALUES (509,'WebGUI',1,'Discussion Layout',1031514049,NULL); INSERT INTO international VALUES (510,'WebGUI',1,'Flat',1031514049,NULL); INSERT INTO international VALUES (511,'WebGUI',1,'Threaded',1031514049,NULL); @@ -3454,30 +3447,14 @@ INSERT INTO international VALUES (13,'EventsCalendar',10,'rediger begivenhed ',1 INSERT INTO international VALUES (14,'EventsCalendar',10,'Fra dato',1031510000,NULL); INSERT INTO international VALUES (15,'EventsCalendar',10,'Til dato',1031510000,NULL); INSERT INTO international VALUES (19,'EventsCalendar',10,'Slet efter ',1032273982,NULL); -INSERT INTO international VALUES (1,'ExtraColumn',10,'Ekstra kolonne',1031510000,NULL); -INSERT INTO international VALUES (3,'ExtraColumn',10,'Mellemrum',1032469898,NULL); -INSERT INTO international VALUES (4,'ExtraColumn',10,'Bredde',1032469906,NULL); -INSERT INTO international VALUES (5,'ExtraColumn',10,'stilarter klasse',1032469915,NULL); -INSERT INTO international VALUES (6,'ExtraColumn',10,'rediger ekstra kolonne',1032469927,NULL); -INSERT INTO international VALUES (2,'FAQ',10,'Ofte stillede spørgsmål (F.A.Q.)',1032469958,NULL); -INSERT INTO international VALUES (5,'FAQ',10,'Spørgsmål',1032469969,NULL); -INSERT INTO international VALUES (6,'FAQ',10,'Svar',1032469976,NULL); -INSERT INTO international VALUES (7,'FAQ',10,'Er du sikker på du vil slette dette spørgsmål?',1032469993,NULL); -INSERT INTO international VALUES (8,'FAQ',10,'Rediger F.A.Q.',1032470003,NULL); -INSERT INTO international VALUES (9,'FAQ',10,'Tilføj nyt spørgsmål',1032470012,NULL); -INSERT INTO international VALUES (10,'FAQ',10,'rediger spørgsmål',1032469946,NULL); -INSERT INTO international VALUES (1,'Item',10,'henvisning til URL',1032470034,NULL); -INSERT INTO international VALUES (2,'Item',10,'Vedhæft',1032470070,NULL); -INSERT INTO international VALUES (3,'Item',10,'Slet vedhæftet',1032470084,NULL); -INSERT INTO international VALUES (4,'Item',10,'Item',1032470093,NULL); -INSERT INTO international VALUES (5,'Item',10,'Hent vedhæftet',1032470104,NULL); -INSERT INTO international VALUES (3,'LinkList',10,'Skal der åbnes i nyt vindue?',1032470165,NULL); -INSERT INTO international VALUES (6,'LinkList',10,'Liste over henvisning',1032470193,NULL); -INSERT INTO international VALUES (8,'LinkList',10,'URL',1032470215,NULL); -INSERT INTO international VALUES (9,'LinkList',10,'Er du sikker på du vil slette denne henvisning?',1032470231,NULL); -INSERT INTO international VALUES (10,'LinkList',10,'Rediger henvisnings liste',1032470126,NULL); -INSERT INTO international VALUES (12,'LinkList',10,'Rediger henvisning ',1032470135,NULL); -INSERT INTO international VALUES (13,'LinkList',10,'Tilføj ny henvisning',1032470146,NULL); +INSERT INTO international VALUES (85,'USS',10,'Spørgsmål',1032469969,NULL); +INSERT INTO international VALUES (86,'USS',10,'Svar',1032469976,NULL); +INSERT INTO international VALUES (83,'USS',10,'Tilføj nyt spørgsmål',1032470012,NULL); +INSERT INTO international VALUES (84,'USS',10,'rediger spørgsmål',1032469946,NULL); +INSERT INTO international VALUES (92,'USS',10,'Skal der åbnes i nyt vindue?',1032470165,NULL); +INSERT INTO international VALUES (91,'USS',10,'URL',1032470215,NULL); +INSERT INTO international VALUES (90,'USS',10,'Rediger henvisning ',1032470135,NULL); +INSERT INTO international VALUES (89,'USS',10,'Tilføj ny henvisning',1032470146,NULL); INSERT INTO international VALUES (2,'MessageBoard',10,'Opslagstavle',1031510000,NULL); INSERT INTO international VALUES (564,'WebGUI',10,'Hvem kan komme med indlæg?',1031510000,NULL); INSERT INTO international VALUES (1020,'WebGUI',1,'Rating',1065280882,'How useful/interesting a user thinks another poster\'s post is.'); @@ -3505,17 +3482,15 @@ INSERT INTO international VALUES (5,'SiteMap',10,'Rediger Site oversigt',1031510 INSERT INTO international VALUES (6,'SiteMap',10,'Indryk',1031510000,NULL); INSERT INTO international VALUES (80,'Survey',1,'seconds',1038789602,NULL); INSERT INTO international VALUES (1,'SQLReport',10,'SQL rapport',1031510000,NULL); -INSERT INTO international VALUES (3,'SQLReport',10,'Rapport template',1031510000,NULL); +INSERT INTO international VALUES (1,'WSClient',1,'Web Services Client',1033575504,NULL); INSERT INTO international VALUES (4,'SQLReport',10,'Query',1031510000,NULL); -INSERT INTO international VALUES (5,'SQLReport',10,'DSN',1031510000,NULL); -INSERT INTO international VALUES (6,'SQLReport',10,'Database bruger',1031510000,NULL); -INSERT INTO international VALUES (7,'SQLReport',10,'Database Password',1031510000,NULL); +INSERT INTO international VALUES (1079,'WebGUI',1,'Printable Style',1073152790,'A label describing a style that looks good when printing the page.'); INSERT INTO international VALUES (8,'SQLReport',10,'Rediger SQL rapport',1031510000,NULL); -INSERT INTO international VALUES (9,'SQLReport',10,'Debug: Error: The DSN specified is of an improper format.',1031510000,NULL); +INSERT INTO international VALUES (14,'Auth/WebGUI',1,'Minimum password length',1071507951,'What is the minimum password length?'); INSERT INTO international VALUES (10,'SQLReport',10,'Debug: Error: The SQL specified is of an improper format.',1031510000,NULL); INSERT INTO international VALUES (11,'SQLReport',10,'Debug: Error: There was a problem with the query.',1031510000,NULL); INSERT INTO international VALUES (12,'SQLReport',10,'Debug: Error: Could not connect to the database.',1031510000,NULL); -INSERT INTO international VALUES (13,'SQLReport',10,'Konverter linieskift?',1031510000,NULL); +INSERT INTO international VALUES (85,'Survey',1,'Questions Per Response',1075639549,'Ask the user how many questions should be displayed to the user per time taking the survey.'); INSERT INTO international VALUES (14,'SQLReport',10,'Slet efter',1031510000,NULL); INSERT INTO international VALUES (15,'SQLReport',10,'Udfør makroer ved forespørgsel?',1031510000,NULL); INSERT INTO international VALUES (16,'SQLReport',10,'Debug?',1031671019,NULL); @@ -3552,15 +3527,13 @@ INSERT INTO international VALUES (29,'USS',10,'Bruger Indl INSERT INTO international VALUES (31,'USS',10,'Indhold',1031510000,NULL); INSERT INTO international VALUES (32,'USS',10,'Billede',1031510000,NULL); INSERT INTO international VALUES (33,'USS',10,'Tillæg',1031510000,NULL); -INSERT INTO international VALUES (34,'USS',10,'Konverter linieskift?',1031510000,NULL); INSERT INTO international VALUES (35,'USS',10,'Titel',1031510000,NULL); INSERT INTO international VALUES (37,'USS',10,'Slet',1031510000,NULL); INSERT INTO international VALUES (1,'WebGUI',10,'Tilføj indhold',1031510000,NULL); INSERT INTO international VALUES (2,'WebGUI',10,'Side',1031510000,NULL); -INSERT INTO international VALUES (3,'WebGUI',10,'Kopier fra udklipsholder',1031510000,NULL); +INSERT INTO international VALUES (27,'Navigation',1,'Max depth',1077080669,''); INSERT INTO international VALUES (4,'WebGUI',10,'administrer indstillinger',1031510000,NULL); INSERT INTO international VALUES (5,'WebGUI',10,'administrer grupper',1031510000,NULL); -INSERT INTO international VALUES (6,'WebGUI',10,'administrer Stilarter',1031510000,NULL); INSERT INTO international VALUES (7,'WebGUI',10,'administrer brugere',1031510000,NULL); INSERT INTO international VALUES (8,'WebGUI',10,'Vis side_ikke_fundet',1031510000,NULL); INSERT INTO international VALUES (9,'WebGUI',10,'Vis udklipsholder',1031510000,NULL); @@ -3588,7 +3561,6 @@ INSERT INTO international VALUES (30,'WebGUI',10,'Onsdag',1031510000,NULL); INSERT INTO international VALUES (31,'WebGUI',10,'Torsdag',1031510000,NULL); INSERT INTO international VALUES (32,'WebGUI',10,'Fredag',1031510000,NULL); INSERT INTO international VALUES (33,'WebGUI',10,'Lørdag',1031510000,NULL); -INSERT INTO international VALUES (34,'WebGUI',10,'Sæt dato',1031510000,NULL); INSERT INTO international VALUES (35,'WebGUI',10,'Administrative funktioner',1031510000,NULL); INSERT INTO international VALUES (36,'WebGUI',10,'Du skal være administrator for at udføre denne funktion. Kontakt en af følgende personer der er administratorer:',1031510000,NULL); INSERT INTO international VALUES (37,'WebGUI',10,'Adgang nægtet!',1031510000,NULL); @@ -3687,12 +3659,6 @@ INSERT INTO international VALUES (146,'WebGUI',10,'Aktive sessioner',1031510000, INSERT INTO international VALUES (147,'WebGUI',10,'Sider',1031510000,NULL); INSERT INTO international VALUES (148,'WebGUI',10,'Wobjects',1031510000,NULL); INSERT INTO international VALUES (149,'WebGUI',10,'brugere i gruppe',1031510000,NULL); -INSERT INTO international VALUES (151,'WebGUI',10,'Navn på stilart',1031510000,NULL); -INSERT INTO international VALUES (154,'WebGUI',10,'Stilart Sheet',1031510000,NULL); -INSERT INTO international VALUES (155,'WebGUI',10,'\"Er du sikker på du vil slette denne stilart og overføre alle sider der bruger denne til \"\"Fail Safe\"\" stilarten ?\"',1031510000,NULL); -INSERT INTO international VALUES (156,'WebGUI',10,'Rediger stilart',1031510000,NULL); -INSERT INTO international VALUES (157,'WebGUI',10,'stilarter',1031510000,NULL); -INSERT INTO international VALUES (158,'WebGUI',10,'Tilføj ny stilart',1031510000,NULL); INSERT INTO international VALUES (159,'WebGUI',10,'Meddelelses log',1031510000,NULL); INSERT INTO international VALUES (160,'WebGUI',10,'Dato oprettet',1031510000,NULL); INSERT INTO international VALUES (161,'WebGUI',10,'Oprettet af',1031510000,NULL); @@ -3774,8 +3740,6 @@ INSERT INTO international VALUES (361,'WebGUI',10,'Tre over en',1031510000,NULL) INSERT INTO international VALUES (362,'WebGUI',10,'Side ved side',1031510000,NULL); INSERT INTO international VALUES (363,'WebGUI',10,'Template position',1031510000,NULL); INSERT INTO international VALUES (364,'WebGUI',10,'Søg',1031510000,NULL); -INSERT INTO international VALUES (365,'WebGUI',10,'Søge resultater …',1031510000,NULL); -INSERT INTO international VALUES (366,'WebGUI',10,'Jeg fandt desværre ingen sider med de(t) søgeord',1031510000,NULL); INSERT INTO international VALUES (367,'WebGUI',10,'Udløber efter',1031510000,NULL); INSERT INTO international VALUES (368,'WebGUI',10,'Tilføj en ny gruppen til denne bruger.',1031510000,NULL); INSERT INTO international VALUES (369,'WebGUI',10,'Udløbs dato',1031510000,NULL); @@ -3783,12 +3747,10 @@ INSERT INTO international VALUES (370,'WebGUI',10,'Rediger gruppering',103151000 INSERT INTO international VALUES (371,'WebGUI',10,'Tilføj gruppering',1031510000,NULL); INSERT INTO international VALUES (372,'WebGUI',10,'Rediger brugers gruppe',1031510000,NULL); INSERT INTO international VALUES (374,'WebGUI',10,'administrer packages',1031510000,NULL); -INSERT INTO international VALUES (375,'WebGUI',10,'Vælg package der skal tages i brug',1031510000,NULL); INSERT INTO international VALUES (376,'WebGUI',10,'Package',1031510000,NULL); -INSERT INTO international VALUES (377,'WebGUI',10,'\"Der er endnu ikke defineret nogle \"\"Packages\"\".\"',1031510000,NULL); +INSERT INTO international VALUES (17,'Navigation',1,'pedigree',1077079481,'Option on question \"return a loop with\".'); INSERT INTO international VALUES (378,'WebGUI',10,'Bruger ID',1031510000,NULL); INSERT INTO international VALUES (379,'WebGUI',10,'Gruppe ID',1031510000,NULL); -INSERT INTO international VALUES (380,'WebGUI',10,'Stilart ID',1031510000,NULL); INSERT INTO international VALUES (381,'WebGUI',10,'WebGUI modtog en fejlformateret besked og kan ikke fortsætte - dette skyldes typisk eb speciel karakter. Prøv evt. at trykke tilbage og prøv igen.',1031510000,NULL); INSERT INTO international VALUES (683,'WebGUI',10,'Skabeloner, Håndter',1036856078,NULL); INSERT INTO international VALUES (384,'WebGUI',10,'Fil ',1031510000,NULL); @@ -3803,7 +3765,6 @@ INSERT INTO international VALUES (394,'WebGUI',10,'administrer billeder.',103151 INSERT INTO international VALUES (395,'WebGUI',10,'Tilføj nyt billede',1031510000,NULL); INSERT INTO international VALUES (717,'WebGUI',10,'Log ud',1036855705,NULL); INSERT INTO international VALUES (705,'WebGUI',10,'minut(ter)',1036855912,NULL); -INSERT INTO international VALUES (398,'WebGUI',10,'Dokument type deklarering',1031510000,NULL); INSERT INTO international VALUES (399,'WebGUI',10,'Valider denne side.',1031510000,NULL); INSERT INTO international VALUES (400,'WebGUI',10,'Forhindre Proxy Caching',1031510000,NULL); INSERT INTO international VALUES (401,'WebGUI',10,'Er du sikker på du vil slette denne besked, og alle under beskeder i tråden?',1031510000,NULL); @@ -3819,7 +3780,9 @@ INSERT INTO international VALUES (411,'WebGUI',10,'Menu titel',1031510000,NULL); INSERT INTO international VALUES (412,'WebGUI',10,'Synopsis',1031510000,NULL); INSERT INTO international VALUES (51,'Product',1,'Benefit',1031514049,NULL); INSERT INTO international VALUES (56,'Product',1,'Add a product template.',1031514049,NULL); -INSERT INTO international VALUES (416,'WebGUI',10,'

Problem med forespørgsel

Oops, jeg har lidt problemer med din forespørgsel. Tryk tilbage og prøv igen. Hvis problemet fortsætte vil jeg være glad hvis du vil kontakte os og fortælle hvad du prøver, på forhånd tak.',1031510000,NULL); +INSERT INTO international VALUES (887,'WebGUI',16,'Midas (Mozilla 1.3+)',1076559463,NULL); +INSERT INTO international VALUES (875,'WebGUI',16,'Nowa wiadomo¶æ zosta³a wys³ana do jednego z zasubskrybowanych w±tków.',1076559420,NULL); +INSERT INTO international VALUES (874,'WebGUI',16,'Wy³±cz Subskrypcjê W±tku',1076559393,NULL); INSERT INTO international VALUES (417,'WebGUI',10,'

Sikkerhedsbrud

Du forsøgte at få adgang med en Wobject der ikke hører til her. Jeg har rapporteret dit forsøg.',1031510000,NULL); INSERT INTO international VALUES (418,'WebGUI',10,'Filter Contributed HTML',1031510000,NULL); INSERT INTO international VALUES (419,'WebGUI',10,'Fjern alle tags',1031510000,NULL); @@ -3943,7 +3906,6 @@ INSERT INTO international VALUES (38,'WebGUI',3,'U heeft niet voldoende privileg INSERT INTO international VALUES (37,'WebGUI',3,'Geen toegang!',1038530004,NULL); INSERT INTO international VALUES (36,'WebGUI',3,'U moet beheerder zijn om deze functie uit te voeren. Neem contact op met een van de beheerders.',1063589986,NULL); INSERT INTO international VALUES (35,'WebGUI',3,'Administratieve functie',1038529809,NULL); -INSERT INTO international VALUES (34,'WebGUI',3,'Zet datum',1038529725,NULL); INSERT INTO international VALUES (33,'WebGUI',3,'zaterdag',1038529573,NULL); INSERT INTO international VALUES (32,'WebGUI',3,'vrijdag',1038529487,NULL); INSERT INTO international VALUES (31,'WebGUI',3,'donderdag',1038529371,NULL); @@ -3986,14 +3948,14 @@ INSERT INTO international VALUES (14,'USS',3,'Status',1038528106,NULL); INSERT INTO international VALUES (13,'WebGUI',3,'Laat help index zien.',1038528658,NULL); INSERT INTO international VALUES (13,'USS',3,'Invoerdatum',1038528099,NULL); INSERT INTO international VALUES (577,'WebGUI',3,'Post antwoord',1039520759,NULL); -INSERT INTO international VALUES (13,'LinkList',3,'Voeg een nieuwe link toe.',1038513241,NULL); +INSERT INTO international VALUES (89,'USS',3,'Voeg een nieuwe link toe.',1038513241,NULL); INSERT INTO international VALUES (13,'EventsCalendar',3,'Bewerk evenement',1038486766,NULL); INSERT INTO international VALUES (13,'Article',3,'Verwijder',1037903217,NULL); INSERT INTO international VALUES (12,'WebGUI',3,'Zet beheermode uit.',1038528595,NULL); INSERT INTO international VALUES (12,'USS',3,'(Niet aanvinken als u een HTML bijdrage levert.)',1038528093,NULL); INSERT INTO international VALUES (12,'SQLReport',3,'Debug: Fout: Kon geen verbinding met de database maken.',1038527862,NULL); INSERT INTO international VALUES (12,'EventsCalendar',3,'Bewerk evenementenkalender',1038486744,NULL); -INSERT INTO international VALUES (12,'LinkList',3,'Bewerk link',1038513235,NULL); +INSERT INTO international VALUES (90,'USS',3,'Bewerk link',1038513235,NULL); INSERT INTO international VALUES (12,'Article',3,'Bewerk artikel',1037903209,NULL); INSERT INTO international VALUES (11,'WebGUI',3,'Leeg prullenbak.',1038528487,NULL); INSERT INTO international VALUES (11,'SQLReport',3,'Debug: Fout: Er was een probleem met de query',1038527828,NULL); @@ -4003,52 +3965,42 @@ INSERT INTO international VALUES (10,'WebGUI',3,'Bekijk prullenbak.',1038528350, INSERT INTO international VALUES (563,'WebGUI',3,'Standaard status',1039780738,NULL); INSERT INTO international VALUES (10,'SQLReport',3,'Fout: De ingevoerde SQL instructie heeft een verkeerd formaat.',1038527803,NULL); INSERT INTO international VALUES (10,'Poll',3,'Stemmen op nul zetten.',1039783988,NULL); -INSERT INTO international VALUES (10,'LinkList',3,'Bewerk link lijst',1038513228,NULL); -INSERT INTO international VALUES (10,'FAQ',3,'Bewerk vraag',1038487314,NULL); +INSERT INTO international VALUES (84,'USS',3,'Bewerk vraag',1038487314,NULL); INSERT INTO international VALUES (10,'Article',3,'Enter converteren?',1037903159,NULL); INSERT INTO international VALUES (562,'WebGUI',3,'Lopend',1039780731,NULL); INSERT INTO international VALUES (9,'WebGUI',3,'Bekijk klembord.',1039783519,NULL); -INSERT INTO international VALUES (9,'SQLReport',3,'Debug: Fout: De ingevoerde DSN heeft een verkeerd formaat.',1038527986,NULL); +INSERT INTO international VALUES (7,'Auth/WebGUI',1,'Passwords must have a minimum character length of',1071507767,'Password expires every 10 days'); INSERT INTO international VALUES (9,'Poll',3,'Bewerk peiling',1039784016,NULL); -INSERT INTO international VALUES (9,'LinkList',3,'Weet u zeker dat u deze link wilt verwijderen?',1038513324,NULL); -INSERT INTO international VALUES (9,'FAQ',3,'Voeg een nieuwe vraag toe',1038487447,NULL); +INSERT INTO international VALUES (83,'USS',3,'Voeg een nieuwe vraag toe',1038487447,NULL); INSERT INTO international VALUES (9,'EventsCalendar',3,'Tot',1038487255,NULL); INSERT INTO international VALUES (9,'Article',3,'Bijlage',1037903332,NULL); INSERT INTO international VALUES (8,'SQLReport',3,'Bewerk SQL rapport',1038527960,NULL); INSERT INTO international VALUES (561,'WebGUI',3,'Afgekeurd',1039780724,NULL); INSERT INTO international VALUES (8,'WebGUI',3,'Bekijk \'pagina niet gevonden\'.',1039783447,NULL); -INSERT INTO international VALUES (8,'LinkList',3,'URL',1038513314,NULL); +INSERT INTO international VALUES (91,'USS',3,'URL',1038513314,NULL); INSERT INTO international VALUES (8,'Poll',3,'(Voer een antwoord per regel in. Niet meer dan 20.)',1038527748,NULL); -INSERT INTO international VALUES (8,'FAQ',3,'Bewerk FAQ',1038487440,NULL); INSERT INTO international VALUES (8,'EventsCalendar',3,'Herhaalt elke',1038487219,NULL); INSERT INTO international VALUES (8,'Article',3,'Link URL',1037903325,NULL); INSERT INTO international VALUES (7,'WebGUI',3,'Beheer gebruikers.',1039783132,NULL); -INSERT INTO international VALUES (7,'SQLReport',3,'Database wachtwoord',1038527954,NULL); INSERT INTO international VALUES (560,'WebGUI',3,'Goedgekeurd',1039780716,NULL); INSERT INTO international VALUES (7,'Poll',3,'Antwoorden',1038527725,NULL); -INSERT INTO international VALUES (7,'FAQ',3,'Weet u zeker dat u deze vraag wilt verwijderen?',1038487392,NULL); INSERT INTO international VALUES (7,'Article',3,'Link titel',1037903316,NULL); -INSERT INTO international VALUES (6,'WebGUI',3,'Beheer stijlen.',1039521059,NULL); INSERT INTO international VALUES (6,'USS',3,'Bijdrages per pagina',1038528336,NULL); INSERT INTO international VALUES (11,'HttpProxy',1,'The HTTP Proxy wobject is a very powerful tool. It enables you to embed external sites and applications into your site. For example, if you have a web mail system that you wish your staff could access through the intranet, then you could use the HTTP Proxy to accomplish that.\r\n\r\n

\r\n\r\nURL
\r\nThe starting URL for the proxy.\r\n

\r\n\r\nFollow redirects?
\r\nSometimes the URL to a page, is actually a redirection to another page. Do you wish to follow those redirections when they occur?\r\n

\r\n\r\nRewrite urls?
\r\nSwitch this to No if you want to deeplink an external page.\r\n

\r\n\r\nTimeout
\r\nThe amount of time (in seconds) that WebGUI should wait for a connection before giving up on an external page.\r\n

\r\n\r\nRemove style?
\r\nDo you wish to remove the stylesheet from the proxied content in favor of the stylesheet from your site?\r\n

\r\n\r\nFilter Content
\r\nChoose the level of HTML filtering you wish to apply to the proxied content.\r\n

\r\n\r\nSearch for
\r\nA search string used as starting point. Use this when you want to display only a part of the proxied content. Content before this point is not displayed\r\n

\r\n\r\nStop at
\r\nA search string used as ending point. Content after this point is not displayed.\r\n

\r\nNote: The Search for and Stop at strings are included in the content. You can change this by editing the template for HttpProxy.\r\n

\r\n\r\nAllow proxying of other domains?
\r\nIf you proxy a site like Yahoo! that links to other domains, do you wish to allow the user to follow the links to those other domains, or should the proxy stop them as they try to leave the original site you specified?\r\n

\r\n',1053774887,NULL); INSERT INTO international VALUES (9,'Auth/LDAP',1,'User RDN',1053777552,'Specifying the relative distinguished name to authenticate a user against an LDAP directory.'); -INSERT INTO international VALUES (6,'SQLReport',3,'Database gebruiker',1038527948,NULL); +INSERT INTO international VALUES (61,'WSClient',1,'Web Services Client, Add/Edit',1033575504,NULL); INSERT INTO international VALUES (6,'SiteMap',3,'Inspringen',1038528020,NULL); INSERT INTO international VALUES (6,'Poll',3,'Vraag',1038527718,NULL); INSERT INTO international VALUES (6,'MessageBoard',3,'Bewerk berichten bord',1038526571,NULL); -INSERT INTO international VALUES (6,'LinkList',3,'Link lijst',1038513260,NULL); -INSERT INTO international VALUES (6,'FAQ',3,'Antwoord',1038487373,NULL); -INSERT INTO international VALUES (6,'ExtraColumn',3,'Bewerk extra kolom',1038487306,NULL); +INSERT INTO international VALUES (86,'USS',3,'Antwoord',1038487373,NULL); INSERT INTO international VALUES (701,'WebGUI',3,'Week(en)',1039783167,NULL); INSERT INTO international VALUES (6,'Article',3,'Plaatje',1037903296,NULL); INSERT INTO international VALUES (5,'WebGUI',3,'Beheer groepen.',1039780273,NULL); INSERT INTO international VALUES (5,'USS',3,'Uw bijdrage is afgekeurd.',1038528301,NULL); -INSERT INTO international VALUES (5,'SQLReport',3,'DSN',1038527939,NULL); INSERT INTO international VALUES (5,'SiteMap',3,'Bewerk sitemap',1038528013,NULL); INSERT INTO international VALUES (5,'Poll',3,'Grafiek breedte',1038527712,NULL); INSERT INTO international VALUES (566,'WebGUI',3,'Bewerk timeout',1039780763,NULL); -INSERT INTO international VALUES (5,'FAQ',3,'Vraag',1038487354,NULL); -INSERT INTO international VALUES (5,'ExtraColumn',3,'Stylesheet klasse (class)',1038487299,NULL); +INSERT INTO international VALUES (85,'USS',3,'Vraag',1038487354,NULL); INSERT INTO international VALUES (700,'WebGUI',3,'Dag(en)',1039783156,NULL); INSERT INTO international VALUES (4,'WebGUI',3,'Beheer instellingen.',1038530613,NULL); INSERT INTO international VALUES (4,'USS',3,'Uw bijdrage is goedgekeurd.',1038528260,NULL); @@ -4056,31 +4008,26 @@ INSERT INTO international VALUES (4,'SQLReport',3,'Query',1038527933,NULL); INSERT INTO international VALUES (4,'SyndicatedContent',3,'Bewerk syndicated content',1038528061,NULL); INSERT INTO international VALUES (4,'Poll',3,'Wie kan stemmen?',1038527705,NULL); INSERT INTO international VALUES (4,'SiteMap',3,'Diepteniveau',1038528007,NULL); -INSERT INTO international VALUES (4,'ExtraColumn',3,'Breedte',1038487286,NULL); INSERT INTO international VALUES (4,'EventsCalendar',3,'Gebeurt maar een keer.',1038486820,NULL); INSERT INTO international VALUES (4,'Article',3,'Einddatum',1037903286,NULL); -INSERT INTO international VALUES (3,'WebGUI',3,'Plakken van het klembord...',1056215220,NULL); +INSERT INTO international VALUES (22,'Navigation',1,'Edit Navigation',1077080241,''); INSERT INTO international VALUES (3,'USS',3,'U heeft een nieuwe bijdrage goed te keuren.',1038528209,NULL); -INSERT INTO international VALUES (3,'SQLReport',3,'Raport sjabloon',1038527926,NULL); INSERT INTO international VALUES (3,'SiteMap',3,'Beginnen met',1039989710,NULL); INSERT INTO international VALUES (3,'Poll',3,'Aktief',1038527699,NULL); INSERT INTO international VALUES (564,'WebGUI',3,'Wie kan posten?',1039780748,NULL); -INSERT INTO international VALUES (3,'LinkList',3,'Open in nieuw venster?',1038513253,NULL); -INSERT INTO international VALUES (3,'ExtraColumn',3,'Tussenruimte',1038487279,NULL); +INSERT INTO international VALUES (92,'USS',3,'Open in nieuw venster?',1038513253,NULL); INSERT INTO international VALUES (3,'Article',3,'Begindatum',1037903276,NULL); INSERT INTO international VALUES (2,'WebGUI',3,'Pagina',1038529139,NULL); INSERT INTO international VALUES (2,'USS',3,'Wie kan bijdragen?',1038528162,NULL); INSERT INTO international VALUES (2,'SyndicatedContent',3,'Syndicated content',1038528054,NULL); INSERT INTO international VALUES (2,'SiteMap',3,'Sitemap',1038527992,NULL); INSERT INTO international VALUES (2,'MessageBoard',3,'Berichtenbord',1038526545,NULL); -INSERT INTO international VALUES (2,'FAQ',3,'FAQ',1038487347,NULL); INSERT INTO international VALUES (2,'EventsCalendar',3,'Evenementenkalender',1038486806,NULL); INSERT INTO international VALUES (1,'WebGUI',3,'Inhoud toevoegen...',1038528343,NULL); INSERT INTO international VALUES (1,'USS',3,'Wie kan goedkeuren?',1038528080,NULL); INSERT INTO international VALUES (1,'SyndicatedContent',3,'URL naar RSS bestand',1038528048,NULL); INSERT INTO international VALUES (1,'SQLReport',3,'SQL rapport',1038527779,NULL); INSERT INTO international VALUES (1,'Poll',3,'Peiling',1039783947,NULL); -INSERT INTO international VALUES (1,'ExtraColumn',3,'Extra kolom',1038487271,NULL); INSERT INTO international VALUES (88,'EventsCalendar',1,'Show 6 months from start.',1038190632,NULL); INSERT INTO international VALUES (1,'Article',3,'Artikel',1037915769,NULL); INSERT INTO international VALUES (537,'WebGUI',1,'Karma',1031514049,NULL); @@ -4104,7 +4051,6 @@ INSERT INTO international VALUES (555,'WebGUI',1,'Edit this user\'s karma.',1031 INSERT INTO international VALUES (556,'WebGUI',1,'Amount',1031514049,NULL); INSERT INTO international VALUES (557,'WebGUI',1,'Description',1031514049,NULL); INSERT INTO international VALUES (558,'WebGUI',1,'Edit User\'s Karma',1031514049,NULL); -INSERT INTO international VALUES (6,'Item',1,'Edit Item',1031514049,NULL); INSERT INTO international VALUES (559,'WebGUI',1,'Run On Registration',1031514049,NULL); INSERT INTO international VALUES (13,'Product',1,'Brochure',1031514049,NULL); INSERT INTO international VALUES (14,'Product',1,'Manual',1031514049,NULL); @@ -4139,16 +4085,12 @@ INSERT INTO international VALUES (2,'WobjectProxy',1,'Edit Wobject Proxy',103151 INSERT INTO international VALUES (3,'WobjectProxy',1,'Wobject Proxy',1031514049,NULL); INSERT INTO international VALUES (4,'WobjectProxy',1,'Wobject proxying failed. Perhaps the proxied wobject has been deleted.',1031514049,NULL); INSERT INTO international VALUES (5,'USS',7,'ÄúµÄͶ¸å±»¾Ü¾ø¡£',1031510000,NULL); -INSERT INTO international VALUES (5,'SQLReport',7,'DSN',1031510000,NULL); INSERT INTO international VALUES (5,'SiteMap',7,'±à¼­ÍøÕ¾µØÍ¼',1031510000,NULL); INSERT INTO international VALUES (5,'Poll',7,'ͼÐοí¶È',1031510000,NULL); INSERT INTO international VALUES (818,'WebGUI',1,'Deactivated',1038431300,NULL); -INSERT INTO international VALUES (5,'Item',7,'ÏÂÔØ¸½¼þ',1031510000,NULL); -INSERT INTO international VALUES (5,'FAQ',7,'ÎÊÌâ',1031510000,NULL); -INSERT INTO international VALUES (5,'ExtraColumn',7,'·ç¸ñµ¥ Class',1031510000,NULL); +INSERT INTO international VALUES (85,'USS',7,'ÎÊÌâ',1031510000,NULL); INSERT INTO international VALUES (700,'WebGUI',7,'Ìì',1031510000,NULL); INSERT INTO international VALUES (20,'EventsCalendar',7,'Ìí¼ÓÊÂÎñ¡£',1031510000,NULL); -INSERT INTO international VALUES (38,'USS',7,'(Èç¹ûÄúʹÓÃÁ˳¬Îı¾ÓïÑÔ£¬ÇëÑ¡Ôñ¡°·ñ¡±¡£)',1031510000,NULL); INSERT INTO international VALUES (4,'WebGUI',7,'¹ÜÀíÉèÖá£',1031510000,NULL); INSERT INTO international VALUES (4,'USS',7,'ÄúµÄͶ¸åÒÑͨ¹ýÉóºË¡£',1031510000,NULL); INSERT INTO international VALUES (4,'SyndicatedContent',7,'±à¼­Í¬²½ÄÚÈÝ',1031510000,NULL); @@ -4156,26 +4098,20 @@ INSERT INTO international VALUES (4,'SQLReport',7,' INSERT INTO international VALUES (4,'SiteMap',7,'Õ¹¿ªÉî¶È',1031510000,NULL); INSERT INTO international VALUES (4,'Poll',7,'ͶƱȨÏÞ£¿',1031510000,NULL); INSERT INTO international VALUES (1021,'WebGUI',1,'Rate Message',1065356764,'A label indicating that the following links are to be used for discussion post ratings.'); -INSERT INTO international VALUES (4,'Item',7,'ÏîÄ¿',1031510000,NULL); -INSERT INTO international VALUES (4,'ExtraColumn',7,'¿í¶È',1031510000,NULL); INSERT INTO international VALUES (4,'EventsCalendar',7,'Ö»·¢ÉúÒ»´Î¡£',1031510000,NULL); INSERT INTO international VALUES (4,'Article',7,'½áÊøÈÕÆÚ',1031510000,NULL); -INSERT INTO international VALUES (3,'WebGUI',7,'´Ó¼ôÌù°åÖÐÕ³Ìù...',1031510000,NULL); +INSERT INTO international VALUES (25,'Navigation',1,'Base page',1077080583,''); INSERT INTO international VALUES (3,'USS',7,'ÄúÓÐһƪеÄÓû§Í¶¸åµÈ´ýÉóºË¡£',1031510000,NULL); -INSERT INTO international VALUES (3,'SQLReport',7,'±¨¸æÄ£°å',1031510000,NULL); +INSERT INTO international VALUES (3,'WSClient',1,'SOAP Proxy',1033575504,NULL); INSERT INTO international VALUES (3,'SiteMap',7,'ÊÇ·ñ´Ó´Ë¼¶±ð¿ªÊ¼£¿',1031510000,NULL); INSERT INTO international VALUES (3,'Poll',7,'¼¤»î',1031510000,NULL); -INSERT INTO international VALUES (3,'LinkList',7,'ÊÇ·ñÔÚд°¿ÚÖдò¿ª£¿',1031510000,NULL); -INSERT INTO international VALUES (3,'Item',7,'ɾ³ý¸½¼þ',1031510000,NULL); -INSERT INTO international VALUES (3,'ExtraColumn',7,'¿Õ°×',1031510000,NULL); +INSERT INTO international VALUES (92,'USS',7,'ÊÇ·ñÔÚд°¿ÚÖдò¿ª£¿',1031510000,NULL); INSERT INTO international VALUES (3,'Article',7,'¿ªÊ¼ÈÕÆÚ',1031510000,NULL); INSERT INTO international VALUES (2,'WebGUI',7,'Ò³',1031510000,NULL); INSERT INTO international VALUES (2,'USS',7,'Ͷ¸åȨÏÞ£¿',1031510000,NULL); INSERT INTO international VALUES (2,'SyndicatedContent',7,'ͬ²½ÄÚÈÝ',1031510000,NULL); INSERT INTO international VALUES (2,'SiteMap',7,'ÍøÕ¾µØÍ¼',1031510000,NULL); INSERT INTO international VALUES (2,'MessageBoard',7,'¹«¸æÀ¸',1031510000,NULL); -INSERT INTO international VALUES (2,'Item',7,'¸½¼þ',1031510000,NULL); -INSERT INTO international VALUES (2,'FAQ',7,'F.A.Q.',1031510000,NULL); INSERT INTO international VALUES (2,'EventsCalendar',7,'ÐÐÊÂÀú',1031510000,NULL); INSERT INTO international VALUES (507,'WebGUI',7,'±à¼­Ä£°å',1031510000,NULL); INSERT INTO international VALUES (1,'WebGUI',7,'Ìí¼ÓÄÚÈÝ...',1031510000,NULL); @@ -4183,31 +4119,23 @@ INSERT INTO international VALUES (1,'USS',7,' INSERT INTO international VALUES (1,'SyndicatedContent',7,'RSS ÎļþÁ´½Ó',1031510000,NULL); INSERT INTO international VALUES (1,'SQLReport',7,'SQL ±¨¸æ',1031510000,NULL); INSERT INTO international VALUES (1,'Poll',7,'µ÷²é',1031510000,NULL); -INSERT INTO international VALUES (1,'Item',7,'Á´½Ó URL',1031510000,NULL); -INSERT INTO international VALUES (1,'ExtraColumn',7,'À©Õ¹ÁÐ',1031510000,NULL); INSERT INTO international VALUES (1,'Article',7,'ÎÄÕÂ',1031510000,NULL); INSERT INTO international VALUES (367,'WebGUI',7,'¹ýÆÚʱ¼ä',1031510000,NULL); INSERT INTO international VALUES (5,'WebGUI',7,'¹ÜÀíÓû§×é¡£',1031510000,NULL); INSERT INTO international VALUES (6,'Article',7,'ͼƬ',1031510000,NULL); INSERT INTO international VALUES (701,'WebGUI',7,'ÐÇÆÚ',1031510000,NULL); -INSERT INTO international VALUES (6,'ExtraColumn',7,'±à¼­À©Õ¹ÁÐ',1031510000,NULL); -INSERT INTO international VALUES (6,'FAQ',7,'»Ø´ð',1031510000,NULL); -INSERT INTO international VALUES (6,'LinkList',7,'Á´½ÓÁбí',1031510000,NULL); +INSERT INTO international VALUES (86,'USS',7,'»Ø´ð',1031510000,NULL); INSERT INTO international VALUES (6,'MessageBoard',7,'±à¼­¹«¸æÀ¸',1031510000,NULL); INSERT INTO international VALUES (6,'Poll',7,'ÎÊÌâ',1031510000,NULL); INSERT INTO international VALUES (6,'SiteMap',7,'Ëõ½ø',1031510000,NULL); -INSERT INTO international VALUES (6,'SQLReport',7,'Êý¾Ý¿âÓû§',1031510000,NULL); INSERT INTO international VALUES (6,'USS',7,'ÿҳͶ¸åÊý',1031510000,NULL); -INSERT INTO international VALUES (6,'WebGUI',7,'¹ÜÀí·ç¸ñ',1031510000,NULL); INSERT INTO international VALUES (7,'Article',7,'Á¬½Ó±êÌâ',1031510000,NULL); -INSERT INTO international VALUES (7,'FAQ',7,'ÄúÊÇ·ñÈ·ÐÅÄúҪɾ³ýÕâ¸öÎÊÌ⣿',1031510000,NULL); INSERT INTO international VALUES (7,'Poll',7,'»Ø´ð',1031510000,NULL); -INSERT INTO international VALUES (7,'SQLReport',7,'Êý¾Ý¿âÃÜÂë',1031510000,NULL); +INSERT INTO international VALUES (1081,'WebGUI',1,'Admin Style',1073161679,'A label indicating that the user should choose a style for admin pages.'); INSERT INTO international VALUES (7,'WebGUI',7,'¹ÜÀíÓû§¡£',1031510000,NULL); INSERT INTO international VALUES (8,'Article',7,'Á´½Ó URL',1031510000,NULL); INSERT INTO international VALUES (8,'EventsCalendar',7,'ÖØ¸´ÖÜÆÚ',1031510000,NULL); -INSERT INTO international VALUES (8,'FAQ',7,'±à¼­ F.A.Q.',1031510000,NULL); -INSERT INTO international VALUES (8,'LinkList',7,'URL',1031510000,NULL); +INSERT INTO international VALUES (91,'USS',7,'URL',1031510000,NULL); INSERT INTO international VALUES (8,'Poll',7,'£¨Ã¿ÐÐÊäÈëÒ»Ìõ´ð°¸¡£×î¶à²»³¬¹ý20Ìõ¡££©',1031510000,NULL); INSERT INTO international VALUES (1016,'WebGUI',7,'»Ø¸´',1031510000,NULL); INSERT INTO international VALUES (1017,'WebGUI',7,'×îºó»Ø¸´',1031510000,NULL); @@ -4218,13 +4146,11 @@ INSERT INTO international VALUES (8,'SQLReport',7,'Edit SQL Report',1031510000,N INSERT INTO international VALUES (8,'WebGUI',7,'Äú²é¿´µÄÒ³Ãæ²»´æÔÚ¡£',1031510000,NULL); INSERT INTO international VALUES (9,'Article',7,'¸½¼þ',1031510000,NULL); INSERT INTO international VALUES (9,'EventsCalendar',7,'Ö±µ½',1031510000,NULL); -INSERT INTO international VALUES (9,'FAQ',7,'Ìí¼ÓÐÂÎÊÌâ¡£',1031510000,NULL); -INSERT INTO international VALUES (9,'LinkList',7,'ÄúÊÇ·ñÈ·¶¨ÒªÉ¾³ý´ËÁ´½Ó£¿',1031510000,NULL); -INSERT INTO international VALUES (9,'SQLReport',7,'Debug: Error: The DSN specified is of an improper format.',1031510000,NULL); +INSERT INTO international VALUES (83,'USS',7,'Ìí¼ÓÐÂÎÊÌâ¡£',1031510000,NULL); +INSERT INTO international VALUES (11,'Auth/WebGUI',1,'New Password',1071507924,''); INSERT INTO international VALUES (9,'WebGUI',7,'²é¿´¼ôÌù°å',1031510000,NULL); INSERT INTO international VALUES (10,'Article',7,'ÊÇ·ñת»»»Ø³µ·û£¿',1031510000,NULL); -INSERT INTO international VALUES (10,'FAQ',7,'±à¼­ÎÊÌâ',1031510000,NULL); -INSERT INTO international VALUES (10,'LinkList',7,'±à¼­Á´½ÓÁбí',1031510000,NULL); +INSERT INTO international VALUES (84,'USS',7,'±à¼­ÎÊÌâ',1031510000,NULL); INSERT INTO international VALUES (10,'SQLReport',7,'Debug: Error: The SQL specified is of an improper format.',1031510000,NULL); INSERT INTO international VALUES (10,'WebGUI',7,'¹ÜÀíÀ¬»øÏä',1031510000,NULL); INSERT INTO international VALUES (11,'Article',7,'(Èç¹ûÄúûÓÐÊÖ¶¯ÊäÈë<br>£¬ÇëÑ¡Ôñ¡°ÊÇ¡±)',1031510000,NULL); @@ -4233,13 +4159,13 @@ INSERT INTO international VALUES (11,'SQLReport',7,'Debug: Error: There w INSERT INTO international VALUES (11,'WebGUI',7,'Çå¿ÕÀ¬»øÏä',1031510000,NULL); INSERT INTO international VALUES (12,'Article',7,'±à¼­ÎÄÕÂ',1031510000,NULL); INSERT INTO international VALUES (12,'EventsCalendar',7,'±à¼­ÐÐÊÂÀú',1031510000,NULL); -INSERT INTO international VALUES (12,'LinkList',7,'±à¼­Á´½Ó',1031510000,NULL); +INSERT INTO international VALUES (90,'USS',7,'±à¼­Á´½Ó',1031510000,NULL); INSERT INTO international VALUES (12,'SQLReport',7,'Debug: Error: Could not connect to the database.',1031510000,NULL); INSERT INTO international VALUES (12,'USS',7,'(Èç¹ûÄúʹÓÃÁ˳¬Îı¾ÓïÑÔ£¬Ç벻ҪѡÔñ´ËÏî)',1031510000,NULL); INSERT INTO international VALUES (12,'WebGUI',7,'Í˳ö¹ÜÀí',1031510000,NULL); INSERT INTO international VALUES (13,'Article',7,'ɾ³ý',1031510000,NULL); INSERT INTO international VALUES (13,'EventsCalendar',7,'±à¼­ÊÂÎñ',1031510000,NULL); -INSERT INTO international VALUES (13,'LinkList',7,'Ìí¼ÓÐÂÁ´½Ó¡£',1031510000,NULL); +INSERT INTO international VALUES (89,'USS',7,'Ìí¼ÓÐÂÁ´½Ó¡£',1031510000,NULL); INSERT INTO international VALUES (13,'USS',7,'Ͷ¸åʱ¼ä',1031510000,NULL); INSERT INTO international VALUES (13,'WebGUI',7,'²é¿´°ïÖúË÷Òý',1031510000,NULL); INSERT INTO international VALUES (764,'WebGUI',1,'Edit this collateral item.',1036892856,NULL); @@ -4277,7 +4203,6 @@ INSERT INTO international VALUES (30,'WebGUI',7,' INSERT INTO international VALUES (31,'WebGUI',7,'ÐÇÆÚËÄ',1031510000,NULL); INSERT INTO international VALUES (32,'WebGUI',7,'ÐÇÆÚÎå',1031510000,NULL); INSERT INTO international VALUES (33,'WebGUI',7,'ÐÇÆÚÁù',1031510000,NULL); -INSERT INTO international VALUES (34,'WebGUI',7,'ÉèÖÃÈÕÆÚ',1031510000,NULL); INSERT INTO international VALUES (35,'WebGUI',7,'¹ÜÀí¹¦ÄÜ',1031510000,NULL); INSERT INTO international VALUES (36,'WebGUI',7,'Äú±ØÐëÊÇϵͳ¹ÜÀíÔ±²ÅÄÜʹÓô˹¦ÄÜ¡£ÇëÁªÏµÄúµÄϵͳ¹ÜÀíÔ±¡£ÒÔÏÂÊDZ¾ÏµÍ³µÄϵͳ¹ÜÀíÔ±Çåµ¥£º',1031510000,NULL); INSERT INTO international VALUES (37,'WebGUI',7,'ȨÏÞ±»¾Ü¾ø£¡',1031510000,NULL); @@ -4380,15 +4305,9 @@ INSERT INTO international VALUES (148,'WebGUI',7,' INSERT INTO international VALUES (149,'WebGUI',7,'Óû§Êý',1031510000,NULL); INSERT INTO international VALUES (533,'WebGUI',7,'²»°üÀ¨ËÑË÷×Ö',1031510000,NULL); INSERT INTO international VALUES (532,'WebGUI',7,'°üÀ¨ÖÁÉÙÒ»¸öËÑË÷×Ö',1031510000,NULL); -INSERT INTO international VALUES (151,'WebGUI',7,'·ç¸ñÃû',1031510000,NULL); INSERT INTO international VALUES (505,'WebGUI',7,'Ìí¼ÓÒ»¸öÐÂÄ£°å',1031510000,NULL); INSERT INTO international VALUES (504,'WebGUI',7,'Ä£°å',1031510000,NULL); INSERT INTO international VALUES (502,'WebGUI',7,'ÄúÈ·ÐÅҪɾ³ý´ËÄ£°å£¬²¢½«ËùÓÐʹÓôËÄ£°åµÄÒ³ÃæÉèΪĬÈÏÄ£°å£¿',1031510000,NULL); -INSERT INTO international VALUES (154,'WebGUI',7,'·ç¸ñµ¥',1031510000,NULL); -INSERT INTO international VALUES (155,'WebGUI',7,'ÄúÈ·¶¨ÒªÉ¾³ý´ËÒ³Ãæ·ç¸ñ£¬²¢½«ËùÓÐʹÓô˷ç¸ñµÄÒ³Ãæ·ç¸ñÉèΪ¡°°²È«Ä£Ê½¡±·ç¸ñ£¿',1031510000,NULL); -INSERT INTO international VALUES (156,'WebGUI',7,'±à¼­·ç¸ñ',1031510000,NULL); -INSERT INTO international VALUES (157,'WebGUI',7,'·ç¸ñ',1031510000,NULL); -INSERT INTO international VALUES (158,'WebGUI',7,'Ìí¼Óзç¸ñ¡£',1031510000,NULL); INSERT INTO international VALUES (160,'WebGUI',7,'Ìá½»ÈÕÆÚ',1031510000,NULL); INSERT INTO international VALUES (161,'WebGUI',7,'Ìá½»ÈË',1031510000,NULL); INSERT INTO international VALUES (162,'WebGUI',7,'ÄúÊÇ·ñÈ·¶¨ÒªÇå¿ÕÀ¬»øÏäÖÐËùÓÐÒ³ÃæºÍ×é¼þÂð£¿',1031510000,NULL); @@ -4468,8 +4387,6 @@ INSERT INTO international VALUES (361,'WebGUI',7,' INSERT INTO international VALUES (362,'WebGUI',7,'ƽ·Ö',1031510000,NULL); INSERT INTO international VALUES (363,'WebGUI',7,'Ä£°å¶¨Î»',1031510000,NULL); INSERT INTO international VALUES (364,'WebGUI',7,'ËÑË÷',1031510000,NULL); -INSERT INTO international VALUES (365,'WebGUI',7,'ËÑË÷½á¹û...',1031510000,NULL); -INSERT INTO international VALUES (366,'WebGUI',7,'ûÓÐÕÒµ½·ûºÏËÑË÷Ìõ¼þµÄÒ³Ãæ¡£',1031510000,NULL); INSERT INTO international VALUES (368,'WebGUI',7,'½«´ËÓû§¼ÓÈëÐÂÓû§×é¡£',1031510000,NULL); INSERT INTO international VALUES (369,'WebGUI',7,'¹ýÆÚÈÕÆÚ',1031510000,NULL); INSERT INTO international VALUES (370,'WebGUI',7,'±à¼­Óû§·Ö×é',1031510000,NULL); @@ -4477,18 +4394,16 @@ INSERT INTO international VALUES (371,'WebGUI',7,' INSERT INTO international VALUES (372,'WebGUI',7,'±à¼­Óû§ËùÊô×éȺ',1031510000,NULL); INSERT INTO international VALUES (605,'WebGUI',1,'Add Groups',1031514049,NULL); INSERT INTO international VALUES (374,'WebGUI',7,'¹ÜÀí°ü¹ü¡£',1031510000,NULL); -INSERT INTO international VALUES (375,'WebGUI',7,'Ñ¡ÔñÒªÕ¹¿ªµÄ°ü¹ü¡£',1031510000,NULL); +INSERT INTO international VALUES (4,'Navigation',1,'my grandmother\'s level (../../page)',1077078456,'Option of \"Base page\"'); INSERT INTO international VALUES (376,'WebGUI',7,'°ü¹ü',1031510000,NULL); -INSERT INTO international VALUES (377,'WebGUI',7,'°ü¹ü¹ÜÀíÔ±»òϵͳ¹ÜÀíԱûÓж¨Òå°ü¹ü¡£',1031510000,NULL); +INSERT INTO international VALUES (11,'Navigation',1,'descendants',1077078969,'Option on question \"return a loop with\"'); INSERT INTO international VALUES (31,'USS',7,'ÄÚÈÝ',1031510000,NULL); INSERT INTO international VALUES (32,'USS',7,'ͼƬ',1031510000,NULL); INSERT INTO international VALUES (33,'USS',7,'¸½¼þ',1031510000,NULL); -INSERT INTO international VALUES (34,'USS',7,'ת»»»Ø³µ',1031510000,NULL); INSERT INTO international VALUES (35,'USS',7,'±êÌâ',1031510000,NULL); INSERT INTO international VALUES (80,'EventsCalendar',1,'Event Template',1038190379,NULL); INSERT INTO international VALUES (378,'WebGUI',7,'Óû§ ID',1031510000,NULL); INSERT INTO international VALUES (379,'WebGUI',7,'Óû§×é ID',1031510000,NULL); -INSERT INTO international VALUES (380,'WebGUI',7,'·ç¸ñ ID',1031510000,NULL); INSERT INTO international VALUES (381,'WebGUI',7,'ϵͳÊÕµ½Ò»¸öÎÞЧµÄ±íµ¥ÇëÇó£¬ÎÞ·¨¼ÌÐø¡£µ±Í¨¹ý±íµ¥ÊäÈëÁËһЩ·Ç·¨×Ö·û£¬Í¨³£»áµ¼ÖÂÕâ¸ö½á¹û¡£Çë°´ä¯ÀÀÆ÷µÄ·µ»Ø°´Å¦·µ»ØÉÏÒ³ÖØÐÂÊäÈë¡£',1031510000,NULL); INSERT INTO international VALUES (1,'FileManager',7,'ÏÂÔØ¹ÜÀí',1031510000,NULL); INSERT INTO international VALUES (3,'FileManager',7,'ÊÇ·ñÖ´ÐÐÌí¼ÓÎļþ£¿',1031510000,NULL); @@ -4504,7 +4419,6 @@ INSERT INTO international VALUES (14,'FileManager',7,' INSERT INTO international VALUES (15,'FileManager',7,'ÃèÊö',1031510000,NULL); INSERT INTO international VALUES (16,'FileManager',7,'ÉÏÔØÈÕÆÚ',1031510000,NULL); INSERT INTO international VALUES (37,'USS',7,'ɾ³ý',1031510000,NULL); -INSERT INTO international VALUES (13,'SQLReport',7,'Convert carriage returns?',1031510000,NULL); INSERT INTO international VALUES (17,'FileManager',7,'ÆäËû°æ±¾ #1',1031510000,NULL); INSERT INTO international VALUES (18,'FileManager',7,'ÆäËû°æ±¾ #2',1031510000,NULL); INSERT INTO international VALUES (19,'FileManager',7,'ûÓÐÄú¿ÉÒÔÏÂÔØµÄÎļþ¡£',1031510000,NULL); @@ -4526,7 +4440,6 @@ INSERT INTO international VALUES (783,'WebGUI',1,'Type',1036954378,NULL); INSERT INTO international VALUES (394,'WebGUI',7,'¹ÜÀíͼÏó¡£',1031510000,NULL); INSERT INTO international VALUES (395,'WebGUI',7,'Ìí¼ÓÐÂͼÏó¡£',1031510000,NULL); INSERT INTO international VALUES (719,'WebGUI',10,'Forældet',1036855669,NULL); -INSERT INTO international VALUES (398,'WebGUI',7,'ÎĵµÀàÐͶ¨Òå',1031510000,NULL); INSERT INTO international VALUES (399,'WebGUI',7,'·ÖÎö±¾Ò³Ãæ¡£',1031510000,NULL); INSERT INTO international VALUES (400,'WebGUI',7,'ÊÇ·ñ×èÖ¹´úÀí»º´æ£¿',1031510000,NULL); INSERT INTO international VALUES (401,'WebGUI',7,'ÄúÊÇ·ñÈ·¶¨ÒªÉ¾³ý´ËÌõÏûÏ¢ÒÔ¼°´ËÌõÏûÏ¢µÄËùÓÐÏßË÷£¿',1031510000,NULL); @@ -4556,7 +4469,9 @@ INSERT INTO international VALUES (1036,'WebGUI',1,'Threads',1066038155,'A label INSERT INTO international VALUES (28,'Article',7,'²é¿´»ØÓ¦',1031510000,NULL); INSERT INTO international VALUES (57,'Product',1,'Are you certain you wish to delete this template and set all the products using it to the default template?',1031514049,NULL); INSERT INTO international VALUES (53,'Product',1,'Edit Benefit',1031514049,NULL); -INSERT INTO international VALUES (416,'WebGUI',7,'

ÄúµÄÇëÇó³öÏÖÎÊÌâ

\r\nÄúµÄÇëÇó³öÏÖÒ»¸ö´íÎó¡£Çë°´ä¯ÀÀÆ÷µÄ·µ»Ø°´Å¥·µ»ØÉÏÒ»Ò³ÖØÊÔÒ»´Î¡£Èç¹û´ËÏî´íÎó¼ÌÐø´æÔÚ£¬ÇëÁªÏµÎÒÃÇ£¬Í¬Ê±¸æËßÎÒÃÇÄúÔÚʲôʱ¼äʹÓÃʲô¹¦ÄܵÄʱºò³öÏÖµÄÕâ¸ö´íÎó¡£Ð»Ð»£¡',1031510000,NULL); +INSERT INTO international VALUES (785,'WebGUI',16,'Zasoby, Zarz±dzanie',1076559206,NULL); +INSERT INTO international VALUES (683,'WebGUI',16,'Szablony, Zarz±dzanie',1076559180,NULL); +INSERT INTO international VALUES (677,'WebGUI',16,'Obiekt WWW (Wobject), Dodawanie/Edycja',1076559156,NULL); INSERT INTO international VALUES (417,'WebGUI',7,'

°²È«¾¯±¨

\r\n Äú·ÃÎʵÄ×é¼þ²»ÔÚÕâÒ»Ò³ÉÏ¡£´ËÐÅÏ¢ÒѾ­·¢Ë͸øÏµÍ³¹ÜÀíÔ±¡£',1031510000,NULL); INSERT INTO international VALUES (418,'WebGUI',7,'HTML ¹ýÂË',1031510000,NULL); INSERT INTO international VALUES (419,'WebGUI',7,'Çå³ýËùÓеıêʶ·û¡£',1031510000,NULL); @@ -4642,7 +4557,6 @@ INSERT INTO international VALUES (500,'WebGUI',7,'Ò³ INSERT INTO international VALUES (514,'WebGUI',7,'·ÃÎÊ',1031510000,NULL); INSERT INTO international VALUES (527,'WebGUI',7,'ĬÈÏÊ×Ò³',1031510000,NULL); INSERT INTO international VALUES (503,'WebGUI',7,'Ä£°å ID',1031510000,NULL); -INSERT INTO international VALUES (501,'WebGUI',7,'Ö÷Ìå',1031510000,NULL); INSERT INTO international VALUES (528,'WebGUI',7,'Ä£°åÃû³Æ',1031510000,NULL); INSERT INTO international VALUES (468,'WebGUI/Profile',7,'±à¼­Óû§ÊôÐÔÀà',1031510000,NULL); INSERT INTO international VALUES (159,'WebGUI',7,'ÊÕ¼þÏä',1031510000,NULL); @@ -4656,9 +4570,6 @@ INSERT INTO international VALUES (51,'USS',7,' INSERT INTO international VALUES (52,'USS',7,'¿ìÕÕ',1031510000,NULL); INSERT INTO international VALUES (53,'USS',7,'²¼¾Ö',1031510000,NULL); INSERT INTO international VALUES (57,'USS',7,'»ØÓ¦',1031510000,NULL); -INSERT INTO international VALUES (11,'FAQ',7,'ÊÇ·ñ´ò¿ª TOC £¿',1031510000,NULL); -INSERT INTO international VALUES (12,'FAQ',7,'ÊÇ·ñ´ò¿ª Q/A £¿',1031510000,NULL); -INSERT INTO international VALUES (13,'FAQ',7,'ÊÇ·ñ´ò¿ª [top] Á¬½Ó£¿',1031510000,NULL); INSERT INTO international VALUES (509,'WebGUI',7,'ÌÖÂÛ²¼¾Ö',1031510000,NULL); INSERT INTO international VALUES (510,'WebGUI',7,'ƽÆÌ',1031510000,NULL); INSERT INTO international VALUES (511,'WebGUI',7,'ÏßË÷',1031510000,NULL); @@ -4781,14 +4692,15 @@ INSERT INTO international VALUES (426,'WebGUI',8,'Storico Login',1046125815,NULL INSERT INTO international VALUES (425,'WebGUI',8,'Sessioni Attive',1046125805,NULL); INSERT INTO international VALUES (424,'WebGUI',8,'Visualizza Storico Login.',1046125796,NULL); INSERT INTO international VALUES (423,'WebGUI',8,'Visualizza Sessioni Attive.',1046125786,NULL); -INSERT INTO international VALUES (422,'WebGUI',8,'

Login Fallito!

\r\nLe informazioni che hai inserito non corrispondono all\'account.',1045779651,NULL); +INSERT INTO international VALUES (422,'WebGUI',8,'

Login Fallito!

\nLe informazioni che hai inserito non corrispondono all\'account.',1045779651,NULL); INSERT INTO international VALUES (421,'WebGUI',8,'Rimuovi tutto tranne che la formattazione basilare.',1048067435,NULL); INSERT INTO international VALUES (420,'WebGUI',8,'Lascia com\'è.',1048067493,NULL); INSERT INTO international VALUES (419,'WebGUI',8,'Rimuovi tutti i tag.',1048067456,NULL); INSERT INTO international VALUES (418,'WebGUI',8,'Filtra il contenuto',1048067477,NULL); -INSERT INTO international VALUES (417,'WebGUI',8,'

Violazione della Sicurezza

\r\nHai cercato di accedere ad un wobject non associato a questa pagina. Questo incidente è stato registrato.',1046632861,NULL); +INSERT INTO international VALUES (417,'WebGUI',8,'

Violazione della Sicurezza

\nHai cercato di accedere ad un wobject non associato a questa pagina. Questo incidente è stato registrato.',1046632861,NULL); INSERT INTO international VALUES (52,'Product',1,'Add another benefit?',1031514049,NULL); -INSERT INTO international VALUES (416,'WebGUI',8,'

Problemi con la richiesta

\r\nci sono stati dei problemi con la tua richiesta. Prego clicca sul bottone \"indietro\" del browser e riprova. Se questo problema persiste, contattaci specificando quello che stai tentando di fare e la data dell\'errore.',1046125685,NULL); +INSERT INTO international VALUES (827,'WebGUI',16,'Szablon obiektu WWW (Wobject)',1076559280,NULL); +INSERT INTO international VALUES (786,'WebGUI',16,'Wbudowany w WebGUI system zarz±dzania zasobami umo¿liwia umieszczanie plików oraz tekstu w centralnym magazynie do wykorzystania w dowolnym miejscu tre¶ci.',1076559245,NULL); INSERT INTO international VALUES (28,'Article',8,'Visualizza Risposte',1031922202,NULL); INSERT INTO international VALUES (24,'Article',8,'Invia Risposta',1031922173,NULL); INSERT INTO international VALUES (626,'WebGUI',2,'Wobjects (früher auch als Widgets bezeichnet) sind die wirkliche Stärke von \r\nWebGUI. Wobjects sind kleine einbindbare Applikationen, die für WebGUI entwickelt \r\nwurden. Diskussionsforen und Abstimmungen sind Beispiele für Wobjects. \r\n

Um einer Seite ein Wobject hinzuzufügen, müssen sie zuerst die Seite aufrufen, \r\nin die das Wobject soll. Dann wählen Sie ein Wobject ihrer Wahl aus dem oberen \r\nlinken Bereich ("Inhalt hinzufügen ... ") aus. Zu jedem Woject gibt \r\nes eine eigene Hilfe, daher schauen sie sich diese vorher an, wenn sie nicht \r\nwissen, welchen Zweck bzw. welche Funktionen das Wobject hat.

Style Sheets: Alle Wobjects besitzen \r\neine Style-Sheet Klasse und ID. \r\n

Die Style-Sheet Klasse besteht aus dem Word "wobject" plus dem \r\nTyp des Wobjects. Daher würde für eine Abstimmung die Style-Sheet Klasse "wobjectPoll" \r\nlauten. Die Klasse gehört dann zu allen Wobjects dieses Typs im System. \r\n

Die Style-Sheet ID besteht aus dem Wort "wobjectId" plus der Wobject Id für \r\ndiese Wobject Instanz. Für einen Artikel mit der Wobject Id 94 würde die ID \r\ndann "wobjectId94" lauten.

',1048589531,NULL); @@ -4814,7 +4726,6 @@ INSERT INTO international VALUES (60,'WebGUI',8,'Sei sicuro di voler disattivare INSERT INTO international VALUES (401,'WebGUI',8,'Sei sicuro di voler cancellare questo messaggio e tutti i messaggi sotto di esso in questo thread?',1046125446,NULL); INSERT INTO international VALUES (400,'WebGUI',8,'Impedisci la Cache del Proxy',1046125419,NULL); INSERT INTO international VALUES (399,'WebGUI',8,'Valida questa pagina.',1046125377,NULL); -INSERT INTO international VALUES (398,'WebGUI',8,'Document Type Declaration',1046125368,NULL); INSERT INTO international VALUES (394,'WebGUI',8,'Gestisci Archivio Collaterale.',1046125341,NULL); INSERT INTO international VALUES (395,'WebGUI',8,'Aggiungi una nuova Immagine.',1046125357,NULL); INSERT INTO international VALUES (707,'WebGUI',10,'Vis debug information?',1036855884,NULL); @@ -4837,7 +4748,6 @@ INSERT INTO international VALUES (15,'EventsCalendar',8,'Data di Fine',104577815 INSERT INTO international VALUES (19,'FileManager',8,'Non hai files disponibili.',1045778836,NULL); INSERT INTO international VALUES (18,'FileManager',8,'Versione Alternativa #2',1031922865,NULL); INSERT INTO international VALUES (17,'FileManager',8,'Versione Alternativa #1',1031922849,NULL); -INSERT INTO international VALUES (13,'SQLReport',8,'Converti gli a capo?',1045783462,NULL); INSERT INTO international VALUES (37,'USS',8,'Cancella',1045784047,NULL); INSERT INTO international VALUES (775,'WebGUI',1,'Are you certain you wish to delete this folder and move its contents to it\'s parent folder?',1036903002,NULL); INSERT INTO international VALUES (16,'FileManager',8,'Uploadato in Data',1031922644,NULL); @@ -4853,27 +4763,22 @@ INSERT INTO international VALUES (6,'FileManager',8,'File',1045778850,NULL); INSERT INTO international VALUES (3,'FileManager',8,'Continua aggiungendo un file?',1031922982,NULL); INSERT INTO international VALUES (5,'FileManager',8,'Titolo del File',1031923001,NULL); INSERT INTO international VALUES (1,'FileManager',8,'File Manager',1045778786,NULL); -INSERT INTO international VALUES (380,'WebGUI',8,'ID Stile',1046125172,NULL); INSERT INTO international VALUES (381,'WebGUI',8,'Il sistema ha ricevuto un richiesta non valida. Utilizza il tasto back del browser e prova ancora.',1046125205,NULL); INSERT INTO international VALUES (35,'USS',8,'Titolo',1045784040,NULL); INSERT INTO international VALUES (378,'WebGUI',8,'ID utente',1046125033,NULL); INSERT INTO international VALUES (379,'WebGUI',8,'ID Gruppo',1046125106,NULL); -INSERT INTO international VALUES (34,'USS',8,'Converti gli a capo',1045784028,NULL); INSERT INTO international VALUES (33,'USS',8,'Allegato',1045784020,NULL); INSERT INTO international VALUES (32,'USS',8,'Immagine',1045784011,NULL); INSERT INTO international VALUES (31,'USS',8,'Contenuto',1045783998,NULL); -INSERT INTO international VALUES (377,'WebGUI',8,'Nessun packages è stato definito dal tuo package manager o amministratore.',1046124982,NULL); +INSERT INTO international VALUES (16,'Navigation',1,'self and ancestors',1077079343,'Option on question \"return a loop with\".'); INSERT INTO international VALUES (11,'Poll',8,'Vota!',1045927671,NULL); INSERT INTO international VALUES (374,'WebGUI',8,'Gestisci packages.',1046122632,NULL); -INSERT INTO international VALUES (375,'WebGUI',8,'Seleziona Package da svolgere',1046124945,NULL); INSERT INTO international VALUES (376,'WebGUI',8,'Package',1046124960,NULL); INSERT INTO international VALUES (371,'WebGUI',8,'Aggiungi Grouping',1046122591,NULL); INSERT INTO international VALUES (372,'WebGUI',8,'Modifica i gruppi dell\'utente',1046122611,NULL); INSERT INTO international VALUES (370,'WebGUI',8,'Modifica Grouping',1046122581,NULL); INSERT INTO international VALUES (369,'WebGUI',8,'Data di scadenza',1046122563,NULL); INSERT INTO international VALUES (368,'WebGUI',8,'Aggiungi un nuovo gruppo a questo utente.',1046122552,NULL); -INSERT INTO international VALUES (365,'WebGUI',8,'Risultati della ricerca...',1046122513,NULL); -INSERT INTO international VALUES (366,'WebGUI',8,'Non sono state trovate pagine che soddisfano la tua richiesta.',1046122526,NULL); INSERT INTO international VALUES (364,'WebGUI',8,'Cerca',1046122505,NULL); INSERT INTO international VALUES (362,'WebGUI',8,'Fianco a fianco',1046122476,NULL); INSERT INTO international VALUES (363,'WebGUI',8,'Posizione nel Template',1046122495,NULL); @@ -4954,13 +4859,7 @@ INSERT INTO international VALUES (164,'WebGUI',8,'Metodo di autenticazione',1045 INSERT INTO international VALUES (162,'WebGUI',8,'Sei sicuro di voler cancellare tutte le pagine e i wobjects nel cestino?',1046632830,NULL); INSERT INTO international VALUES (161,'WebGUI',8,'Inviato Da',1045915790,NULL); INSERT INTO international VALUES (160,'WebGUI',8,'Inviato in Data',1045915775,NULL); -INSERT INTO international VALUES (158,'WebGUI',8,'Aggiungi un nuovo stile.',1045915734,NULL); INSERT INTO international VALUES (353,'WebGUI',8,'Non hai messaggi nella tua Inbox attualmente.',1046122373,NULL); -INSERT INTO international VALUES (157,'WebGUI',8,'Stili',1045915724,NULL); -INSERT INTO international VALUES (156,'WebGUI',8,'Modifica Stile',1045915714,NULL); -INSERT INTO international VALUES (155,'WebGUI',8,'Sei sicuro di voler cancellare questo stile ed assegnare a tutte le pagine che lo usano lo stile \"Fail Safe\" ?',1045915700,NULL); -INSERT INTO international VALUES (151,'WebGUI',8,'Nome dello stile',1045915669,NULL); -INSERT INTO international VALUES (154,'WebGUI',8,'Style Sheet',1045915681,NULL); INSERT INTO international VALUES (149,'WebGUI',8,'Utenti',1045915648,NULL); INSERT INTO international VALUES (148,'WebGUI',8,'Wobjects',1045915638,NULL); INSERT INTO international VALUES (147,'WebGUI',8,'Pagine',1045915611,NULL); @@ -4999,7 +4898,7 @@ INSERT INTO international VALUES (103,'WebGUI',8,'Specifiche della Pagina',10482 INSERT INTO international VALUES (101,'WebGUI',8,'Sei sicuro di voler cancellare questa pagina, il suo contenuto, e tutti gli elementi sotto di essa?',1045779413,NULL); INSERT INTO international VALUES (100,'WebGUI',8,'Meta Tags',1045779401,NULL); INSERT INTO international VALUES (99,'WebGUI',8,'Titolo',1045780971,NULL); -INSERT INTO international VALUES (642,'WebGUI',1,'Page, Add/Edit',1050440606,NULL); +INSERT INTO international VALUES (642,'WebGUI',1,'Page, Add/Edit',1078569027,NULL); INSERT INTO international VALUES (95,'WebGUI',8,'Indice Aiuto',1045780958,NULL); INSERT INTO international VALUES (94,'WebGUI',8,'Vedi anche',1045780950,NULL); INSERT INTO international VALUES (93,'WebGUI',8,'Aiuto',1045780941,NULL); @@ -5052,15 +4951,15 @@ INSERT INTO international VALUES (45,'WebGUI',8,'No, ho fatto uno sbaglio.',1045 INSERT INTO international VALUES (44,'WebGUI',8,'Sì, sono sicuro.',1045782431,NULL); INSERT INTO international VALUES (43,'WebGUI',8,'Sei sicuro di voler cancellare questo contenuto?',1045782384,NULL); INSERT INTO international VALUES (42,'WebGUI',8,'Prego Conferma',1046125756,NULL); -INSERT INTO international VALUES (41,'WebGUI',8,'Hai cercato di rimuovere un componente vitale del sistema. Se continui può\r\ncessare di funzionare.',1046125588,NULL); +INSERT INTO international VALUES (41,'WebGUI',8,'Hai cercato di rimuovere un componente vitale del sistema. Se continui può\ncessare di funzionare.',1046125588,NULL); INSERT INTO international VALUES (40,'WebGUI',8,'Componente Vitale',1046125408,NULL); INSERT INTO international VALUES (39,'WebGUI',8,'Non hai abbastanza privilegi per accedere a questa pagina.',1046125300,NULL); INSERT INTO international VALUES (38,'WebGUI',8,'Non hai abbastanza privilegi per questa operazione. Prego ^a(entra con un account); che ha sufficenti privilegi prima di eseguire questa operazione.',1046125159,NULL); INSERT INTO international VALUES (404,'WebGUI',8,'Prima Pagina',1046125474,NULL); INSERT INTO international VALUES (37,'WebGUI',8,'Permesso negato!',1046122573,NULL); -INSERT INTO international VALUES (36,'WebGUI',8,'Devi essere un amministratore per usare questa funzione. Per favore contatta uno degli amministratori. Questa è una lista degli amministratori di questo sistema:',1046122451,NULL); +INSERT INTO international VALUES (36,'WebGUI',8,'Devi essere un amministratore per usare questa funzione. Per favore contatta uno degli amministratori. ',1058378587,NULL); +INSERT INTO international VALUES (5,'PhotoGallery',8,'Nuovo',1034022154,NULL); INSERT INTO international VALUES (35,'WebGUI',8,'Funzioni Amministrative',1046122307,NULL); -INSERT INTO international VALUES (34,'WebGUI',8,'imposta la data (mm/gg/aaaa)',1046122193,NULL); INSERT INTO international VALUES (33,'WebGUI',8,'Sabato',1046122096,NULL); INSERT INTO international VALUES (31,'WebGUI',8,'Giovedì',1046121837,NULL); INSERT INTO international VALUES (32,'WebGUI',8,'Venerdì',1046121962,NULL); @@ -5096,13 +4995,13 @@ INSERT INTO international VALUES (14,'WebGUI',8,'Visualizza i contributi pendent INSERT INTO international VALUES (14,'USS',8,'Stato',1045783853,NULL); INSERT INTO international VALUES (13,'WebGUI',8,'Visualizza indice dell\'aiuto.',1045915359,NULL); INSERT INTO international VALUES (13,'USS',8,'Data',1045783842,NULL); -INSERT INTO international VALUES (13,'LinkList',8,'Aggiungi un nuovo link.',1045779037,NULL); +INSERT INTO international VALUES (89,'USS',8,'Aggiungi un nuovo link.',1045779037,NULL); INSERT INTO international VALUES (13,'EventsCalendar',8,'Modifica Evento',1045778141,NULL); INSERT INTO international VALUES (13,'Article',8,'Cancella',1031921959,NULL); INSERT INTO international VALUES (12,'WebGUI',8,'Spegni interfaccia amministrativa.',1045915288,NULL); INSERT INTO international VALUES (12,'USS',8,'(deseleziona se scrivi in HTML)',1045783832,NULL); INSERT INTO international VALUES (12,'EventsCalendar',8,'Modifica Calendario Eventi',1045681771,NULL); -INSERT INTO international VALUES (12,'LinkList',8,'Modifica Link',1045779027,NULL); +INSERT INTO international VALUES (90,'USS',8,'Modifica Link',1045779027,NULL); INSERT INTO international VALUES (12,'SQLReport',8,'Errore: non è possibile connettersi al database.',1045783455,NULL); INSERT INTO international VALUES (11,'WebGUI',8,'Svuota il cestino',1045784378,NULL); INSERT INTO international VALUES (12,'Article',8,'Modifica Articolo',1031921943,NULL); @@ -5112,49 +5011,38 @@ INSERT INTO international VALUES (11,'Article',8,'(Seleziona \"Si\" solo se non INSERT INTO international VALUES (10,'WebGUI',8,'Visualizza il cestino.',1045779330,NULL); INSERT INTO international VALUES (10,'SQLReport',8,'Errore: l\' SQL specificato ha un formato improprio.',1045783413,NULL); INSERT INTO international VALUES (10,'Poll',8,'Azzera i voti.',1045927659,NULL); -INSERT INTO international VALUES (10,'LinkList',8,'Modifica Lista di Link',1045779016,NULL); -INSERT INTO international VALUES (10,'FAQ',8,'Modifica Domanda',1048067361,NULL); +INSERT INTO international VALUES (84,'USS',8,'Modifica Domanda',1048067361,NULL); INSERT INTO international VALUES (715,'WebGUI',1,'Redirect URL',1031514049,NULL); INSERT INTO international VALUES (10,'Article',8,'Converti gli \'a capo\'?',1031911573,NULL); INSERT INTO international VALUES (9,'WebGUI',8,'Visualizza appunti.',1045781162,NULL); -INSERT INTO international VALUES (9,'SQLReport',8,'Errore: il DSN specificato ha un formato improprio.',1045783642,NULL); +INSERT INTO international VALUES (12,'Auth/WebGUI',1,'You may not use your old password as your new password',1071507932,''); INSERT INTO international VALUES (9,'Poll',8,'Modifica Sondaggio',1046121543,NULL); -INSERT INTO international VALUES (9,'LinkList',8,'Sei sicuro di voler cancellare questo link?',1045926707,NULL); -INSERT INTO international VALUES (9,'FAQ',8,'Aggiungi una nuova domanda.',1045778774,NULL); +INSERT INTO international VALUES (83,'USS',8,'Aggiungi una nuova domanda.',1045778774,NULL); INSERT INTO international VALUES (9,'EventsCalendar',8,'fino a',1045778412,NULL); INSERT INTO international VALUES (9,'Article',8,'Allegato',1031922314,NULL); INSERT INTO international VALUES (8,'WebGUI',8,'Visualizza pagina non trovata.',1045781265,NULL); INSERT INTO international VALUES (8,'SQLReport',8,'Modifica SQL Report',1045783584,NULL); INSERT INTO international VALUES (8,'Poll',8,'(Aggiungi una risposta per linea. Non più di 20)',1046121535,NULL); -INSERT INTO international VALUES (8,'LinkList',8,'URL',1045926697,NULL); -INSERT INTO international VALUES (8,'FAQ',8,'Modifica F.A.Q.',1045778691,NULL); +INSERT INTO international VALUES (91,'USS',8,'URL',1045926697,NULL); INSERT INTO international VALUES (8,'EventsCalendar',8,'Ricorre ogni',1045778398,NULL); INSERT INTO international VALUES (8,'Article',8,'URL del Link',1031922299,NULL); INSERT INTO international VALUES (7,'WebGUI',8,'Gestisci gli utenti.',1045781495,NULL); -INSERT INTO international VALUES (7,'SQLReport',8,'Password Database',1045783558,NULL); INSERT INTO international VALUES (7,'Poll',8,'Risposte',1046121521,NULL); -INSERT INTO international VALUES (7,'FAQ',8,'Sei sicuro di voler cancellare questa domanda?',1045778564,NULL); INSERT INTO international VALUES (7,'Article',8,'Titolo del link',1031922284,NULL); -INSERT INTO international VALUES (6,'WebGUI',8,'Gestisci gli stili.',1045780765,NULL); INSERT INTO international VALUES (6,'USS',8,'Contributi per pagina',1045779337,NULL); -INSERT INTO international VALUES (6,'SQLReport',8,'Utente Database',1045783545,NULL); +INSERT INTO international VALUES (32,'WSClient',1,'Debug: Error: Could not connect to the SOAP server.',1033575504,NULL); INSERT INTO international VALUES (6,'SiteMap',8,'Rientro',1045783716,NULL); INSERT INTO international VALUES (6,'Poll',8,'Domanda',1046121474,NULL); INSERT INTO international VALUES (6,'MessageBoard',8,'Modifica Forum',1045927559,NULL); -INSERT INTO international VALUES (6,'LinkList',8,'Lista di Link',1045779058,NULL); -INSERT INTO international VALUES (6,'FAQ',8,'Risposta',1045778550,NULL); -INSERT INTO international VALUES (6,'ExtraColumn',8,'Modifica Colonna Extra',1045778456,NULL); +INSERT INTO international VALUES (86,'USS',8,'Risposta',1045778550,NULL); INSERT INTO international VALUES (701,'WebGUI',8,'Settimana/e',1045781460,NULL); INSERT INTO international VALUES (6,'Article',8,'Immagine',1031922242,NULL); INSERT INTO international VALUES (5,'WebGUI',8,'Gestisci i gruppi.',1045782846,NULL); INSERT INTO international VALUES (5,'USS',8,'Il tuo contributo è stato respinto.',1045784164,NULL); -INSERT INTO international VALUES (5,'SQLReport',8,'DSN',1045783539,NULL); INSERT INTO international VALUES (5,'SiteMap',8,'Modifica la mappa del sito',1045783694,NULL); INSERT INTO international VALUES (5,'Poll',8,'Larghezza del grafico',1046121460,NULL); INSERT INTO international VALUES (819,'WebGUI',1,'Self-Deactivated',1038431323,NULL); -INSERT INTO international VALUES (5,'ExtraColumn',8,'StyleSheet Class',1045778448,NULL); -INSERT INTO international VALUES (5,'FAQ',8,'Domanda',1045778543,NULL); -INSERT INTO international VALUES (5,'Item',8,'Scarica allegato',1045778951,NULL); +INSERT INTO international VALUES (85,'USS',8,'Domanda',1045778543,NULL); INSERT INTO international VALUES (700,'WebGUI',8,'Giorno/i',1045781474,NULL); INSERT INTO international VALUES (4,'WebGUI',8,'Gestisci i settaggi.',1046125394,NULL); INSERT INTO international VALUES (4,'USS',8,'Il tuo contributo è stato approvato.',1045784091,NULL); @@ -5162,34 +5050,24 @@ INSERT INTO international VALUES (4,'SyndicatedContent',8,'Modifica Contenuto di INSERT INTO international VALUES (4,'SQLReport',8,'Query',1045783532,NULL); INSERT INTO international VALUES (4,'SiteMap',8,'Profondità',1045783686,NULL); INSERT INTO international VALUES (4,'Poll',8,'Chi può votare?',1045927698,NULL); -INSERT INTO international VALUES (4,'Item',8,'Item',1045778939,NULL); -INSERT INTO international VALUES (4,'ExtraColumn',8,'Larghezza',1045778438,NULL); INSERT INTO international VALUES (4,'EventsCalendar',8,'Accade solo una volta.',1045778197,NULL); INSERT INTO international VALUES (4,'Article',8,'Data di fine',1031922227,NULL); -INSERT INTO international VALUES (3,'WebGUI',8,'Incolla dagli appunti...',1046121779,NULL); INSERT INTO international VALUES (3,'USS',8,'Hai nuovi contenuti degli utenti da approvare.',1045783980,NULL); -INSERT INTO international VALUES (3,'SQLReport',8,'Template risultati',1045783525,NULL); INSERT INTO international VALUES (3,'SiteMap',8,'Partire da questo livello?',1045783673,NULL); INSERT INTO international VALUES (3,'Poll',8,'Attivo',1045927691,NULL); -INSERT INTO international VALUES (3,'LinkList',8,'Apri in nuova finestra?',1045779049,NULL); -INSERT INTO international VALUES (3,'Item',8,'Cancella allegato',1045778929,NULL); -INSERT INTO international VALUES (3,'ExtraColumn',8,'Spaziatore',1045778430,NULL); +INSERT INTO international VALUES (92,'USS',8,'Apri in nuova finestra?',1045779049,NULL); INSERT INTO international VALUES (3,'Article',8,'Data di inizio',1031922214,NULL); INSERT INTO international VALUES (2,'WebGUI',8,'Pagina',1045916015,NULL); INSERT INTO international VALUES (2,'USS',8,'Chi può contribuire?',1045783929,NULL); INSERT INTO international VALUES (2,'SyndicatedContent',8,'Contenuto da altri siti',1045783754,NULL); INSERT INTO international VALUES (2,'SiteMap',8,'Mappa del sito',1045783666,NULL); INSERT INTO international VALUES (2,'MessageBoard',8,'Forum',1045927206,NULL); -INSERT INTO international VALUES (2,'Item',8,'Allegato',1045778918,NULL); -INSERT INTO international VALUES (2,'FAQ',8,'F.A.Q.',1045778535,NULL); INSERT INTO international VALUES (2,'EventsCalendar',8,'Calendario Eventi',1045778175,NULL); INSERT INTO international VALUES (1,'WebGUI',8,'Aggiungi contenuto...',1045779385,NULL); INSERT INTO international VALUES (1,'USS',8,'Chi può approvare?',1045783811,NULL); INSERT INTO international VALUES (1,'SyndicatedContent',8,'URL del file RSS',1045783734,NULL); INSERT INTO international VALUES (1,'SQLReport',8,'SQL Report',1045783352,NULL); INSERT INTO international VALUES (1,'Poll',8,'Sondaggio',1045927650,NULL); -INSERT INTO international VALUES (1,'Item',8,'URL del link',1045778911,NULL); -INSERT INTO international VALUES (1,'ExtraColumn',8,'Colonna Extra',1045778418,NULL); INSERT INTO international VALUES (85,'EventsCalendar',1,'Last in the calendar.',1038190764,NULL); INSERT INTO international VALUES (1,'Article',8,'Articolo',1046124716,NULL); INSERT INTO international VALUES (367,'WebGUI',8,'Scade dopo',1046122539,NULL); @@ -5202,9 +5080,7 @@ INSERT INTO international VALUES (498,'WebGUI',8,'Data di oscuramento',104578283 INSERT INTO international VALUES (499,'WebGUI',8,'Wobject ID',1045782841,NULL); INSERT INTO international VALUES (81,'EventsCalendar',1,'Start Month',1038190442,NULL); INSERT INTO international VALUES (20,'EventsCalendar',8,'Aggiungi un evento.',1045778186,NULL); -INSERT INTO international VALUES (38,'USS',8,'(Seleziona \"No\" solo se hai usato l\'assistente per la creazione del testo.)',1045784064,NULL); INSERT INTO international VALUES (500,'WebGUI',8,'ID pagina',1045782855,NULL); -INSERT INTO international VALUES (501,'WebGUI',8,'Body',1045782860,NULL); INSERT INTO international VALUES (502,'WebGUI',8,'Sei sicuro di voler cancellare questo template e attribuire a tutte le pagine che lo usano il template di default?',1045782873,NULL); INSERT INTO international VALUES (503,'WebGUI',8,'Template ID',1045782879,NULL); INSERT INTO international VALUES (504,'WebGUI',8,'Template',1045782883,NULL); @@ -5221,14 +5097,11 @@ INSERT INTO international VALUES (51,'USS',8,'Visualizza thumbnails?',1045779394 INSERT INTO international VALUES (52,'USS',8,'Thumbnail',1045779354,NULL); INSERT INTO international VALUES (53,'USS',8,'Layout',1045779361,NULL); INSERT INTO international VALUES (57,'USS',8,'Risposte',1045779371,NULL); -INSERT INTO international VALUES (11,'FAQ',8,'Attiva elenco domande con link?',1045778509,NULL); -INSERT INTO international VALUES (12,'FAQ',8,'Attiva D/R ?',1045778518,NULL); -INSERT INTO international VALUES (13,'FAQ',8,'Attiva [top] link?',1045778528,NULL); INSERT INTO international VALUES (509,'WebGUI',8,'Layout Discussioni',1045782921,NULL); INSERT INTO international VALUES (510,'WebGUI',8,'Flat',1045782931,NULL); INSERT INTO international VALUES (511,'WebGUI',8,'Threaded',1045782935,NULL); -INSERT INTO international VALUES (512,'WebGUI',8,'Prossimo Thread',1045782940,NULL); -INSERT INTO international VALUES (513,'WebGUI',8,'Thread Precedente',1045782944,NULL); +INSERT INTO international VALUES (512,'WebGUI',8,'Prossimo Thread',1068899165,NULL); +INSERT INTO international VALUES (513,'WebGUI',8,'Thread Precedente',1068902000,NULL); INSERT INTO international VALUES (514,'WebGUI',8,'Visto',1031926696,NULL); INSERT INTO international VALUES (515,'WebGUI',8,'Aggiungi la data di modifica nei posts?',1045782952,NULL); INSERT INTO international VALUES (517,'WebGUI',8,'Spegni Admin!',1045782961,NULL); @@ -5245,7 +5118,7 @@ INSERT INTO international VALUES (526,'WebGUI',8,'Filtra JavaScript e nega le ma INSERT INTO international VALUES (527,'WebGUI',8,'Home Page di default',1045780118,NULL); INSERT INTO international VALUES (354,'WebGUI',8,'Visualizza Inbox.',1046122381,NULL); INSERT INTO international VALUES (528,'WebGUI',8,'Nome Template',1045780123,NULL); -INSERT INTO international VALUES (529,'WebGUI',8,'Risultati',1045780132,NULL); +INSERT INTO international VALUES (529,'WebGUI',8,'Risultati per pagina',1068902033,NULL); INSERT INTO international VALUES (530,'WebGUI',8,'con tutte le parole',1045780143,NULL); INSERT INTO international VALUES (531,'WebGUI',8,'con la frase esatta',1045780148,NULL); INSERT INTO international VALUES (532,'WebGUI',8,'con almeno queste parole',1045780154,NULL); @@ -5274,22 +5147,16 @@ INSERT INTO international VALUES (556,'WebGUI',8,'Ammontare',1045780426,NULL); INSERT INTO international VALUES (557,'WebGUI',8,'Descrizione',1045780431,NULL); INSERT INTO international VALUES (558,'WebGUI',8,'Modifica il Karma dell\'utente',1045780440,NULL); INSERT INTO international VALUES (61,'FileManager',1,'File Manager, Add/Edit',1038887335,NULL); -INSERT INTO international VALUES (61,'Item',1,'Item, Add/Edit',1038887675,NULL); -INSERT INTO international VALUES (61,'FAQ',1,'FAQ, Add/Edit',1038887388,NULL); INSERT INTO international VALUES (61,'SyndicatedContent',1,'Syndicated Content, Add/Edit',1047855741,NULL); INSERT INTO international VALUES (61,'EventsCalendar',1,'Events Calendar, Add/Edit',1066572488,NULL); INSERT INTO international VALUES (61,'MessageBoard',1,'Message Board, Add/Edit',1066584548,NULL); -INSERT INTO international VALUES (61,'LinkList',1,'Link List, Add/Edit',1038887837,NULL); INSERT INTO international VALUES (61,'Article',1,'Article, Add/Edit',1066583066,NULL); -INSERT INTO international VALUES (61,'ExtraColumn',1,'Extra Column, Add/Edit',1038887140,NULL); INSERT INTO international VALUES (61,'Poll',1,'Poll, Add/Edit',1050183732,NULL); INSERT INTO international VALUES (61,'SiteMap',1,'Site Map, Add/Edit',1038890147,NULL); INSERT INTO international VALUES (61,'SQLReport',1,'SQL Report, Add/Edit',1031514049,NULL); INSERT INTO international VALUES (61,'DataForm',1,'Data Form, Add/Edit',1053885941,NULL); INSERT INTO international VALUES (62,'DataForm',1,'Data Form Fields, Add/Edit',1052047004,NULL); INSERT INTO international VALUES (71,'FileManager',1,'The File Manager is designed to help you manage file distribution on your site. It allows you to specify who may view/download files from your site.\r\n

\r\n\r\nTemplate
\r\nChoose a layout for the file manager.\r\n

\r\n\r\nPaginate After
\r\nHow many files should be displayed before splitting the results into separate pages? In other words, how many files should be displayed per page?\r\n

\r\n\r\nProceed to add download?
\r\nIf you wish to start adding files to download right away, leave this checked.\r\n

\r\n\r\n',1038887335,NULL); -INSERT INTO international VALUES (71,'Item',1,'Like Articles, Items are the Swiss Army knife of WebGUI. Most pieces of static content can be added via the Item, though Items are usually used for smaller content than Articles.\r\n

\r\n\r\nLink URL
\r\nThis URL will be attached to the title of this Item.\r\n

\r\nExample: http://www.google.com\r\n

\r\n\r\nAttachment
\r\nIf you wish to attach a word processor file, a zip file, or any other file for download by your users, then choose it from your hard drive.\r\n

\r\n\r\nTemplate
\r\nChoose a layout for this Item.\r\n

\r\n',1038887675,NULL); -INSERT INTO international VALUES (71,'FAQ',1,'It seems that almost every web site, intranet, and extranet in the world has a Frequently Asked Questions area. This wobject helps you build one, too.\r\n

\r\n\r\nTemplate
\r\nChoose a layout for this FAQ.\r\n

\r\n\r\nWhat Next?
\r\nSelect \"add a question\" if you wish to add another question after this one.\r\n

\r\n\r\n


\r\nNote: The following style is specific to the FAQ in some of the built-in templates.\r\n

\r\n.faqQuestion
\r\nAn F.A.Q. question. To distinguish it from an answer.\r\n\r\n',1038887388,NULL); INSERT INTO international VALUES (71,'SyndicatedContent',1,'Syndicated content is content that is pulled from another site using the RDF/RSS specification. This technology is often used to pull headlines from various news sites like CNN and Slashdot. It can, of course, be used for other things like sports scores, stock market info, etc.\r\n

\r\n\r\nURL to RSS file
\r\nProvide the exact URL (starting with http://) to the syndicated content\'s RDF or RSS file. The syndicated content will be downloaded from this URL hourly.\r\n

\r\nYou can find syndicated content at the following locations:\r\n

\r\n\r\n

\r\n\r\nTo create an aggregate RSS feed, include a list of space separated urls instead of a single url. For an aggregate feed, the system will display an equal number of headlines from each source, sorted by the date the system first received the story.

\r\n\r\nTemplate
\r\nSelect a template for this content.\r\n

Maximum Headlines
\r\nEnter the maximum number of headlines that should be displayed. For an aggregate feed, the system will display an equal number of headlines from each source, even if doing so requires displaying more than the requested maximum number of headlines. Set to zero to allow any number of headlines.\r\n

',1047855741,NULL); INSERT INTO international VALUES (71,'EventsCalendar',1,'Events calendars are used on many intranets to keep track of internal dates that affect a whole organization. Also, Events Calendars on consumer sites are a great way to let your customers know what events you\'ll be attending and what promotions you\'ll be having.\r\n

\r\n\r\nMain Template
\r\nChoose a layout for the events calendar.\r\n

\r\n\r\nEvent Template
\r\nChoose a layout for the individual events within the calendars.\r\n

\r\n\r\nStart Month
\r\nChoose the start month for your calendar. If you choose \"current\" the calendar will always start on the current month, therefore it will change from month to month. If you choose \"first in the calendar\" then it will start at whatever the earliest date in the calendar is.\r\n

\r\n\r\nEnd Month
\r\nChoose the end month for your calendar. If you choose \"show X months from start\", then only X months worth of information will ever be displayed. If you choose \"current\" then the calendar will end on the month you are currently in. If you choose \"last in calendar\" then the calendar will end on the last date entered into the calendar.\r\n

\r\n\r\nDefault Month
\r\nChoose which month for this calendar to start on when a visitor comes to the page containing the calendar.\r\n

\r\n\r\nIs master?
\r\nIf set to yes then this calendar will display events from all other calendars in the system.\r\n

\r\n\r\nPaginate After
\r\nWhen using a list-style calendar, how many events should be shown per page?\r\n

\r\nProceed to add event?
\r\nLeave this set to yes if you want to add events to the Events Calendar directly after creating it.\r\n

\r\n\r\nNote: Events that have already happened will not be displayed on the events calendar.\r\n

\r\n


\r\nNote: The following style is specific to the Events Calendar.\r\n

\r\n.eventTitle
\r\nThe title of an individual event.\r\n\r\n',1066572488,NULL); INSERT INTO international VALUES (71,'MessageBoard',1,'Message boards, also called Forums and/or Discussions, are a great way to add community to any site or intranet. Many companies use message boards internally to collaborate on projects.\r\n

\r\n',1066584548,NULL); @@ -5297,16 +5164,14 @@ INSERT INTO international VALUES (78,'MessageBoard',1,'Forum, Add/Edit',10665844 INSERT INTO international VALUES (79,'MessageBoard',1,'A message board can contain one or more forums. The following is the list of properties attached to each forum.\r\n\r\n

\r\n\r\nTitle
\r\nThe title of the forum.\r\n

\r\n\r\nDescription
\r\nThe description of the forum.\r\n

\r\n\r\nNOTE: All of the properties of the forum system are also here. See that help page for details.',1066584480,NULL); INSERT INTO international VALUES (1067,'WebGUI',1,'Forum Search Template',1066582842,NULL); INSERT INTO international VALUES (1068,'WebGUI',1,'The following variables are available in the search template.\r\n

\r\n\r\ncallback.url
\r\nThe url that links back to the calling object such as an article or user submission.\r\n

\r\n\r\ncallback.label
\r\nThe default label for callback.url.\r\n

\r\n\r\nform.begin
\r\nThe search form header.\r\n

\r\n\r\nsearch.label
\r\nThe default label for the search page.\r\n

\r\n\r\nall.label
\r\nThe default label for all.form.\r\n

\r\n\r\nall.form
\r\nThe form element for searching based on all words.\r\n

\r\n\r\nexactphrase.label
\r\nThe default label for exactphrase.form.\r\n

\r\n\r\nexactphrase.form
\r\nThe form element for searching based on an exact phrase.\r\n

\r\n\r\nwithout.label
\r\nThe default label for without.form.\r\n

\r\n\r\nwithout.form
\r\nThe form element for searching based on words that cannot be found in the text.\r\n

\r\n\r\natleastone.label
\r\nThe default label for atleastone.form.\r\n

\r\n\r\natleastone.form
\r\nThe form element for searching where at least one of the words must exist in the text.\r\n

\r\n\r\nresults.label
\r\nThe default label for results.form.\r\n

\r\n\r\nresults.form
\r\nThe form element for selecting how many results per page should be returned.\r\n

\r\n\r\nform.search
\r\nThe search button.\r\n

\r\n\r\nform.end
\r\nThe form footer.\r\n

\r\n\r\nthread.list.url
\r\nA url that goes back to the thread list (aka forum).\r\n

\r\n\r\nthread.list.label
\r\nThe default label for thread.list.url.\r\n

\r\n\r\npost.subject.label
\r\nThe default label for the subject column.\r\n

\r\n\r\npost.date.label
\r\nThe default label for the date column.\r\n

\r\n\r\npost.user.label
\r\nThe default label for the author column.\r\n

\r\n\r\npost_loop
\r\nA loop containing all of the search results.\r\n

\r\n\r\n

\r\n\r\npost.subject
\r\nThe post subject.\r\n

\r\n\r\npost.url
\r\nThe url to view the post.\r\n

\r\n\r\npost.epoch
\r\nThe epoch date of the post.\r\n

\r\n\r\npost.date
\r\nThe human readable date of the post.\r\n

\r\n\r\npost.time
\r\nThe human readable time of the post.\r\n

\r\n\r\npost.user.id
\r\nThe userId of the poster.\r\n

\r\n\r\npost.user.name
\r\nThe username of the poster.\r\n

\r\n\r\npost.user.profile
\r\nThe url of the poster\'s profile.\r\n

\r\n\r\n

\r\n\r\n

\r\n\r\nfirstpage
\r\nA link to the first page in a multi-page listing.\r\n

\r\n\r\nlastpage
\r\nA link to the last page in a multi-page listing.\r\n

\r\n\r\nnextpage
\r\nA link to the next page in a multi-page listing.\r\n

\r\n\r\npagelist
\r\nA series of links to every page in a multi-page listing.\r\n

\r\n\r\npreviouspage
\r\nA link to the previous page in a multi-page listing.\r\n

\r\n\r\nmultiplepages
\r\nA condition indicating whether there are multiple pages or not.\r\n

\r\n\r\nnumberOfPages
\r\nThe number of pages in a multiple page listing.\r\n

\r\n\r\npageNumber
\r\nThe number of the current page in a multi-page listing.\r\n

\r\n\r\n',1066582842,NULL); -INSERT INTO international VALUES (71,'LinkList',1,'Link Lists are just what they sound like, a list of links. Many sites have a links section, and this wobject just automates the process.\r\n

\r\n\r\nTemplate
\r\nChoose a layout for this wobject.\r\n

\r\n\r\nWhat Next?
\r\nLeave this set to the default if you wish to add a link after creating the link list.\r\n

\r\n\r\n',1038887837,NULL); INSERT INTO international VALUES (71,'Article',1,'Articles are the Swiss Army knife of WebGUI. Most pieces of static content can be added via the Article.\r\n

\r\n\r\nNOTE: You can create a multi-paged article by placing the seperator macro (^-;) at various places through-out your article.\r\n\r\n

\r\nTemplate
\r\nSelect a template to layout your article.\r\n

\r\n\r\nImage
\r\nChoose an image (.jpg, .gif, .png) file from your hard drive. This file will be uploaded to the server and displayed in your article.\r\n

\r\n\r\n\r\nAttachment
\r\nIf you wish to attach a word processor file, a zip file, or any other file for download by your users, then choose it from your hard drive.\r\n

\r\n\r\nLink Title
\r\nIf you wish to add a link to your article, enter the title of the link in this field. \r\n

\r\nExample: Google\r\n

\r\n\r\nLink URL
\r\nIf you added a link title, now add the URL (uniform resource locator) here. \r\n

\r\nExample: http://www.google.com\r\n\r\n

\r\n\r\nConvert carriage returns?
\r\nIf you\'re publishing HTML there\'s generally no need to check this option, but if you aren\'t using HTML and you want a carriage return every place you hit your \"Enter\" key, then check this option.\r\n

\r\n\r\nAllow discussion?
\r\nChecking this box will enable responses to your article much like Articles on Slashdot.org.\r\n

\r\n\r\n\r\n',1066583066,NULL); INSERT INTO international VALUES (1054,'WebGUI',1,'Forum (Discussion) Properties',1066583000,NULL); INSERT INTO international VALUES (1055,'WebGUI',1,'WebGUI has a very powerful built-in discussion system. It can be attached to anything and is attached to many wobjects.\r\n

\r\nForums (aka Discussions) have many settable properties. The following is a comprehensive list:\r\n

\r\n\r\nForum Template
\r\nA template that controls the layout of the forum view.\r\n

\r\n\r\nThread Template
\r\nA template that controls the layout of the thread view.\r\n

\r\n\r\nPost Template
\r\nA template that controls the layout of the post view.\r\n

\r\n\r\nSearch Template
\r\nA template that controls the layout of the search engine interface and search results.\r\n

\r\n\r\nPost Form Template
\r\nA template that controls the form that users see when posting a new message.\r\n

\r\n\r\nNotification Template
\r\nA template that controls the layout of subscription notification messages sent to users.\r\n

\r\n\r\nArchive After
\r\nIf a thread hasn\'t had a new message after this interval has expired then it will be flagged as \"archived\" and will only be accessible via the search engine.\r\n

\r\n\r\nEdit Timeout
\r\nThe interval of time that the user has to edit their message after their inital post.\r\n

\r\nNOTE: Don\'t set this limit too high. One of the great things about discussions is that they are an accurate record of who said what. If you allow editing for a long time, then a user has a chance to go back and change his/her mind a long time after the original statement was made.\r\n

\r\n\r\nAdd edit stamp to posts?
\r\nIf set to yes then a string will be added to the bottom of a post each time its edited.\r\n

\r\n\r\nAllow rich edit?
\r\nIf set to yes then users will be able to use a rich editor when writing their posts.\r\n

\r\n\r\nAllow replacements?
\r\nIf set to yes then users will be able to use replacements in thier posts. Replacements can be managed from the settings.\r\n

\r\n\r\nFilter Post
\r\nSelect what types of content you will filter from a user\'s post.\r\n

\r\n\r\nPosts Per Page
\r\nThe number of posts to display on a single page.\r\n

\r\n\r\nKarma Per Post
\r\nHow much karma should be given to a user when they post a message?\r\n

\r\n\r\nWho can post?
\r\nA group that is allowed to post new messages.\r\n

\r\n\r\nModerate posts?
\r\nIf set to yes then posts will be set to pending by default and will not be displayed until a moderator approves the message.\r\n

\r\n\r\nWho can moderate?
\r\nA group that is allowed to moderate messages.\r\n

\r\n',1068708617,NULL); -INSERT INTO international VALUES (71,'ExtraColumn',1,'Extra columns allow you to change the layout of your page for one page only. If you wish to have multiple columns on all your pages, perhaps you should consider altering the style applied to your pages or use a Template instead of an Extra Column. \r\n

\r\nColumns are always added from left to right. Therefore any existing content will be on the left of the new column.\r\n

\r\nSpacer
\r\nSpacer is the amount of space between your existing content and your new column. It is measured in pixels.\r\n

\r\nWidth
\r\nWidth is the actual width of the new column to be added. Width is measured in pixels.\r\n

\r\nStyleSheet Class
\r\nBy default the content style (which is the style the body of your site should be using) that is applied to all columns. However, if you\'ve created a style specifically for columns, then feel free to modify this class.\r\n',1038887140,NULL); INSERT INTO international VALUES (71,'Poll',1,'Polls can be used to get the impressions of your users on various topics.\r\n

\r\nActive
\r\nIf this box is checked, then users will be able to vote. Otherwise they\'ll only be able to see the results of the poll.\r\n

\r\n\r\nWho can vote?
\r\nChoose a group that can vote on this Poll.\r\n

\r\n\r\nKarma Per Vote
\r\nHow much karma should be given to a user when they vote?\r\n

\r\n\r\nGraph Width
\r\nThe width of the poll results graph. The width is measured in pixels.\r\n

\r\n\r\nQuestion
\r\nWhat is the question you\'d like to ask your users?\r\n

\r\n\r\nAnswers
\r\nEnter the possible answers to your question. Enter only one answer per line. Polls are only capable of 20 possible answers.\r\n

\r\n\r\nRandomize answers?
\r\nIn order to be sure that the ordering of the answers in the poll does not bias your users, it is often helpful to present the options in a random order each time they are shown. Select \"yes\" to randomize the answers on the poll.\r\n

\r\n\r\nReset votes.
\r\nReset the votes on this Poll.\r\n

\r\n',1050183732,NULL); INSERT INTO international VALUES (73,'Poll',1,'Poll Template',1050183668,NULL); INSERT INTO international VALUES (74,'Poll',1,'The following variables are available to the poll template:\r\n\r\ncanVote
\r\nA condition indicating whether the user has the right to vote on this poll.\r\n

\r\n\r\nquestion
\r\nThe poll question.\r\n

\r\n\r\nform.start
\r\nThe beginning of the vote form.\r\n

\r\n\r\nanswer_loop
\r\nA loop containing information about the answers in the poll.\r\n

\r\n\r\n

\r\n\r\nanswer.form
\r\nThe radio button for this answer.\r\n

\r\n\r\nanswer.text
\r\nThe text of the answer.\r\n

\r\n\r\nanswer.number
\r\nThe number of this answer. As in 1, 2, 3, etc.\r\n

\r\n\r\nanswer.graphWidth
\r\nThe width that the graph should be rendered for this answer. Based upon a percentage of the total graph size.\r\n

\r\n\r\n\r\nanswer.percent
\r\nThe percentage of the vote that this answer has received.\r\n

\r\n\r\nanswer.total
\r\nThe total number of votes that this answer has received.\r\n

\r\n\r\n

\r\n\r\n\r\nform.submit
\r\nThe submit button for the poll form.\r\n

\r\n\r\nform.end
\r\nThe end of the poll form.\r\n

\r\n\r\nresponses.label
\r\nThe label for the total responses. \"Total Votes\"\r\n

\r\n\r\nresponses.total
\r\nThe total number of votes that have been placed on this poll.\r\n

\r\n\r\n',1050183668,NULL); INSERT INTO international VALUES (71,'SiteMap',1,'Site maps are used to provide additional navigation in WebGUI. You could set up a traditional site map that would display a hierarchical view of all the pages in the site. On the other hand, you could use site maps to provide extra navigation at certain levels in your site.\r\n

\r\n\r\nTemplate
\r\nChoose a layout for this site map.\r\n

\r\n\r\nStart With
\r\nSelect the page that this site map should start from.\r\n

\r\n\r\nDepth To Traverse
\r\nHow many levels deep of navigation should the Site Map show? If 0 (zero) is specified, it will show as many levels as there are.\r\n

\r\n\r\nIndent
\r\nHow many characters should indent each level?\r\n

\r\n\r\nAlphabetic?
\r\nIf this setting is true, site map entries are sorted alphabetically. If this setting is false, site map entries are sorted by the page sequence order (editable via the up and down arrows in the page toolbar).\r\n

\r\n\r\n',1039908464,NULL); -INSERT INTO international VALUES (839,'WebGUI',1,'Programmer Macros',1047856488,NULL); +INSERT INTO international VALUES (839,'WebGUI',1,'Programmer Macros',1078570360,NULL); INSERT INTO international VALUES (71,'SQLReport',1,'SQL Reports are perhaps the most powerful wobject in the WebGUI arsenal. They allow a user to query data from any database that they have access to. This is great for getting sales figures from your Accounting database or even summarizing all the message boards on your web site.\r\n

\r\n\r\n\r\nPreprocess macros on query?
\r\nIf you\'re using WebGUI macros in your query you\'ll want to check this box.\r\n

\r\n\r\n\r\nDebug?
\r\nIf you want to display debugging and error messages on the page, check this box.\r\n

\r\n\r\n\r\nQuery
\r\nThis is a standard SQL query. If you are unfamiliar with SQL, Plain Black Software provides training courses in SQL and database management. You can make your queries more dynamic by using the ^FormParam(); macro.\r\n

\r\n\r\n\r\nReport Template
\r\nLayout a template of how this report should look. Usually you\'ll use HTML tables to generate a report. An example is included below. If you leave this field blank a template will be generated based on your result set.\r\n

\r\n\r\n\r\nThere are special macro characters used in generating SQL Reports. They are ^-;, ^0;, ^1;, ^2;, ^3;, etc. These macros will be processed regardless of whether you checked the process macros box above. The ^- macro represents split points in the document where the report will begin and end looping. The numeric macros represent the data fields that will be returned from your query. There is an additional macro, ^rownum; that counts the rows of the query starting at 1 for use where the lines of the output need to be numbered.\r\n

\r\n\r\nDatabase Link
\r\nThe administrator can configure common databases on which you can run SQL Reports, freeing you from having to know or enter the DSN, Username, and Password. If a database is selected from this list, the DSN, User, and Password fields will be ignored.
\r\n
\r\nIf the database you need to use is not configured as a Database Link, you can enter the DSN, User, and Password.\r\n

\r\n\r\nDSN
\r\nData Source Name is the unique identifier that Perl uses to describe the location of your database. It takes the format of DBI:[driver]:[database name]:[host]. \r\n

\r\n\r\n\r\nExample: DBI:mysql:WebGUI:localhost\r\n

\r\n\r\n\r\nDatabase User\r\nThe username you use to connect to the DSN.\r\n

\r\n\r\n\r\nDatabase Password\r\nThe password you use to connect to the DSN.\r\n

\r\n\r\n\r\nPaginate After\r\nHow many rows should be displayed before splitting the results into separate pages? In other words, how many rows should be displayed per page?\r\n

\r\n\r\n\r\nConvert carriage returns?\r\nDo you wish to convert the carriage returns in the resultant data to HTML breaks (<br>).\r\n

\r\n\r\n',1056151382,NULL); INSERT INTO international VALUES (71,'DataForm',1,'This wobject creates a simple multipurpose data-entry form.\r\n

\r\n\r\nAcknowledgement
\r\nThis message will be displayed to the user after they submit their data..\r\n

\r\n\r\nMail entries?
\r\nIf set to yes, some additional fields will be added to your form for dealing with email. These fields will then be used to email any date entered into the form to a person of your choice.\r\n

\r\nNOTE: The \"To\" field that is added as a result of setting this to yes can accept a standard email address, or a WebGUI username or a WebGUI group name.\r\n

\r\n\r\nTemplate
\r\nChoose a template for your form.\r\n

\r\n\r\nEmail Template
\r\nChoose a template for the data that will be sent via email.\r\n

\r\n\r\nAcknowlegement Template
\r\nChoose a template that will be used to display the acknowlegement.\r\n

\r\n\r\nList Template
\r\nChoose a template that will be used to display the list of stored records in this Data Form.\r\n

',1053885941,NULL); INSERT INTO international VALUES (83,'DataForm',1,'The following template variables are available for Data Form templates.\r\n

\r\n\r\nacknowledgement
\r\nThe acknowledgement specified in the wobject\'s properties. This message should be displayed after a user submits data.\r\n

\r\nexport.tab.url
\r\nFollowing this URL will export the data stored to this data form as a tab delimited file.\r\n

\r\n\r\nexport.tab.label
\r\nThe default label for the export.tab.url variable.\r\n

\r\n\r\nentryList.url
\r\nFollowing this URL will display a list of all the record entries in this data form.\r\n

\r\n\r\nentryList.label
\r\nThe default label for the entryList.url variable.\r\n

\r\n\r\ncanEdit\r\nA conditional indicating whether the current user has the privileges to edit an existing entry or export the form\'s data.\r\n

\r\n\r\nback.url
\r\nA url that will take you back to the default page in the form.\r\n

\r\n\r\nback.label
\r\nThe default label for the back.url variable.\r\n

\r\n\r\nusername*
\r\nThe username of the user that submitted the data.\r\n

\r\n\r\nuserId*
\r\nThe user id of the user that submitted the data.\r\n

\r\n\r\ndate*
\r\nThe date that this data was submitted or last updated formatted as the user\'s preferred date/time format.\r\n

\r\n\r\n\r\nepoch*
\r\nThe date that this data was submitted or last updated formatted as an epoch date.\r\n

\r\n\r\nipAddress*
\r\nThe IP address of the user that submitted the data.\r\n

\r\n\r\nedit.url*
\r\nThe URL to the page to edit this entry.\r\n

\r\n\r\nerror_loop*
\r\nA loop containing error information, for instance if someone doesn\'t fill out a required field.\r\n

\r\n\r\n

\r\n\r\nerror.message*
\r\nAn error message indicating what the user might have done wrong.\r\n\r\n
\r\n\r\naddField.url
\r\nThe URL that content managers will visit to add a new field to the form.\r\n

\r\n\r\naddField.label
\r\nThe default label for the addField.url variable.\r\n

\r\n\r\nform.start
\r\nThe beginning of the form.\r\n

\r\n\r\nfield_loop
\r\nA loop containing all of the field information.\r\n

\r\n\r\n

\r\n\r\nfield.form
\r\nThe form element for this field.\r\n

\r\n\r\nfield.name
\r\nThe name of this field.\r\n

\r\n\r\nfield.value
\r\nThe value of this field. If this is new data, then the default value will be used.\r\n

\r\n\r\nfield.label
\r\nThe text label for this field.\r\n

\r\n\r\nfield.isHidden
\r\nA conditional indicating whether this field is supposed to be hidden. \r\n

\r\n\r\nfield.isDisplayed
\r\nA conditional indicating whether this field is supposed to be displayed. \r\n

\r\n\r\nfield.isEditable
\r\nA conditional indicating whether this field is editable. \r\n

\r\n\r\nfield.isRequired
\r\nA conditional indicating whether this field is required. \r\n

\r\n\r\nfield.isMailField
\r\nA conditional indicating whether this field is present only to facilitate sending an email. \r\n

\r\n\r\n\r\nfield.subtext
\r\nA description of the field so that users know what to put in the field.\r\n

\r\n\r\nfield.controls
\r\nWebGUI\'s administrative controls for this field.\r\n

\r\n\r\n

\r\n\r\nform.send
\r\nA form button with the word \"send\" printed on it.\r\n

\r\n\r\nform.save/b>
\r\nA form button with the word \"save\" printed on it.\r\n

\r\n\r\nform.end
\r\nThe end of the form.\r\n

\r\n\r\n*Only available if the user has already submitted the form.',1053948922,NULL); @@ -5326,9 +5191,6 @@ INSERT INTO international VALUES (795,'WebGUI',1,'Roots',1036972103,NULL); INSERT INTO international VALUES (794,'WebGUI',1,'Packages',1036971944,NULL); INSERT INTO international VALUES (793,'WebGUI',1,'Pieces of Collateral',1036971785,NULL); INSERT INTO international VALUES (792,'WebGUI',1,'Templates',1036971696,NULL); -INSERT INTO international VALUES (805,'WebGUI',1,'Delete this style.',1037075787,NULL); -INSERT INTO international VALUES (804,'WebGUI',1,'Copy this style.',1037075775,NULL); -INSERT INTO international VALUES (803,'WebGUI',1,'Edit this style.',1037075751,NULL); INSERT INTO international VALUES (74,'Survey',1,'Are you certain you wish to delete all the responses?',1037574455,NULL); INSERT INTO international VALUES (633,'WebGUI',1,'Simply put, roots are pages with no parent. The first and most important root in WebGUI is the \"Home\" page. Many people will never add any additional roots, but a few power users will. Those power users will create new roots for many different reasons. Perhaps they\'ll create a staging area for content managers. Or maybe a hidden area for Admin tools. Or possibly even a new root just to place their search engine.\r\n

\r\n\r\n',1031514049,NULL); INSERT INTO international VALUES (636,'WebGUI',1,'To create a package follow these simple steps:\r\n\r\n

    \r\n
  1. From the admin menu select \"Manage packages.\"\r\n
  2. \r\n\r\n
  3. Add a page and give it a name. The name of the page will be the name of the package.\r\n
  4. \r\n\r\n
  5. Go to the new page you created and start adding pages and wobjects. Any pages or wobjects you add will be created each time this package is deployed. \r\n
  6. \r\n
\r\n\r\nNotes:
\r\nIn order to add, edit, or delete packages you must be in the Package Mangers group or in the Admins group.\r\n

\r\n\r\nIf you add content to any of the wobjects, that content will automatically be copied when the package is deployed.\r\n

\r\n\r\nPrivileges and styles assigned to pages in the package will not be copied when the package is deployed. Instead the pages will take the privileges and styles of the area to which they are deployed.\r\n

\r\n',1038889481,NULL); @@ -5342,28 +5204,26 @@ INSERT INTO international VALUES (616,'WebGUI',1,'Path to WebGUI Extras\r\n\r\nTo add a wobject to a page, first go to that page, then select Add Content... from the upper left corner of your screen. Each wobject has it\'s own help so be sure to read the help if you\'re not sure how to use it.\r\n

\r\n\r\n\r\nStyle Sheets: All wobjects have a style-sheet class and id attached to them. \r\n

\r\n\r\nThe style-sheet class is the word \"wobject\" plus the type of wobject it is. So for a poll the class would be \"wobjectPoll\". The class pertains to all wobjects of that type in the system. \r\n

\r\n\r\nThe style-sheet id is the word \"wobjectId\" plus the Wobject Id for that wobject instance. So if you had an Article with a Wobject Id of 94, then the id would be \"wobjectId94\".\r\n

\r\n\r\n',1047858549,NULL); INSERT INTO international VALUES (632,'WebGUI',1,'You can add wobjects by selecting from the Add Content pulldown menu. You can edit them by clicking on the \"Edit\" button that appears directly above an instance of a particular wobject. \r\n

Almost all wobjects share some properties. Those properties are: \r\n

Wobject ID
This is the unique identifier WebGUI uses to keep track of this wobject instance. Normal users should never need to be concerned with the Wobject ID, but some advanced users may need to know it for things like SQL Reports. \r\n

Title The title of the wobject. This is typically displayed at the top of each wobject. \r\n

Note: You should always specify a title even if you are going to turn it off (with the next property). This is because the title shows up in the trash and clipboard and you\'ll want to be able to distinguish which wobject is which. \r\n

Display title?
Do you wish to display the title you specified? On some sites, displaying the title is not necessary. \r\n

Process macros?
Do you wish to process macros in the content of this wobject? Sometimes you\'ll want to do this, but more often than not you\'ll want to say \"no\" to this question. By disabling the processing of macros on the wobjects that don\'t use them, you\'ll speed up your web server slightly. \r\n

Template Position
Template positions range from 0 (zero) to any number. How many are available depends upon the Template associated with this page. The default template has only one template position, others may have more. By selecting a template position, you\'re specifying where this wobject should be placed within the template. \r\n

Start Date
On what date should this wobject become visible? Before this date, the wobject will only be displayed to Content Managers. \r\n

End Date
On what date should this wobject become invisible? After this date, the wobject will only be displayed to Content Managers.

Owner
The owner of a wobject is usually the person who created the wobject. This user has full edit and viewing rights on the wobject unless privileges to edit the page the wobject apears on are taken away. \r\n

NOTE: The owner can only be changed by an administrator. \r\n

Who can view?
Choose which group can view this wobject. If you want both visitors and registered users to be able to view the wobject then you should choose the \"Everybody\" group. \r\n

Who can edit?
Choose the group that can edit this wobject. The group assigned editing rights can also always view the wobject.

\r\n

Description
A content area in which you can place as much content as you wish. For instance, even before an FAQ there is usually a paragraph describing what is contained in the FAQ. \r\n

',1056055106,NULL); -INSERT INTO international VALUES (623,'WebGUI',1,'Cascading Style Sheets (CSS) are a great way to manage the look and feel of any web site. They are used extensively in WebGUI.\r\n

\r\n\r\n\r\nIf you are unfamiliar with how to use CSS, Plain Black Software provides training classes on XHTML and CSS. Alternatively, Bradsoft makes an excellent CSS editor called Top Style.\r\n

\r\n\r\n\r\nThe following is a list of classes used to control the look of WebGUI:\r\n

\r\n\r\n\r\nA
\r\nThe links throughout the style.\r\n

\r\n\r\n\r\nBODY
\r\nThe default setup of all pages within a style.\r\n

\r\n\r\n\r\nH1
\r\nThe headers on every page.\r\n

\r\n\r\n\r\n.accountOptions
\r\nThe links that appear under the login and account update forms.\r\n

\r\n\r\n\r\n.adminBar
\r\nThe bar that appears at the top of the page when you\'re in admin mode.\r\n

\r\n\r\n\r\n.content
\r\nThe main content area on all pages of the style.\r\n

\r\n\r\n\r\n.formDescription
\r\nThe tags on all forms next to the form elements. \r\n

\r\n\r\n\r\n.formSubtext
\r\nThe tags below some form elements.\r\n

\r\n\r\n\r\n.highlight
\r\nDenotes a highlighted item, such as which message you are viewing within a list.\r\n

\r\n\r\n\r\n.horizontalMenu
\r\nThe horizontal menu (if you use a horizontal menu macro).\r\n

\r\n\r\n\r\n.pagination
\r\nThe Previous and Next links on pages with pagination.\r\n

\r\n\r\n\r\n.selectedMenuItem
\r\nUse this class to highlight the current page in any of the menu macros.\r\n

\r\n\r\n\r\n.tableData
\r\nThe data rows on things like message boards and user contributions.\r\n

\r\n\r\n\r\n.tableHeader
\r\nThe headings of columns on things like message boards and user contributions.\r\n

\r\n\r\n\r\n.tableMenu
\r\nThe menu on things like message boards and user submissions.\r\n

\r\n\r\n\r\n.verticalMenu
\r\nThe vertical menu (if you use a vertical menu macro).\r\n

\r\n\r\n\r\nNOTE: Some wobjects and macros have their own unique styles sheet classes, which are documented in their individual help files.\r\n

\r\n\r\n\r\n',1046067403,NULL); -INSERT INTO international VALUES (607,'WebGUI',1,'Anonymous Registration
\r\nDo you wish visitors to your site to be able to register themselves?\r\n

\r\n\r\nRun On Registration
\r\nIf there is a command line specified here, it will be executed each time a user registers anonymously.\r\n

\r\n\r\nEnable Karma?
\r\nShould karma be enabled?\r\n

\r\n\r\nKarma Per Login
\r\nThe amount of karma a user should be given when they log in. This only takes affect if karma is enabled.\r\n

\r\n\r\nSession Timeout
\r\nThe amount of time that a user session remains active (before needing to log in again). This timeout is reset each time a user views a page. Therefore if you set the timeout for 8 hours, a user would have to log in again if s/he hadn\'t visited the site for 8 hours.\r\n

\r\n\r\nAllow users to deactivate their account?
\r\nDo you wish to provide your users with a means to deactivate their account without your intervention?\r\n

\r\n\r\nAuthentication Method (default)
\r\nWhat should the default authentication method be for new accounts that are created? The two available options are WebGUI and LDAP. WebGUI authentication means that the users will authenticate against the username and password stored in the WebGUI database. LDAP authentication means that users will authenticate against an external LDAP server.\r\n

\r\n\r\nNOTE: Authentication settings can be customized on a per user basis.\r\n\r\n\r\n\r\n

\r\nNOTE: Depending upon what authentication modules you have installed in your system you\'ll see any number of options after this point. The following are the options for the two defaultly installed authentication methods.\r\n

\r\n\r\nEncrypt Login?
\r\nShould the system use the https protocol for the login form? Note that setting this option to true will only encrypt the authentication itself, not anything else before or after the authentication.\r\n

\r\n\r\n

WebGUI Authentication Options

\r\n\r\nSend welcome message?
\r\nDo you wish WebGUI to automatically send users a welcome message when they register for your site? \r\n

\r\nNOTE: In addition to the message you specify below, the user\'s account information will be included in the message.\r\n

\r\n\r\nWelcome Message
\r\nType the message that you\'d like to be sent to users upon registration.\r\n

\r\n\r\nRecover Password Message
\r\nType a message that will be sent to your users if they try to recover their WebGUI password.\r\n

\r\n\r\n

LDAP Authentication Options

\r\n\r\nLDAP URL (default)
\r\nThe default url to your LDAP server. The LDAP URL takes the form of ldap://[server]:[port]/[base DN]. Example: ldap://ldap.mycompany.com:389/o=MyCompany.\r\n

\r\n\r\n\r\n\r\n\r\nLDAP Identity
\r\nThe LDAP Identity is the unique identifier in the LDAP server that the user will be identified against. Often this field is shortname, which takes the form of first initial + last name. Example: jdoe. Therefore if you specify the LDAP identity to be shortname then Jon Doe would enter jdoe during the registration process.\r\n

\r\n\r\nLDAP Identity Name
\r\nThe label used to describe the LDAP Identity to the user. For instance, some companies use an LDAP server for their proxy server users to authenticate against. In the documentation or training already provided to their users, the LDAP identity is known as their Web Username
. So you could enter that label here for consitency.\r\n

\r\n\r\nLDAP Password Name
\r\nJust as the LDAP Identity Name is a label, so is the LDAP Password Name. Use this label as you would LDAP Identity Name.\r\n

\r\n\r\n',1044708602,NULL); +INSERT INTO international VALUES (623,'WebGUI',1,'Cascading Style Sheets (CSS) are a great way to manage the look and feel of any web site. They are used extensively in WebGUI.\r\n

\r\n\r\n\r\nIf you are unfamiliar with how to use CSS, Plain Black provides training classes on XHTML and CSS. Alternatively, Bradsoft makes an excellent CSS editor called Top Style.\r\n

\r\n\r\n\r\nThe following is a list of classes used to control the default look of WebGUI. These of course can be overridden or replaced in the various templates that generate them.\r\n

\r\n\r\n\r\nA
\r\nThe links throughout the style.\r\n

\r\n\r\n\r\nBODY
\r\nThe default setup of all pages within a style.\r\n

\r\n\r\n\r\nH1
\r\nThe headers on every page.\r\n

\r\n\r\n\r\n.content
\r\nThe main content area on all pages of the style.\r\n

\r\n\r\n\r\n.formDescription
\r\nThe tags on all forms next to the form elements. \r\n

\r\n\r\n\r\n.formSubtext
\r\nThe tags below some form elements.\r\n

\r\n\r\n\r\n.highlight
\r\nDenotes a highlighted item, such as which message you are viewing within a list.\r\n

\r\n\r\n\r\n\r\n\r\n.pagination
\r\nThe Previous and Next links on pages with pagination.\r\n

\r\n\r\n\r\n\r\n\r\n.tableData
\r\nThe data rows on things like message boards and user contributions.\r\n

\r\n\r\n\r\n.tableHeader
\r\nThe headings of columns on things like message boards and user contributions.\r\n

\r\n\r\n\r\n\r\n\r\nNOTE: Some wobjects and macros have their own unique styles sheet classes, which are documented in their individual help files.\r\n

\r\n\r\n\r\n',1070030223,NULL); +INSERT INTO international VALUES (846,'WebGUI',1,'These macros are mainly useful in maintaining styles in WebGUI.\r\n

\r\n\r\n^AdminBar;
\r\nPlaces the administrative tool bar on the page. This is a required element in the \"body\" segment of the Style Manager. This macro uses a style sheet class called .adminBar , which you may want to account for in your style.\r\n\r\n

\r\n\r\n\r\n^c; - Company Name
\r\nThe name of your company specified in the settings by your Administrator.\r\n

\r\n\r\n\r\n^e; - Company Email Address
\r\nThe email address for your company specified in the settings by your Administrator.\r\n

\r\n\r\n^Extras;
\r\nReturns the path to the WebGUI \"extras\" folder, which contains things like WebGUI icons.\r\n

\r\n\r\n^LastModified; or ^LastModified();
\r\nDisplays the date that the current page was last modified based upon the wobjects on the page. The date is defaultly displayed based upon the user\'s date preferences. Optionally, it can take two parameters. The first is text to display before the date. The second is a date format string (see the D (date) macro for details.\r\n

\r\nExample: ^LastModified(\"Updated: \",\"%c %D, %y\");\r\n

\r\n\r\n\r\n^PageTitle;
\r\nDisplays the title of the current page.\r\n

\r\n\r\nNOTE: If you begin using admin functions or the indepth functions of any wobject, the page title will become a link that will quickly bring you back to the page.\r\n

\r\n\r\n^r; or ^r(); - Make Page Printable
\r\nCreates a link to remove the style from a page to make it printable. In addition, you can change the link text by creating a macro like this ^r(\"Print Me!\");.\r\n

\r\n\r\nBy default, when this link is clicked, the current page\'s style is replaced with the \"Make Page Printable\" style in the Style Manager. However, that can be overridden by specifying the name of another style as the second parameter, like this: ^r(\"Print!\",\"WebGUI\");\r\n

\r\n\r\nNOTES: You can also use the special case ^r(linkonly); to return only the URL to the make printable page and nothing more. Also, the .makePrintableLink style sheet class is tied to this macro.\r\n

\r\n\r\n^RootTitle;
\r\nReturns the title of the root of the current page. For instance, the main root in WebGUI is the \"Home\" page. Many advanced sites have many roots and thus need a way to display to the user which root they are in.\r\n

\r\n\r\n^u; - Company URL
\r\nThe URL for your company specified in the settings by your Administrator.\r\n

\r\n\r\n\r\n\r\n^Spacer();
\r\nCreate a spacer in your layout. Great for creating blocks of color with divs and tables. It takes two parameters, width and height.\r\n

\r\nExample: ^Spacer(\"100\",\"50\");\r\n

\r\n\r\n',1078243435,NULL); +INSERT INTO international VALUES (607,'WebGUI',1,'Anonymous Registration
\r\nDo you wish visitors to your site to be able to register themselves?\r\n

\r\n\r\nRun On Registration
\r\nIf there is a command line specified here, it will be executed each time a user registers anonymously.\r\n

\r\n\r\nEnable Karma?
\r\nShould karma be enabled?\r\n

\r\n\r\nKarma Per Login
\r\nThe amount of karma a user should be given when they log in. This only takes affect if karma is enabled.\r\n

\r\n\r\nSession Timeout
\r\nThe amount of time that a user session remains active (before needing to log in again). This timeout is reset each time a user views a page. Therefore if you set the timeout for 8 hours, a user would have to log in again if s/he hadn\'t visited the site for 8 hours.\r\n

\r\n\r\nAllow users to deactivate their account?
\r\nDo you wish to provide your users with a means to deactivate their account without your intervention?\r\n

\r\n\r\nAuthentication Method (default)
\r\nWhat should the default authentication method be for new accounts that are created? The two available options are WebGUI and LDAP. WebGUI authentication means that the users will authenticate against the username and password stored in the WebGUI database. LDAP authentication means that users will authenticate against an external LDAP server.\r\n

\r\n\r\nNOTE: Authentication settings can be customized on a per user basis.\r\n\r\n\r\n\r\n

\r\nNOTE: Depending upon what authentication modules you have installed in your system you\'ll see any number of options after this point. The following are the options for the two defaultly installed authentication methods.\r\n

\r\n\r\nEncrypt Login?
\r\nShould the system use the https protocol for the login form? Note that setting this option to true will only encrypt the authentication itself, not anything else before or after the authentication.\r\n

\r\n\r\n

WebGUI Authentication Options

\r\n\r\nMinimum Password Length
\r\nSet the minimum length that passwords can be. If set to 0, there is no minimum length.\r\n

\r\n\r\nPassword Timeout
\r\nSet how long before a user\'s password expires and has to change it.\r\n

\r\n\r\nExpire passwords on user creation?
\r\nShould a user\'s password be expired when he is created by an administrator forcing a change?\r\n

\r\n\r\nAllow Users to Change Username?
\r\nShould users be allowed to change their usernames?\r\n

\r\n\r\nAllow Users to Change Password?
\r\nShould users be allowed to change their passwords?\r\n

\r\n\r\nSend welcome message?
\r\nDo you wish WebGUI to automatically send users a welcome message when they register for your site? \r\n

\r\nNOTE: In addition to the message you specify below, the user\'s account information will be included in the message.\r\n

\r\n\r\nWelcome Message
\r\nType the message that you\'d like to be sent to users upon registration.\r\n

\r\n\r\nRecover Password Message
\r\nType a message that will be sent to your users if they try to recover their WebGUI password.\r\n

\r\n\r\n\r\n\r\n

LDAP Authentication Options

\r\n\r\nLDAP URL (default)
\r\nThe default url to your LDAP server. The LDAP URL takes the form of ldap://[server]:[port]/[base DN]. Example: ldap://ldap.mycompany.com:389/o=MyCompany.\r\n

\r\n\r\n\r\n\r\n\r\nLDAP Identity
\r\nThe LDAP Identity is the unique identifier in the LDAP server that the user will be identified against. Often this field is shortname, which takes the form of first initial + last name. Example: jdoe. Therefore if you specify the LDAP identity to be shortname then Jon Doe would enter jdoe during the registration process.\r\n

\r\n\r\nLDAP Identity Name
\r\nThe label used to describe the LDAP Identity to the user. For instance, some companies use an LDAP server for their proxy server users to authenticate against. In the documentation or training already provided to their users, the LDAP identity is known as their Web Username
. So you could enter that label here for consitency.\r\n

\r\n\r\nLDAP Password Name
\r\nJust as the LDAP Identity Name is a label, so is the LDAP Password Name. Use this label as you would LDAP Identity Name.\r\n

\r\n\r\n',1076700672,NULL); INSERT INTO international VALUES (869,'WebGUI',1,'Welcome Message',1044138730,NULL); INSERT INTO international VALUES (868,'WebGUI',1,'Send welcome message?',1044138691,NULL); INSERT INTO international VALUES (620,'WebGUI',1,'As the function suggests you\'ll be deleting a group and removing all users from the group. Be careful not to orphan users from pages they should have access to by deleting a group that is in use.\r\n

\r\n\r\nAs with any delete operation, you are prompted to be sure you wish to proceed with the delete. If you answer yes, the delete will proceed and there is no recovery possible. If you answer no you\'ll be returned to the prior screen.',1031514049,NULL); -INSERT INTO international VALUES (621,'WebGUI',1,'Styles are WebGUI macro enabled. See Using Macros for more information.\r\n

\r\n\r\n\r\nStyle Name
\r\nA unique name to describe what this style looks like at a glance. The name has no effect on the actual look of the style.\r\n

\r\n\r\n\r\nBody
\r\nThe body is quite literally the HTML body of your site. It defines how the page navigation will be laid out and many other things like logo, copyright, etc. At bare minimum a body must consist of a few things, the ^AdminBar; macro and the ^-; (seperator) macro. The ^AdminBar; macro tells WebGUI where to display admin functions. The ^-; (splitter) macro tells WebGUI where to put the content of your page.\r\n

\r\n\r\n\r\nIf you are in need of assistance for creating a look for your site, or if you need help cutting apart your design, Plain Black Software provides support services for a small fee.\r\n

\r\n\r\n\r\nMany people will add WebGUI macros to their body for automated navigation, and other features.\r\n

\r\n\r\n\r\nStyle Sheet
\r\nPlace your style sheet entries here. Style sheets are used to control colors, sizes, and other properties of the elements on your site. See Using Style Sheets for more information.\r\n

\r\n\r\n\r\nAdvanced Users: for greater performance create your stylesheet on the file system (call it something like webgui.css) and add an entry like this to this area: \r\n\r\n

\r\n\r\n',1038890195,NULL); INSERT INTO international VALUES (619,'WebGUI',1,'This function permanently deletes the selected wobject from a page. If you are unsure whether you wish to delete this content you may be better served to cut the content to the clipboard until you are certain you wish to delete it.\r\n

\r\n\r\n\r\nAs with any delete operation, you are prompted to be sure you wish to proceed with the delete. If you answer yes, the delete will proceed and there is no recovery possible. If you answer no you\'ll be returned to the prior screen.\r\n

\r\n\r\n',1031514049,NULL); INSERT INTO international VALUES (617,'WebGUI',1,'Settings are items that allow you to adjust WebGUI to your particular needs.\r\n

\r\n\r\n\r\nEdit Company Information
\r\nInformation specific about the company or individual who controls this installation of WebGUI.\r\n

\r\n\r\n\r\nEdit Content Settings
\r\nSettings related to content and content management.\r\n

\r\n\r\n\r\nEdit Messaging Settings
\r\nSettings concerning email and other related messaging functions.\r\n

\r\n\r\n\r\nEdit Miscellaneous Settings
\r\nAnything we couldn\'t find a place for.\r\n

\r\n\r\n\r\nEdit Profile Settings
\r\nDefine what user profiles look like and what the users have the ability to edit.\r\n

\r\n\r\n\r\nEdit User Settings
\r\nSettings relating to users (beyond profile information), like authentication information, and registration options.\r\n

\r\n\r\n\r\n',1044139325,NULL); INSERT INTO international VALUES (615,'WebGUI',1,'Groups are used to subdivide privileges and responsibilities within the WebGUI system. For instance, you may be building a site for a classroom situation. In that case you might set up a different group for each class that you teach. You would then apply those groups to the pages that are designed for each class.\r\n

\r\n\r\nThere are several groups built into WebGUI. They are as follows:\r\n

\r\n\r\nAdmins
\r\nAdmins are users who have unlimited privileges within WebGUI. A user should only be added to the admin group if they oversee the system. Usually only one to three people will be added to this group.\r\n

\r\n\r\nContent Managers
\r\nContent managers are users who have privileges to add, edit, and delete content from various areas on the site. The content managers group should not be used to control individual content areas within the site, but to determine whether a user can edit content at all. You should set up additional groups to separate content areas on the site.\r\n

\r\n\r\nEveryone
\r\nEveryone is a magic group in that no one is ever physically inserted into it, but yet all members of the site are part of it. If you want to open up your site to both visitors and registered users, use this group to do it.\r\n

\r\n\r\nPackage Managers
\r\nUsers that have privileges to add, edit, and delete packages of wobjects and pages to deploy.\r\n

\r\n\r\nRegistered Users
\r\nWhen users are added to the system they are put into the registered users group. A user should only be removed from this group if their account is deleted or if you wish to punish a troublemaker.\r\n

\r\n\r\nStyle Managers
\r\nUsers that have privileges to edit styles for this site. These privileges do not allow the user to assign privileges to a page, just define them to be used.\r\n

\r\n\r\nTemplate Managers
\r\nUsers that have privileges to edit templates for this site.\r\n

\r\n\r\nVisitors
\r\nVisitors are users who are not logged in using an account on the system. Also, if you wish to punish a registered user you could remove him/her from the Registered Users group and insert him/her into the Visitors group.\r\n

\r\n',1031514049,NULL); INSERT INTO international VALUES (613,'WebGUI',1,'Users are the accounts in the system that are given rights to do certain things. There are two default users built into the system: Admin and Visitor.\r\n

\r\n\r\nAdmin
\r\nAdmin is exactly what you\'d expect. It is a user with unlimited rights in the WebGUI environment. If it can be done, this user has the rights to do it.\r\n

\r\n\r\nVisitor
\r\nVisitor is exactly the opposite of Admin. Visitor has no rights what-so-ever. By default any user who is not logged in is seen as the user Visitor.\r\n

\r\n\r\nAdd a new user.
\r\nClick on this to go to the add user screen.\r\n

\r\n\r\nSearch
\r\nYou can search users based on username and email address. You can do partial searches too if you like.',1031514049,NULL); -INSERT INTO international VALUES (614,'WebGUI',1,'Styles are used to manage the look and feel of your WebGUI pages. With WebGUI, you can have an unlimited number of styles, so your site can take on as many looks as you like. You could have some pages that look like your company\'s brochure, and some pages that look like Yahoo!®. You could even have some pages that look like pages in a book. Using style management, you have ultimate control over all your designs.\r\n

\r\n\r\nThere are several styles built into WebGUI. The first of these are used by WebGUI can should not be edited or deleted. The last few are simply example styles and may be edited or deleted as you please.\r\n

\r\n\r\n\r\nClipboard
\r\nThis style is used by the clipboard system.\r\n

\r\n\r\n\r\nFail Safe
\r\nWhen you delete a style that is still in use on some pages, the Fail Safe style will be applied to those pages. This style has a white background and simple navigation.\r\n

\r\n\r\n\r\nMake Page Printable
\r\nThis style is used if you place an ^r; macro on your pages and the user clicks on it. This style allows you to put a simple logo and copyright message on your printable pages.\r\n

\r\n\r\n\r\nPackages
\r\nThis style is used by the package management system.\r\n

\r\n\r\n\r\nTrash
\r\nThis style is used by the trash system.\r\n

\r\n\r\n\r\n


\r\n\r\nDemo Style
\r\nThis is a sample design taken from a templates site (www.freewebtemplates.com).\r\n

\r\n\r\n\r\nPlain Black Software (black) & (white)
\r\nThese designs are used on the Plain Black site.\r\n

\r\n\r\n\r\nYahoo!®
\r\nThis is the design of the Yahoo!® site. (Used without permission.)\r\n

\r\n\r\n\r\nWebGUI
\r\nThis is a simple design featuring WebGUI logos.\r\n

\r\n\r\nWebGUI 4
\r\nThis style was added to WebGUI as of version 4.0.0. It is now the default style and has superceded the \"WebGUI\" style.\r\n

\r\n\r\n',1050430146,NULL); INSERT INTO international VALUES (612,'WebGUI',1,'There is no need to ever actually delete a user. If you are concerned with locking out a user, then simply change their password. If you truely wish to delete a user, then please keep in mind that there are consequences. If you delete a user any content that they added to the site via wobjects (like message boards and user contributions) will remain on the site. However, if another user tries to visit the deleted user\'s profile they will get an error message. Also if the user ever is welcomed back to the site, there is no way to give him/her access to his/her old content items except by re-adding the user to the users table manually.\r\n

\r\n\r\n\r\nAs with any delete operation, you are prompted to be sure you wish to proceed with the delete. If you answer yes, the delete will proceed and there is no recovery possible. If you answer no you\'ll be returned to the prior screen.\r\n

\r\n\r\n',1031514049,NULL); INSERT INTO international VALUES (637,'WebGUI',1,'First Name
\r\nThe given name of this user.\r\n

\r\n\r\nMiddle Name
\r\nThe middle name of this user.\r\n

\r\n\r\nLast Name
\r\nThe surname (or family name) of this user.\r\n

\r\n\r\nEmail Address
\r\nThe user\'s email address. This must only be specified if the user will partake in functions that require email.\r\n

\r\n\r\nICQ UIN
\r\nThe ICQ UIN is the \"User ID Number\" on the ICQ network. ICQ is a very popular instant messaging platform.\r\n

\r\n\r\nAIM Id
\r\nThe account id for the AOL Instant Messenger system.\r\n

\r\n\r\nMSN Messenger Id
\r\nThe account id for the Microsoft Network Instant Messenger
system.\r\n

\r\n\r\nYahoo! Messenger Id
\r\nThe account id for the
Yahoo! Instant Messenger system.\r\n

\r\n\r\nCell Phone
\r\nThis user\'s cellular telephone number.\r\n

\r\n\r\nPager
\r\nThis user\'s pager telephone number.\r\n

\r\n\r\nEmail To Pager Gateway
\r\nThis user\'s text pager email address.\r\n

\r\n\r\nHome Information
\r\nThe postal (or street) address for this user\'s home.\r\n

\r\n\r\nWork Information
\r\nThe postal (or street) address for this user\'s company.\r\n

\r\n\r\nGender
\r\nThis user\'s sex.\r\n

\r\n\r\nBirth Date
\r\nThis user\'s date of birth.\r\n\r\nLanguage
\r\nWhat language should be used to display system related messages.\r\n

\r\n\r\nTime Offset
\r\nA number of hours (plus or minus) different this user\'s time is from the server. This is used to adjust for time zones.\r\n

\r\n\r\nFirst Day Of Week
\r\nThe first day of the week on this user\'s local calendar. For instance, in the United States the first day of the week is Sunday, but in many places in Europe, the first day of the week is Monday.\r\n

\r\n\r\nDate Format
\r\nWhat format should dates on this site appear in?\r\n

\r\n\r\nTime Format
\r\nWhat format should times on this site appear in? \r\n

\r\n\r\nDiscussion Layout
\r\nShould discussions be laid out flat or threaded? Flat puts all replies on one page in the order they were created. Threaded shows the heirarchical list of replies as they were created.\r\n

\r\n\r\nInbox Notifications
\r\nHow should this user be notified when they get a new WebGUI message?\r\n\r\n',1031514049,NULL); -INSERT INTO international VALUES (610,'WebGUI',1,'See Manage Users for additional details.\r\n

\r\n\r\nUsername
\r\nUsername is a unique identifier for a user. Sometimes called a handle, it is also how the user will be known on the site. (Note: Administrators have unlimited power in the WebGUI system. This also means they are capable of breaking the system. If you rename or create a user, be careful not to use a username already in existance.)\r\n

\r\n\r\n\r\nPassword
\r\nA password is used to ensure that the user is who s/he says s/he is.\r\n

\r\n\r\n\r\nAuthentication Method
\r\nSee Edit Settings for details.\r\n

\r\n\r\n\r\nLDAP URL
\r\nSee Edit Settings for details.\r\n

\r\n\r\n\r\nConnect DN
\r\nThe Connect DN is the cn (or common name) of a given user in your LDAP database. It should be specified as cn=John Doe. This is, in effect, the username that will be used to authenticate this user against your LDAP server.\r\n

\r\n\r\n\r\n',1031514049,NULL); +INSERT INTO international VALUES (610,'WebGUI',1,'See Manage Users for additional details.\r\n

\r\n\r\nUsername
\r\nUsername is a unique identifier for a user. Sometimes called a handle, it is also how the user will be known on the site. (Note: Administrators have unlimited power in the WebGUI system. This also means they are capable of breaking the system. If you rename or create a user, be careful not to use a username already in existance.)\r\n

\r\n\r\n\r\nPassword
\r\nA password is used to ensure that the user is who s/he says s/he is.\r\n

\r\n\r\nPassword Timeout
\r\nLength of time before this user\'s password expires, forcing it to be changed\r\n

\r\n\r\nAllow User to Change Username?
\r\nShould this user be allowed to change his username?\r\n

\r\n\r\nAllow User to Change Password?
\r\nShould this user be allowed to change his password?\r\n

\r\n\r\nAuthentication Method
\r\nSee Edit Settings for details.\r\n

\r\n\r\n\r\nLDAP URL
\r\nSee Edit Settings for details.\r\n

\r\n\r\n\r\nConnect DN
\r\nThe Connect DN is the cn (or common name) of a given user in your LDAP database. It should be specified as cn=John Doe. This is, in effect, the username that will be used to authenticate this user against your LDAP server.\r\n

\r\n\r\n\r\n',1076700945,NULL); INSERT INTO international VALUES (608,'WebGUI',1,'Deleting a page can create a big mess if you are uncertain about what you are doing. When you delete a page you are also deleting the content it contains, all sub-pages connected to this page, and all the content they contain. Be certain that you have already moved all the content you wish to keep before you delete a page.\r\n

\r\n\r\nAs with any delete operation, you are prompted to be sure you wish to proceed with the delete. If you answer yes, the delete will proceed and there is no recovery possible. If you answer no you\'ll be returned to the prior screen.\r\n

\r\n',1031514049,NULL); -INSERT INTO international VALUES (609,'WebGUI',1,'When you delete a style all pages using that style will be reverted to the fail safe (default) style. To ensure uninterrupted viewing, you should be sure that no pages are using a style before you delete it.\r\n

\r\n\r\n\r\nAs with any delete operation, you are prompted to be sure you wish to proceed with the delete. If you answer yes, the delete will proceed and there is no recovery possible. If you answer no you\'ll be returned to the prior screen.\r\n

\r\n\r\n',1031514049,NULL); -INSERT INTO international VALUES (606,'WebGUI',1,'Think of pages as containers for content. For instance, if you want to write a letter to the editor of your favorite magazine you\'d get out a notepad (or open a word processor) and start filling it with your thoughts. The same is true with WebGUI. Create a page, then add your content to the page.\r\n

\r\n\r\nTitle
\r\nThe title of the page is what your users will use to navigate through the site. Titles should be descriptive, but not very long.\r\n

\r\n\r\n\r\nMenu Title
\r\nA shorter or altered title to appear in navigation. If left blank this will default to Title.\r\n

\r\n\r\nPage URL
\r\nWhen you create a page a URL for the page is generated based on the page title. If you are unhappy with the URL that was chosen, you can change it here.\r\n

\r\n\r\nRedirect URL
\r\nWhen this page is visited, the user will be redirected to the URL specified here. \r\n

\r\nNOTE: The redirects will be disabled while in admin mode in order to make it easier to edit the properties of the page.\r\n

\r\n\r\n\r\nHide from navigation?
\r\nSelect yes to hide this page from the navigation menus and site maps.\r\n

\r\nNOTE: This will not hide the page from the page tree (Administrative functions... > Manage page tree.), only from navigation macros and from site maps.\r\n

\r\n\r\nOpen in new window?
\r\nSelect yes to open this page in a new window. This is often used in conjunction with the Redirect URL parameter.\r\n

\r\n\r\n\r\n\r\nLanguage
\r\nChoose the default language for this page. All WebGUI generated messages will appear in that language and the character set will be changed to the character set for that language.\r\n

\r\n\r\n

Cache Timeout
The amount of time this page should remain cached for registered users. \r\n\r\n

Cache Timeout (Visitors)
The amount of time this page should remain cached for visitors. \r\n\r\n

NOTE: Page caching is only available if your administrator has installed the Cache::FileCache Perl module. Using page caching can improve site performance by as much as 1000%. \r\n\r\n\r\nTemplate
\r\nBy default, WebGUI has one big content area to place wobjects. However, by specifying a template other than the default you can sub-divide the content area into several sections.\r\n

\r\n\r\nSynopsis
\r\nA short description of a page. It is used to populate default descriptive meta tags as well as to provide descriptions on Site Maps.\r\n

\r\n\r\nMeta Tags
\r\nMeta tags are used by some search engines to associate key words to a particular page. There is a great site called Meta Tag Builder that will help you build meta tags if you\'ve never done it before.\r\n

\r\n\r\nAdvanced Users: If you have other things (like JavaScript) you usually put in the area of your pages, you may put them here as well.\r\n

\r\n\r\nUse default meta tags?
\r\nIf you don\'t wish to specify meta tags yourself, WebGUI can generate meta tags based on the page title and your company\'s name. Check this box to enable the WebGUI-generated meta tags.\r\n

\r\n\r\n\r\nStyle
\r\nBy default, when you create a page, it inherits a few traits from its parent. One of those traits is style. Choose from the list of styles if you would like to change the appearance of this page. See Add Style for more details.\r\n

\r\n\r\nIf you select \"Yes\" below the style pull-down menu, all of the pages below this page will take on the style you\'ve chosen for this page.\r\n

\r\n\r\nStart Date
\r\nThe date when users may begin viewing this page. Note that before this date only content managers with the rights to edit this page will see it.\r\n

\r\n\r\nEnd Date
\r\nThe date when users will stop viewing this page. Note that after this date only content managers with the rights to edit this page will see it.\r\n

\r\n\r\n\r\nOwner
\r\nThe owner of a page is usually the person who created the page. This user always has full edit and viewing rights on the page.\r\n

\r\nNOTE: The owner can only be changed by an administrator.\r\n

\r\n\r\n\r\nWho can view?
\r\nChoose which group can view this page. If you want both visitors and registered users to be able to view the page then you should choose the \"Everybody\" group.\r\n

\r\n\r\nWho can edit?
\r\nChoose the group that can edit this page. The group assigned editing rights can also always view the page.\r\n

\r\n\r\nYou can optionally recursively give these privileges to all pages under this page.\r\n

\r\n\r\nWhat next?
\r\nIf you leave this on the default setting you\'ll be redirected to the new page after creating it.\r\n

',1056293101,NULL); +INSERT INTO international VALUES (606,'WebGUI',1,'Think of pages as containers for content. For instance, if you want to write a letter to the editor of your favorite magazine you\'d get out a notepad (or open a word processor) and start filling it with your thoughts. The same is true with WebGUI. Create a page, then add your content to the page.\r\n

\r\n\r\nTitle
\r\nThe title of the page is what your users will use to navigate through the site. Titles should be descriptive, but not very long.\r\n

\r\n\r\n\r\nMenu Title
\r\nA shorter or altered title to appear in navigation. If left blank this will default to Title.\r\n

\r\n\r\nPage URL
\r\nWhen you create a page a URL for the page is generated based on the page title. If you are unhappy with the URL that was chosen, you can change it here.\r\n

\r\n\r\nRedirect URL
\r\nWhen this page is visited, the user will be redirected to the URL specified here. \r\n

\r\nNOTE: The redirects will be disabled while in admin mode in order to make it easier to edit the properties of the page.\r\n

\r\n\r\n\r\nHide from navigation?
\r\nSelect yes to hide this page from the navigation menus and site maps.\r\n

\r\nNOTE: This will not hide the page from the page tree (Administrative functions... > Manage page tree.), only from navigation macros and from site maps.\r\n

\r\n\r\nOpen in new window?
\r\nSelect yes to open this page in a new window. This is often used in conjunction with the Redirect URL parameter.\r\n

\r\n\r\n\r\n\r\nLanguage
\r\nChoose the default language for this page. All WebGUI generated messages will appear in that language and the character set will be changed to the character set for that language.\r\n

\r\n\r\n

Cache Timeout
The amount of time this page should remain cached for registered users. \r\n\r\n

Cache Timeout (Visitors)
The amount of time this page should remain cached for visitors. \r\n\r\n

NOTE: Page caching is only available if your administrator has installed the Cache::FileCache Perl module. Using page caching can improve site performance by as much as 1000%. \r\n\r\n\r\nTemplate
\r\nBy default, WebGUI has one big content area to place wobjects. However, by specifying a template other than the default you can sub-divide the content area into several sections.\r\n

\r\n\r\nSynopsis
\r\nA short description of a page. It is used to populate default descriptive meta tags as well as to provide descriptions on Site Maps.\r\n

\r\n\r\nMeta Tags
\r\nMeta tags are used by some search engines to associate key words to a particular page. You can find a little utility here that will help you build meta tags if you\'ve never done it before.\r\n

\r\n\r\nAdvanced Users: If you have other things (like JavaScript) you usually put in the area of your pages, you may put them here as well.\r\n

\r\n\r\nUse default meta tags?
\r\nIf you don\'t wish to specify meta tags yourself, WebGUI can generate meta tags based on the page title and your company\'s name. Check this box to enable the WebGUI-generated meta tags.\r\n

\r\n\r\n\r\nStyle
\r\nBy default, when you create a page, it inherits a few traits from its parent. One of those traits is style. Choose from the list of styles if you would like to change the appearance of this page. See Add Style for more details.\r\n

\r\n\r\nIf you select \"Yes\" below the style pull-down menu, all of the pages below this page will take on the style you\'ve chosen for this page.\r\n

\r\n\r\nStart Date
\r\nThe date when users may begin viewing this page. Note that before this date only content managers with the rights to edit this page will see it.\r\n

\r\n\r\nEnd Date
\r\nThe date when users will stop viewing this page. Note that after this date only content managers with the rights to edit this page will see it.\r\n

\r\n\r\n\r\nOwner
\r\nThe owner of a page is usually the person who created the page. This user always has full edit and viewing rights on the page.\r\n

\r\nNOTE: The owner can only be changed by an administrator.\r\n

\r\n\r\n\r\nWho can view?
\r\nChoose which group can view this page. If you want both visitors and registered users to be able to view the page then you should choose the \"Everybody\" group.\r\n

\r\n\r\nWho can edit?
\r\nChoose the group that can edit this page. The group assigned editing rights can also always view the page.\r\n

\r\n\r\nYou can optionally recursively give these privileges to all pages under this page.\r\n

\r\n\r\nWhat next?
\r\nIf you leave this on the default setting you\'ll be redirected to the new page after creating it.\r\n

',1078569027,NULL); INSERT INTO international VALUES (875,'WebGUI',1,'A new message has been posted to one of your subscriptions.',1065874019,NULL); INSERT INTO international VALUES (74,'Poll',2,'Nachfolgend die verfügbaren Variablen für das Abstimmungs Template: \r\n

canVote
Eine Variable, ob der Benutzer abstimmen darf oder nicht.

\r\n

question
Die Frage der Abstimmung. \r\n

form.start
Der Anfang des Abstimmungsformulars

answer_loop
Eine \r\nSchleife, die Informationen über die Antworten dieser Abstimmung enthält.. \r\n

\r\n

answer.form
Die Optionsschaltfläche für diese Antwort.

answer.text
Der \r\n Text der Antwort. \r\n

answer.number
Die Nummer dieser Antwort.

answer.graphWidth
Die \r\n Breite der Grafik, die für diese Antwort generiert wurde, basierend in Prozent \r\n der Gesamtgrafikgrösse.

answer.percent
Die Prozentzahl der abgegebenen \r\n Stimmen. \r\n

answer.total
Die Anzahl der abgegebenen Stimmen.

form.submit
Der \r\nSubmit-Button für das Formular (z. B. \'Abstimmen\')

form.end
Das \r\nEnde des Abstimmungsformulars.

responses.label
Der Text für die \r\nGesamtzahl der Antworten. z. B. "Abstimmungen insgesamt" \r\n

responses.total
Die Anzahl der abgegebenen Stimmen.

',1055254472,NULL); INSERT INTO international VALUES (638,'WebGUI',1,'Templates are used to affect how content is laid out in WebGUI. There are many templates that come with WebGUI, and using the template management system, you can add your own templates to the system to ensure that your site looks exactly how you want it to look. \r\n',1050430164,NULL); INSERT INTO international VALUES (76,'USS',1,'Submission Template',1038867009,NULL); -INSERT INTO international VALUES (77,'USS',1,'The following are the template variables used in a submission template. Submission templates are used to display the individual submissions in a user submission system.\r\n

\r\n\r\ntitle
\r\nThe title of this submission.\r\n

\r\n\r\ncontent
\r\nThe full text content of this submission.\r\n

\r\n\r\nuser.label
\r\nThe translated label indicating what user posted this submission.\r\n

\r\n\r\nuser.profile
\r\nThe URL to the profile of the user that posted this submission.\r\n

\r\n\r\nuser.username
\r\nThe username of the user that posted this submission.\r\n

\r\n\r\nuser.id
\r\nThe unique identifier for the user that posted this submission.\r\n

\r\n\r\ndate.label
\r\nThe translated label indicating what date this submission was posted.\r\n

\r\n\r\ndate.epoch
\r\nThe number of seconds since January 1, 1970 that this submission was posted.\r\n

\r\n\r\ndate.human
\r\nA human readable date that displays the date and time this submission was posted.\r\n

\r\n\r\ndate.updated.label
\r\nThe translated label indicating what date this submission was last edited.\r\n

\r\n\r\ndate.updated.epoch
\r\nThe number of seconds since January 1, 1970 that this submission was last edited.\r\n

\r\n\r\ndate.updated.human
\r\nA human readable date that displays the date and time this submission was last edited.\r\n

\r\n\r\nstatus.label
\r\nA translated label indicating the status of this submission.\r\n

\r\n\r\nstatus.status
\r\nThe actual status of this submission (pending, approved, denied).\r\n

\r\n\r\nviews.label
\r\nA translated label indicating how many times this submission has been viewed.\r\n

\r\n\r\nviews.count
\r\nThe number of times this submission has been viewed.\r\n

\r\n\r\ncanPost
\r\nAn condition indicating whether or not this user can post a new submission.\r\n

\r\n\r\npost.url
\r\nThe URL to post a new submission.\r\n

\r\n\r\npost.label
\r\nA translated label for the post link.\r\n

\r\n\r\nprevious.more
\r\nAn condition indicating whether there are any posts prior to this one available for viewing.\r\n

\r\n\r\nprevious.url
\r\nA URL to the post that came before this one.\r\n

\r\n\r\nprevious.label
\r\nA translated label for the previous link.\r\n

\r\n\r\nnext.more
\r\nA condition indicating whether there are any posts after this one available for viewing.\r\n

\r\n\r\nnext.url
\r\nThe URL to the post that came after this one.\r\n

\r\n\r\nnext.label
\r\nA translated label for the next link.\r\n

\r\n\r\ncanEdit
\r\nA condition indicating whether the current user cane edit or delete this post.\r\n

\r\n\r\nedit.url
\r\nThe URL to edit this post.\r\n

\r\n\r\nedit.label
\r\nA translated label for the edit link.\r\n

\r\n\r\ndelete.url
\r\nThe URL to delete this post.\r\n

\r\n\r\ndelete.label
\r\nA translated label for the delete link.\r\n

\r\n\r\ncanChangeStatus
\r\nA condition indicating whether the current user has the privileges to change the status of this post.\r\n

\r\n\r\napprove.url
\r\nThe URL to approve this post.\r\n

\r\n\r\napprove.label
\r\nA translated label for the approve link.\r\n

\r\n\r\ndeny.url
\r\nThe URL to deny this post.\r\n

\r\n\r\ndeny.label
\r\nA translated label for the deny link.\r\n

\r\n\r\nleave.url
\r\nThe URL to leave this post in it\'s current state.\r\n

\r\n\r\nleave.label
\r\nA translated label for the leave link.\r\n

\r\n\r\ncanReply
\r\nA condition indicating whether the current user can reply to this post.\r\n

\r\n\r\nreply.url
\r\nThe URL to reply to this post.\r\n

\r\n\r\nreply.label
\r\nA translated label for the reply link.\r\n

\r\n\r\nsearch.url
\r\nThe URL to toggle on the WebGUI power search form.\r\n

\r\n\r\nsearch.label
\r\nA translated label for the search link.\r\n

\r\n\r\nback.url
\r\nThe URL to return the user to the main listing.\r\n

\r\n\r\nback.label
\r\nA translated label for the back link.\r\n

\r\n\r\nreplies
\r\nA complete listing of all replies to this post.\r\n

\r\n',1066637012,NULL); +INSERT INTO international VALUES (77,'USS',1,'The following are the template variables used in a submission template. Submission templates are used to display the individual submissions in a user submission system.\r\n

\r\n\r\ntitle
\r\nThe title of this submission.\r\n

\r\n\r\ncontent
\r\nThe full text content of this submission.\r\n

\r\n\r\nuser.label
\r\nThe translated label indicating what user posted this submission.\r\n

\r\n\r\nuser.profile
\r\nThe URL to the profile of the user that posted this submission.\r\n

\r\n\r\nuser.username
\r\nThe username of the user that posted this submission.\r\n

\r\n\r\nuser.id
\r\nThe unique identifier for the user that posted this submission.\r\n

\r\n\r\ndate.label
\r\nThe translated label indicating what date this submission was posted.\r\n

\r\n\r\ndate.epoch
\r\nThe number of seconds since January 1, 1970 that this submission was posted.\r\n

\r\n\r\ndate.human
\r\nA human readable date that displays the date and time this submission was posted.\r\n

\r\n\r\ndate.updated.label
\r\nThe translated label indicating what date this submission was last edited.\r\n

\r\n\r\ndate.updated.epoch
\r\nThe number of seconds since January 1, 1970 that this submission was last edited.\r\n

\r\n\r\ndate.updated.human
\r\nA human readable date that displays the date and time this submission was last edited.\r\n

\r\n\r\nstatus.label
\r\nA translated label indicating the status of this submission.\r\n

\r\n\r\nstatus.status
\r\nThe actual status of this submission (pending, approved, denied).\r\n

\r\n\r\nviews.label
\r\nA translated label indicating how many times this submission has been viewed.\r\n

\r\n\r\nviews.count
\r\nThe number of times this submission has been viewed.\r\n

\r\n\r\ncanPost
\r\nAn condition indicating whether or not this user can post a new submission.\r\n

\r\n\r\npost.url
\r\nThe URL to post a new submission.\r\n

\r\n\r\npost.label
\r\nA translated label for the post link.\r\n

\r\n\r\nprevious.more
\r\nAn condition indicating whether there are any posts prior to this one available for viewing.\r\n

\r\n\r\nprevious.url
\r\nA URL to the post that came before this one.\r\n

\r\n\r\nprevious.label
\r\nA translated label for the previous link.\r\n

\r\n\r\nnext.more
\r\nA condition indicating whether there are any posts after this one available for viewing.\r\n

\r\n\r\nnext.url
\r\nThe URL to the post that came after this one.\r\n

\r\n\r\nnext.label
\r\nA translated label for the next link.\r\n

\r\n\r\ncanEdit
\r\nA condition indicating whether the current user cane edit or delete this post.\r\n

\r\n\r\nedit.url
\r\nThe URL to edit this post.\r\n

\r\n\r\nedit.label
\r\nA translated label for the edit link.\r\n

\r\n\r\ndelete.url
\r\nThe URL to delete this post.\r\n

\r\n\r\ndelete.label
\r\nA translated label for the delete link.\r\n

\r\n\r\ncanChangeStatus
\r\nA condition indicating whether the current user has the privileges to change the status of this post.\r\n

\r\n\r\napprove.url
\r\nThe URL to approve this post.\r\n

\r\n\r\napprove.label
\r\nA translated label for the approve link.\r\n

\r\n\r\ndeny.url
\r\nThe URL to deny this post.\r\n

\r\n\r\ndeny.label
\r\nA translated label for the deny link.\r\n

\r\n\r\nleave.url
\r\nThe URL to leave this post in it\'s current state.\r\n

\r\n\r\nleave.label
\r\nA translated label for the leave link.\r\n

\r\n\r\ncanReply
\r\nA condition indicating whether the current user can reply to this post.\r\n

\r\n\r\nreply.url
\r\nThe URL to reply to this post.\r\n

\r\n\r\nreply.label
\r\nA translated label for the reply link.\r\n

\r\n\r\nsearch.url
\r\nThe URL to toggle on the WebGUI power search form.\r\n

\r\n\r\nsearch.label
\r\nA translated label for the search link.\r\n

\r\n\r\nback.url
\r\nThe URL to return the user to the main listing.\r\n

\r\n\r\nback.label
\r\nA translated label for the back link.\r\n

\r\n\r\nreplies
\r\nA complete listing of all replies to this post.\r\n

\r\n\r\nuserDefined1.value - userDefined5.value
\r\nA series of user defined values that can be used to extend the functionality of the USS.\r\n

\r\n\r\nimage.url
\r\nThe URL to the attached image.\r\n

\r\n\r\nimage.thumbnail
\r\nThe URL to the attached image\'s thumbnail.\r\n

\r\n\r\nattachment.box
\r\nA standard WebGUI attachment box which displays the icon for the file, and the filename, along with an attachment icon and all are linked to the file.\r\n

\r\n\r\nattachment.url
\r\nThe URL to the attached file.\r\n

\r\n\r\nattachment.icon
\r\nThe icon that represents the attached file\'s type.\r\n

\r\n\r\nattachment.name
\r\nThe filename of the attached file.\r\n

\r\n\r\n\r\n',1070197000,NULL); INSERT INTO international VALUES (639,'WebGUI',1,'Template Name
\r\nGive this template a descriptive name so that you\'ll know what it is when you\'re applying a template to content.\r\n

\r\n\r\nNamespace
\r\nWhat type of template is this?\r\n

\r\n\r\nTemplate
\r\nCreate your template by using template commands and variables, macros, and HTML.\r\n

\r\n\r\nNOTE: You should never edit the default templates that come with WebGUI as they are subject to change with each new release. Instead, copy the template you wish to edit, and edit the copy.',1038890615,NULL); INSERT INTO international VALUES (640,'WebGUI',1,'It is not a good idea to delete templates as you never know what kind of adverse affect it may have on your site (some content may still be using the template). \r\n

\r\n\r\n',1038791020,NULL); INSERT INTO international VALUES (624,'WebGUI',1,'WebGUI macros are used to create dynamic content within otherwise static content. For instance, you may wish to show which user is logged in on every page, or you may wish to have a dynamically built menu or crumb trail. \r\n

\r\n\r\nMacros always begin with a carat (^) and follow with at least one other character and ended with a semicolon (;). Some macros can be extended/configured by taking the format of ^x(\"config text\");. \r\n

\r\n\r\nNOTE: The following macros are reserved for system/wobject-specific functions as in the SQL Report wobject and the Body in the Style Manager: \r\n^-;,^0;,^1;,^2;,^3;, etc.
\r\n

\r\n',1046656837,NULL); @@ -5386,19 +5246,16 @@ INSERT INTO international VALUES (671,'WebGUI',1,'Wobjects, Using',1047858549,NU INSERT INTO international VALUES (677,'WebGUI',1,'Wobject, Add/Edit',1047858650,NULL); INSERT INTO international VALUES (668,'WebGUI',1,'Style Sheets, Using',1046067403,NULL); INSERT INTO international VALUES (667,'WebGUI',1,'Group, Add/Edit',1031514049,NULL); -INSERT INTO international VALUES (652,'WebGUI',1,'User Settings, Edit',1031514049,NULL); +INSERT INTO international VALUES (652,'WebGUI',1,'User Settings, Edit',1076700672,NULL); INSERT INTO international VALUES (665,'WebGUI',1,'Group, Delete',1031514049,NULL); -INSERT INTO international VALUES (666,'WebGUI',1,'Style, Add/Edit',1038890195,NULL); INSERT INTO international VALUES (664,'WebGUI',1,'Wobject, Delete',1031514049,NULL); INSERT INTO international VALUES (662,'WebGUI',1,'Settings, Manage',1031514049,NULL); INSERT INTO international VALUES (660,'WebGUI',1,'Groups, Manage',1031514049,NULL); INSERT INTO international VALUES (658,'WebGUI',1,'Users, Manage',1031514049,NULL); -INSERT INTO international VALUES (659,'WebGUI',1,'Styles, Manage',1050430146,NULL); INSERT INTO international VALUES (657,'WebGUI',1,'User, Delete',1031514049,NULL); INSERT INTO international VALUES (682,'WebGUI',1,'User Profile, Edit',1031514049,NULL); -INSERT INTO international VALUES (655,'WebGUI',1,'User, Add/Edit',1031514049,NULL); +INSERT INTO international VALUES (655,'WebGUI',1,'User, Add/Edit',1076700945,NULL); INSERT INTO international VALUES (653,'WebGUI',1,'Page, Delete',1031514049,NULL); -INSERT INTO international VALUES (654,'WebGUI',1,'Style, Delete',1031514049,NULL); INSERT INTO international VALUES (679,'WebGUI',1,'Content Settings, Edit',1038872365,NULL); INSERT INTO international VALUES (683,'WebGUI',1,'Templates, Manage',1050430164,NULL); INSERT INTO international VALUES (684,'WebGUI',1,'Template, Add/Edit',1038890615,NULL); @@ -5415,11 +5272,8 @@ INSERT INTO international VALUES (72,'FileManager',1,'File, Add/Edit',1038883174 INSERT INTO international VALUES (73,'FileManager',1,'File Title
\r\nThe title that will be displayed for this file. If left blank the filename will be used.\r\n

\r\n\r\nFile
\r\nChoose the file from your hard drive that you wish to upload.\r\n

\r\n\r\nAlternate Version #1
\r\nAn alternate version of the file. For instance, if the file was a JPEG, perhaps the alternate version would be a TIFF or a BMP.\r\n

\r\n\r\nAlternate Version #2
\r\nAn alternate version of the file. For instance, if the file was a JPEG, perhaps the alternate version would be a TIFF or a BMP.\r\n

\r\n\r\nBrief Synopsis
\r\nA short description of this file. Be sure to include keywords that users may try to search for.\r\n

\r\n\r\nGroup To Download
\r\nChoose the group that may download this file.\r\n

\r\n\r\nWhat\'s next?
\r\nIf you\'d like to add another file after this one, then select \"add a new file\" otherwise select \"go back to the page\".\r\n

\r\n',1038883174,NULL); INSERT INTO international VALUES (72,'EventsCalendar',1,'Event, Add/Edit',1038887363,NULL); INSERT INTO international VALUES (73,'EventsCalendar',1,'Title
\r\nThe title for this event.\r\n

\r\n\r\nDescription
\r\nDescribe the activities of this event or information about where the event is to be held.\r\n

\r\n\r\nStart Date
\r\nOn what date will this event begin?\r\n

\r\n\r\nEnd Date
\r\nOn what date will this event end?\r\n

\r\n\r\nRecurs every
\r\nSelect a recurrence interval for this event. \r\n\r\n

\r\n\r\nWhat next?
\r\nSelect \"add new event\" if you\'d like to add another event, otherwise select \"go back to page\".\r\n

\r\n',1038887363,NULL); -INSERT INTO international VALUES (72,'FAQ',1,'Question, Add/Edit',1038890062,NULL); -INSERT INTO international VALUES (73,'FAQ',1,'Question
\r\nAdd the question you\'d like to appear on the FAQ.\r\n

\r\n\r\n\r\nAnswer
\r\nAdd the answer for the question you entered above.\r\n

\r\n\r\n\r\nWhat next?
\r\nIf you wish to add another question then leave this set to the default.\r\n\r\n

\r\n\r\n',1038890062,NULL); INSERT INTO international VALUES (50,'Product',1,'Benefits are typically the result of the features of your product. They are why your product is so good. If you add benefits, you may also wish to consider adding some features.\r\n

\r\n\r\nBenefit
\r\nYou may enter a new benefit, or select from one you\'ve already entered.\r\n

\r\n\r\nAdd another benefit?
\r\nIf you\'d like to add another benefit right away, select \"Yes\".\r\n

\r\n',1031514049,NULL); -INSERT INTO international VALUES (72,'LinkList',1,'Link, Add/Edit',1038887880,NULL); -INSERT INTO international VALUES (73,'LinkList',1,'Title
\r\nThe text that will be linked.\r\n

\r\n\r\nURL
\r\nThe web site to link to.\r\n

\r\n\r\nOpen in new window?
\r\nSelect yes if you\'d like this link to pop-up into a new window.\r\n

\r\n\r\nDescription
\r\nDescribe the site you\'re linking to. You can omit this if you\'d like.\r\n

\r\n\r\nWhat Next?\r\nLeave this set to the default if you wish to add another link after this one.\r\n

\r\n',1038887880,NULL); +INSERT INTO international VALUES (90,'Survey',1,'Survey Template Common Vars',1078223067,NULL); INSERT INTO international VALUES (49,'Product',1,'Product Benefit, Add/Edit',1031514049,NULL); INSERT INTO international VALUES (697,'WebGUI',1,'Karma, Using',1031514049,NULL); INSERT INTO international VALUES (698,'WebGUI',1,'Karma is a method of tracking the activity of your users, and potentially rewarding or punishing them for their level of activity. Once karma has been enabled, you\'ll notice that the menus of many things in WebGUI change to reflect karma.\r\n

\r\n\r\nYou can track whether users are logging in, and how much they contribute to your site. And you can allow them access to additional features by the level of their karma.\r\n

\r\n\r\nYou can find out more about karma in Ruling WebGUI.',1031514049,NULL); @@ -5472,20 +5326,17 @@ INSERT INTO international VALUES (361,'WebGUI',3,'Drie boven een',1038529913,NUL INSERT INTO international VALUES (362,'WebGUI',3,'Zij aan zij',1038529919,NULL); INSERT INTO international VALUES (363,'WebGUI',3,'Sjabloon positie',1038529927,NULL); INSERT INTO international VALUES (364,'WebGUI',3,'Zoeken',1038529934,NULL); -INSERT INTO international VALUES (365,'WebGUI',3,'Zoek resultaten...',1038529944,NULL); -INSERT INTO international VALUES (366,'WebGUI',3,'Er is geen pagina die aan uw vraag voldoet.',1038529975,NULL); INSERT INTO international VALUES (368,'WebGUI',3,'Voeg een nieuwe groep aan deze gebruiker toe.',1038529984,NULL); INSERT INTO international VALUES (369,'WebGUI',3,'Verloop datum',1038529995,NULL); INSERT INTO international VALUES (370,'WebGUI',3,'Bewerk groepering',1038530025,NULL); INSERT INTO international VALUES (371,'WebGUI',3,'Groepering toevoegen',1038530037,NULL); INSERT INTO international VALUES (372,'WebGUI',3,'Bewerk deze gebruiker\'s groepen',1038530061,NULL); INSERT INTO international VALUES (374,'WebGUI',3,'Beheer pakketten.',1038530083,NULL); -INSERT INTO international VALUES (375,'WebGUI',3,'Selecteer pakket',1038530215,NULL); +INSERT INTO international VALUES (6,'Navigation',1,'my level (.)',1077078579,'Option of \"Base page\"'); INSERT INTO international VALUES (376,'WebGUI',3,'Pakket',1038530221,NULL); -INSERT INTO international VALUES (377,'WebGUI',3,'Er zijn geen pakketten gedefinieerd door uw pakket beheerder(s).',1038530249,NULL); +INSERT INTO international VALUES (3,'Navigation',1,'top level (/home/page)',1077078394,'Option of \"Base page\"'); INSERT INTO international VALUES (378,'WebGUI',3,'Gebruikers ID',1038530255,NULL); INSERT INTO international VALUES (379,'WebGUI',3,'Groep ID',1038530261,NULL); -INSERT INTO international VALUES (380,'WebGUI',3,'Stijl ID',1038530290,NULL); INSERT INTO international VALUES (381,'WebGUI',3,'WebGUI heeft een verkeerde vraag gekregen en kan niet verder gaan. Bepaalde speciale karakters op de pagina kunnen hiervan een typische oorzaak zijn. Probeer terug te gaan naar de vorige pagina en probeer het opnieuw.',1038530356,NULL); INSERT INTO international VALUES (528,'WebGUI',3,'Sjabloon naam',1039780576,NULL); INSERT INTO international VALUES (384,'WebGUI',3,'Bestand',1038530363,NULL); @@ -5499,7 +5350,6 @@ INSERT INTO international VALUES (781,'WebGUI',1,'Snippet',1036912954,NULL); INSERT INTO international VALUES (394,'WebGUI',3,'Beheer collaterale inhoud.',1039738694,NULL); INSERT INTO international VALUES (395,'WebGUI',3,'Een nieuw plaatje toevoegen.',1038530587,NULL); INSERT INTO international VALUES (721,'WebGUI',10,'Benævnelse',1036855637,NULL); -INSERT INTO international VALUES (398,'WebGUI',3,'Document type declaratie',1038530595,NULL); INSERT INTO international VALUES (399,'WebGUI',3,'Valideer deze pagina.',1038530604,NULL); INSERT INTO international VALUES (400,'WebGUI',3,'Voorkom Proxy Caching',1038530627,NULL); INSERT INTO international VALUES (401,'WebGUI',3,'Weet u zeker dat u dit bericht wilt verwijderen en alle berichten onder deze thread?',1038530637,NULL); @@ -5513,7 +5363,10 @@ INSERT INTO international VALUES (409,'WebGUI',3,'Een nieuwe root toevoegen.',10 INSERT INTO international VALUES (410,'WebGUI',3,'Beheer roots.',1038530727,NULL); INSERT INTO international VALUES (411,'WebGUI',3,'Menu Titel',1038530734,NULL); INSERT INTO international VALUES (412,'WebGUI',3,'Omschrijving',1038530740,NULL); -INSERT INTO international VALUES (416,'WebGUI',3,'

Probleem met aanvraag

\r\nWe hebben een probleem gevonden met de aanvraag van deze pagina. Ga terug naar de vorige pagina en probeer het opnieuw. Mocht het probleem zich blijven voordoen wendt u dan tot de beheerder.',1038530770,NULL); +INSERT INTO international VALUES (526,'WebGUI',16,'Usuñ JavaScript i pomiñ makra',1076558969,NULL); +INSERT INTO international VALUES (513,'WebGUI',16,'Poprzedni w±tek',1076558882,NULL); +INSERT INTO international VALUES (512,'WebGUI',16,'Nastêpny w±tek',1076558858,NULL); +INSERT INTO international VALUES (36,'WebGUI',16,'By wykonaæ t± operacjê nale¿y mieæ uprawnienia administratora. Skontaktuj siê z jednym z administratorów. Oto lista administratorów tego systemu:',1076558824,NULL); INSERT INTO international VALUES (417,'WebGUI',3,'

Beveiligings probleem

\r\nU probeerde een widget op te vragen die niet bij deze pagina hoort. Het incident is gerapporteerd.',1038530790,NULL); INSERT INTO international VALUES (418,'WebGUI',3,'Filter inhoud',1063590013,NULL); INSERT INTO international VALUES (419,'WebGUI',3,'Verwijder alles behalve tekst.',1063590035,NULL); @@ -5598,7 +5451,6 @@ INSERT INTO international VALUES (500,'WebGUI',3,'Pagina ID',1039780287,NULL); INSERT INTO international VALUES (514,'WebGUI',3,'Bekeken',1039780439,NULL); INSERT INTO international VALUES (527,'WebGUI',3,'Standaard home pagina',1039780569,NULL); INSERT INTO international VALUES (530,'WebGUI',3,'Met al deze woorden',1039780611,NULL); -INSERT INTO international VALUES (501,'WebGUI',3,'Body',1039780293,NULL); INSERT INTO international VALUES (468,'WebGUI/Profile',3,'Bewerk gebruikers profiel categorie',1039597179,NULL); INSERT INTO international VALUES (507,'WebGUI',3,'Bewerk sjabloon',1039780372,NULL); INSERT INTO international VALUES (508,'WebGUI',3,'Beheer sjablonen.',1039780381,NULL); @@ -5627,17 +5479,12 @@ INSERT INTO international VALUES (78,'EventsCalendar',3,'Niets weggooien, ik heb INSERT INTO international VALUES (77,'EventsCalendar',3,'Gooi deze gebeurtenis weg en alle herhalingen hiervan.',1038487192,NULL); INSERT INTO international VALUES (76,'EventsCalendar',3,'Gooi alleen deze gebeurtenis weg.',1038487184,NULL); INSERT INTO international VALUES (75,'EventsCalendar',3,'Welke van deze keuzes wilt u uitvoeren?',1038487175,NULL); -INSERT INTO international VALUES (73,'LinkList',3,'Titel
\r\n Text die gelinked zal worden. \r\n

URL
\r\n De Website waarnaar gelinked wordt.

\r\n

In een nieuw venster openen?
\r\n Selecteer ja als u wilt dat deze link in een nieuw venster geopend wordt. \r\n

\r\n

Omschrijving
\r\n Beschrijf de site waar u naar linkt. Dit kan weggelaten worden als u dat\r\nwilt.

\r\n

Hoe verder?
\r\n Als u nog een link toe wilt voegen, laat dan de standaard geselecteerd.

\r\n

\r\n
\r\n',1039775841,NULL); -INSERT INTO international VALUES (73,'FAQ',3,'Vraag
\r\n Voer de vraag in die u in de FAQ wilt laten verschijnen. \r\n

Antwoord
\r\n Voer het antwoord in voor de vraag die u hierboven heeft ingevuld.

\r\n

Wat nu?
\r\n Als u nog een vraag wilt toevoegen, laat dan de default geselecteerd staan.

\r\n

\r\n
\r\n',1039741313,NULL); INSERT INTO international VALUES (73,'EventsCalendar',3,'Titel
\r\n De titel voor deze gebeurtenis. \r\n

Beschrijving
\r\n Omschrijf de activiteit van deze gebeurtenis of voer informatie in over\r\nwaar deze gebeurtenis plaatsvind.

\r\n

Begindatum
\r\n Wanneer begint deze gebeurtenis?

\r\n

Einddatum
\r\n Op welke datum zal deze gebeurtenis plaatsvinden?

\r\n

Gebeurt iedere
\r\n Selecteer een interval waarin deze gebeurtenis opnieuw plaatsvind.

\r\n

Wat nu?
\r\n Als u nog een gebeurtenis toe wilt voegen, selecteer dan \"voeg gebeurtenis toe\" selecteer ander \"ga terug naar de huidige pagina\".

\r\n

\r\n
\r\n',1039741404,NULL); INSERT INTO international VALUES (72,'Poll',3,'Antwoorden in willekeurige volgorde weergeven?',1038527736,NULL); -INSERT INTO international VALUES (72,'LinkList',3,'Link, Toevoegen/Bewerken',1039597033,NULL); -INSERT INTO international VALUES (72,'FAQ',3,'Vraag, Toevoegen/Bewerken',1039596931,NULL); INSERT INTO international VALUES (72,'FileManager',3,'Bestand, Toevoegen/Bewerken',1039741267,NULL); INSERT INTO international VALUES (717,'WebGUI',3,'Uitloggen',1039783293,NULL); INSERT INTO international VALUES (716,'WebGUI',3,'Inloggen',1039783286,NULL); INSERT INTO international VALUES (715,'WebGUI',3,'Redirect URL',1039783279,NULL); -INSERT INTO international VALUES (654,'WebGUI',3,'Stijl, Verwijder',1039782911,NULL); INSERT INTO international VALUES (471,'WebGUI/Profile',3,'Bewerk gebruikers profielveld',1038506711,NULL); INSERT INTO international VALUES (36,'Product',3,'Voeg een accessoire toe',1037886945,NULL); INSERT INTO international VALUES (585,'WebGUI',3,'Beheer vertalingen.',1039520850,NULL); @@ -5710,41 +5557,31 @@ INSERT INTO international VALUES (579,'WebGUI',10,'Din meddelelse er blevet godk INSERT INTO international VALUES (542,'WebGUI',3,'Vorige..',1039780690,NULL); INSERT INTO international VALUES (3,'WobjectProxy',10,'Wobject Proxy',1036856148,NULL); INSERT INTO international VALUES (5,'USS',9,'±zªº±i¶K¤å³¹³Q©Úµ´',1031510000,NULL); -INSERT INTO international VALUES (5,'SQLReport',9,'DSN',1031510000,NULL); INSERT INTO international VALUES (5,'SiteMap',9,'½s¿èºô¯¸¦a¹Ï',1031510000,NULL); INSERT INTO international VALUES (5,'Poll',9,'¹Ï§Î¼e«×',1031510000,NULL); INSERT INTO international VALUES (622,'WebGUI',2,'

Schauen Sie auch unter "Verwalten Gruppen", um eine Beschreibung der Gruppen-Funktionalitäten zu erhalten und die Beschreibung der Standardgruppen zu sehen.

\r\n\r\n

Gruppenname
\r\nEin Name für die Gruppe. Am besten wählen Sie hier einen Namen, der auch die Funktion der Gruppe beschreibt, damit Sie später nicht den Überblick verlieren.

\r\n\r\n

Beschreibung
\r\nEine längere Beschreibung für diese Gruppe, so dass Administratoren und Content Manager sehen können, was der Sinn und Zweck dieser Gruppe ist.

\r\n\r\n

Verfällt nach
\r\nDie Zeit, die ein Benutzer zu dieser Gruppe gehört, bis er/sie entfernt wird bzw. die Mitgliedschaft verfällt. Dies ist hilfreich für Seiten, in denen Benutzer zeitlich beschränkte Angebote erhalten sollen. Beachten Sie, dass diese Einstellungen auch wieder für jeden einzelnen Benutzergesondert vorgenommen werden können.

\r\n\r\n

Benutzer über abgelaufene Zeit informieren?
\r\nWählen Sie hier "Ja", wenn Sie den Benutzer darüber informieren möchten, dass er automatisch von dieser Gruppe entfernt werden soll.

\r\n\r\n

Zeitabstand zur Ablaufankündigung
\r\nDer Abstand in Tagen des Ablaufs seit der Ankündigung. Sie müssen hier einen korrekten IntegerWert setzen. Wählen Sie z. B. "0" aus, wenn die Benachrichtigung an den Benutzer am selben Tag erfolgen soll, an dem er von der Gruppe entfernt wird. Wenn Sie "-7" auswählen, ergeht die Benachrichtigung 7 Tage vorher an den Benutzer. (Bei der Auswahl von "7" ergeht die Benachrichtigung entsprechend 7 Tage danach).

\r\n\r\n

Benachrichtigungstext zum Ablaufdatum
\r\nGeben Sie hier den Text ein, der den Benutzer über den Zeitablauf informieren soll.

\r\n\r\n

Löschen Zeitspanne
\r\nDie Anzahl in Tagen, nachdem der Benutzer nach Ablauf der Zeitspanne aus der Gruppe entfernt werden soll. Wenn Sie z. B. "0" angeben, wird der Benutzer noch am Tage des Zeitablaufs von der Gruppe entfernt. (weitere Beispiele siehe \'Zeitabstand zur Ablaufankündigung")

\r\n\r\n

Scratch Filter
\r\nEin Benutzer kann dynamisch einer Gruppe unter Verwendung einer Scratch Variable in dessen Session zugeordnet werden. Scratch Variablen können programatisch oder übers Web gesetzt werden. Um eine Scratch-Variable übers Web zu setzen, fügen Sie das Nachfolgende ans Ende einer URL an:

\r\n\r\n

?op=setScratch&scratchName=beliebigerName&scratchValue=beliebigerWert

\r\n\r\n

Nachdem das getan ist, wird einem Benutzer, wenn er auf diesen Link klickt,ein Scratch Variable zu dessen Session hinzugefügt mit dem Namen "www_beliebigerName" und einem Wert "beliebigerWert". Das "www_" ist vorangestellt, um Anfragen übers Web zu unterbinden, die Scratch-Variablen zuu überschreiben versuchen, die programmatisch gesetzt wurden.

\r\n\r\n

Um einen Scratch-Filter zu setzen, fügen Sie einfach eine Zeile ins Scratch-Filter-Feld hinzu, die ungefähr so aussehen sollte::

\r\n\r\n

www_belieberigerName=beliebigerWert

\r\n\r\n

IP Adresse
\r\nGeben Sie eine IP Adresse oder eine IP Maske an. Wenn der Benutzer diese IP-Adresse hat oder sich in der IP-Maske befindet, wird er automatisch in diese Gruppe aufgenommen. Eine IP-Maske ist einfach nur die IP-Adresse abzüglich eines Octets (Acht) oder 2. Sie können auch mehrere IP-Masken getrennt durch ein Semikolon angeben.

\r\n\r\n

Beispiel für IP Masken: 10.;192.168.;101.42.200.142

\r\n\r\n

Karma Grenzwert
\r\nSie können den Wert hier angeben, wenn Sie Karma aktiviert haben. Dieser Grenzwert ist der Anteil an Karma, die ein Benutzer haben muss, um Mitglied dieser Gruppe zu werden.

\r\n\r\n

Benutzer können sich selbst hinzufügen?
\r\nMöchten Sie, dass sich Benutzer selbst zu dieser Gruppe hinzufügen können? Für weitere Informationen schauen Sie sich die Beschreibung des GroupAdd Makros an.

\r\n\r\n

Benutzer können sich selbst entfernen?
\r\nMöchten Sie, dass sich Benutzer selbst von dieser Gruppe entfernen können? Für weitere Informationen schauen Sie sich die Beschreibung des GroupDelete Makros an.

\r\n\r\n

Datenbank Link
\r\nMöchten Sie, dass die Benutzer dieser Gruppe aus einer externen Datenbank kommen, so geben Sie hier den Datenbanklink dafür an.

\r\n\r\n

SQL-Abfrage
\r\n
Einige Unternehmen haben externe Datenbanken, die ebenfalls Benutzer in Gruppen verwalten, z. B. eine HR Datenbank verbindet Angestellten ID\'s zu einem Gesundheitsplan. Um Benutzer gegenüber einer externen Datenbank zu validieren, müssen Sie ein SQL-Statement erstellen, das "1" als Wert zurückgibt, wenn der Benutzer in der Gruppe ist. Beachten Sie, dass Sie das SQL-Statement mit "select 1" beginnen. Sie können auch Makros in dieser Abfrage verwenden, um Zugriff zu einem Benutzerprofilzu erhalten, wie z. B. AngestelltenID. Hier ist ein Beispiel, dass überprüft, ob der Benutzer in einer fiktiven HR Datenbank enthalten ist. Dieses Beispiel setzt voraus, dass Sie ein zusätzliches Profilfeld "employeeId" in WebGUI erstellt haben.
\r\n
\r\nselect 1 from employees, health_plans, empl_plan_map
\r\nwhere employees.employee_id = ^User("employeeId");
\r\nand health_plans.plan_name = \'HMO 1\'
\r\nand employees.employee_id = empl_plan_map.employee_id
\r\nand health_plans.health_plan_id = empl_plan_mp.health_plan_id
\r\n
\r\nDiese Gruppe könnte dann z. B. als "Angestellte in HMO 1" heissen und Ihnen die Möglichkeit bieten, bestimmte Seiten nur für diese Gruppe zugänglich zu machen. (Ich habe das Beispiel aus der englischen Originalversion einfach übernommen, ein besseres Beispiel fiel mir nicht ein.

\r\n\r\n

Wie lange externe Gruppen zwischenspeichern?
\r\nGrosse Sites, die externe Gruppen verwenden, verursachen auch häufige Datenbankzugriffe. Um dies etwas einzuschränken, können Sie hier angeben, wie lang die Ergebnisse der vorherigen SQL-Abfrage in der WebGUI Datenbank zwischengespeichert werden. Erweiterte Cachingfunktionen wird es in einer zukünftigen WebGUI Version geben.

',1067283496,NULL); -INSERT INTO international VALUES (5,'Item',9,'¤U¸üªþ¥ó',1031510000,NULL); -INSERT INTO international VALUES (5,'FAQ',9,'°ÝÃD',1031510000,NULL); -INSERT INTO international VALUES (5,'ExtraColumn',9,'Style Class',1031510000,NULL); +INSERT INTO international VALUES (85,'USS',9,'°ÝÃD',1031510000,NULL); INSERT INTO international VALUES (20,'EventsCalendar',9,'¼W¥[¨Æ°È',1031510000,NULL); -INSERT INTO international VALUES (38,'USS',9,'(¦pªG±z¨Ï¥Î¤F¶W¤å¥»»y¨¥¡A½Ð¿ï¾Ü¡§§_ǵz)',1031510000,NULL); INSERT INTO international VALUES (4,'WebGUI',9,'ºÞ²z³]¸m',1031510000,NULL); INSERT INTO international VALUES (4,'USS',9,'±zªº±i¶K¤å³¹¤w³q¹L¼f®Ö',1031510000,NULL); INSERT INTO international VALUES (4,'SyndicatedContent',9,'½s¿è¦P¨B¤º®e',1031510000,NULL); INSERT INTO international VALUES (4,'SQLReport',9,'¬d¸ß',1031510000,NULL); INSERT INTO international VALUES (4,'SiteMap',9,'®i¶}²`«×',1031510000,NULL); INSERT INTO international VALUES (4,'Poll',9,'§ë²¼Åv­­',1031510000,NULL); -INSERT INTO international VALUES (4,'Item',9,'¶µ¥Ø',1031510000,NULL); -INSERT INTO international VALUES (4,'ExtraColumn',9,'¼e«×',1031510000,NULL); INSERT INTO international VALUES (4,'EventsCalendar',9,'¥uµo¥Í¤@¦¸',1031510000,NULL); INSERT INTO international VALUES (4,'Article',9,'µ²§ô¤é´Á',1031510000,NULL); -INSERT INTO international VALUES (3,'WebGUI',9,'±q°Å¶KªO¤¤Öß¶K...',1031510000,NULL); +INSERT INTO international VALUES (28,'Navigation',1,'Return a loop with',1077080706,''); INSERT INTO international VALUES (3,'USS',9,'±z¦³¤@½g·sªº¨Ï¥ÎªÌ±i¶K¤å³¹µ¥«Ý¼f®Ö',1031510000,NULL); -INSERT INTO international VALUES (3,'SQLReport',9,'³ø§i¼ÒªO',1031510000,NULL); +INSERT INTO international VALUES (2,'WSClient',1,'SOAP URI or WSDL',1033575504,NULL); INSERT INTO international VALUES (3,'SiteMap',9,'¬O§_±q¦¹¯Å§O¶}©l',1031510000,NULL); INSERT INTO international VALUES (3,'Poll',9,'¿E¬¡',1031510000,NULL); -INSERT INTO international VALUES (3,'LinkList',9,'¬O§_¦b·sµ¡¤f¤¤¥´¶}',1031510000,NULL); -INSERT INTO international VALUES (3,'Item',9,'§R°£ªþ¥ó',1031510000,NULL); -INSERT INTO international VALUES (3,'ExtraColumn',9,'ªÅ¥Õ',1031510000,NULL); +INSERT INTO international VALUES (92,'USS',9,'¬O§_¦b·sµ¡¤f¤¤¥´¶}',1031510000,NULL); INSERT INTO international VALUES (3,'Article',9,'¶}©l¤é´Á',1031510000,NULL); INSERT INTO international VALUES (2,'WebGUI',9,'­¶',1031510000,NULL); INSERT INTO international VALUES (2,'USS',9,'±i¶K¤å³¹Åv­­',1031510000,NULL); INSERT INTO international VALUES (2,'SyndicatedContent',9,'¦P¨B¤º®e',1031510000,NULL); INSERT INTO international VALUES (2,'SiteMap',9,'ºô¯¸¦a¹Ï',1031510000,NULL); INSERT INTO international VALUES (2,'MessageBoard',9,'¤½§iÄæ',1031510000,NULL); -INSERT INTO international VALUES (2,'Item',9,'ªþ¥ó',1031510000,NULL); -INSERT INTO international VALUES (2,'FAQ',9,'F.A.Q.',1031510000,NULL); INSERT INTO international VALUES (2,'EventsCalendar',9,'¦æ¨Æ¾ä',1031510000,NULL); INSERT INTO international VALUES (507,'WebGUI',9,'½s¿è¼ÒªO',1031510000,NULL); INSERT INTO international VALUES (1,'WebGUI',9,'¼W¥[¤º®e...',1031510000,NULL); @@ -5752,31 +5589,22 @@ INSERT INTO international VALUES (1,'USS',9,' INSERT INTO international VALUES (1,'SyndicatedContent',9,'RSS ¤å¥ó¶W³sµ²',1031510000,NULL); INSERT INTO international VALUES (1,'SQLReport',9,'SQL ³ø§i',1031510000,NULL); INSERT INTO international VALUES (1,'Poll',9,'½Õ¬d',1031510000,NULL); -INSERT INTO international VALUES (1,'Item',9,'¶W³sµ² URL',1031510000,NULL); -INSERT INTO international VALUES (1,'ExtraColumn',9,'ÂX®i¦C',1031510000,NULL); INSERT INTO international VALUES (83,'EventsCalendar',1,'First in the calendar.',1038190781,NULL); INSERT INTO international VALUES (1,'Article',9,'¤å³¹',1031510000,NULL); INSERT INTO international VALUES (367,'WebGUI',9,'¹L´Á®É¶¡',1031510000,NULL); INSERT INTO international VALUES (5,'WebGUI',9,'ºÞ²z¨Ï¥ÎªÌ²Õ',1031510000,NULL); INSERT INTO international VALUES (6,'Article',9,'¹Ï¤ù',1031510000,NULL); -INSERT INTO international VALUES (6,'ExtraColumn',9,'½s¿èÂX®i¦C',1031510000,NULL); -INSERT INTO international VALUES (6,'FAQ',9,'¦^µª',1031510000,NULL); -INSERT INTO international VALUES (6,'LinkList',9,'¶W³sµ²¦Cªí',1031510000,NULL); +INSERT INTO international VALUES (86,'USS',9,'¦^µª',1031510000,NULL); INSERT INTO international VALUES (6,'MessageBoard',9,'½s¿è¤½§iÄæ',1031510000,NULL); INSERT INTO international VALUES (6,'Poll',9,'°ÝÃD',1031510000,NULL); INSERT INTO international VALUES (6,'SiteMap',9,'ÁY¶i',1031510000,NULL); -INSERT INTO international VALUES (6,'SQLReport',9,'¸ê®Æ®w¨Ï¥ÎªÌ',1031510000,NULL); INSERT INTO international VALUES (6,'USS',9,'¨C­¶±i¶K¤å³¹¼Æ',1031510000,NULL); -INSERT INTO international VALUES (6,'WebGUI',9,'ºÞ²zStyle',1031510000,NULL); INSERT INTO international VALUES (7,'Article',9,'³s±µ¼ÐÃD',1031510000,NULL); -INSERT INTO international VALUES (7,'FAQ',9,'±z¬O§_½T©w±z­n§R°£³o­Ó°ÝÃD',1031510000,NULL); INSERT INTO international VALUES (7,'Poll',9,'¦^µª',1031510000,NULL); -INSERT INTO international VALUES (7,'SQLReport',9,'¸ê®Æ®w±K½X',1031510000,NULL); INSERT INTO international VALUES (7,'WebGUI',9,'ºÞ²z¨Ï¥ÎªÌ',1031510000,NULL); INSERT INTO international VALUES (8,'Article',9,'¶W³sµ² URL',1031510000,NULL); INSERT INTO international VALUES (8,'EventsCalendar',9,'­«ÂЩP´Á',1031510000,NULL); -INSERT INTO international VALUES (8,'FAQ',9,'½s¿è F.A.Q.',1031510000,NULL); -INSERT INTO international VALUES (8,'LinkList',9,'URL',1031510000,NULL); +INSERT INTO international VALUES (91,'USS',9,'URL',1031510000,NULL); INSERT INTO international VALUES (8,'Poll',9,'¡]¨C¦æ¿é¤J¤@±øµª®×¡C³Ì¦h¤£¶W¹L20±ø¡C¡^',1031510000,NULL); INSERT INTO international VALUES (1042,'WebGUI',1,'Posts Per Page',1066394411,'A label indicating that the administrator needs to enter an integer that specifies how many posts will be displayed per page on the discussion.'); INSERT INTO international VALUES (1050,'WebGUI',1,'Search For',1066418903,'Prompt the admin to enter a string to search for in the replacement text.'); @@ -5789,13 +5617,11 @@ INSERT INTO international VALUES (8,'SQLReport',9,'Edit SQL Report',1031510000,N INSERT INTO international VALUES (8,'WebGUI',9,'±z¬d¬Ýªº­¶­±¤£¦s¦b',1031510000,NULL); INSERT INTO international VALUES (9,'Article',9,'ªþ¥ó',1031510000,NULL); INSERT INTO international VALUES (9,'EventsCalendar',9,'ª½¨ì',1031510000,NULL); -INSERT INTO international VALUES (9,'FAQ',9,'¼W¥[·s°ÝÃD',1031510000,NULL); -INSERT INTO international VALUES (9,'LinkList',9,'±z¬O§_½T©w­n§R°£¦¹¶W³sµ²',1031510000,NULL); -INSERT INTO international VALUES (9,'SQLReport',9,'Debug: Error: The DSN specified is of an improper format.',1031510000,NULL); +INSERT INTO international VALUES (83,'USS',9,'¼W¥[·s°ÝÃD',1031510000,NULL); +INSERT INTO international VALUES (13,'Auth/WebGUI',1,'Allow password recovery?',1071507940,''); INSERT INTO international VALUES (9,'WebGUI',9,'¬d¬Ý°Å¶KªO',1031510000,NULL); INSERT INTO international VALUES (10,'Article',9,'¬O§_Âà´«¦^¨®²Å',1031510000,NULL); -INSERT INTO international VALUES (10,'FAQ',9,'½s¿è°ÝÃD',1031510000,NULL); -INSERT INTO international VALUES (10,'LinkList',9,'½s¿è¶W³sµ²¦Cªí',1031510000,NULL); +INSERT INTO international VALUES (84,'USS',9,'½s¿è°ÝÃD',1031510000,NULL); INSERT INTO international VALUES (10,'SQLReport',9,'Debug: Error: The SQL specified is of an improper format.',1031510000,NULL); INSERT INTO international VALUES (10,'WebGUI',9,'ºÞ²z©U§£±í',1031510000,NULL); INSERT INTO international VALUES (11,'Article',9,'(¦pªG±z¨S¦³¤â°Ê¿é¤J<br>¡A½Ð¿ï¾Ü¡§¬O\")',1031510000,NULL); @@ -5803,13 +5629,13 @@ INSERT INTO international VALUES (11,'SQLReport',9,'Debug: Error: There w INSERT INTO international VALUES (11,'WebGUI',9,'²MªÅ©U§£±í',1031510000,NULL); INSERT INTO international VALUES (12,'Article',9,'½s¿è¤å³¹',1031510000,NULL); INSERT INTO international VALUES (12,'EventsCalendar',9,'½s¿è¦æ¨Æ¾ä',1031510000,NULL); -INSERT INTO international VALUES (12,'LinkList',9,'½s¿è¶W³sµ²',1031510000,NULL); +INSERT INTO international VALUES (90,'USS',9,'½s¿è¶W³sµ²',1031510000,NULL); INSERT INTO international VALUES (12,'SQLReport',9,'Debug: Error: Could not connect to the database.',1031510000,NULL); INSERT INTO international VALUES (12,'USS',9,'(¦pªG±z¨Ï¥Î¤F¶W¤å¥»»y¨¥¡A½Ð¤£­n¿ï¾Ü¦¹¶µ)',1031510000,NULL); INSERT INTO international VALUES (12,'WebGUI',9,'°h¥XºÞ²z',1031510000,NULL); INSERT INTO international VALUES (13,'Article',9,'§R°£',1031510000,NULL); INSERT INTO international VALUES (13,'EventsCalendar',9,'½s¿è¨Æ°È',1031510000,NULL); -INSERT INTO international VALUES (13,'LinkList',9,'¼W¥[·s¶W³sµ²',1031510000,NULL); +INSERT INTO international VALUES (89,'USS',9,'¼W¥[·s¶W³sµ²',1031510000,NULL); INSERT INTO international VALUES (13,'USS',9,'±i¶K¤å³¹®É¶¡',1031510000,NULL); INSERT INTO international VALUES (13,'WebGUI',9,'¬d¬ÝÀ°§U¯Á¤Þ',1031510000,NULL); INSERT INTO international VALUES (765,'WebGUI',1,'Delete this collateral item.',1036892866,NULL); @@ -5847,7 +5673,6 @@ INSERT INTO international VALUES (30,'WebGUI',9,' INSERT INTO international VALUES (31,'WebGUI',9,'¬P´Á¥|',1031510000,NULL); INSERT INTO international VALUES (32,'WebGUI',9,'¬P´Á¤­',1031510000,NULL); INSERT INTO international VALUES (33,'WebGUI',9,'¬P´Á¤»',1031510000,NULL); -INSERT INTO international VALUES (34,'WebGUI',9,'³]¸m¤é´Á',1031510000,NULL); INSERT INTO international VALUES (35,'WebGUI',9,'ºÞ²z¥¯à',1031510000,NULL); INSERT INTO international VALUES (36,'WebGUI',9,'±z¥²¶·¬O¨t²ÎºÞ²z­û¤~¯à¨Ï¥Î¦¹¥¯à¡C½ÐÁp¨t±zªº¨t²ÎºÞ²z­û¡C¥H¤U¬O¥»¨t²Îªº¨t²ÎºÞ²z­û²M³æ¡G',1031510000,NULL); INSERT INTO international VALUES (37,'WebGUI',9,'Åv­­³Q©Úµ´¡I',1031510000,NULL); @@ -5950,15 +5775,9 @@ INSERT INTO international VALUES (148,'WebGUI',9,' INSERT INTO international VALUES (149,'WebGUI',9,'¨Ï¥ÎªÌ¼Æ',1031510000,NULL); INSERT INTO international VALUES (533,'WebGUI',9,'¤£¥]¬A·j¯Á¦r',1031510000,NULL); INSERT INTO international VALUES (532,'WebGUI',9,'¥]¬A¦Ü¤Ö¤@­Ó·j¯Á¦r',1031510000,NULL); -INSERT INTO international VALUES (151,'WebGUI',9,'­·®æ¦W',1031510000,NULL); INSERT INTO international VALUES (505,'WebGUI',9,'¼W¥[¤@­Ó·s¼ÒªO',1031510000,NULL); INSERT INTO international VALUES (504,'WebGUI',9,'¼ÒªO',1031510000,NULL); INSERT INTO international VALUES (502,'WebGUI',9,'±z½T©w­n§R°£¦¹¼ÒªO¡A¦}±N©Ò¦³¨Ï¥Î¦¹¼ÒªOªº­¶­±³]¬°Àq»{¼ÒªO',1031510000,NULL); -INSERT INTO international VALUES (154,'WebGUI',9,'­·®æ³æ',1031510000,NULL); -INSERT INTO international VALUES (155,'WebGUI',9,'±z½T©w­n§R°£¦¹­¶­±­·®æ¡A¦}±N©Ò¦³¨Ï¥Î¦¹­·®æªº­¶­±­·®æ³]¬°¡§¦w¥þ¼Ò¦¡Ç½ãqöôA',1031510000,NULL); -INSERT INTO international VALUES (156,'WebGUI',9,'½s¿è­·®æ',1031510000,NULL); -INSERT INTO international VALUES (157,'WebGUI',9,'­·®æ',1031510000,NULL); -INSERT INTO international VALUES (158,'WebGUI',9,'¼W¥[·s­·®æ',1031510000,NULL); INSERT INTO international VALUES (160,'WebGUI',9,'´£¥æ¤é´Á',1031510000,NULL); INSERT INTO international VALUES (161,'WebGUI',9,'´£¥æ¤H',1031510000,NULL); INSERT INTO international VALUES (162,'WebGUI',9,'±z¬O§_½T©w­n²MªÅ©U§£±í¤¤©Ò¦³­¶­±©M²Õ¥ó¶Ü',1031510000,NULL); @@ -6038,8 +5857,6 @@ INSERT INTO international VALUES (361,'WebGUI',9,' INSERT INTO international VALUES (362,'WebGUI',9,'¥­¤À',1031510000,NULL); INSERT INTO international VALUES (363,'WebGUI',9,'¼ÒªO©w¦ì',1031510000,NULL); INSERT INTO international VALUES (364,'WebGUI',9,'·j¯Á',1031510000,NULL); -INSERT INTO international VALUES (365,'WebGUI',9,'·j¯Áµ²ªG...',1031510000,NULL); -INSERT INTO international VALUES (366,'WebGUI',9,'¨S¦³§ä¨ì²Å¦X·j¯Á±ø¥óªº­¶­±',1031510000,NULL); INSERT INTO international VALUES (368,'WebGUI',9,'±N¦¹¨Ï¥ÎªÌ¥[¤J·s¨Ï¥ÎªÌ²Õ',1031510000,NULL); INSERT INTO international VALUES (369,'WebGUI',9,'¹L´Á¤é´Á',1031510000,NULL); INSERT INTO international VALUES (370,'WebGUI',9,'½s¿è¨Ï¥ÎªÌ¤À²Õ',1031510000,NULL); @@ -6047,17 +5864,14 @@ INSERT INTO international VALUES (371,'WebGUI',9,' INSERT INTO international VALUES (372,'WebGUI',9,'½s¿è¨Ï¥ÎªÌ©ÒÄݲոs',1031510000,NULL); INSERT INTO international VALUES (605,'WebGUI',9,'·s¼W¸s²Õ',1031510000,NULL); INSERT INTO international VALUES (374,'WebGUI',9,'ºÞ²z¥]»q',1031510000,NULL); -INSERT INTO international VALUES (375,'WebGUI',9,'¿ï¾Ü­n®i¶}ªº¥]»q',1031510000,NULL); +INSERT INTO international VALUES (8,'Navigation',1,'daughters',1077078773,'Option on question \"return a loop with\"'); INSERT INTO international VALUES (376,'WebGUI',9,'¥]»q',1031510000,NULL); -INSERT INTO international VALUES (377,'WebGUI',9,'¥]»qºÞ²z­û©Î¨t²ÎºÞ²z­û¨S¦³©w¸q¥]»q',1031510000,NULL); INSERT INTO international VALUES (31,'USS',9,'¤º®e',1031510000,NULL); INSERT INTO international VALUES (32,'USS',9,'¹Ï¤ù',1031510000,NULL); INSERT INTO international VALUES (33,'USS',9,'ªþ¥ó',1031510000,NULL); -INSERT INTO international VALUES (34,'USS',9,'Âà´«¦^¨®',1031510000,NULL); INSERT INTO international VALUES (35,'USS',9,'¼ÐÃD',1031510000,NULL); INSERT INTO international VALUES (378,'WebGUI',9,'¨Ï¥ÎªÌ ID',1031510000,NULL); INSERT INTO international VALUES (379,'WebGUI',9,'¨Ï¥ÎªÌ²Õ ID',1031510000,NULL); -INSERT INTO international VALUES (380,'WebGUI',9,'­·®æ ID',1031510000,NULL); INSERT INTO international VALUES (381,'WebGUI',9,'¨t²Î¦¬¨ì¤@­ÓµL®Äªºªí³æ½Ð¨D¡AµLªkÄ~Äò¡C·í³q¹Lªí³æ¿é¤J¤F¤@¨Ç«Dªk¦r²Å¡A³q±`·|¾É­P³o­Óµ²ªG¡C½Ð«öÂsÄý¾¹ªºªð¦^«ö¯Ãªð¦^¤W­¶­«·s¿é¤J',1031510000,NULL); INSERT INTO international VALUES (1,'FileManager',9,'¤U¸üºÞ²z',1031510000,NULL); INSERT INTO international VALUES (3,'FileManager',9,'¬O§_°õ¦æ¼W¥[¤å¥ó',1031510000,NULL); @@ -6075,7 +5889,6 @@ INSERT INTO international VALUES (16,'FileManager',9,' INSERT INTO international VALUES (769,'WebGUI',1,'Organize in Folder',1036893015,NULL); INSERT INTO international VALUES (776,'WebGUI',1,'Edit Folder',1036905944,NULL); INSERT INTO international VALUES (37,'USS',9,'§R°£',1031510000,NULL); -INSERT INTO international VALUES (13,'SQLReport',9,'Convert carriage returns?',1031510000,NULL); INSERT INTO international VALUES (17,'FileManager',9,'¨ä¥Lª©¥» #1',1031510000,NULL); INSERT INTO international VALUES (18,'FileManager',9,'¨ä¥Lª©¥» #2',1031510000,NULL); INSERT INTO international VALUES (19,'FileManager',9,'¨S¦³±z¥i¥H¤U¸üªº¤å¥ó',1031510000,NULL); @@ -6098,7 +5911,6 @@ INSERT INTO international VALUES (394,'WebGUI',9,' INSERT INTO international VALUES (395,'WebGUI',9,'¼W¥[·s¹Ï¤ù',1031510000,NULL); INSERT INTO international VALUES (718,'WebGUI',10,'Eksporter oversættelse',1036855692,NULL); INSERT INTO international VALUES (706,'WebGUI',10,'Time(r)',1036855897,NULL); -INSERT INTO international VALUES (398,'WebGUI',9,'¤åÀÉÃþ«¬©w¸q',1031510000,NULL); INSERT INTO international VALUES (399,'WebGUI',9,'¤ÀªR¥»­¶­±',1031510000,NULL); INSERT INTO international VALUES (400,'WebGUI',9,'¬O§_ªý¤î¥N²z½w¦s',1031510000,NULL); INSERT INTO international VALUES (401,'WebGUI',9,'±z¬O§_½T©w­n§R°£¦¹±ø®ø®§¥H¤Î¦¹±ø®ø®§ªº©Ò¦³½u¯Á',1031510000,NULL); @@ -6125,7 +5937,9 @@ INSERT INTO international VALUES (22,'Article',9,' INSERT INTO international VALUES (23,'Article',9,'¤é´Á',1031510000,NULL); INSERT INTO international VALUES (24,'Article',9,'µoªí¦^À³',1031510000,NULL); INSERT INTO international VALUES (28,'Article',9,'¬d¬Ý¦^À³',1031510000,NULL); -INSERT INTO international VALUES (416,'WebGUI',9,'

±zªº½Ð¨D¥X²{°ÝÃD

\r\n±zªº½Ð¨D¥X²{¤@­Ó¿ù»~¡C½Ð«öÂsÄý¾¹ªºªð¦^«ö¶sªð¦^¤W¤@­¶­«¸Õ¤@¦¸¡C¦pªG¦¹¶µ¿ù»~Ä~Äò¦s¦b¡A½ÐÁp¨t§Ú­Ì¡A¦P®É§i¶D§Ú­Ì±z¦b¤°»ò®É¶¡¨Ï¥Î¤°»ò¥¯àªº®É­Ô¥X²{ªº³o­Ó¿ù»~¡CÁÂÁ¡I',1031510000,NULL); +INSERT INTO international VALUES (873,'WebGUI',16,'Subskrybuj W±tek',1076559368,NULL); +INSERT INTO international VALUES (839,'WebGUI',16,'Makra Programisty',1076559339,NULL); +INSERT INTO international VALUES (831,'WebGUI',16,'Makra Zasobów',1076559312,NULL); INSERT INTO international VALUES (417,'WebGUI',9,'

¦w¥þĵ³ø

\r\n ±z³X°Ýªº²Õ¥ó¤£¦b³o¤@­¶¤W¡C¦¹¸ê°T¤w¸gµo°eµ¹¨t²ÎºÞ²z­û',1031510000,NULL); INSERT INTO international VALUES (418,'WebGUI',9,'HTML ¹LÂo',1031510000,NULL); INSERT INTO international VALUES (419,'WebGUI',9,'²M°£©Ò¦³ªº¼ÐÃÑ',1031510000,NULL); @@ -6211,7 +6025,6 @@ INSERT INTO international VALUES (500,'WebGUI',9,' INSERT INTO international VALUES (514,'WebGUI',9,'³X°Ý',1031510000,NULL); INSERT INTO international VALUES (527,'WebGUI',9,'Àq»{­º­¶',1031510000,NULL); INSERT INTO international VALUES (503,'WebGUI',9,'¼ÒªO ID',1031510000,NULL); -INSERT INTO international VALUES (501,'WebGUI',9,'¥DÊ^',1031510000,NULL); INSERT INTO international VALUES (528,'WebGUI',9,'¼ÒªO¦WºÙ',1031510000,NULL); INSERT INTO international VALUES (468,'WebGUI/Profile',9,'½s¿è¨Ï¥ÎªÌÄÝ©ÊÃþ',1031510000,NULL); INSERT INTO international VALUES (159,'WebGUI',9,'¦¬¥ó½c',1031510000,NULL); @@ -6227,9 +6040,6 @@ INSERT INTO international VALUES (52,'USS',9,' INSERT INTO international VALUES (53,'USS',9,'¥¬§½',1031510000,NULL); INSERT INTO international VALUES (73,'USS',1,'Submission Template',1036277524,NULL); INSERT INTO international VALUES (57,'USS',9,'¦^À³',1031510000,NULL); -INSERT INTO international VALUES (11,'FAQ',9,'¬O§_¥´¶} TOC ',1031510000,NULL); -INSERT INTO international VALUES (12,'FAQ',9,'¬O§_¥´¶} Q/A ',1031510000,NULL); -INSERT INTO international VALUES (13,'FAQ',9,'¬O§_¥´¶} [top] ³s±µ',1031510000,NULL); INSERT INTO international VALUES (509,'WebGUI',9,'°Q½×¥¬§½',1031510000,NULL); INSERT INTO international VALUES (510,'WebGUI',9,'¥­¾Q',1031510000,NULL); INSERT INTO international VALUES (511,'WebGUI',9,'½u¯Á',1031510000,NULL); @@ -6246,15 +6056,14 @@ INSERT INTO international VALUES (522,'WebGUI',9,' INSERT INTO international VALUES (523,'WebGUI',9,'´£¿ô',1031510000,NULL); INSERT INTO international VALUES (1025,'WebGUI',9,'¬O§_¼W¥[½s¿èÂW',1031510000,NULL); INSERT INTO international VALUES (525,'WebGUI',9,'½s¿è¤º®e³]¸m',1031510000,NULL); -INSERT INTO international VALUES (10,'FAQ',2,'Frage bearbeiten',1040652178,NULL); +INSERT INTO international VALUES (84,'USS',2,'Frage bearbeiten',1040652178,NULL); INSERT INTO international VALUES (10,'FileManager',2,'Download bearbeiten',1040644674,NULL); INSERT INTO international VALUES (10,'Article',2,'Carriage Return beachten?',1040597777,NULL); INSERT INTO international VALUES (562,'WebGUI',2,'Ausstehend',1041610268,NULL); INSERT INTO international VALUES (9,'WebGUI',2,'Zwischenablage anschauen',1041628849,NULL); -INSERT INTO international VALUES (9,'SQLReport',2,'Fehler: Die DSN besitzt das falsche Format.',1040649453,NULL); +INSERT INTO international VALUES (6,'Auth/WebGUI',1,'Allow Password Recovery?',1071507760,'Password expires every 10 days'); INSERT INTO international VALUES (9,'Poll',2,'Abstimmung bearbeiten',1040646954,NULL); -INSERT INTO international VALUES (9,'LinkList',2,'Sind Sie sicher, dass Sie diesen Link löschen möchten?',1040645063,NULL); -INSERT INTO international VALUES (9,'FAQ',2,'Neue Frage hinzufügen.',1040644646,NULL); +INSERT INTO international VALUES (83,'USS',2,'Neue Frage hinzufügen.',1040644646,NULL); INSERT INTO international VALUES (9,'EventsCalendar',2,'bis',1040644433,NULL); INSERT INTO international VALUES (9,'FileManager',2,'Download Manager bearbeiten',1040644884,NULL); INSERT INTO international VALUES (9,'Article',2,'Dateianhang',1040598013,NULL); @@ -6262,39 +6071,29 @@ INSERT INTO international VALUES (8,'WebGUI',2,'\"Seite nicht gefunden\" anschau INSERT INTO international VALUES (561,'WebGUI',2,'Abgelehnt',1041610445,NULL); INSERT INTO international VALUES (8,'SQLReport',2,'SQL Report bearbeiten',1040649433,NULL); INSERT INTO international VALUES (8,'Poll',2,'(Eine Antwort pro Zeile. Bitte nicht mehr als 20 verschiedene Antworten)',1040646943,NULL); -INSERT INTO international VALUES (8,'LinkList',2,'URL',1040645046,NULL); -INSERT INTO international VALUES (8,'FAQ',2,'FAQ bearbeiten',1041635393,NULL); +INSERT INTO international VALUES (91,'USS',2,'URL',1040645046,NULL); INSERT INTO international VALUES (8,'EventsCalendar',2,'Wiederholt sich',1040644422,NULL); INSERT INTO international VALUES (8,'FileManager',2,'Kurze Beschreibung',1040644869,NULL); INSERT INTO international VALUES (7,'WebGUI',2,' Verwalten: Benutzer',1040640629,NULL); INSERT INTO international VALUES (8,'Article',2,'Link URL',1040598002,NULL); INSERT INTO international VALUES (560,'WebGUI',2,'Freigegeben',1041609734,NULL); -INSERT INTO international VALUES (7,'SQLReport',2,'Datenbankpasswort',1040649412,NULL); INSERT INTO international VALUES (7,'Poll',2,'Antworten',1040646913,NULL); -INSERT INTO international VALUES (7,'FAQ',2,'Sind Sie sicher, dass Sie diese Frage löschen möchten?',1040648475,NULL); INSERT INTO international VALUES (7,'FileManager',2,'Gruppe, die Download benutzen kann',1040644847,NULL); INSERT INTO international VALUES (7,'Article',2,'Link Titel',1040597992,NULL); -INSERT INTO international VALUES (6,'WebGUI',2,' Verwalten: Styles',1040640645,NULL); INSERT INTO international VALUES (6,'USS',2,'Beiträge pro Seite',1040650162,NULL); -INSERT INTO international VALUES (6,'SQLReport',2,'Datenbankbenutzer',1040649393,NULL); INSERT INTO international VALUES (6,'SiteMap',2,'Einrückung',1040649644,NULL); INSERT INTO international VALUES (6,'MessageBoard',2,'Diskussionsforum bearbeiten',1040646718,NULL); INSERT INTO international VALUES (6,'Poll',2,'Frage',1040646895,NULL); -INSERT INTO international VALUES (6,'LinkList',2,'Link Liste',1040645017,NULL); -INSERT INTO international VALUES (6,'FAQ',2,'Antwort',1040644580,NULL); -INSERT INTO international VALUES (6,'ExtraColumn',2,'Extra Spalte bearbeiten',1040644489,NULL); +INSERT INTO international VALUES (86,'USS',2,'Antwort',1040644580,NULL); INSERT INTO international VALUES (701,'WebGUI',2,'Woche(n)',1041611185,NULL); INSERT INTO international VALUES (6,'FileManager',2,'Dateiname',1040644818,NULL); INSERT INTO international VALUES (6,'Article',2,'Grafik',1040597952,NULL); INSERT INTO international VALUES (5,'WebGUI',2,' Verwalten: Gruppen',1040640476,NULL); INSERT INTO international VALUES (5,'USS',2,'Ihr Beitrag wurde abgelehnt.',1040650082,NULL); -INSERT INTO international VALUES (5,'SQLReport',2,'DSN (Data Source Name)',1040649383,NULL); INSERT INTO international VALUES (5,'SiteMap',2,'SiteMap bearbeiten',1040649591,NULL); INSERT INTO international VALUES (5,'Poll',2,'Breite der Grafik',1040646885,NULL); INSERT INTO international VALUES (566,'WebGUI',2,'Timeout zum Bearbeiten',1041629666,NULL); -INSERT INTO international VALUES (5,'Item',2,'Anhang herunterladen',1040644938,NULL); -INSERT INTO international VALUES (5,'FAQ',2,'Frage',1040644571,NULL); -INSERT INTO international VALUES (5,'ExtraColumn',2,'StyleSheet Class',1040644477,NULL); +INSERT INTO international VALUES (85,'USS',2,'Frage',1040644571,NULL); INSERT INTO international VALUES (700,'WebGUI',2,'Tag(e)',1041611360,NULL); INSERT INTO international VALUES (5,'FileManager',2,'Dateititel',1040644808,NULL); INSERT INTO international VALUES (4,'WebGUI',2,' Verwalten: Einstellungen',1040640578,NULL); @@ -6303,27 +6102,21 @@ INSERT INTO international VALUES (4,'SQLReport',2,'Abfrage',1040649369,NULL); INSERT INTO international VALUES (4,'SyndicatedContent',2,'Syndicated Content bearbeiten',1041617824,NULL); INSERT INTO international VALUES (4,'SiteMap',2,'Tiefe',1040649577,NULL); INSERT INTO international VALUES (4,'Poll',2,'Wer kann abstimmen?',1040646876,NULL); -INSERT INTO international VALUES (4,'Item',2,'Textelement',1040644925,NULL); -INSERT INTO international VALUES (4,'ExtraColumn',2,'Breite',1040644466,NULL); INSERT INTO international VALUES (4,'EventsCalendar',2,'Einmaliges Ereignis',1040644337,NULL); INSERT INTO international VALUES (4,'Article',2,'Ende Datum',1040597938,NULL); -INSERT INTO international VALUES (3,'WebGUI',2,'Aus Zwischenablage einfügen...',1041627810,NULL); +INSERT INTO international VALUES (32,'Navigation',1,'Show unprivileged pages',1077080845,''); INSERT INTO international VALUES (3,'USS',2,'Sie haben einen neuen Beitrag zu genehmigen.',1040649956,NULL); -INSERT INTO international VALUES (3,'SQLReport',2,'Report Template',1040649352,NULL); +INSERT INTO international VALUES (9,'WSClient',1,'Debug?',1033575504,NULL); INSERT INTO international VALUES (3,'SiteMap',2,'Beginnen mit?',1040649534,NULL); INSERT INTO international VALUES (3,'Poll',2,'Aktiv',1040646865,NULL); INSERT INTO international VALUES (564,'WebGUI',2,'Wer kann Beiträge schreiben?',1041629642,NULL); -INSERT INTO international VALUES (3,'LinkList',2,'In neuem Fenster öffnen?',1040645008,NULL); -INSERT INTO international VALUES (3,'Item',2,'Anhang löschen',1040644914,NULL); -INSERT INTO international VALUES (3,'ExtraColumn',2,'Platzhalter',1040644456,NULL); +INSERT INTO international VALUES (92,'USS',2,'In neuem Fenster öffnen?',1040645008,NULL); INSERT INTO international VALUES (3,'FileManager',2,'Fortfahren, die Datei hinzuzufügen?',1040644798,NULL); INSERT INTO international VALUES (3,'Article',2,'Start Datum',1040597929,NULL); INSERT INTO international VALUES (2,'WebGUI',2,' Seite',1040641098,NULL); INSERT INTO international VALUES (2,'USS',2,'Wer kann Beiträge schreiben?',1040649886,NULL); INSERT INTO international VALUES (2,'SyndicatedContent',2,'Syndicated Content',1041617806,NULL); INSERT INTO international VALUES (2,'SiteMap',2,'SiteMap',1040649477,NULL); -INSERT INTO international VALUES (2,'FAQ',2,'FAQ',1041635376,NULL); -INSERT INTO international VALUES (2,'Item',2,'Anhang',1040644904,NULL); INSERT INTO international VALUES (2,'MessageBoard',2,'Diskussionsforum',1040646673,NULL); INSERT INTO international VALUES (2,'EventsCalendar',2,'Veranstaltungskalender',1040644311,NULL); INSERT INTO international VALUES (1,'WebGUI',2,'Inhalt hinzufügen...',1040650189,NULL); @@ -6331,14 +6124,11 @@ INSERT INTO international VALUES (1,'SyndicatedContent',2,'URL zur RSS-Datei',10 INSERT INTO international VALUES (1,'USS',2,'Wer kann genehmigen?',1040649787,NULL); INSERT INTO international VALUES (1,'SQLReport',2,'SQL Report',1043946507,NULL); INSERT INTO international VALUES (1,'Poll',2,'Abstimmung',1040646819,NULL); -INSERT INTO international VALUES (1,'Item',2,'Link URL',1040644895,NULL); -INSERT INTO international VALUES (1,'ExtraColumn',2,'Extra Spalte',1040644447,NULL); INSERT INTO international VALUES (87,'EventsCalendar',1,'Show 9 months from start.',1038190626,NULL); INSERT INTO international VALUES (1,'FileManager',2,'Download Manager',1040644661,NULL); INSERT INTO international VALUES (1,'Article',2,'Artikel',1040398023,NULL); INSERT INTO international VALUES (395,'WebGUI',2,'Neue Grafik hinzufügen.',1041628150,NULL); INSERT INTO international VALUES (722,'WebGUI',10,'ID',1036855613,NULL); -INSERT INTO international VALUES (398,'WebGUI',2,'Dokumententyp Beschreibung',1040650908,NULL); INSERT INTO international VALUES (399,'WebGUI',2,'Diese Seite überprüfen.',1041628161,NULL); INSERT INTO international VALUES (400,'WebGUI',2,'Proxy Caching verhindern',1041628442,NULL); INSERT INTO international VALUES (401,'WebGUI',2,'Sind Sie sicher, dass Sie diese Nachrichten und alle darunterliegenden löschen möchten?',1040647903,NULL); @@ -6352,7 +6142,7 @@ INSERT INTO international VALUES (409,'WebGUI',2,'Neue Startseite anlegen',10416 INSERT INTO international VALUES (410,'WebGUI',2,' Verwalten: Startseiten',1040640721,NULL); INSERT INTO international VALUES (411,'WebGUI',2,'Menü Titel',1041632012,NULL); INSERT INTO international VALUES (412,'WebGUI',2,'Zusammenfassung',1040651014,NULL); -INSERT INTO international VALUES (416,'WebGUI',2,'

Abfrageproblem

Ihre Anfrage macht dem\r\nSystem Probleme. Bitte betätigen Sie den Zurückbutton im Browser und\r\nversuchen Sie es nochmal. Sollte dieses Problem weiterbestehen, teilen Sie uns bitte mit, was Sie wo im System wann gemacht haben.',1040651888,NULL); +INSERT INTO international VALUES (116,'WebGUI',16,'Wybierz \"Tak\", by zmieniæ uprawnienia do wszystkich stron potomnych do okre¶lonej tutaj',1076558785,NULL); INSERT INTO international VALUES (417,'WebGUI',2,'

Sicherheitsverstoss

Sie haben versucht, auf einen Systemteil zuzugreifen, der Ihnen nicht erlaubt ist. Der Verstoss wurde gemeldet.',1058172140,NULL); INSERT INTO international VALUES (418,'WebGUI',2,'Inhalt filtern',1048242855,NULL); INSERT INTO international VALUES (419,'WebGUI',2,'Alles, ausser dem Text, entfernen.',1048593441,NULL); @@ -6378,14 +6168,11 @@ INSERT INTO international VALUES (51,'USS',2,'Vorschaubild anzeigen?',1040650103 INSERT INTO international VALUES (1,'Product',2,'Produkt',1040647163,NULL); INSERT INTO international VALUES (10,'DataForm',2,'Von',1040598111,NULL); INSERT INTO international VALUES (10,'Product',2,'Preis',1040647172,NULL); -INSERT INTO international VALUES (11,'FAQ',2,'Inhaltsverzeichnis aktivieren?',1040644529,NULL); INSERT INTO international VALUES (11,'DataForm',2,'An',1054045486,NULL); INSERT INTO international VALUES (897,'WebGUI/Profile',2,'Veränderbar?',1054540690,NULL); INSERT INTO international VALUES (11,'Product',2,'Produktnummer',1040647181,NULL); -INSERT INTO international VALUES (12,'FAQ',2,'Frage/Antwort einschalten?',1040644541,NULL); INSERT INTO international VALUES (12,'DataForm',2,'Kopie',1040645088,NULL); INSERT INTO international VALUES (728,'WebGUI',2,'Sind Sie sicher, dass Sie diese Datei löschen möchten?',1058172161,NULL); -INSERT INTO international VALUES (13,'FAQ',2,'[top] Link einschalten?',1040644552,NULL); INSERT INTO international VALUES (13,'DataForm',2,'Blindkopie',1040645098,NULL); INSERT INTO international VALUES (13,'Product',2,'Prospekt',1040647224,NULL); INSERT INTO international VALUES (14,'DataForm',2,'Betreff',1040645108,NULL); @@ -6425,9 +6212,6 @@ INSERT INTO international VALUES (18,'DataForm',2,'Zurück!',1040645179,NULL INSERT INTO international VALUES (21,'Product',2,'weiteres verwandtes Produkt hinzufügen?',1040648710,NULL); INSERT INTO international VALUES (8,'Product',2,'Produktgrafik 2',1040648973,NULL); INSERT INTO international VALUES (78,'EventsCalendar',2,'Löschen Sie nichts, ich habe einen Fehler verursacht.',1040644404,NULL); -INSERT INTO international VALUES (73,'LinkList',2,'Titel
\r\nDer Text, der verlinkt wird

\r\nURL
\r\nDie URL zur Webseite, zu verlinkt wird.\r\n

\r\nIn neuem Fenster öffnen?
\r\nWählen Sie \"Ja\", wenn der Link in einem neuen Fenster geöffnet werden soll.\r\n

\r\nBeschreibung
\r\nBeschreiben Sie die Seite, zu der Sie den Link gesetzt haben. Sie können dies auch auslassen, wenn Sie möchten.\r\n

\r\nAls nächstes?
\r\nMöchten Sie nun gleich einen weiteren Link einfügen?',1041633296,NULL); -INSERT INTO international VALUES (804,'WebGUI',2,'Diesen Style kopieren.',1040597735,NULL); -INSERT INTO international VALUES (803,'WebGUI',2,'Diesen Style bearbeiten.',1040597719,NULL); INSERT INTO international VALUES (801,'WebGUI',2,'Wobject Interaktionen',1040597703,NULL); INSERT INTO international VALUES (800,'WebGUI',2,'Eindeutige Besucher',1040597685,NULL); INSERT INTO international VALUES (76,'EventsCalendar',2,'Nur dieses Ereignis löschen',1040644379,NULL); @@ -6435,8 +6219,6 @@ INSERT INTO international VALUES (77,'EventsCalendar',2,'Dieses Ereignis und all INSERT INTO international VALUES (75,'EventsCalendar',2,'Was möchten Sie gerne tun?',1040597885,NULL); INSERT INTO international VALUES (61,'DataForm',21,'æÏÒÍÁ (ÄÏÂÁ×ÌÅÎÉÅ/ÒÅÄÁËÔÉÒÏ×ÁÎÉÅ)',1041688594,NULL); INSERT INTO international VALUES (72,'Poll',2,'Antworten zufällig anordnen?',1040646923,NULL); -INSERT INTO international VALUES (72,'LinkList',2,'Link, Hinzufügen/Bearbeiten',1067897347,NULL); -INSERT INTO international VALUES (72,'FAQ',2,'Frage, Hinzufügen/Bearbeiten',1067897247,NULL); INSERT INTO international VALUES (72,'EventsCalendar',2,'Ereignis, Hinzufügen/Bearbeiten',1067897205,NULL); INSERT INTO international VALUES (72,'FileManager',2,'Download, Hinzufügen/Bearbeiten',1067897299,NULL); INSERT INTO international VALUES (717,'WebGUI',2,'Abmelden',1041631707,NULL); @@ -6540,13 +6322,11 @@ INSERT INTO international VALUES (669,'WebGUI',2,'Makros, Verwenden',1048243026, INSERT INTO international VALUES (668,'WebGUI',2,'Style Sheets, Verwenden',1048242988,NULL); INSERT INTO international VALUES (697,'WebGUI',2,'Karma verwenden',1040403885,NULL); INSERT INTO international VALUES (670,'WebGUI',2,'Grafik, Hinzufügen/Bearbeiten',1067897450,NULL); -INSERT INTO international VALUES (666,'WebGUI',2,'Style, Hinzufügen/Bearbeiten',1067897470,NULL); INSERT INTO international VALUES (665,'WebGUI',2,'Gruppe löschen',1041630789,NULL); INSERT INTO international VALUES (662,'WebGUI',2,'Einstellungen verwalten',1041631762,NULL); INSERT INTO international VALUES (663,'WebGUI',2,'Benachrichtigungsoptionen, Bearbeiten',1045240942,NULL); INSERT INTO international VALUES (705,'WebGUI',2,'Minute(n)',1041631459,NULL); INSERT INTO international VALUES (661,'WebGUI',2,'Dateieinstellungen bearbeiten',1041631860,NULL); -INSERT INTO international VALUES (659,'WebGUI',2,'Styles, Verwalten',1055247752,NULL); INSERT INTO international VALUES (658,'WebGUI',2,'Benutzer verwalten',1040639097,NULL); INSERT INTO international VALUES (660,'WebGUI',2,'Gruppen verwalten',1041632451,NULL); INSERT INTO international VALUES (655,'WebGUI',2,'Benutzer, Hinzufügen/Bearbeiten',1067897480,NULL); @@ -6606,10 +6386,6 @@ INSERT INTO international VALUES (61,'SiteMap',2,'SiteMap, Hinzufügen/Bearb INSERT INTO international VALUES (61,'SQLReport',2,'SQL Report, Hinzufügen/Bearbeiten',1067897500,NULL); INSERT INTO international VALUES (61,'Poll',2,'Abstimmung, Hinzufügen/Bearbeiten',1067896929,NULL); INSERT INTO international VALUES (61,'MessageBoard',2,'Diskussionsforum, Hinzufügen/Bearbeiten',1067896907,NULL); -INSERT INTO international VALUES (61,'LinkList',2,'Linkliste, Hinzufügen/Bearbeiten',1067897323,NULL); -INSERT INTO international VALUES (61,'Item',2,'Textelement, Hinzufügen/Bearbeiten',1067897308,NULL); -INSERT INTO international VALUES (61,'FAQ',2,'FAQ, Hinzufügen/Bearbeiten',1067897214,NULL); -INSERT INTO international VALUES (61,'ExtraColumn',2,'Zusätzliche Spalte, Hinzufügen/Bearbeiten',1067897110,NULL); INSERT INTO international VALUES (61,'EventsCalendar',2,'Ereigniskalender, Hinzufügen/Bearbeiten',1067897194,NULL); INSERT INTO international VALUES (61,'FileManager',2,'Download Manager, Hinzufügen/Bearbeiten',1067897288,NULL); INSERT INTO international VALUES (61,'Article',2,'Artikel, Hinzufügen/Bearbeiten',1067896840,NULL); @@ -6617,7 +6393,6 @@ INSERT INTO international VALUES (61,'DataForm',2,'DataForm, Hinzufügen/Bea INSERT INTO international VALUES (60,'Product',2,'Template',1040405867,NULL); INSERT INTO international VALUES (6,'Product',2,'Produkt bearbeiten',1040648932,NULL); INSERT INTO international VALUES (6,'DataForm',2,'veränderbar',1054537854,NULL); -INSERT INTO international VALUES (6,'Item',2,'Textelement bearbeiten',1040644948,NULL); INSERT INTO international VALUES (597,'WebGUI',2,'Übersetzung bearbeiten',1041630007,NULL); INSERT INTO international VALUES (596,'WebGUI',2,'fehlende Übersetzung',1041629999,NULL); INSERT INTO international VALUES (598,'WebGUI',2,'Sprache bearbeiten',1041630015,NULL); @@ -6635,7 +6410,6 @@ INSERT INTO international VALUES (586,'WebGUI',2,'Sprachen verwalten',1041629914 INSERT INTO international VALUES (585,'WebGUI',2,' Verwalten: Übersetzungen',1066911868,NULL); INSERT INTO international VALUES (584,'WebGUI',2,'Neue Sprache hinzufügen.',1040398571,NULL); INSERT INTO international VALUES (35,'Product',2,'Merkmal hinzufügen',1041626240,NULL); -INSERT INTO international VALUES (654,'WebGUI',2,'Style, Löschen',1067897739,NULL); INSERT INTO international VALUES (581,'WebGUI',2,'neuen Wert hinzufügen',1041629849,NULL); INSERT INTO international VALUES (642,'WebGUI',2,'Seite, Hinzufügen/Bearbeiten',1067896964,NULL); INSERT INTO international VALUES (62,'Product',2,'Produkt Template',1067897516,NULL); @@ -6661,7 +6435,7 @@ INSERT INTO international VALUES (588,'WebGUI',1,'Are you certain you wish to su INSERT INTO international VALUES (593,'WebGUI',1,'Submit this translation.',1036970850,NULL); INSERT INTO international VALUES (594,'WebGUI',1,'Translate messages.',1031514314,NULL); INSERT INTO international VALUES (61,'USS',1,'User Submission System, Add/Edit',1047859664,NULL); -INSERT INTO international VALUES (71,'USS',1,'User Submission Systems are a great way to add a sense of community to any site as well as get free content from your users.\r\n

\r\n\r\nMain Template
\r\nChoose a layout for this USS.\r\n

\r\n\r\n\r\nFilter Content
\r\nSelect the level of content filtering you wish to perform on all submitted content.\r\n

\r\n\r\nSubmission Template
\r\nChoose a layout for the individual submissions.\r\n

\r\n\r\nWho can approve?
\r\nWhat group is allowed to approve and deny content?\r\n

\r\n\r\nWho can contribute?
\r\nWhat group is allowed to contribute content?\r\n

\r\n\r\nSubmissions Per Page
\r\nHow many submissions should be listed per page in the submissions index?\r\n

\r\n\r\nSort By
\r\nThe field to sort the submission list by.\r\n

\r\n\r\nSort Order
\r\nThe direction to sort the submission list by.\r\n

\r\n\r\nDefault Status
\r\nShould submissions be set to Approved, Pending, or Denied by default?\r\n

\r\nNote: If you set the default status to Pending, then be prepared to monitor your message log for new submissions.\r\n

\r\n\r\nKarma Per Submission
\r\nHow much karma should be given to a user when they contribute to this user submission system?\r\n

\r\n\r\n\r\nAllow discussion?
\r\nChecking this box will enable responses to your article much like Articles on Slashdot.org.\r\n

\r\n\r\n\r\n',1066637303,NULL); +INSERT INTO international VALUES (71,'USS',1,'User Submission Systems (USS) are a great way to add a sense of community to any site as well as get free content from your users. The User Submission System name is misleading to some people, because they immediately think of users as visitors. However, users are also staff, or business partners, or even yourself. With the USS you can select who can add new content, and even who can moderate that content.\r\n

\r\nUser Submission systems are so versatile that they allow you to create all kinds of applications, just by editing a few templates. Example applications are Photo Galleries, FAQs, Link Lists, Guest Books, Classifieds, and more.\r\n\r\n\r\n

\r\nSubmission Template
\r\nChoose a layout for the individual submissions.\r\n

\r\n\r\nSubmission Form Template
\r\nChoose a layout of the form users see when submitting content.\r\n

\r\n\r\n\r\nSubmissions Per Page
\r\nHow many submissions should be listed per page in the submissions index?\r\n

\r\n\r\n\r\nFilter Content
\r\nSelect the level of content filtering you wish to perform on all submitted content.\r\n

\r\n\r\nSort By
\r\nThe field to sort the submission list by.\r\n

\r\n\r\nSort Order
\r\nThe direction to sort the submission list by.\r\n

\r\n\r\n\r\n\r\n\r\nWho can approve?
\r\nWhat group is allowed to approve and deny content?\r\n

\r\n\r\nWho can contribute?
\r\nWhat group is allowed to contribute content?\r\n

\r\n\r\n\r\nDefault Status
\r\nShould submissions be set to Approved, Pending, or Denied by default?\r\n

\r\nNote: If you set the default status to Pending, then be prepared to monitor your message log for new submissions.\r\n

\r\n\r\nKarma Per Submission
\r\nHow much karma should be given to a user when they contribute to this user submission system?\r\n

\r\n\r\n\r\nAllow discussion?
\r\nChecking this box will enable responses to your article much like Articles on Slashdot.org.\r\n

\r\n\r\n\r\n',1070199700,NULL); INSERT INTO international VALUES (82,'USS',1,'Descending',1066636432,'When a list is the reverse of chronological, alphabetical, or numeric order. The opposite of Ascending.'); INSERT INTO international VALUES (81,'USS',1,'Ascending',1066636389,'When a list is in chronological, alphabetical, or numeric order.'); INSERT INTO international VALUES (80,'USS',1,'Sort Order',1066636329,'The direction of a sort.'); @@ -6675,10 +6449,10 @@ INSERT INTO international VALUES (718,'WebGUI',1,'Export this translation.',1036 INSERT INTO international VALUES (12,'Poll',1,'Total Votes',1050182699,NULL); INSERT INTO international VALUES (12,'Poll',7,'×ÜͶƱÈËÊý:',1031514049,NULL); INSERT INTO international VALUES (723,'WebGUI',1,'Deprecated',1031800566,NULL); -INSERT INTO international VALUES (5,'Auth/WebGUI',1,'Your password cannot be \"password\".',1031880154,NULL); +INSERT INTO international VALUES (5,'Auth/WebGUI',1,'Your password cannot be \"password\".',1071507752,NULL); INSERT INTO international VALUES (725,'WebGUI',1,'Your username cannot be blank.',1031879612,NULL); INSERT INTO international VALUES (724,'WebGUI',1,'Your username cannot begin or end with a space.',1031879593,NULL); -INSERT INTO international VALUES (4,'Auth/WebGUI',1,'Your password cannot be blank.',1031879567,NULL); +INSERT INTO international VALUES (4,'Auth/WebGUI',1,'Your password cannot be blank.',1071507744,NULL); INSERT INTO international VALUES (5,'Auth/WebGUI',6,'Ditt lösenord kan inte vara \"lösenord\".',1032262393,NULL); INSERT INTO international VALUES (4,'Auth/WebGUI',6,'Du måste fylla i ett lösenord.',1032262370,NULL); INSERT INTO international VALUES (725,'WebGUI',6,'Du måste fylla i ett användarnamn.',1032262345,NULL); @@ -6699,7 +6473,7 @@ INSERT INTO international VALUES (651,'WebGUI',6,'Om du v INSERT INTO international VALUES (71,'Survey',1,'Grade Book',1037573252,NULL); INSERT INTO international VALUES (70,'Survey',1,'Individual Responses',1037573240,NULL); INSERT INTO international VALUES (69,'Survey',1,'Delete this user\'s responses.',1037573082,NULL); -INSERT INTO international VALUES (68,'Survey',1,'View reports and exports.',1037560492,NULL); +INSERT INTO international VALUES (24,'WSClient',1,'SOAP return is type: ',1055349028,NULL); INSERT INTO international VALUES (67,'Survey',1,'User',1037558860,NULL); INSERT INTO international VALUES (640,'WebGUI',6,'Det är inte en god idé att ta bort mallar eftersom du inte vet vilka följdverkningar det kan få på din webbplats (vissa sidor kan fortfarande använda mallen). Om du verkligen vill ta bort en mall kommer alla sidor som använder den att byta till standard-mallen',1032255575,NULL); INSERT INTO international VALUES (639,'WebGUI',6,'Mallnamn\r\nGe den här mallen ett beskrivande namn så att du vet hur den ser ut när du applicerar den på en sida.\r\n\r\nMall\r\nSkapa en mall genom att placera special macron ^0; ^1; ^2; osv på de positioner du vill ska ha innehåll. Vanligtvis så används en tabell för att positionera innehållet. Titta gärna på mallarna som kommer med WebGUI för idéer.',1032255389,NULL); @@ -6729,19 +6503,16 @@ INSERT INTO international VALUES (625,'WebGUI',6,'Namn\r\nEn etikett f INSERT INTO international VALUES (624,'WebGUI',6,'WebGUI macros används för att skapa dynamiskt innehåll bland statiskt innehåll. Till exempel så kan användarnamnet för inloggad användare visas på varje sida.\r\n\r\nMacros börjar alltid med \"^\", följs alltid med minst ett tecken och avslutas alltid med \";\". Vissa macron kan konfigureras genom att man lägger in en parameter. Ett vanlig macro kan skrivas: ^x; men med en paramater ser det ut som: ^x(\"parameter, vad du vill\");\r\n\r\nHär följer en beskrivning av samtliga macron i WebGUI.\r\n\r\n^a; eller ^a(); - Mitt konto-länk\r\nEn länk för att se din kontoinformation. Du kan ändra länktexten genom att skriva macrot som ^a(\"Kontoinformation\");.\r\n\r\nNote: Du kan använda specialparametern linkonly (^a(linkonly)) för att bara skapa en URL till kontosidan och inget mer. .myAccountLink stilmallen är knuten till detta macro.\r\n\r\n^AdminBar;\r!\n\nPlacerar administrativa menyn på sidan. Detta är ett obligatoriskt macro i \"body\"-delen av stilhanteraren.\r\n\r\n^AdminText();\r\nVisar ett litet textmeddelande om en användare är i administrationsläge. Exempel: ^AdminText(\"Du är nu i administrationsläge\");.\r\n\r\n^AdminToggle; eller ^AdminToggle();\r\nPlacerar en länk på sidan som bara är synlig för innehållshanterare och administratörer. Länken sätter på/stänger av administrationsläget. Du kan även välja andra namn på länkarna genom att skriva ^AdminToggle(\"Redigera\",\"Visa\");.\r\n\r\n^C; eller ^C(); - Vägspårning\r\nVisar vilken väg man gått genom webbplatsen i en hierarkisk struktur. Du kan själv välja vilken avgrönsare du vill ha mellan de olika sidorna genom att skriva ^C(::). Standard avgränsare är \">\". \r\n\r\nNote: .crumbTrail stilklass anger hur den ser ut.\r\n\r\n^c; - Företagsnamn\r\nNamnet på ditt företag, angett av administratören.\r\n\r\n^D; eller ^D(); - Datum\r\nT!\nid just nu.\r\n\r\nDu kan själv välja datumformat genom att använda vissa symboler. ^D(\"%c %D, %y\"); skulle generera September 26, 2001. Följande format och symboler finns tillgängliga: \r\n\r\n%% % \r\n%y 4-siffrigt årtal\r\n%Y 2-siffrigt årtal\r\n%m 2-siffrig månad\r\n%M månad\r\n%c månadsnamn\r\n%d 2-siffrig månadsdag\r\n%D månadsdag\r\n%w namn på veckodag\r\n%h 2-siffrig klocka bas 12 timmar\r\n%H klocka bas 12 timmar\r\n%j 2-siffrig klocka bas 24 timmar\r\n%J klocka bas 12 timmar\r\n%p gemen am/pm\r\n%P versal AM/PM\r\n%z användarinställt datumformat\r\n%Z användarinställt tidsformat\r\n\r\n^e; - Företagets e-postadress\r\nE-postadressen som inställd av adminstratören.\r\n\r\n^Env();\r\nAnvänds för att visa serverns variabler. Du kan se alla serverns variabler genom att gå till \"www.dinwebplats.tld/env.pl\". Macrot ska skrivas som ^Env(\"REMOTE_ADDR\");.\r\n\r\n^Execute();\r\nTillåter innehållshanterare eller administratör att köra ett externt program.!\n Används vanligtvis som ^Execute(\"/this/file.sh\").\r\n\r\n^Extras;\r\nReturnera sökvägen till WebGUI \"extras\" mapp som innehåller saker som WebGUI ikoner.\r\n\r\n^FlexMenu;\r\nSkapar en expanderbar meny. Fungerar ungerfär som trädstrukturen i Utforskaren på en Windows-dator.\r\n\r\n^FormParam();\r\nAnvänds oftast för att skapa dynamiska frågor genom SQL-rapporter. Genom att använda det här macrot kan du få värdet från valfritt formulärfält bara genom att använda fältets namn. Exempel: ^FormParam(\"telefonnummer\"); \r\n\r\n^GroupText();\r\nVisar en kort text för användare som är medlemmar i en specifik grupp. Exempel: ^GroupText(\"Visitors\",\"Du behöver ett konto för att använda den här webbplatsen!\"); \r\n\r\n^H; or ^H(); - Home Link\r\nEn länk till webbplatsens förstasida. Du kan själv välja länktexten genom att skicka med den som en parameter. Exempel: ^H(\"Hem\");. \r\n\r\nNote: Du kan även skriva ^H(linkonly); för att bara få en URL t!\nill förstasidan. .homeLink stilklassen används för att ändra utseende på länken.\r\n\r\n^I(); - Bild-tagg från bildhanteraren\r\nReturnerar en image-tag (HTML) till en bild definierad i bildhanteraren. Välj vilken bild du vill ha genom att skicka namnet som parameter. Exempel: ^I(\"bildnamn\");. \r\n\r\n^i(); - Image Manager Image Path\r\nReturnera sökvägen till en bild som är uppladdad via bildhanteraren. Välj vilken bild du vill ha sökvägen till genom att skicka namnet som parameter. Exempel: ^i(\"bildnamn\");.\r\n\r\n^Include();\r\nLåter administratör eller innehållshanterare att inkludera filer från lokala filsystemet i HTML-dokumenten. Skicka dokumentets plats som parameter. Exempel: ^Include(\"/denna/filen.html\"); \r\n\r\n^L; or ^L(); - Login\r\nEtt litet inloggningsformulär. Du kan bestämma hur bred rutan ska vara och även ett meddelande som ska visas efter användaren loggat in. För att bestämma storleken så skriver man: ^L(20);. För att skriva !\nett meddelande som visas för användaren så skriver man: ^L(20,Hej ^a(^@;);. Klicka %here% om du vill logga ut!) \r\n\r\nNote: .loginBox stilklassen bestämmer utseendet.\r\n\r\n^LoginToggle; or ^LoginToggle();\r\nVisar ett \"Logga in\"- eller \"Logga ut\"-meddelande beroende på om man är ut- eller inloggad. Du kan även välja andra texter genom att skriva såhär: ^LoginToggle(\"Klicka här för att logga in.\",\"Klicka här för att logga ut.\"); \r\n\r\n^M; or ^M(); - Nuvarande meny (vertikal)\r\nEn vertikal meny som visar de underalternativ som finns tillgängliga från nuvarande sida och neråt. Som standard så visar den bara de menyalternativ som leder ner en nivå, men du kan själv välja hur många nivåer ner som ska visas. För att gå tre nivåer ner kan du skriva såhär: ^M(3);. Byter du 3\'an mot en 0\'a (noll) så visas hela webbplatsens undersidor.\r\n\r\n^m; - Nuvarande meny (horisontell)\r\nEn horisontell meny som innehåller undersidorna räknat från nuvarande!\n nivå. Du kan själv välja en avgränsare genom att skriva ^m(:--:);. Standard avgränsare är ·. \r\n\r\n^P; or ^P(); - Tidigare meny (vertikal)\r\nEn vertikal meny som innehåller länkar till sidorna innan nuvarande nivå. Som standard så visar den bara de menyalternativ som leder ner en nivå, men du kan själv välja hur många nivåer ner som ska visas. För att gå tre nivåer ner kan du skriva såhär: ^P(3);. Byter du 3\'an mot en 0\'a (noll) så visas hela webbplatsens undersidor.\r\n\r\n^p; - Tidigare meny (horisontell)\r\nEn horisontell meny som innehåller länkar till sidorna innan nuvarande nivå. Du kan själv välja en avgränsare genom att skriva ^m(:--:);. Standard avgränsare är ·. \r\n\r\n^Page();\r\nKan användas för att hämta information om aktuell sida. Till exempel så kan macrot användas för att hämta sidans URL såhär: ^Page(\"urlizedTitle\"); eller sidans title såhär: ^Page(\"menuTitle\");. \r\n\r\n^PageTitle;\r\nVisar titeln på aktuell sida.\r\n\r\nNote: Om du använder administratörsfunktioner eller \"indepth\"-funktioner i wobjects så kommer sidans titel bli en länk som tar dig tillbaka till sidan.\r\n\r\n^r; or ^r(); - Utskriftsbar version\r\nSkapar en länk som visar aktuell sida, men med annan design. Du kan ändra text på länken genom att skriva såhär: ^r(\"Skriv ut\");. \r\n\r\nNär en användare klickar på länken kommer sidans stil att bytas ut mot \"Make Page Printable\"-stilen i stilhanteraren. Detta kan dock ändras till vilken stil som helst genom att skicka med stilen som paramter. Exempel: ^r(\"Print!\",\"WebGUI\");. Utrskriftssidan kommer då få WebGUI-stilen.\r\n\r\nNote: Du kan även använda specialmacrot ^r(linkonly); för att få en URL till utskriftsbar version. .makePrintableLink stilmallen bestämmer utseende på länken.\r\n\r\n^rootmenu; eller ^rootmenu(); (horisontell)\r\nSkapar en horisontell meny med rötterna i WebGUI (förutom system-menyer). Du kan välja menyavgränsare genom att skriva s!\nåhär: ^rootmenu(|); \r\n\r\n^RootTitle;\r\nReturnerar titlen på roten till nuvarande sida. Till exempel är roten till WebGUI \"Hem\"-sidan\r\nAvancerade sidor kan ha flera rötter och behöver således ett sätt att beskriva för användaren vilken rot denna befinner sig i.\r\n\r\n^S(); - Specifik undermeny (vertikal)\r\nDetta macro ger dig en vertikal undermeny från vilken sida som helst. Undermenyn startar från sidan du anger som parameter till macrot. Till exempel kan du få en undermeny till alla sidor under \"Hem\" genom att skriva ^S(\"hem\",0);. Det första värdet är URL\'iserade titeln av sidan och den andra paramtern är hur djup du vill att trädstrukturen ska vara. Standardinställningen är att bara visa en nivå. För att gå tre nivåer ner skriver du: ^S(\"hem\",3);. \r\n\r\n^s(); - Specifik undermeny (horisontell)\r\nDetta macro ger dig en horisontell undermeny från vilken sida som helst. Undermenyn startar från sidan du anger som parameter till macrot. Till exe!\nmpel kan du få en undermeny till alla sidor under \"Hem\" genom att skriva ^s(\"hem\");. Parametern är den URL\'iserade titeln av sidan. Du kan även själv välja en avgränsare genom att skriva ^s(\"hem\", \":--:\");. Standard avgränsare är ·. \r\n\r\n^SQL();\r\nEn en-rads-SQL-rapport. Ibland vill bara bara ha lite snabba data från databasen och då kan du använda detta macro. Det här macrot kan också användas för att utöka ett. Detta macro använder de numeriska macrona (^0; ^1; ^2; etc) för att positionera data. Macrot ^rownum; för att få fram radnummer kan också användas här. Exempel:\r\n\r\n^SQL(\"select count(*) from users\",\"Det finns ^0; användare på det här systemet.\"); \r\n\r\n^SQL(\"select userId,username from users order by username\",\"^1;
\"); \r\n\r\n^Synopsis; eller ^Synopsis(); Meny\r\nDetta macro ger dig en undermeny till sidor under en viss sida, tillsammans med kort beskrivning av respektive länk. Du kan sätta ett !\nheltal som parameter för att välja hur många nivåer djup menyn ska vara.\r\n\r\nNotera: .synopsis_sub, .synopsis_summary, och .synopsis_title stilklasser används av detta macro. \r\n\r\n^T; eller ^T(); - Toppnivåmeny (vertikal)\r\nEn vertikal meny som innehåller alla huvudsidor på webbplatsen, dvs undersidor från hemsidan. Du kan själv välja hur djup du vill ha trädstrukturen genom att skriva ett heltal som parameter. Som standard visar den bara första nivån. För att gå ner tre nivåer skriver du ^T(3). Om du skickar \"0\" (noll) så kommer hela webbplatsen trädstruktur visas. \r\n\r\n^t; - Toppnivåmeny (horisontell)\r\nEn vertikal meny som innehåller alla huvudsidor på webbplatsen, dvs undersidor från hemsidan. Du kan själv välja en avgränsare mellan sidnamnen genom att skriva ^t(:--:);. Standard avgränsare är ·. \r\n\r\n^Thumbnail();\r\nReturnerar en URL av en minitayrbild av en bild från bildhanteraren. Välj vilken bild du vill ha genom att skicka !\nmed namnet på bilden som parameter: ^Thumbnail(\"bildnamn\");. \r\n\r\n^ThumbnailLinker();\r\nDu kan använda detta macro för att enkelt göra en sida med skärmdumpar eller ett fotogalleri. Skicka med namnet på en bild i bildhanteraren som parameter till macrot: ^ThumbnailLinker(\"Min hund\"); och på sidan kommer det visas en miniatyrbild men länk under som länkar till bilden i full storlek.\r\n\r\n^u; - Företags-URL\r\nURL till ditt företag, som det är inställt av administratören.\r\n\r\n^URLEncode();\r\nDetta macro är mest användbart i SQL-rapporter, men kan självklart användas på andra ställen också. Macrot tar en sträng som parametera och kodar om den i URL-format så man kan använda den i just en URL. Så här kan du använda den: ^URLEncode(\"Detta är en sträng med tecken!\"); \r\n\r\n^User();\r\nAnvänd detta macro för att visa information om en användare från dennes kontouppgifter eller profil. Om du vill visa användaren dennes e-postadress skriver du:!\n ^User(\"email\");.\r\n\r\n^/; - System-URL\r\nURL till WebGUI-scriptet (exempel: /index.pl/). \r\n\r\n^\\; - Sid-URL\r\nURL till nuvarande sida (exempel: /index.pl/pagename).\r\n\r\n^@; - Användarnamn\r\nAnvändarnamnet på nu inloggad användare.\r\n\r\n^?; - Sök\r\nEn sökbox på sidan. Knuten till WebGUI\'s inbyggda sökmotor.\r\n\r\nNote: .searchBox stilklass används av detta macrot. \r\n\r\n^#; - Användar-ID\r\nAnvändar-ID för nu inloggad användare.\r\n\r\n^*; or ^*(); - Slumpmässigt nummer\r\nSlumpmässigt genererat nummer. Kan användas för att rotera banners eller andra typer av bilder. Du kan även välja högsta nummer för slumptalsfunktionen såhär: ^*(100) för att skapa ett slumptal mellan 0 och 100.\r\n\r\n^-;,^0;,^1;,^2;,^3;, etc.\r\nDessa macros är reserverade för system/wobject-specifika funktioner som i SQL-rapporten och Body i stilhanteraren.',1047895470,NULL); INSERT INTO international VALUES (623,'WebGUI',6,'Cascading Style Sheets (CSS) är ett väldigt bra sätt att hantera utseendet på webbplasen. CSS används mycket i WebGUI.\r\n\r\nOm du är obekant till hur man använder CSS kan RIT AB hjälpa dig med att skapa dessa. Alternativt kan du använda en CSS-redigerare som heter Top Style.\r\n\r\nFöljande lista på klasser används för att kontrollera utseendet på WebGUI:\r\n\r\nA\r\nLänkar.\r\n\r\nBODY\r\nSjälva dokumentets kropp.\r\n\r\nH1\r\nRubriker på webbplatsen (varje sida).\r\n\r\n.accountOptions\r\nLänkar som visas under inloggning och konto-uppdateringsformulär.\r\n\r\n.adminBar\r\nListen som finns längst upp på sidan när du är i administrationsläge.\r\n\r\n.content\r\nInnehållsdelen på samtliga sidor.\r\n\r\n.formDescription\r\nBeskrivningen av alla formulärfält.\r\n\r\n.formSubtext\r\nTexten som står inder vissa formulärfält.\r\n\r\n.highlight\r\nHur varje valt element ser ut, t.ex. för att markera vilket meddelande det är du tittar på i en lista.\r\n\r\n.horizontalMenu\r\nDen horisontella menyn (om du använder det macrot).\r\n\r\n.pagination\r\nFramåt- och Bakåt-länkarna som visas på sidor som är indelade i flera.\r\n\r\n.selectedMenuItem\r\nVisar vilken som är den aktuella sidan (sidan som visas nu) på samtliga meny-macron.\r\n\r\n.tableData\r\nRaderna på till exempel meddelandesystemet.\r\n\r\n.tableHeader\r\nÖversta raden på en tabell, i till exempel meddelandesystemet.\r\n\r\n.tableMenu\r\nMenyn för funktioner som på meddelandesystem.\r\n\r\n.verticalMenu\r\nDen vertikala menyn (om du använder den).\r\n\r\nNote: Vissa wobjects och macron har sina egna stilar som dokumenteras i deras respektive hjälpfiler.',1031919778,NULL); INSERT INTO international VALUES (622,'WebGUI',6,'Se Hantera grupper för en beskrivning av gruppering av funktioner och standardgrupper.\r\n\r\nGruppnamn\r\nNamnet på gruppen. Använd ett så beskrivande namn som möjligt.\r\n\r\nBeskrivning\r\nEn längre beskrivning av gruppen så att andra kan veta vad gruppen är avsedd för och vilka typer av användare som skall tillhöra den.\r\n\r\nBäst före\r\nHur lång tid kan en användare vara medlem i denna gruppen innan han tas bort från den? Detta är mycket användbart på webbplatser där man kan sälja medlemskap t.ex. årsvis.\r\n\r\nNote: Bäst-före kan ställas in individuellt på respektive användare.\r\n\r\nKarma-gräns\r\nOm du har karma påslaget så är detta en indikator på hur mycket karma användaren måste ha för att anses som medlem i gruppen.',1031918601,NULL); -INSERT INTO international VALUES (621,'WebGUI',6,'I stilar kan du använda macros. Se Använd Macros för mer information.\r\n\r\nStilnamn\r\nEtt unikt namn som beskriver vad stilen ser ut som. Namnet påverkar inte hur stilen ser ut i övrigt.\r\n\r\nBody\r\nBodyn som är precis samma som body-taggen i HTML. Där kan du definiera hur hela sidan ser ut, inklusive navigering, logotyper, coppyright osv. Som minimum bör bodyn innehålla några macron som ^Adminbar; (för att visa administrationsmenyn) och ^-; (avdelare) macrot. ^-; visar var WebGUI kommer lägga webbplatsens innehåll.\r\n\r\nOm du behöver hjälp att skapa en design på din webbplats eller bara hjälp att skapa en stil i WebGUI är du välkommen att kontakta Plain Black Software.\r\n\r\nMånga lägger in WebGUI macros för att autmatiskt sköta navigeringen på webbplatsen och andra egenskaper.\r\n\r\nStilmall !\n(style sheet)\r\nHär lägger du dina stilmallsdefinitioner. Stilmallar används för att kontrollera färger, storlekar och andra egenskaper för de olika elementen på webbplatsen. Se Använd stilmallar för mer information.\r\n\r\nAvancerade användare: för att öka prestandan kan du skapa en extern stilmall och lägga på servern. För att länka till den skriver du:\r\n<link href=\"/webgui.css\" rel=\"stylesheet\" rev=\"stylesheet\" type=\"text/css\">',1047894158,NULL); INSERT INTO international VALUES (620,'WebGUI',6,'Som funktionen låter kommer du att ta bort en grupp och ta bort alla användarna från gruppen. Var försiktig så inte sidor som har gruppen som redigerare inte blir oredigeringsbara.\r\n\r\nSom alla borttagningsoperationer kommer du få bekräfta borttagningen. Svara Ja så kommer gruppen tas bort och det går inte att ångra sig. Svara du Nej kommer du tas till föregående sida.',1031917538,NULL); INSERT INTO international VALUES (619,'WebGUI',6,'Den här funktionen raderar valt wobject från sidan, utan möjlighet att ångra sig. Om du är osäker på om du vill ta bort detta innehåll kan du istället klippa ut det och låta det ligga i klippbordet tills dess du vill använda det igen eller är säker på att du vill ta bort det.\r\n\r\nPrecis som med alla borttagningsoperationer kommer du få bekräfta borttagninen. Välj Ja och objektet tas bort och kan inte bli återskapat. Välj Nej och du tas till sidan du var på tidigare.',1031917136,NULL); INSERT INTO international VALUES (618,'WebGUI',6,'\"Återhämta lösenord\"-meddelande\r\nMeddelande som skickas till användaren då personen använder \"återhämta lösenords\"-funktionen.\r\n\r\nSMTP server\r\nDetta är adressen till din lokala mailserver. Den behövs för alla wobject som använder e-post (som lösenordsåterhämningen).\r\n\r\nOm du kör sendmail på samma server som WebGUI kan du även skriva in sökvägen till ditt sendmail-program. På de flesta system ligger den i \"/usr/lib/sendmail\" eller \"/usr/sbin/sendmail\".',1031916978,NULL); INSERT INTO international VALUES (617,'WebGUI',6,'Inställningar för anpassning av WebGUI till dina förhållanden.\r\n\r\nRedigera företagsinformation\r\nInformation specifikt för företaget eller personen som kontrollerar installationen av WebGUI (ägare av webbplatsen).\r\n\r\nRedigera innehållsinställningar\r\nInställningar relaterat till innehåll och innehållshantering.\r\n\r\nRedigera e-postinställningar\r\nInställningar som rör e-post och liknande funktioner.\r\n\r\nRedigera övriga inställningar\r\nInställningar som inte platsar under någon av de andra grupperna.\r\n\r\nRedigera profilinställningar\r\nBestäm hur användarprofilerna ska se ut och vad användaren själv kan ändra.\r\n\r\nRedigera användarinställningar\r\nInställningar som berör användare (utöver profilinställningar), som autenciering och registreringsmöjligheter.',1031916710,NULL); INSERT INTO international VALUES (616,'WebGUI',6,'Sökväg till WebGUI Extras\r\nWebadressen till katalogen som innehåller WebGUI-bilder och JavaScript-filer.\r\n\r\nMaximal bilagsstorlek\r\nMaximal storlek på filer som laddas upp. Det gäller för samtliga wobjects som tillåter filuppladdning och bilder. Storleken mäts i kilobyte.\r\n\r\nMinatyrbildsstorlek\r\nStorleken på den längsta sidan av minityrbilder. Miniatyrvyen behåller proportionerna på bilden. Om du sätter detta värde till 100 och har en bild som är 400 pixlar bred, 200 pixlar hög så kommer miniatyrbilden bli 100 pixlar bred, 50 pixlar hög.\r\n\r\nNote: Miniatyrbilder skapas autmatiskt när bilder laddas upp.\r\n\r\nBilageplats, URL\r\nSökvägen från webbplatsen dit bifogade filer sparas.\r\n\r\nBilageplats, på servern\r\nDen lokala sökvägen till bilagor på servern. Kontrollera att webbservern har rättigheter att skriva till katalogen.',1031916437,NULL); INSERT INTO international VALUES (615,'WebGUI',6,'Grupper används för att fördela rättigheter och ansvarsområden i WebGUI-systemet. Till exempel så kanske du vill bygga en webbplats för ett skola. Varje klass kan få sin egen grupp med både elever och lärare. De kan därefter få sin egen sida att redigera som dom vill. Lärarna kan ligga i en egen grupp och ha mer rättigheter än eleverna.\r\n\r\nDet finns flera redan inbyggda grupper i WebGUI som har redan definierade betydelser. De följer:\r\n\r\nAdmins\r\nAdmins är personer med oinskränkt makt över systemet. Vanligtvis är det en till tre personer i denna gruppen som har ett övergripande ansvar för allt innehåll.\r\n\r\nInnehållshanterare\r\nInnehållshanterare är användare som har rättigheter att lägga till, redigera och ta bort innehåll från olika delar av webbplatsen. Innehållshanterarna ska inte som grupp användas för att dela ut rättigheter till specifika delar av webbplatsen, utan bara användas för att definiera vilka användare som har rättigheter att redigera sidor. Skapa individuella grupper för varje del av webbplatsen.\r\n\r\nAlla\r\nAlla är en magisk grupp som ingen läggs till i. Alla är alla. Om du vill ha en öppen webbplatsen för både besökare och användare ska du använda denna gruppen.\r\n\r\nPackethanterare\r\nAnvändare som har rättigheter att lägga till, redigera och ta bort paket med wobjects och sidor.\r\n\r\nRegistrerade användare\r\nNär användare läggs till systemet hamnar dom i denna gruppen. En användare ska bara tas bort från gruppen om deras konto ska tas bort eller om du vill straffa en bråkmakare.\r\n\r\nStilhanterare\r\nAnvändare som har rättighet att ändra på webbplatsens stilar. Denna rättighet innebär inte att de kan ändra rättigheter på sidor, utan bara definiera de rättigheter som kan användas.\r\n\r\nMallhanterare\r\nAnvändare som har rättighet att ändra mallarna på webbplatsen.\r\n\r\nBesökare\r\nEn besökare är en användare som inte loggat in ännu. Om du vill straffa en användare kan du ta bort personen från Registrerade användare och lägga in honom i denna gruppen istället.',1031911632,NULL); -INSERT INTO international VALUES (614,'WebGUI',6,'Stilar används för att hantera det visuella i WebGUI-sidor. Du kan ha obegränsat med stilar och endast din fantasi sätter gränserna. \r\n\r\nDet finns ett flertal stilar inbyggda i WebGUI. De första av dessa används av WebGUI och bör inte ändras eller tas bort. De sista är exempel-stilar som du kan experimentera med fritt.\r\n\r\nKlippbord\r\nDen här stilen används i klippbords-systemet.\r\n\r\nFelsäker\r\nOm du tar bort en stil som används av sidor kommer de istället att få denna stilen. Vit bakgrund och enkel navigering.\r\n\r\nGör sidor utskriftsbara\r\nDen här stilen används om du placerar ett ^r; macro på någon annan sida och användaren klicka på den. Den här stilen ska vara en enkel stil utan mycket grafik för att passa skrivare.\r\n\r\nPacket\r\nDen här stilen används av packethanteringssystemet.\r\n\r\nSkräpkorg\r\nDen här stilen används för att hantera skräp (borttagna wobjects).\r\n\r\n


\r\n\r\nDemostil\r\nDetta är en demonstration som använder en mall från www.freewebtemplates.com.\r\n\r\nPlain Black Software (black) & (white)\r\nDessa designer används av Plain Black webbplats.\r\n\r\nYahoo!®\r\nDesign använd av Yahoo!.\r\n\r\nWebGUI\r\nEnkel WebGUI-design.\r\n\r\nWebGUI 4.0\r\nVid version 4 kom den nya designen och har ersatt den gamla som bara heter WebGUI.',1031910524,NULL); INSERT INTO international VALUES (613,'WebGUI',6,'Användare är konton i som tillåts göra olika saker. Det finns två standard-användare i systemet: Admin och Visitor.\r\n\r\nAdmin\r\nAdmin är precis som det låter, en administratör. Har obegränsade rättigheter och kan göra allt som går.\r\n\r\nVisitor\r\nBesökskontot. Inga rättigheter alls, förrutom att titta på sidor. Alla användare som inte är inloggade får identiteten Visitor.\r\n\r\nLägg till ny användare\r\nKlicka här för att lägga till en ny användare.\r\n\r\nSök\r\nDu kan söka i användarlistan baserat på användarnamn och e-postadress. ',1031909288,NULL); INSERT INTO international VALUES (612,'WebGUI',6,'Det finns egentligen ingen anledning att ta bort en användare. Vill du låsa ut en person kan du helt enkelt ändra deras lösenord. Om du är helt säker på att du vill ta bort en användare bör du tänka på konsekvenserna. Om du tar bort en användare så kommer innehåll de bidragit med på webbplatsen att finnas kvar, men om andra användare försöker titta på användarens profil kommer de att få ett felmeddelande. Om den borttagna användaren återvänder till webbplatsen och vill komma åt och ändra sina gamla bidrag så kan man inte enklet göra det genom att lägga till en ny användare med samma användarnamn som förr, utan måste gå in direkt i tabellerna via SQL och lägg till honom den vägen.\r\n\r\nPrecis som med alla borttagningsoperationer kommer du att få bekräfta att du vill fortsätta. Svara Ja och användaren kommer tas bort. Svara Nej och du kommer tillbaka till senaste sidan du var på.',1031909117,NULL); INSERT INTO international VALUES (611,'WebGUI',6,'Företagsnamn\r\nNamnet på företaget. Det kommer synas på all e-post och alla ställen du använder företagsnamnsmacrot.\r\n\r\nFöretagets e-postadress\r\nEn generell e-postadress för ditt företag. Det är från den här adressen alla automatiserade meddelanden kommer komma från. Det kan också användas via WebGUI macro-system.\r\n\r\nFöretags-URL\r\nDen primära URL\'en för ditt företag. Kommer också visas på alla automatiserade e-postmeddelanden som skickas via WebGUI. Det finns också tillgängligt via WebGUI macro-system.',1031908216,NULL); INSERT INTO international VALUES (610,'WebGUI',6,'Se Hantera användare för mer detaljer.\r\n\r\nAnvändarnamn\r\nEtt användarnamn är en unik identifierare för en användare. Det är under det här namnet personen kommer bli känd på webbplatsen. \r\n\r\nNote: Administratörer har obegränsat inflytande över WebGUI och kan förbigå reglerna. Om du döper om eller skapar en användare så kontrollera att det inte redan finns en användare med det användarnamnet.\r\n\r\nLösenord\r\nEtt lösenord behövs för att användaren ska bevisa att dom är den dom utger sig för att vara.\r\n\r\nAutencieringsmetod\r\nSee Redigera inställningar för detaljer.\r\n\r\nLDAP URL\r\nSee Redigera inställningar för detaljer.\r\n\r\nAnslutnings-DN\r\nAnslutnings-DN är cn (common name) för en användare i LDAP-databasen. Det ska specifieras som cn=Sven Svensson. Det är användarnamnet som kommer att användas för autenciering mot LDAP-servern.',1031908076,NULL); -INSERT INTO international VALUES (609,'WebGUI',6,'När du tar bort en stil kommer alla sidor som använder den stilen att byta till felsäker (standard) stil. För att garantera oavbruten visning av sidor bör du se till att inga sidor använder stilen innan du tar bort den.\r\n\r\nPrecis som med alla borttagningsoperationer kommer du att få bekräfta innan operationen fortsätter. Svarar du Ja kommer borttagningen fortsätta och du kommer inte kunna ångra dig. Svara du Nej kommer du tas tillbaka till föregående sida.',1031907542,NULL); INSERT INTO international VALUES (606,'WebGUI',6,'Tänk på sidor som platshållare för innehåll. Skapa sidan först och fyll den sedan med allt du vill att den ska innehålla.\r\n\r\nTitel\r\nSidans titel. Den används i navigeringen. Titlar ska vara beskrivande, men inte för långa.\r\n\r\nMenytitel\r\nEn förkortad eller ändrad titel som visas i navigeringsmenyer. Om fältet är tomt kommer titeln att visas.\r\n\r\nSid-URL\r\nNär du skapar en sida kommer en URL att genereras baserad på sidans titel. Om du är missnöjd med URL\'en den skapar automatiskt kan du välja en egen här.\r\n\r\nOmdirigerings-URL\r\nNär den här sidan besöks kommer användaren bli omdirigerad till en URL du fyller i här. För att redigera den här sidan i fortsättningen måste du gå till den via \"Hantera träd-vy\" under \"Administrativa funktioner...\".\r\n\r\nMall\r\nSom standard har WebGUI en stort område där du kan placera!\n wobjects. Du kan välja en annan för att dela upp sidan i mindre områden.\r\n\r\nBeskrivning\r\nKort beskrivning av sidan. Används för att skapa META-taggar och beskrivningar på webbplatskartan.\r\n\r\nMeta-taggar\r\nMeta-taggar används av vissa sökmotorer för att associera nyckelord med innehållet i texten på sidan. Det finns en bra webbplats som heter Meta Tag Builder som hjälper dig skapa meta-taggar om du aldrig gjort det förrut.\r\n\r\nAvancerade användare: Om du har andra saker som JavaScript kan du lägga in det här.\r\n\r\nAnvänd standard meta-taggar?\r\nOm du inte vill välja meta-taggar själv så kan WebGUI generera dessa för dig, baserat på sidans titel och ditt företagsnamn. Bocka i denna rutan för att tillåta WebGUI att göra detta.\r\n\r\nStil\r\nSom standard så ärver en ny sida vissa egenskaper från sidan ovanför. En av dessa egenskaper är stilen. Välj från en lista av stilar om du vil!\nl ändra utseendet på just denna sidan. \r\n\r\nVäljer du Ja på frågan under så kommer alla sidor under denna sida att ärva stilen.\r\n\r\nStartdatum\r\nDatum då sidan kommer börja visas för användarna. Innan dess kommer sidan bara visas för personer med rättighet att ändra sidor.\r\n\r\nSlutdatum\r\nDatum då sidan kommer sluta synas. Efter detta kommer sidan bara visas för personer med rättighet att ändra sidor.\r\n\r\nÄgare\r\nVem äger sidan? Vanligtvis personen som skapade den.\r\n\r\nÄgaren kan se sidan?\r\nKan ägaren se sin egen sida?\r\n\r\nÄgaren kan redigera sidan?\r\nKan ägaren redigera sidan? Var försiktig med att stänga av denna funktion eftersom om ägaren inte är i sidgruppen så kommer han inte längre kunna redigera sin egen sida.\r\n\r\nGrupp\r\nVälj vilken grupp som ska äga sidan.\r\n\r\nGrupp kan se sidan?\r\nKan medlemmar i gruppen se sidan?\r\n\r\nGrupp kan redigera sidan?\r\nKan medlemmar i gruppen redg!\niera sidan?\r\n\r\nVem som helst kan se?\r\nVem som helst kan se sidan, medlemskap eller inte?\r\n\r\nVem som helst kan redigera sidan?\r\nKan vem som helst redigera sidan?\r\n\r\nNote: Du kan ge samtliga rättigheter rekursivt, så att de även gäller för undersidor.',1047895156,NULL); INSERT INTO international VALUES (71,'Article',6,'Artiklar är den \"schweiziska armékniven\" för WebGUI. De flesta delar av statiskt innehåll kan läggas till via en artikel.\r\n\r\nBild\r\nVälj en bild (.jpg, .gif, .png) från hårddisken. Filen kommer att laddas upp till servern och visas i artikeln.\r\n\r\nPositionera bild\r\nVälj var du vill positionera bilden ovan.\r\n\r\nBilaga\r\nOm du vill bifoga en Word-fil, zip-fil eller någon annan typ av fil för nerladdning väljer du en från hårddisken.\r\n\r\nLänktitel\r\nOm du vill ha en länk till din artikel skriver du in titeln i det här fältet.\r\n\r\nExempel: Google\r\n\r\nLänk URL\r\nOm du skrev in en länk ovan kan du lägga till en URL här.\r\n\r\nExempel: http://www.google.com\r\n\r\nKonvertera radmatningar\r\nOm du publicerar HTML behöver du generellt sett inte kryssa för det här alternativet, men om du inte använder HTML och du vill ha en radmatning på varje ställe du tryckt på \"Enter\"-tangenten så ska du kryssa för detta.\r\n\r\nTillåt diskussion\r\nKryssa i den här rutan för att tillåta diskussion runt artikeln. För exempel på hur det kan se ut titta på slashdot\r\n\r\nVem kan göra inlägg?\r\nVälj vilken grupp som har tillåtelse att göra inlägg.\r\n\r\nTime-out för redigering\r\nHur lång tid ska användaren ha på sig att ändra sitt inlägg innan det låses.\r\n\r\nNote: Sätt inte den här gränsen för högt. En av fördelarna med en diskussionsforum är att det finns svart på vitt vem som sa vad. Om du tillåter att användare kan gå tillbaka och ändra efter en lång tid, så kan användaren ändra det som sades långt tillbaka i tiden och på så sätt göra diskussionen förvirrande. \r\n\r\nKarma per inlägg\r\nHur mycket karma ska ges till användaren för ett inlägg?\r\n\r\nVem kan moderera?\r\nVälj vilken grupp som modererar inläggen.\r\n\r\nModereringstyp\r\nDu kan välja vilken typ av moderering du vill ha för dina användare. Efterhand betyder att när en användare gör ett inlägg så visas det direkt och kan därefter plockas bort av modereringsgruppen (se ovan). Förhand betyder att modereringsgruppen måste godkänna inlägget innan det visas för allmänheten.\r\n\r\nNote: I båda fallen kan modereringsgruppen gå in och redigera eller ta bort inlägg från användarna.',1031842118,NULL); INSERT INTO international VALUES (642,'WebGUI',6,'Sida, lägg till/redigera',1031841770,NULL); @@ -6750,14 +6521,12 @@ INSERT INTO international VALUES (653,'WebGUI',6,'Sida, radera',1031841741,NULL) INSERT INTO international VALUES (656,'WebGUI',6,'Företagsinformation, redigera',1031841724,NULL); INSERT INTO international VALUES (657,'WebGUI',6,'Användare, radera',1031841708,NULL); INSERT INTO international VALUES (658,'WebGUI',6,'Användare, hantera',1031841696,NULL); -INSERT INTO international VALUES (659,'WebGUI',6,'Stilar, hantera',1031841685,NULL); INSERT INTO international VALUES (660,'WebGUI',6,'Grupper, hantera',1031841674,NULL); INSERT INTO international VALUES (661,'WebGUI',6,'Filinställningar, redigera',1031841664,NULL); INSERT INTO international VALUES (662,'WebGUI',6,'Inställningar, hantera',1031841649,NULL); INSERT INTO international VALUES (663,'WebGUI',6,'E-postinställningar, redigera',1031841636,NULL); INSERT INTO international VALUES (664,'WebGUI',6,'Wobject, radera',1031841613,NULL); INSERT INTO international VALUES (665,'WebGUI',6,'Grupp, radera',1031841586,NULL); -INSERT INTO international VALUES (666,'WebGUI',6,'Stil, lägg till/redigera',1031841553,NULL); INSERT INTO international VALUES (667,'WebGUI',6,'Grupp, lägg till/redigera',1031841539,NULL); INSERT INTO international VALUES (668,'WebGUI',6,'Stilmallar, använder',1031841526,NULL); INSERT INTO international VALUES (671,'WebGUI',6,'Wobjects, använder',1031841502,NULL); @@ -6870,7 +6639,6 @@ INSERT INTO international VALUES (46,'USS',6,'L INSERT INTO international VALUES (1033,'WebGUI',1,'Post Template',1066034603,'Tell the admin to select a template for posts in this forum.'); INSERT INTO international VALUES (41,'USS',6,'Datum',1031834546,NULL); INSERT INTO international VALUES (39,'USS',6,'Skicka ett svar',1031834531,NULL); -INSERT INTO international VALUES (38,'USS',6,'(Välj \"Nej\" om du skriver ett HTML/Rich Edit inlägg)',1031834517,NULL); INSERT INTO international VALUES (590,'WebGUI',6,'Språk-ID',1031834347,NULL); INSERT INTO international VALUES (595,'WebGUI',6,'Internationella meddelanden',1031834336,NULL); INSERT INTO international VALUES (598,'WebGUI',6,'Redigera språk.',1031834318,NULL); @@ -6885,7 +6653,6 @@ INSERT INTO international VALUES (593,'WebGUI',6,'Skicka INSERT INTO international VALUES (587,'WebGUI',6,'Är Du säker på att Du vill ta bort det här språket, inklusive all hjälp och internationella meddelanden som hör till det?',1031834148,NULL); INSERT INTO international VALUES (553,'WebGUI',6,'Status',1031834095,NULL); INSERT INTO international VALUES (555,'WebGUI',6,'Redigera den här användarens karma.',1031834086,NULL); -INSERT INTO international VALUES (501,'WebGUI',6,'Innehåll',1031834057,NULL); INSERT INTO international VALUES (30,'USS',6,'Karma per inlägg',1031834054,NULL); INSERT INTO international VALUES (520,'WebGUI',6,'Jag vill bli påmind via e-post.',1031834042,NULL); INSERT INTO international VALUES (71,'SyndicatedContent',6,'Syndikatinnehåll är innehåll som tas från extern webbplats. Formatet på innehållet är RDF/RSS. Denna teknik används ofta för att dra nyhetsrubriker från webplatser som CNN och Slashdot. Det kan självklart användas för andra saker som sportresultat och aktiekurser.\r\n\r\nURL till RSS-fil\r\nSkriv in exakt URL till (inled med http://) till innehållets RDF eller RSS-fil. Innehåller kommer laddas ner varje timme.\r\n\r\nDu kan hitta innehåll på följande webbplatser:\r\n\r\n',1031834039,NULL); @@ -7000,22 +6767,7 @@ INSERT INTO international VALUES (12,'DataForm',6,'Cc',1031733124,NULL); INSERT INTO international VALUES (11,'DataForm',6,'Till (e-postadress, användarnamn eller gruppnamn)',1031733109,NULL); INSERT INTO international VALUES (10,'DataForm',6,'Från',1031733088,NULL); INSERT INTO international VALUES (1,'DataForm',6,'E-postformulär',1031733080,NULL); -INSERT INTO international VALUES (73,'LinkList',6,'Titel\r\nText som kommer bli länkad.\r\n\r\nURL\r\nWebbplats länken leder till. Exempel: http://www.google.com.\r\n\r\nÖppna i nytt fönster\r\nVälj \"Ja\" om du vill att länken ska öppna ett nytt fönster.\r\n\r\nBeskrivning\r\nKort beskrivning av webbplatsen länken går till. Du kan lämna det här fältet tomt.\r\n\r\nFortsätt med att lägga till länk?\r\nOm du har fler länkar att lägga till väljer du \"Ja\".',1031732803,NULL); -INSERT INTO international VALUES (72,'LinkList',6,'Länk, lägg till/redigera',1031732662,NULL); -INSERT INTO international VALUES (71,'LinkList',6,'Länklistor är precis vad det låter som, en lista med länkar. Många webbplatser har en länksektion och det här wobjektet hjälper dig skapa en sådan.\r\n\r\nIndentering\r\nHur många bokstävers indentering för varje länk?\r\n\r\nLinjeavstånd\r\nHur många radbrytningar mellan varje länk?\r\n\r\nKula\r\nVälj vilken typ av kula som ska användas i början på varje rad. Du kan lämna det här fältet tomt om du vill. Du kan även välja HTML-kulor som · och ». Du kan även använda bilder från bildhanteraren genom att använda ett macro typ ^I(bullet);.\r\n\r\nFortsätt med att lägga till länk?\r\nLåt den här stå på \"Ja\" för att lägga till länkar direkt.\r\n\r\nStilmall\r\nEn extra stilmallsklass har lagts till för länklistan.\r\n.linkTitle Använd denna för att manipulera utseendet för titeln på varje länk.',1031732417,NULL); -INSERT INTO international VALUES (61,'LinkList',6,'Länklista, lägg till/redigera',1031732010,NULL); -INSERT INTO international VALUES (61,'Item',6,'Objekt, lägg till/redigera',1031731997,NULL); -INSERT INTO international VALUES (6,'Item',6,'Redigera objekt',1031731985,NULL); -INSERT INTO international VALUES (3,'Item',6,'Ta bort bilaga',1031731976,NULL); -INSERT INTO international VALUES (73,'FAQ',6,'Fråga\r\nSkriv in frågan du vill ha i din FAQ.\r\n\r\nSvar\r\nSkriv in svaret på frågan ovan.\r\n\r\nFortsätt med att lägga till frågor?\r\nOm du har fler frågor att lägga till väljer du \"Ja\".',1031731966,NULL); -INSERT INTO international VALUES (72,'FAQ',6,'Fråga, lägga till/redigera',1031731897,NULL); -INSERT INTO international VALUES (71,'FAQ',6,'Det verkar som i princip varenda webbplats har en \"Frequently Asked Questions\"-sektion (ofta ställda frågor). Det här är ett wobject som hjälper dig bygga din egen.

Sätt på innehållsförteckning?
Om du vill visa en innehållsförteckning för din FAQ. En innehållsförteckning listar länkar till alla frågor i FAQ\'n längst upp på sidan.

Sätt på Q/A?
Välj om du vill att det ska stå ett Q: framför varje från och ett A: framför varje svar.

Sätt på [top]-länk?
[top] kommer visas varje fråga och svar. Klickar man på den länken så kommer man längst upp på sidan. Används oftast i samband med en innehållsförteckning.

Fortsätt med att lägga till frågor?
Låt den vara bockad om du vill lägga till frågor direkt efter du skapat din FAQ.


Note: Följande stilar är specifika för FAQ.

.faqQuestion
En FAQ-fråga. För att särskilja den från ett svar.',1032859954,NULL); -INSERT INTO international VALUES (61,'FAQ',6,'FAQ, lägg till/redigera',1031669931,NULL); -INSERT INTO international VALUES (13,'FAQ',6,'Sätt på [top] länk?',1031669852,NULL); -INSERT INTO international VALUES (12,'FAQ',6,'Sätt på Q/A?',1031669840,NULL); -INSERT INTO international VALUES (11,'FAQ',6,'Sätt på innehållsförteckning?',1031669826,NULL); -INSERT INTO international VALUES (71,'ExtraColumn',6,'Extra kolumner låter dig ändra layout på endast en sida. Om du vill ha fler kolumner på samtliga sidor bör du överväga att ändra på stilen som sätts på dina sidor eller använda en mall istället för en extra kolumn.\r\n\r\nKolumner läggs alltid till från vänster till höger. Tidigare material kommer flyttas till vänster om den nya kolumnen.\r\n\r\nMellanrum\r\nMellanrum är avståndet mellan existerande innehåll och din nya kolumn. Mäts i antalet pixlar.\r\n\r\nBredd\r\nHur bred vill du att kolumnen ska vara? Mäts i antalet pixlar.\r\n\r\nStilmallsklass (style sheet class)\r\nStandard används content-stilen (samma som övrig text på hemsidan). Om du har skapat en egen stil för kolumner så kan du ändra till den här.',1031669809,NULL); -INSERT INTO international VALUES (61,'ExtraColumn',6,'Extra kolumn, lägg till/redigera',1031667836,NULL); +INSERT INTO international VALUES (1090,'WebGUI',1,'The following are the variables available to display the individual response.\r\n

\r\n\r\ntitle
\r\nThe default title for this report.\r\n

\r\n\r\ndelete.url
\r\nThe URL to delete this response.\r\n

\r\n\r\ndelete.label
\r\nThe default label for delete.url.\r\n

\r\n\r\nstart.date.label
\r\nThe default label for start.date.human.\r\n

\r\n\r\nstart.date.epoch
\r\nThe epoch representation of when the user started the survey response.\r\n

\r\n\r\nstart.date.human
\r\nThe human representation of the date when the user started the response.\r\n

\r\n\r\nstart.time.human
\r\nThe human representation of the time when the user started the response.\r\n

\r\n\r\nend.date.label
\r\nThe default label for end.date.human.\r\n

\r\n\r\n\r\nend.date.epoch
\r\nThe epoch representation of the date when the user completed this response.\r\n

\r\n\r\nend.date.human
\r\nThe human representation of the date when the user completed this response.\r\n

\r\n\r\nend.time.human
\r\nThe human representation of the time when the user completed this response.\r\n

\r\n\r\nduration.label
\r\nThe default label for the duration.\r\n

\r\n\r\nduration.minutes
\r\nThe number of minutes it took to complete the survey.\r\n

\r\n\r\nduration.minutes.label
\r\nA label for \"minutes\".\r\n

\r\n\r\n\r\nduration.seconds
\r\nThe remainder seconds the duration.minutes calculations.\r\n

\r\n\r\nduration.seconds.label
\r\nA label for \"seconds\".\r\n

\r\n\r\n\r\nanswer.label
\r\nThe default label for question.answer.\r\n

\r\n\r\n\r\nresponse.label
\r\nThe default label for question.label.\r\n

\r\n\r\ncomment.label
\r\nThe default label for question.comment.\r\n

\r\n\r\nquestion_loop
\r\nA loop that includes the list of questions in this response.\r\n

\r\n\r\n

\r\n\r\nquestion
\r\nThe question itself.\r\n

\r\n\r\nquestion.id
\r\nThe unique identifier for this question.\r\n

\r\n\r\nquestion.isRadioList
\r\nA boolean indicating whether this question\'s answers are a radio list.\r\n

\r\n\r\nquestion.response
\r\nThe user\'s response to this question.\r\n

\r\n\r\nquestion.comment
\r\nThe user\'s comment on this question (if any).\r\n

\r\n\r\nquestion.isCorrect
\r\nA boolean indicating whether the user got this question correct.\r\n

\r\n\r\n\r\nquestion.answer
\r\nThe correct answer for this question.\r\n

\r\n\r\n\r\n

',1078515839,NULL); INSERT INTO international VALUES (78,'EventsCalendar',6,'Ta inte bort något, jag klickade fel.',1031667821,NULL); INSERT INTO international VALUES (77,'EventsCalendar',6,'Ta bort denna händelse och alla av dess återkommande händelser.',1031667806,NULL); INSERT INTO international VALUES (76,'EventsCalendar',6,'Ta enbart bort denna händelse.',1031667761,NULL); @@ -7029,9 +6781,7 @@ INSERT INTO international VALUES (73,'FileManager',6,'Filtitel\r\nTitel s INSERT INTO international VALUES (72,'FileManager',6,'Nerladdning, lägg till/redigera',1031664814,NULL); INSERT INTO international VALUES (71,'FileManager',6,'Nerladdningshanteraren är designad för att hjälpa dig hantera distrubitionen av filer på din webbplats. Den hjälper dig välja vem som ska ha tillträde till filerna.\r\n\r\nRadbryt efter\r\nHur många filer ska visas per sida. Om antalet filer överstiger detta värde, delas listan upp på flera sidor.\r\n\r\nVisa miniatyrbilder?\r\nMarkera denna om du vill att visa miniatyrer av bilderna i filhanteraren. Notera att miniatyren endast syns för huvudfilen, för de alternativa versionerna visas ingen miniatyr.\r\n\r\nFortsätt att lägga upp filer?\r\nMarkera denna om du vill fortsätta att lägga upp filer när du gjort dina inställningar.',1050403611,NULL); INSERT INTO international VALUES (61,'FileManager',6,'Nerladdningshanteraren, lägg till/redigera',1031664577,NULL); -INSERT INTO international VALUES (71,'Item',6,'Precis som artiklar är objekt den Schweiziska Armékniven för WebGUI. De flesta delar av statiskt innehåll kan läggas till via ett objekt, men objekt används oftast för mindre innehåll än artiklar.\r\n\r\nLänk URL\r\nDenna URL kommer anslutas till titeln på objektet.\r\n\r\nExempel: http://www.google.com\r\n\r\nBilaga\r\nOm du vill bifoga en Word-fil, zip-fil eller någon annan typ av fil för nerladdning väljer du från hårddisken.\r\n',1031663580,NULL); INSERT INTO international VALUES (61,'Article',6,'Artikel, Lägg till/Redigera',1031652255,NULL); -INSERT INTO international VALUES (654,'WebGUI',6,'Stilar, ta bort',1031651503,NULL); INSERT INTO international VALUES (652,'WebGUI',6,'Användarinställningar, redigera',1031651489,NULL); INSERT INTO international VALUES (739,'WebGUI',1,'UI Level',1033832377,NULL); INSERT INTO international VALUES (738,'WebGUI',1,'9 Guru',1033836704,NULL); @@ -7112,7 +6862,6 @@ INSERT INTO international VALUES (38,'WebGUI',11,' that has sufficient privilege INSERT INTO international VALUES (37,'WebGUI',11,'áÇ íãßä ÇáÓãÇÍ áß Ðáß !',1031514049,NULL); INSERT INTO international VALUES (36,'WebGUI',11,'áÇÈÏ Ãä Êßæä ÅÏÇÑíðÇ ÍÊì ÊÄÏí åÐå ÇáæÙíÝÉ¡ íÑÌì ÇáÇÊÕÇá ÈÃÍÏ ãÏíÑí åÐÇ ÇáäÙÇã¡ ÇáãÐßæÑíä Ýí ÇáÞÇÆãÉ ÇáÊÇáíÉ:',1031514049,NULL); INSERT INTO international VALUES (35,'WebGUI',11,'æÙíÝÉ ÅÏÇÑíÉ',1031514049,NULL); -INSERT INTO international VALUES (34,'WebGUI',11,'ÍÏÏ Çáíæã',1031514049,NULL); INSERT INTO international VALUES (33,'WebGUI',11,'ÇáÓÈÊ',1031514049,NULL); INSERT INTO international VALUES (32,'WebGUI',11,'ÇáÌãÚÉ',1031514049,NULL); INSERT INTO international VALUES (31,'WebGUI',11,'ÇáÎãíÓ',1031514049,NULL); @@ -7140,10 +6889,9 @@ INSERT INTO international VALUES (10,'WebGUI',11,' INSERT INTO international VALUES (9,'WebGUI',11,'ÇÓÊÚÑÇÖ áæÍÉ ÇáÚÑÖ',1031514049,NULL); INSERT INTO international VALUES (8,'WebGUI',11,'áíÓ ÈÇáÅãßÇä ÚÑÖ ÇáÕÝÍÉ',1031514049,NULL); INSERT INTO international VALUES (7,'WebGUI',11,'ÅÏÇÑÉ ÇáãÓÊÎÏãíä',1031514049,NULL); -INSERT INTO international VALUES (6,'WebGUI',11,'ÅÏÇÑÉ ÇáÊÕãíãÇÊ',1031514049,NULL); INSERT INTO international VALUES (5,'WebGUI',11,'ÅÏÇÑÉ ÇáãÌãæÚÇÊ',1031514049,NULL); INSERT INTO international VALUES (4,'WebGUI',11,'ÅÏÇÑÉ ÇáÊÌåíÒÇÊ',1031514049,NULL); -INSERT INTO international VALUES (3,'WebGUI',11,'ÅáÕÞ ãä áæÍÉ ÇáÚÑÖ',1031514049,NULL); +INSERT INTO international VALUES (34,'Navigation',1,'Manage Navigation',1077081304,''); INSERT INTO international VALUES (2,'WebGUI',11,'ÕÝÍÉ',1031514049,NULL); INSERT INTO international VALUES (1,'WebGUI',11,'ÅÖÇÝÉ ãÍÊæì..',1031514049,NULL); INSERT INTO international VALUES (886,'WebGUI',1,'Hide from navigation?',1044727952,NULL); @@ -7159,17 +6907,13 @@ INSERT INTO international VALUES (17,'SQLReport',11,' INSERT INTO international VALUES (16,'SQLReport',11,'ÊäÞíÍ',1031514049,NULL); INSERT INTO international VALUES (15,'SQLReport',11,'ÞÈá (ÊÔÛíá) ãÚÇáÌÉ ÑãæÒ ÇáÇÎÊÕÇÑ Úáì ÇáÇÓÊÝåÇã¿',1031514049,NULL); INSERT INTO international VALUES (14,'SQLReport',11,'ÊÑÞíã ÇáÕÝÍÇÊ',1031514049,NULL); -INSERT INTO international VALUES (13,'SQLReport',11,'åá ÊÑÛÈ Ýí ÊÍæíá ÚÇÆÏÇÊ ÇáÊÍãíá¿',1031514049,NULL); INSERT INTO international VALUES (12,'SQLReport',11,'ÊäÞíÍ : ÎØÃ : áã íÊãßä ãä ÇáÇÊÕÇá ÈÞÇÚÏÉ ÇáÈíÇäÇÊ',1031514049,NULL); INSERT INTO international VALUES (11,'SQLReport',11,'ÊäÞíÍ : ÎØÃ : åäÇß ãÔßáÉ ãÚ ÇáÇÓÊÝåÇã',1031514049,NULL); INSERT INTO international VALUES (10,'SQLReport',11,'ÊäÞíÍ : ÎØÃ : ÕíÛÉ áÜSQL ÇáãÚíäÉ ÛíÑ ÕÍíÍÉ',1031514049,NULL); -INSERT INTO international VALUES (9,'SQLReport',11,'ÊäÞíÍ : ÎØÃ : ÕíÛÉ áÜDSN ÇáãÚíäÉ ÛíÑ ÕÍíÍÉ',1031514049,NULL); +INSERT INTO international VALUES (15,'Auth/WebGUI',1,'Minimum Password Length',1071885112,''); INSERT INTO international VALUES (8,'SQLReport',11,'ÊÍÑíÑ ÊÞÑíÑ SQL',1031514049,NULL); -INSERT INTO international VALUES (6,'SQLReport',11,'ãÓÊÎÏã ÞÇÚÏÉ ÇáÈíÇäÇÊ',1031514049,NULL); -INSERT INTO international VALUES (7,'SQLReport',11,'ßáãÉ ÓÑ ÞÇÚÏÉ ÇáÈíÇäÇÊ',1031514049,NULL); -INSERT INTO international VALUES (5,'SQLReport',11,'DSN',1031514049,NULL); +INSERT INTO international VALUES (31,'WSClient',1,'Debug: Error: There was a problem with the SOAP call.',1033575504,NULL); INSERT INTO international VALUES (4,'SQLReport',11,'ÇÓÊÝåÇã',1031514049,NULL); -INSERT INTO international VALUES (3,'SQLReport',11,'ÞÇáÈ ÇáÊÞÑíÑ',1031514049,NULL); INSERT INTO international VALUES (1,'SQLReport',11,'ÊÞÑíÑ SQL (áÛÉ ÇáÇÓÊÝåÇã ÇáåíßáíÉ)',1031514049,NULL); INSERT INTO international VALUES (61,'SiteMap',11,'ÅÖÇÝÉ/ÊÍÑíÑ ÎÑíØÉ ÇáãæÞÚ',1031514049,NULL); INSERT INTO international VALUES (824,'WebGUI',1,'Email Footer',1038708558,NULL); @@ -7279,42 +7023,15 @@ INSERT INTO international VALUES (4,'DataForm',11,' INSERT INTO international VALUES (3,'DataForm',11,'ÔßÑðÇ ááÑÏ !',1031514049,NULL); INSERT INTO international VALUES (2,'DataForm',11,'ÇßÊÈ ãæÖæÚ ÈÑíÏß åäÇ',1031514049,NULL); INSERT INTO international VALUES (1,'DataForm',11,'ÊÔßíá ÈÑíÏ',1031514049,NULL); -INSERT INTO international VALUES (72,'LinkList',11,'ÅÖÇÝÉ/ÊÍÑíÑ æÕáÉ',1031514049,NULL); -INSERT INTO international VALUES (61,'LinkList',11,'ÅÖÇÝÉ/ÊÍÑíÑ ÞÇÆãÉ ÇáæÕáÉ',1031514049,NULL); -INSERT INTO international VALUES (13,'LinkList',11,'ÅÖÇÝÉ æÕáÉ ÌÏíÏÉ',1031514049,NULL); -INSERT INTO international VALUES (12,'LinkList',11,'ÊÍÑíÑ æÕáÉ',1031514049,NULL); -INSERT INTO international VALUES (10,'LinkList',11,'ÅÖÇÝÉ/ÊÍÑíÑ æÕáÉ',1031514049,NULL); -INSERT INTO international VALUES (9,'LinkList',11,'åá ÃäÊ ãÊÃßÏ Ãäß ÊÑíÏ ÍÐÝ åÐå ÇáæÕáÉ¿',1031514049,NULL); -INSERT INTO international VALUES (8,'LinkList',11,'ÚäæÇä ÇäÊÑäÊ',1031514049,NULL); -INSERT INTO international VALUES (6,'LinkList',11,'ÞÇÆãÉ ÇáæÕáÉ',1031514049,NULL); +INSERT INTO international VALUES (89,'USS',11,'ÅÖÇÝÉ æÕáÉ ÌÏíÏÉ',1031514049,NULL); +INSERT INTO international VALUES (90,'USS',11,'ÊÍÑíÑ æÕáÉ',1031514049,NULL); +INSERT INTO international VALUES (91,'USS',11,'ÚäæÇä ÇäÊÑäÊ',1031514049,NULL); INSERT INTO international VALUES (820,'WebGUI',1,'Your account is not activated. Therefore you cannot log in until it\'s activated, which only can be done by the admin.',1038431645,NULL); -INSERT INTO international VALUES (3,'LinkList',11,'ÝÊÍ Ýí ÕÝÍÉ ÌÏíÏÉ¿',1031514049,NULL); -INSERT INTO international VALUES (61,'Item',11,'ÅÖÇÝÉ/ÊÍÑíÑ ÈäÏ',1031514049,NULL); -INSERT INTO international VALUES (6,'Item',11,'ÊÍÑíÑ ÈäÏ',1031514049,NULL); -INSERT INTO international VALUES (5,'Item',11,'ÊÍãíá ãÑÝÞÇÊ',1031514049,NULL); -INSERT INTO international VALUES (4,'Item',11,'ÈäÏ',1031514049,NULL); -INSERT INTO international VALUES (3,'Item',11,'ÍÐÝ ãÑÝÞÇÊ',1031514049,NULL); -INSERT INTO international VALUES (2,'Item',11,'ãÑÝÞÇÊ',1031514049,NULL); -INSERT INTO international VALUES (72,'FAQ',11,'ÅÖÇÝÉ/ÊÍÑíÑ ÓÄÇá',1031514049,NULL); -INSERT INTO international VALUES (1,'Item',11,'æÕáÉ æíÈ',1031514049,NULL); -INSERT INTO international VALUES (61,'FAQ',11,'ÅÖÇÝÉ/ÊÍÑíÑ ÊÓÇÄáÇÊ ãÊÑÏÏÉ',1031514049,NULL); -INSERT INTO international VALUES (13,'FAQ',11,'ÊÔÛíá æÕáÉ [ÃÚáì]¿',1031514049,NULL); -INSERT INTO international VALUES (12,'FAQ',11,'ÊÔÛíá Ó/Ì¿',1031514049,NULL); -INSERT INTO international VALUES (11,'FAQ',11,'',1031514049,NULL); -INSERT INTO international VALUES (10,'FAQ',11,'ÊÍÑíÑ ÓÄÇá',1031514049,NULL); -INSERT INTO international VALUES (9,'FAQ',11,'ÅÖÇÝÉ ÓÄÇá ÌÏíÏ',1031514049,NULL); -INSERT INTO international VALUES (8,'FAQ',11,'ÊÍÑíÑ ÊÓÇÄá',1031514049,NULL); -INSERT INTO international VALUES (6,'FAQ',11,'ÌæÇÈ',1031514049,NULL); -INSERT INTO international VALUES (7,'FAQ',11,'åá ÃäÊ ãÊÃßÏ Ãäß ÊÑíÏ ÍÐÝ åÐÇ ÇáÓÄÇá¿',1031514049,NULL); -INSERT INTO international VALUES (5,'FAQ',11,'ÓÄÇá',1031514049,NULL); -INSERT INTO international VALUES (2,'FAQ',11,'ÊÓÇÄáÇÊ ãÊÑÏÏÉ',1031514049,NULL); -INSERT INTO international VALUES (75,'FAQ',1,'Add a question.',1036260753,NULL); -INSERT INTO international VALUES (61,'ExtraColumn',11,'ÅÖÇÝÉ/ÊÍÑíÑ ÚãæÏ ÅÖÇÝí',1031514049,NULL); -INSERT INTO international VALUES (6,'ExtraColumn',11,'ÅÖÇÝÉ ÚãæÏ ÅÖÇÝí',1031514049,NULL); -INSERT INTO international VALUES (5,'ExtraColumn',11,'ÊÕäíÝ äãæÐÌ ÇáÕÝÍÉ',1031514049,NULL); -INSERT INTO international VALUES (4,'ExtraColumn',11,'ÇÊÓÇÚ',1031514049,NULL); -INSERT INTO international VALUES (3,'ExtraColumn',11,'ãÈÇÚÏÉ',1031514049,NULL); -INSERT INTO international VALUES (1,'ExtraColumn',11,'ÚãæÏ ÅÖÇÝí',1031514049,NULL); +INSERT INTO international VALUES (92,'USS',11,'ÝÊÍ Ýí ÕÝÍÉ ÌÏíÏÉ¿',1031514049,NULL); +INSERT INTO international VALUES (84,'USS',11,'ÊÍÑíÑ ÓÄÇá',1031514049,NULL); +INSERT INTO international VALUES (83,'USS',11,'ÅÖÇÝÉ ÓÄÇá ÌÏíÏ',1031514049,NULL); +INSERT INTO international VALUES (86,'USS',11,'ÌæÇÈ',1031514049,NULL); +INSERT INTO international VALUES (85,'USS',11,'ÓÄÇá',1031514049,NULL); INSERT INTO international VALUES (78,'EventsCalendar',11,'áÇ ÊÍÐÝ ÔíÆÇ.. áÞÏ ÃÎØÃÊ (ÊÑÇÌÚ Úä ÇáÍÐÝ)',1031514049,NULL); INSERT INTO international VALUES (77,'EventsCalendar',11,'ÍÐÝ åÐÇ ÇáÍÏË<È> æ ÈßÇãá ÊßÑÇÑíÇÊå',1031514049,NULL); INSERT INTO international VALUES (76,'EventsCalendar',11,'ÍÐÝ åÐÇ ÇáÍÏË ÝÞØ',1031514049,NULL); @@ -7384,12 +7101,6 @@ INSERT INTO international VALUES (146,'WebGUI',11,' INSERT INTO international VALUES (147,'WebGUI',11,'ÕÝÍÇÊ',1031514049,NULL); INSERT INTO international VALUES (148,'WebGUI',11,'ãæÖæÚÇÊ ÇáæíÈ',1031514049,NULL); INSERT INTO international VALUES (149,'WebGUI',11,'ãÓÊÎÏãíä',1031514049,NULL); -INSERT INTO international VALUES (151,'WebGUI',11,'ÇÓã ÇáÊÕãíã',1031514049,NULL); -INSERT INTO international VALUES (154,'WebGUI',11,'ÕÝÍÉ ÇáÊÕãíã',1031514049,NULL); -INSERT INTO international VALUES (155,'WebGUI',11,'\"åá ÃäÊ æÇËÞ Ãäß ÊÑíÏ ÍÐÝ åÐÇ ÇáÊÕãíã æãÛÇÏÑÉ ÌãíÚ ÇáÕÝÍÇÊ ÇáÊí ÊÓÊÎÏã åÐÇ ÇáÊÕãíã Åáì ÊÕãíã \"\"ÊæÞÝ Âãä\"\"¿\"',1031514049,NULL); -INSERT INTO international VALUES (156,'WebGUI',11,'ÊÍÑíÑ ÇáÊÕãíã',1031514049,NULL); -INSERT INTO international VALUES (157,'WebGUI',11,'ÊÕãíãÇÊ',1031514049,NULL); -INSERT INTO international VALUES (158,'WebGUI',11,'ÅÖÇÝÉ ÊÕãíã ÌÏíÏ',1031514049,NULL); INSERT INTO international VALUES (159,'WebGUI',11,'ÈÑíÏ æÇÑÏ',1031514049,NULL); INSERT INTO international VALUES (160,'WebGUI',11,'ÊÇÑíÎ ÇáÊÞÏíã',1031514049,NULL); INSERT INTO international VALUES (161,'WebGUI',11,'ãÞÏãå',1031514049,NULL); @@ -7471,8 +7182,6 @@ INSERT INTO international VALUES (361,'WebGUI',11,' INSERT INTO international VALUES (362,'WebGUI',11,'ÌäÈðÇ Åáì ÌäÈ',1031514049,NULL); INSERT INTO international VALUES (363,'WebGUI',11,'æÖÚíÉ ÇáÞÇáÈ',1031514049,NULL); INSERT INTO international VALUES (364,'WebGUI',11,'ÈÍË',1031514049,NULL); -INSERT INTO international VALUES (365,'WebGUI',11,'äÊÇÆÌ ÇáÈÍË...',1031514049,NULL); -INSERT INTO international VALUES (366,'WebGUI',11,'áã íÊã ÇáÚ辄 Úáì ÕÝÍÇÊ ÊØÇÈÞ ÇÓÊÝåÇãß',1031514049,NULL); INSERT INTO international VALUES (367,'WebGUI',11,'íäÊåí ÒãäíðÇ ÈÚÏ',1031514049,NULL); INSERT INTO international VALUES (368,'WebGUI',11,'ÅÖÇÝÉ ãÌãæÚÉ ÌÏíÏÉ Åáì åÐÇ ÇáãÓÊÎÏã',1031514049,NULL); INSERT INTO international VALUES (369,'WebGUI',11,'ÊÇÑíÎ ÇáÇäÊåÇÁ',1031514049,NULL); @@ -7480,12 +7189,10 @@ INSERT INTO international VALUES (370,'WebGUI',11,' INSERT INTO international VALUES (371,'WebGUI',11,'ÅÖÇÝÉ ÊÌãíÚ',1031514049,NULL); INSERT INTO international VALUES (372,'WebGUI',11,'ÊÍÑíÑ ãÌãæÚÇÊ ÇáãÓÊÎÏã',1031514049,NULL); INSERT INTO international VALUES (374,'WebGUI',11,'ÅÏÇÑÉ ÇáÚÈæÇÊ',1031514049,NULL); -INSERT INTO international VALUES (375,'WebGUI',11,'ÇäÊÞ Ú龃 ááäÔÑ',1031514049,NULL); INSERT INTO international VALUES (376,'WebGUI',11,'ÚÈæÉ',1031514049,NULL); -INSERT INTO international VALUES (377,'WebGUI',11,'áíÓÊ åäÇß Ãí ÚÈæÇÊ ãÚÑÝÉ áÇ ÈæÇÓØÉ ãÏíÑß (ãÏíÑíß) ',1031514049,NULL); +INSERT INTO international VALUES (13,'Navigation',1,'childless descendants',1077079109,'Option on question \"return a loop with\".'); INSERT INTO international VALUES (378,'WebGUI',11,'åæíÉ ÇáãÓÊÎÏã',1031514049,NULL); INSERT INTO international VALUES (379,'WebGUI',11,'åæíÉ ÇáãÌãæÚÉ',1031514049,NULL); -INSERT INTO international VALUES (380,'WebGUI',11,'åæíÉ ÇáÊÕãíã',1031514049,NULL); INSERT INTO international VALUES (381,'WebGUI',11,'ÊáÞì WebGUI ØáÈðÇ ãÔæåðÇ æáã íÊãßä ãä ÇáÇÓÊãÑÇÑ. æÓÈÈ Ðáß Ãäå íÊã ÊãÑíÑ ÎÕÇÆÕ ÇáÍíÇÒÉ ÎáÇá Ôßá ãØÇÈÞ. ãä ÝÖáß áÇ ÊÔÚÑ ÈÇáÍÑÌ æÇÖÛØ ãÝÊÇÍ ÇáÑÌæÚ¡ Ëã ÍÇæá ãÑÉ ËÇäíÉ.',1031514049,NULL); INSERT INTO international VALUES (806,'WebGUI',1,'Delete this group.',1037579396,NULL); INSERT INTO international VALUES (384,'WebGUI',11,'ãáÝ',1031514049,NULL); @@ -7501,7 +7208,6 @@ INSERT INTO international VALUES (394,'WebGUI',11,' INSERT INTO international VALUES (395,'WebGUI',11,'ÅÖÇÝÉ ÕæÑÉ ÌÏíÏÉ',1031514049,NULL); INSERT INTO international VALUES (716,'WebGUI',10,'Log in',1036855717,NULL); INSERT INTO international VALUES (704,'WebGUI',10,'sekund(er)',1036855926,NULL); -INSERT INTO international VALUES (398,'WebGUI',11,'ÅÚáÇä äæÚ ÇáæËíÞÉ',1031514049,NULL); INSERT INTO international VALUES (399,'WebGUI',11,'ÅÌÚá åÐå ÇáÕÝÍÉ ÕÇáÍÉ ÒãäíðÇ',1031514049,NULL); INSERT INTO international VALUES (400,'WebGUI',11,'ÇãäÚ ÈÑæßÓí ãä ÇáÅÎÝÇÁ',1031514049,NULL); INSERT INTO international VALUES (401,'WebGUI',11,'åá ÃäÊ ãÊÃßÏ Ãäß ÊÑíÏ ÍÐÝ åÐå ÇáÑÓÇáÉ æÌãíÚ ÇáÑÓÇÆá ÇáÊí ÊáíåÇ Ýí åÐÇ ÇáÎØ¿',1031514049,NULL); @@ -7515,7 +7221,6 @@ INSERT INTO international VALUES (409,'WebGUI',11,' INSERT INTO international VALUES (410,'WebGUI',11,'ÅÏÇÑÉ ÇáÌÐæÑ',1031514049,NULL); INSERT INTO international VALUES (411,'WebGUI',11,'ÇÓã ÇáÞÇÆãÉ',1031514049,NULL); INSERT INTO international VALUES (412,'WebGUI',11,'ãæÌÒ',1031514049,NULL); -INSERT INTO international VALUES (416,'WebGUI',11,'ãÔßáÉ ÈÎÕæÕ ÇáØáÈ

ÊæÇÌåäÇ ãÔßáÉ ÈÎÕæÕ ØáÈß

. ãä ÝÖáß ÇÓÊÎÏã ÒÑ ÇáÑÌæÚ Ëã ÍÇæá ËÇäíÉ. ÅÐÇ ÇÓÊãÑÊ ÇáãÔßáÉ¡ íÑÌì ÇáÇÊÕÇá ÈäÇ æÅÝÇÏÊäÇ ÈãÇ ßäÊ ÊÍÇæá ÝÚáå æßÐáß Òãä æÊÇÑíÎ ÍÏæË åÐå ÇáãÔßáÉ.',1031514049,NULL); INSERT INTO international VALUES (417,'WebGUI',11,'ÇäÊåÇß ááÓÑíÉ

áÞÏ ÍÇæáÊ Ãä ÊÏÎá Åáì ÈíÇäÇÊ æíÈ ããÇ áíÓ ãÊÇÍÇ ÈåÐå ÇáÕÝÍÉ

. Êã ÅÑÓÇá ÊÞÑíÑ ÈåÐå ÇáæÇÞÚÉ.',1031514049,NULL); INSERT INTO international VALUES (418,'WebGUI',11,'ãäÞÍ HTML',1031514049,NULL); INSERT INTO international VALUES (419,'WebGUI',11,'ÃÒá ÌãíÚ ÇáÚáÇãÇÊ ',1031514049,NULL); @@ -7600,7 +7305,6 @@ INSERT INTO international VALUES (497,'WebGUI',11,' INSERT INTO international VALUES (498,'WebGUI',11,'ÊÇÑíÎ ÇáÇäÊåÇÁ',1031514049,NULL); INSERT INTO international VALUES (499,'WebGUI',11,'åæíÉ ãæÖæÚ ÇáÇäÊÑäÊ',1031514049,NULL); INSERT INTO international VALUES (500,'WebGUI',11,'åæíÉ ÇáÕÝÍÉ',1031514049,NULL); -INSERT INTO international VALUES (501,'WebGUI',11,'ÇáãÊä',1031514049,NULL); INSERT INTO international VALUES (502,'WebGUI',11,'åá ÃäÊ ãÊÃßÏ Ãäß ÊÑíÏ ÍÐÝ åÐÇ ÇáÞÇáÈ æÊÌåíÒ ÌãíÚ ÇáÕÝÍÇÊ ÇáÊí ÊÓÊÎÏã åÐÇ ÇáÞÇáÈ áÞæÇáÈ ÇÝÊÑÇÖíÉ¿',1031514049,NULL); INSERT INTO international VALUES (503,'WebGUI',11,'åæíÉ ÇáÞÇáÈ',1031514049,NULL); INSERT INTO international VALUES (504,'WebGUI',11,'ÞÇáÈ',1031514049,NULL); @@ -7696,19 +7400,16 @@ INSERT INTO international VALUES (605,'WebGUI',11,' INSERT INTO international VALUES (642,'WebGUI',11,'ÅÖÇÝÉ/ÊÚÏíá ÕÝÍÉ',1031514049,NULL); INSERT INTO international VALUES (652,'WebGUI',11,'ÊÌåíÒÇÊ ÇáãÓÊÎÏã¡ ÊÍÑíÑ',1031514049,NULL); INSERT INTO international VALUES (653,'WebGUI',11,'ÕÝÍÉ¡ ÍÐÝ',1031514049,NULL); -INSERT INTO international VALUES (654,'WebGUI',11,'ÊÕãíã¡ ÍÐÝ',1031514049,NULL); INSERT INTO international VALUES (655,'WebGUI',11,'ãÓÊÎÏã¡ ÅÖÇÝÉ/ÍÐÝ',1031514049,NULL); INSERT INTO international VALUES (656,'WebGUI',11,'ÈíÇäÇÊ ÇáÔÑßÉ¡ ÊÍÑíÑ',1031514049,NULL); INSERT INTO international VALUES (657,'WebGUI',11,'ãÓÊÎÏã¡ ÍÐÝ',1031514049,NULL); INSERT INTO international VALUES (658,'WebGUI',11,'ãÓÊÎÏãæä¡ ÅÏÇÑÉ',1031514049,NULL); -INSERT INTO international VALUES (659,'WebGUI',11,'ÊÕãíãÇÊ¡ ÅÏÇÑÉ',1031514049,NULL); INSERT INTO international VALUES (660,'WebGUI',11,'ãÌãæÚÇÊ¡ ÅÏÇÑÉ',1031514049,NULL); INSERT INTO international VALUES (661,'WebGUI',11,'ÊÌåíÒÇÊ ÇáãáÝ¡ ÊÍÑíÑ',1031514049,NULL); INSERT INTO international VALUES (662,'WebGUI',11,'ÊÌåíÒÇÊ¡ ÅÏÇÑÉ',1031514049,NULL); INSERT INTO international VALUES (663,'WebGUI',11,'ÊÌåíÒÇÊ ÇáÈÑíÏ¡ ÊÍÑíÑ',1031514049,NULL); INSERT INTO international VALUES (664,'WebGUI',11,'ãæÖæÚÇÊ ÇáÇäÊÑäÊ¡ ÍÐÝ',1031514049,NULL); INSERT INTO international VALUES (665,'WebGUI',11,'ãÌãæÚÉ¡ ÍÐÝ',1031514049,NULL); -INSERT INTO international VALUES (666,'WebGUI',11,'ÊÕãíã¡ ÅÖÇÝÉ/ÊÍÑíÑ',1031514049,NULL); INSERT INTO international VALUES (667,'WebGUI',11,'ãÌãæÚÉ¡ ÅÖÇÝÉ/ÍÐÝ',1031514049,NULL); INSERT INTO international VALUES (668,'WebGUI',11,'ÕÝÍÇÊ ÇáÊÕãíã¡ ÊØÈíÞ',1031514049,NULL); INSERT INTO international VALUES (669,'WebGUI',11,'ãÎÊÕÑÇÊ¡ ÊØÈíÞ',1031514049,NULL); @@ -7805,8 +7506,6 @@ INSERT INTO international VALUES (3,'Survey',1,'Survey, Add/Edit',1038890559,NUL INSERT INTO international VALUES (4,'Survey',1,'Surveys allow you to gather information from your users. In the case of WebGUI surveys, you can also use them to test your user\'s knowledge.\r\n

\r\n\r\nQuestion Order
\r\nThe order the questions will be asked. Sequential displays the questions in the order you create them. Random displays the questions randomly. Response driven displays the questions in order based on the responses of the users.\r\n

\r\n\r\nMode
\r\nBy default the Survey is in survey mode. This allows it to ask questions of your users. However, if you switch to Quiz mode, you can have a self-correcting test of your user\'s knowledge.\r\n

\r\n\r\nAnonymous responses?
\r\nSelect whether or not the survey will record and display information that can identify a user and their responses. If left at the default value of \"No\", the survey will record the user\'s IP address as well as their WebGUI User ID and Username if logged in. This info will then be available in the survey\'s reports. If set to \"Yes\", these three fields will contain scrambled data that can not be traced to a particular user.\r\n

\r\n\r\nWho can take the survey?
\r\nWhich users can participate in the survey?\r\n

\r\n\r\n\r\nWho can view reports?
\r\nWho can view the results of the survey?\r\n

\r\n\r\n\r\nWhat next?
\r\nIf you leave this set at its default, then you will add a question directly after adding the survey.\r\n

\r\n',1059069492,NULL); INSERT INTO international VALUES (2,'Survey',1,'Edit Survey',1033943825,NULL); INSERT INTO international VALUES (1,'Survey',1,'Survey',1033942924,NULL); -INSERT INTO international VALUES (741,'WebGUI',1,'Edit this template.',1034223116,NULL); -INSERT INTO international VALUES (742,'WebGUI',1,'Manage templates.',1034223130,NULL); INSERT INTO international VALUES (748,'WebGUI',1,'User Count',1036553016,NULL); INSERT INTO international VALUES (760,'WebGUI',1,'Delete this folder.',1036892740,NULL); INSERT INTO international VALUES (759,'WebGUI',1,'Edit this folder.',1036892731,NULL); @@ -7835,7 +7534,6 @@ INSERT INTO international VALUES (668,'WebGUI',10,'Style Sheets, Anvend',1036855 INSERT INTO international VALUES (671,'WebGUI',10,'Wobjects, Anvend',1036855231,NULL); INSERT INTO international VALUES (670,'WebGUI',10,'Image, Tilføj/redigér',1036855215,NULL); INSERT INTO international VALUES (667,'WebGUI',10,'Gruppe, Tilføj/Redigér',1036855136,NULL); -INSERT INTO international VALUES (666,'WebGUI',10,'Stilart, Tilføj/Redigér',1036855118,NULL); INSERT INTO international VALUES (665,'WebGUI',10,'Gruppe, Slet',1036855098,NULL); INSERT INTO international VALUES (664,'WebGUI',10,'Wobject, Slet',1036855078,NULL); INSERT INTO international VALUES (663,'WebGUI',10,'Mail indstillinger, Redigér',1036854968,NULL); @@ -7892,7 +7590,6 @@ INSERT INTO international VALUES (505,'WebGUI',10,'Tilf INSERT INTO international VALUES (504,'WebGUI',10,'Skabelon',1036612373,NULL); INSERT INTO international VALUES (503,'WebGUI',10,'Skabelon ID',1036612359,NULL); INSERT INTO international VALUES (502,'WebGUI',10,'Er du sikker på du vil slette denne skabelon og dermed alle sider der anvender den?',1036612343,NULL); -INSERT INTO international VALUES (501,'WebGUI',10,'Body',1036612298,NULL); INSERT INTO international VALUES (500,'WebGUI',10,'Side ID',1036612281,NULL); INSERT INTO international VALUES (615,'WebGUI',2,'Gruppen werden zum Aufteilen von Rechten und Pflichten innherhalb des WebGUI \r\nSystems benötigt. Wenn sie z. b. eine Seite ähnlich einer Klassenraum Situation \r\nerstellen müssen. In diesem Fall würden Sie für jede einzelne Klasse eine eigene \r\nGruppe erstellen, die sie dann den entsprechenden Seiten zuordnen könnten.

Es \r\ngibt bereits einige voreingestellte Gruppen in WebGUI:

Admins
Admins \r\nsind User mit unbegrenzten Rechten in WebGUI. Ein Benutzer sollte dieser Gruppe \r\nnur hinzugefügt werden, wenn der das System überblicken kann. Gewöhnlich werden \r\n1 bis 3 Personen dieser Gruppe zugeordnet.

Content Managers
Content Manager \r\nsind Benutzer, die die Berechtigung zum Hinzufügen, Bearbeiten und löschen von \r\nInhalten für die verschiedenen Bereich der Site haben. Diese Gruppe sollte nicht \r\ndazu benutzt werden, individuelle Content-Bereiche der Seite zu kontrollieren, \r\nsondern um festzulegen, ob  ein Benutzer Inhalt bearbeiten kann oder nicht. \r\nSie sollten zusätzliche Gruppen für die separaten Bereiche der Site erstellen. \r\n

Everyone (Jeder)
Everyone ist eine \'magische\' Gruppe, der niemand \r\nhinzugefügt werden kann, aber alle Mitglieder der Site sind Teil davon. Möchten \r\nSie ihre Seite für Besucher und registrierte Benutzer gleichermassen öffnen, \r\ndann benutzen Sie diese Gruppe dafür.

Package Managers (Paket Manager)
Benutzer \r\nmit der Berechtigung, Pakete zu erstellen, zu bearbeiten, zu löschen und anzuwenden.

Registrierte \r\nBenutzer
Sobald ein User dem System hinzugefügt wird, befindet er sich \r\nin dieser Gruppe. Er sollte aus dieser Gruppe nur entfernt werden, wenn sein \r\nAccount gelöscht ist oder wenn sie einen Störenfried sperren wollen.

Style Managers
Benutzer \r\nmit der Berechtigung, Styles zu bearbeiten. Dieses Recht enthält aber nicht \r\ndas Recht, Berechtigungen für eine Seite zu vergeben.

Template Managers
Benutzer \r\nmit der Berechtigung, Templates für diese Seite zu bearbeiten.

Visitors \r\n(Besucher)
Besucher sind diejenigen Benutzer, die nicht eingeloggt sind. \r\n

',1044964822,NULL); INSERT INTO international VALUES (61,'SyndicatedContent',10,'Syndicated Content, tilføj/redigér',1036611329,NULL); @@ -7981,15 +7678,6 @@ INSERT INTO international VALUES (12,'DataForm',10,'Cc',1036598479,NULL); INSERT INTO international VALUES (11,'DataForm',10,'Til (email, brugernavn ell. gruppenavn)',1036598461,NULL); INSERT INTO international VALUES (10,'DataForm',10,'Fra',1036598436,NULL); INSERT INTO international VALUES (1,'DataForm',10,'Mail formular',1036598423,NULL); -INSERT INTO international VALUES (61,'LinkList',10,'Henvisningsliste, tilfæj/redigér',1036598042,NULL); -INSERT INTO international VALUES (61,'Item',10,'Item, tilføj/redigér',1036598009,NULL); -INSERT INTO international VALUES (6,'Item',10,'Redigér item',1036597984,NULL); -INSERT INTO international VALUES (72,'FAQ',10,'Spørgsmål, tilføj/redigér',1036597894,NULL); -INSERT INTO international VALUES (61,'FAQ',10,'FAQ, tilføj/redigér',1036597867,NULL); -INSERT INTO international VALUES (13,'FAQ',10,'Slå [top] link til?',1036597810,NULL); -INSERT INTO international VALUES (12,'FAQ',10,'Slå Q/A til?',1036597786,NULL); -INSERT INTO international VALUES (11,'FAQ',10,'Slå TOC til?',1036597771,NULL); -INSERT INTO international VALUES (61,'ExtraColumn',10,'Ekstra kolonne, tilføj/redigér',1036597749,NULL); INSERT INTO international VALUES (78,'EventsCalendar',10,'Slet ikke noget, det var en fejl.',1036597719,NULL); INSERT INTO international VALUES (75,'EventsCalendar',10,'Hvad ønsker du at gøre?',1036597679,NULL); INSERT INTO international VALUES (77,'EventsCalendar',10,'Slet denne begivenhed og alle gentagelser',1031671274,NULL); @@ -7999,18 +7687,13 @@ INSERT INTO international VALUES (61,'EventsCalendar',10,'Begivenhedskalender, T INSERT INTO international VALUES (84,'EventsCalendar',1,'End Month',1038190527,NULL); INSERT INTO international VALUES (20,'EventsCalendar',10,'Tilføj begivenhed',1031671040,NULL); INSERT INTO international VALUES (61,'Article',10,'Artikkel, tilføj/redigér',1031546465,NULL); -INSERT INTO international VALUES (814,'WebGUI',1,'Back to styles.',1038022043,NULL); INSERT INTO international VALUES (815,'WebGUI',1,'The file you tried to upload is too large.',1038023800,NULL); INSERT INTO international VALUES (679,'WebGUI',21,'îÁÓÔÒÏÊËÉ ÉÎÆÏÒÍÁÃÉÏÎÎÏÇÏ ÎÁÐÏÌÎÅÎÉÑ (ÒÅÄÁËÔÉÒÏ×ÁÎÉÅ)',1042132866,NULL); INSERT INTO international VALUES (72,'DataForm',21,'÷Ù ÍÏÖÅÔÅ ÄÏÂÁ×ÉÔØ ÌÀÂÏÅ ËÏÌÉÞÅÓÔ×Ï ÄÏÐÏÌÎÉÔÅÌØÎÙÈ ÐÏÌÅÊ × ×ÁÛÕ ÆÏÒÍÕ.\r\n

\r\néÍÑ ÐÏÌÑ
\r\n÷×ÅÄÉÔÅ ÕÎÉËÁÌØÎÏÅ ÉÍÑ ÐÏÌÑ (Ô.Å. ÉÍÑ ÐÏÌÑ ÎÅ ÄÏÌÖÎÏ ÓÏ×ÐÁÄÁÔØ ÎÉ Ó ÏÄÎÉÍ ÉÚ ÏÓÔÁÌØÎÙÈ ÐÏÌÅÊ ÆÏÒÍÙ).\r\n

\r\nóÔÁÔÕÓ
\r\nóËÒÙÔÙÅ ÐÏÌÑ ÎÅ ÏÔÏÂÒÁÖÁÀÔÓÑ, ÎÏ ÐÅÒÅÓÙÌÁÀÔÓÑ e-mail.
\r\nïÔÏÂÒÁÖÁÅÍÙÅ ÐÏÌÑ ÍÏÖÎÏ ÐÒÏÓÍÏÔÒÅÔØ, ÎÏ ÎÅÌØÚÑ ÏÔÒÅÄÁËÔÉÒÏ×ÁÔØ.
\r\níÏÄÉÆÉÃÉÒÕÅÍÙÅ ÐÏÌÑ ÚÁÐÏÌÎÑÀÔÓÑ ÐÏÌØÚÏ×ÁÔÅÌÅÍ.
\r\nåÓÌÉ ×Ù ×ÙÂÅÒÉÔÅ ÓËÒÙÔÙÊ ÉÌÉ ÏÔÏÂÒÁÖÁÅÍÙÊ ÔÉÐ ÐÏÌÑ, ÔÏ ÕÄÏÓÔÏ×ÅÒØÔÅÓØ, ÞÔÏ ÐÏÌÑÍ ÐÒÉÓ×ÏÅÎÙ ÚÎÁÞÅÎÉÑ ÐÏ ÕÍÏÌÞÁÎÉÀ.\r\n

\r\nôÉÐ
\r\n÷ÙÂÅÒÉÔÅ ÔÉÐ ÜÌÅÍÅÎÔÁ ÆÏÒÍÙ. ðÏÄÄÅÒÖÉ×ÁÀÔÓÑ ÓÌÅÄÕÀÝÉÅ ÔÉÐÙ ÐÏÌÅÊ:
\r\n
    \r\n
  • URL: ÔÅËÓÔÏ×ÏÅ ÐÏÌÅ, ÐÒÅÄÎÁÚÎÁÞÅÎÎÏÅ ÄÌÑ ××ÏÄÁ URL.
    \r\n
  • ôÅËÓÔÏ×ÙÊ ÂÌÏË: ÓÔÁÎÄÁÒÔÎÙÊ ÔÅËÓÔÏ×ÙÊ ÂÌÏË.
    \r\n
  • äÁÔÁ: ÔÅËÓÔÏ×ÙÊ ÂÌÏË, ÐÒÅÄÎÁÚÎÁÞÅÎÎÙÊ ÄÌÑ ××ÏÄÁ ÄÁÔÙ É ËÎÏÐËÁ, ÒÁÓËÒÙ×ÁÀÝÁÑ ÏËÎÏ Ó ËÁÌÅÎÄÁÒÅÍ.
    \r\n
  • äÁ/îÅÔ: ËÎÏÐËÉ ÐÏÚ×ÏÌÑÀÝÉÅ ×ÙÂÒÁÔØ ÕÔ×ÅÒÄÉÔÅÌØÎÙÊ ÉÌÉ ÏÔÒÉÃÁÔÅÌØÎÙÊ ÏÔ×ÅÔ ÎÁ ×ÏÐÒÏÓ.
    \r\n
  • E-mail: ÔÅËÓÔÏ×ÙÊ ÂÌÏË, ÐÒÅÄÎÁÚÎÁÞÅÎÎÙÊ ÄÌÑ ××ÏÄÁ ÉÎÆÏÒÍÁÃÉÉ Ï e-mail ÁÄÒÅÓÅ (ÐÏÓÌÅ ÚÁÐÏÌÎÅÎÉÑ Á×ÔÏÍÁÔÉÞÅÓËÉ ÐÒÏ×ÅÒÑÅÔÓÑ ËÏÒÒÅËÔÎÏÓÔØ ××ÅÄÅÎÎÏÇÏ ÁÄÒÅÓÁ).
    \r\n
  • ôÅËÓÔÏ×ÏÅ ÐÏÌÅ: ÐÒÏÓÔÏÅ ÔÅËÓÔÏ×ÏÅ ÐÏÌÅ.
    \r\n
  • þÅË-ÂÏËÓÙ: ÐÒÏÓÔÙÅ ÞÅË-ÂÏËÓÙ.
    \r\n×ÙÐÁÄÁÀÝÅÅ ÍÅÎÀ: ×Ù ÄÏÌÖÎÙ ÚÁÄÁÔØ ×ÏÚÍÏÖÎÙÅ ÚÎÁÞÅÎÉÑ ÄÌÑ ÐÕÎËÔÏ× ÍÅÎÀ (× ÏÄÎÏÊ ÓÔÒÏËÅ ÍÏÖÎÏ ÕËÁÚÁÔØ ÔÏÌØËÏ ÏÄÎÏ ÚÎÁÞÅÎÉÅ).\r\n
\r\n

\r\n÷ÏÚÍÏÖÎÙÅ ÚÎÁÞÅÎÉÑ
\r\nüÔÏ ÐÏÌÅ ÉÓÐÏÌØÚÕÅÔÓÑ ÔÏÌØËÏ ÄÌÑ ÚÁÐÏÌÎÅÎÉÑ ÐÕÎËÔÏ× ÄÌÑ ×ÙÐÁÄÁÀÝÅÇÏ ÍÅÎÀ.\r\n

\r\núÎÁÞÅÎÉÅ ÐÏ ÕÍÏÌÞÁÎÉÀ (ÏÐÃÉÏÎÁÌØÎÏ)
\r\n××ÅÄÉÔÅ ÚÎÁÞÅÎÉÅ ÐÏ ÕÍÏÌÞÁÎÉÀ ÄÌÑ ÐÏÌÑ. äÌÑ ÐÏÌÑ äÁ/îÅÔ ××ÅÄÉÔÅ \"yes\" ÄÌÑ ÔÏÇÏ, ÞÔÏÂÙ ÚÎÁÞÅÎÉÅ ÐÏ ÕÍÏÌÞÁÎÉÀ Õ ÐÏÌÑ ÂÙÌÏ „äÁ“ ÉÌÉ \"no\", ÞÔÏÂÙ ÚÎÁÞÅÎÉÅ ÐÏ ÕÍÏÌÞÁÎÉÀ ÂÙÌÏ „îÅÔ“.\r\näÌÑ ÞÅË-ÂÏËÓÁ ××ÅÄÉÔÅ \"checked\", ÅÓÌÉ ×Ù ÈÏÔÉÔÅ, ÞÔÏÂÙ ÐÕÎËÔ ÐÏ ÕÍÏÌÞÁÎÉÀ ÂÙÌ ÏÔÍÅÞÅÎ ÇÁÌÏÞËÏÊ.\r\n

\r\näÏÂÁ×ÉÔØ ÅÝÅ ÏÄÎÏ ÐÏÌÅ?
\r\n÷ÙÂÅÒÉÔÅ „äÁ“, ÅÓÌÉ ×Ù ÈÏÔÉÔÅ ÎÅÍÅÄÌÅÎÎÏ ÄÏÂÁ×ÉÔØ ÎÏ×ÏÅ ÐÏÌÅ.\r\n
',1041689534,NULL); INSERT INTO international VALUES (554,'WebGUI',21,'÷ÙÐÏÌÎÉÔØ ÄÅÊÓÔ×ÉÅ',1034774744,NULL); INSERT INTO international VALUES (64,'WebGUI',21,'÷ÙÊÔÉ ÉÚ ÓÉÓÔÅÍÙ',1034772536,NULL); INSERT INTO international VALUES (1,'WobjectProxy',21,'éÍÑ ÍÏÄÕÌÑ',1037087561,NULL); -INSERT INTO international VALUES (2,'Item',21,'÷ÌÏÖÅÎÎÙÊ ÆÁÊÌ',1034752668,NULL); -INSERT INTO international VALUES (4,'Item',21,'óÓÙÌËÁ ÎÁ ÄÏËÕÍÅÎÔ',1034752668,NULL); -INSERT INTO international VALUES (5,'Item',21,'óËÁÞÁÔØ ×ÌÏÖÅÎÎÙÊ ÆÁÊÌ',1034752668,NULL); INSERT INTO international VALUES (12,'Poll',21,'÷ÓÅÇÏ ÐÒÏÇÏÌÏÓÏ×ÁÌÏ:',1034752668,NULL); -INSERT INTO international VALUES (12,'FAQ',21,'äÏÂÁ×ÉÔØ ×ÏÐÒÏÓ/ÏÔ×ÅÔ?',1034752668,NULL); INSERT INTO international VALUES (12,'DataForm',21,'Cc',1034752668,NULL); INSERT INTO international VALUES (13,'DataForm',21,'Bcc',1034752668,NULL); INSERT INTO international VALUES (357,'WebGUI',21,'îÏ×ÏÓÔÉ',1034752668,NULL); @@ -8049,23 +7732,19 @@ INSERT INTO international VALUES (668,'WebGUI',21,' INSERT INTO international VALUES (667,'WebGUI',21,'çÒÕÐÐÁ (ÄÏÂÁ×ÌÅÎÉÅ/ÒÅÄÁËÔÉÒÏ×ÁÎÉÅ)',1034752668,NULL); INSERT INTO international VALUES (652,'WebGUI',21,'ðÏÌØÚÏ×ÁÔÅÌØÓËÉÅ ÎÁÓÔÒÏÊËÉ (ÒÅÄÁËÔÉÒÏ×ÁÎÉÅ)',1034752668,NULL); INSERT INTO international VALUES (665,'WebGUI',21,'çÒÕÐÐÙ (ÕÄÁÌÅÎÉÅ)',1034752668,NULL); -INSERT INTO international VALUES (666,'WebGUI',21,'óÔÉÌØ (ÄÏÂÁ×ÌÅÎÉÅ/ÒÅÄÁËÔÉÒÏ×ÁÎÉÅ)',1042132821,NULL); INSERT INTO international VALUES (664,'WebGUI',21,'íÏÄÕÌÉ (ÕÄÁÌÅÎÉÅ)',1037086166,NULL); INSERT INTO international VALUES (662,'WebGUI',21,'îÁÓÔÒÏÊËÉ (ÕÐÒÁ×ÌÅÎÉÅ)',1034752668,NULL); INSERT INTO international VALUES (660,'WebGUI',21,'çÒÕÐÐÙ (ÕÐÒÁ×ÌÅÎÉÅ)',1034752668,NULL); INSERT INTO international VALUES (658,'WebGUI',21,'ðÏÌØÚÏ×ÁÔÅÌÉ (ÕÐÒÁ×ÌÅÎÉÅ)',1034752668,NULL); -INSERT INTO international VALUES (659,'WebGUI',21,'óÔÉÌÉ (ÕÐÒÁ×ÌÅÎÉÅ)',1034752668,NULL); INSERT INTO international VALUES (657,'WebGUI',21,'ðÏÌØÚÏ×ÁÔÅÌØ (ÕÄÁÌÅÎÉÅ)',1034752668,NULL); INSERT INTO international VALUES (682,'WebGUI',21,'ðÏÌØÚÏ×ÁÔÅÌØÓËÉÅ ÎÁÓÔÒÏÊËÉ (ÒÅÄÁËÔÉÒÏ×ÁÎÉÅ)',1034752668,NULL); INSERT INTO international VALUES (655,'WebGUI',21,'ðÏÌØÚÏ×ÁÔÅÌØ (ÄÏÂÁ×ÌÅÎÉÅ/ÒÅÄÁËÔÉÒÏ×ÁÎÉÅ)',1034752668,NULL); INSERT INTO international VALUES (653,'WebGUI',21,'óÔÒÁÎÉÃÁ (ÕÄÁÌÅÎÉÑ)',1034752668,NULL); -INSERT INTO international VALUES (654,'WebGUI',21,'óÔÉÌØ (ÕÄÁÌÅÎÉÅ)',1034752668,NULL); INSERT INTO international VALUES (683,'WebGUI',21,'ûÁÂÌÏÎÙ (ÕÐÒÁ×ÌÅÎÉÅ)',1042132894,NULL); INSERT INTO international VALUES (684,'WebGUI',21,'ûÁÂÌÏÎÙ (ÄÏÂÁ×ÌÅÎÉÅ/ÒÅÄÁËÔÉÒÏ×ÁÎÉÅ)',1042132902,NULL); INSERT INTO international VALUES (685,'WebGUI',21,'ûÁÂÌÏÎÙ (ÕÄÁÌÅÎÉÅ)',1042132912,NULL); INSERT INTO international VALUES (669,'WebGUI',21,'íÁËÒÏÓÙ (ÉÓÐÏÌØÚÏ×ÁÎÉÅ)',1048517050,NULL); INSERT INTO international VALUES (637,'WebGUI',2,'

Vorname
\r\nDer Vorname des Benutzers.

\r\n

Zweiter Vorname
\r\nEin weiterer Vorname des Benutzers.

\r\n

Nachname
\r\nDer Nachname des Benutzers.

\r\n

Email Adresse
\r\nDie Emailadresse des Benutzers. Diese muss nur angegeben werden, wenn der Benutzer Funktionen nutzen möchte, die eine Emailadresse benötigen.

\r\n

ICQ UIN
\r\nDie ICQ UIN ist die "User ID Number" im ICQ Network. ICQ ist eine sehr bekannte Messaging Plattform.

\r\n

AIM Id
\r\nDie Account Id für den AOL Instant Messenger .

\r\n

MSN Messenger Id
\r\nDie Account Id für das Microsoft Network Instant Messenger system.

\r\n

Yahoo® Messenger Id
\r\nDie Account Id für den Yahoo® Instant Messenger system.

\r\n

Mobiltelefon
\r\nDie Mobilfunknummer des Benutzers.

\r\n

Pager
\r\nDie Pager Telefonnummer.

\r\n

Email zu Pager Gateway
\r\nDie Pager Email Adresse.

\r\n

Private Angaben
\r\nDie privaten Adressangaben.

\r\n

Geschäftliche Angaben
\r\nDie geschäftlichen Adressangaben.

\r\n

Geschlecht
\r\nDas Geschlecht des Benutzers.

\r\n

Geburtsdatum
\r\nDas Geburtsdatum des Benutzers.

\r\n

\r\nSprache
\r\nIn welcher Sprache sollen systembedingte Meldungen angezeigt werden?.

\r\n

Zeitabweichung
\r\nDie Anzahl der Stunden (plus oder minus), die die Zeit des Benutzers von der Serverzeit abweicht. Dies wird benutzt, um die einzelnen Zeitzonen anzugleichen.

\r\n

Erster Tag der Woche
\r\nDer erste Wochentag im Kalender. Zum Beispiel ist in den USA der erste Wochentag der Sonntag und in Deutschland ist es der Montag.

\r\n

Datumsformat
\r\nIn welchem Format soll das Datum erscheinen?

\r\n

Zeitformat
\r\nIn welchem Format soll die Zeit angezeigt werden?

\r\n

Diskussions Layout
\r\nSollen Diskussionen in einer flachen oder beitragsbasierten Struktur angezeigt werden? In einer flachen Struktur werden die Beiträge in der Reihenfolge, wie sie angelegt wurden, angezeigt. In der beitragsbasierten Struktur wird eine hierarchische Liste der Antworten, so wie sie erstellt wurden, angezeigt.

\r\n

Benachrichtigungen
\r\nWie soll der Benutzer über den Eingang neuer Nachrichten informiert werden?

',1067290755,NULL); -INSERT INTO international VALUES (72,'LinkList',21,'óÓÙÌËÁ (ÄÏÂÁ×ÌÅÎÉÅ/ÒÅÄÁËÔÉÒÏ×ÁÎÉÅ)',1041688410,NULL); INSERT INTO international VALUES (11,'Article',21,'(÷ÙÂÅÒÉÔÅ \"äÁ\", ÅÓÌÉ ×Ù ÎÅ ÄÏÂÁ×ÌÑÌÉ ÔÅÇ <br> (ÒÁÚÒÙ× ÓÔÒÏËÉ) ÓÁÍÏÓÔÏÑÔÅÌØÎÏ ÉÌÉ ÎÅ ÐÏÎÑÌÉ Ï ÞÅÍ ÚÄÅÓØ ÎÁÐÉÓÁÎÏ)',1046341044,NULL); INSERT INTO international VALUES (451,'WebGUI',21,'ÏÂÑÚÁÔÅÌØÎÏ ÄÌÑ ÚÁÐÏÌÎÅÎÉÑ.',1034682265,NULL); INSERT INTO international VALUES (4,'EventsCalendar',21,'ðÒÏÉÓÈÏÄÉÔ ÏÄÉÎ ÒÁÚ',1034673527,NULL); @@ -8110,9 +7789,7 @@ INSERT INTO international VALUES (233,'WebGUI',21,'(eom)',1034231379,NULL); INSERT INTO international VALUES (144,'WebGUI',21,'óÔÁÔÉÓÔÉËÁ',1042134962,NULL); INSERT INTO international VALUES (71,'SiteMap',21,'ëÁÒÔÁ ÓÁÊÔÁ ÐÏÍÏÇÁÅÔ ÏÂÌÅÇÞÉÔØ ÎÁ×ÉÇÁÃÉÀ ÐÏ ÓÁÊÔÕ. ÷Ù ÍÏÖÅÔÅ ×ÙÂÒÁÔØ ÔÒÁÄÉÃÉÏÎÎÏÅ ÉÅÒÁÒÈÉÞÅÓËÏÅ ÐÒÅÄÓÔÁ×ÌÅÎÉÅ ËÁÒÔÙ ÓÁÊÔÁ ÉÌÉ ×ÙÂÒÁÔØ ÎÁ×ÉÇÁÃÉÀ ÐÏ ÏÐÒÅÄÅÌÅÎÎÏÊ ÞÁÓÔÉ ÓÁÊÔÁ.\r\n

\r\nûÁÂÌÏÎ
\r\n÷ÙÂÅÒÉÔÅ ÛÁÂÌÏÎ ÄÌÑ ËÁÒÔÙ ÓÁÊÔÁ.\r\n

\r\nîÁÞÁÌØÎÙÊ ÕÒÏ×ÅÎØ
\r\n÷ÙÂÅÒÉÔÅ ÓÔÒÁÎÉÃÕ, ÎÁÞÉÎÁÑ Ó ËÏÔÏÒÏÊ ÐÏËÁÚÙ×ÁÔØ ËÁÒÔÕ.\r\n

\r\nçÌÕÂÉÎÁ ×ÌÏÖÅÎÎÏÓÔÉ
\r\n÷ÙÂÅÒÉÔÅ ÓËÏÌØËÏ ÕÒÏ×ÎÅÊ ÓÔÒÁÎÉà ×Ù ÂÙ ÈÏÔÅÌÉ ÐÏËÁÚÁÔØ × ËÁÒÔÅ ÓÁÊÔÁ? åÓÌÉ ×ÙÂÒÁÎÏ ÚÎÁÞÅÎÉÅ 0 (ÎÏÌØ), ÔÏ ÂÕÄÕÔ ÏÔÏÂÒÁÖÁÔØÓÑ ×ÓÅ ÕÒÏ×ÎÉ.\r\n

\r\nïÔÓÔÕÐ
\r\núÄÅÓØ ÚÁÄÁÅÔÓÑ ËÏÌÉÞÅÓÔ×Ï ÓÉÍ×ÏÌÏ×, ËÏÔÏÒÙÅ ÎÁÄÏ ÏÔÓÔÕÐÉÔØ ÐÅÒÅÄ ËÁÖÄÙÍ ÕÒÏ×ÎÅÍ\r\n

\r\n',1042131957,NULL); INSERT INTO international VALUES (8,'Poll',21,'(÷×ÅÄÉÔÅ ÔÏÌØËÏ ÏÄÉÎ ÎÁ ËÁÖÄÏÊ ÓÔÒÏÞËÅ. ïÂÝÅÅ ÞÉÓÌÏ ÏÔ×ÅÔÏ×: ÎÅ ÂÏÌÅÅ 20)',1034231002,NULL); -INSERT INTO international VALUES (13,'LinkList',21,'äÏÂÁ×ÉÔØ ÎÏ×ÕÀ ÓÓÙÌËÕ',1034230906,NULL); -INSERT INTO international VALUES (71,'Item',21,'óÓÙÌËÁ ÎÁ ÄÏËÕÍÅÎÔ ÐÒÅÄÎÁÚÎÁÞÅÎÁ ÄÌÑ ÄÏÂÁ×ÌÅÎÉÑ ÎÅÂÏÌØÛÉÈ ËÕÓËÏ× ÓÔÁÔÉÞÅÓËÏÊ ÉÎÆÏÒÍÁÃÉÉ.\r\n

\r\nURL
\r\nüÔÏÔ URL ÂÕÄÅÔ ÄÏÂÁ×ÌÅÎ Ë ÚÁÇÏÌÏ×ËÕ ÐÁÒÁÇÒÁÆÁ.\r\n

\r\nðÒÉÍÅÒ: http://www.google.com\r\n

\r\n÷ÌÏÖÅÎÎÙÊ ÆÁÊÌ
\r\nåÓÌÉ ×Ù ÈÏÔÉÔÅ ÄÏÂÁ×ÉÔØ ÄÏËÕÍÅÎÔ MIcroSoft Word, ÁÒÈÉ× ÉÌÉ ÌÀÂÏÊ ÄÒÕÇÏÊ ÄÒÕÇÏÊ ÔÉÐ ÆÁÊÌÁ, ÐÒÏÓÔÏ ÎÁÊÄÉÔÅ ÅÇÏ ÐÒÉ ÐÏÍÏÝÉ ËÎÏÐËÉ \"ïÂÚÏÒ\" ÎÁ ×ÁÛÅÍ ËÏÍÐØÀÔÅÒÅ.\r\nûÁÂÌÏÎ
\r\n÷ÙÂÅÒÉÔÅ ÛÁÂÌÏÎ ÄÌÑ ÓÓÙÌËÉ ÎÁ ÄÏËÕÍÅÎÔ.\r\n

',1041688264,NULL); -INSERT INTO international VALUES (13,'FAQ',21,'äÏÂÁ×ÉÔØ ËÎÏÐËÕ [ÎÁ×ÅÒÈ]?',1034230765,NULL); +INSERT INTO international VALUES (89,'USS',21,'äÏÂÁ×ÉÔØ ÎÏ×ÕÀ ÓÓÙÌËÕ',1034230906,NULL); INSERT INTO international VALUES (71,'EventsCalendar',21,'ïÒÇÁÎÁÊÚÅÒ ÉÓÐÏÌØÚÕÅÔÓÑ ÄÌÑ ÔÏÇÏ, ÞÔÏÂÙ ÐÏÌØÚÏ×ÁÔÅÌÉ ÓÁÊÔÁ ÉÍÅÌÉ ×ÏÚÍÏÖÎÏÓÔØ ÕÚÎÁÔØ Ï ÓÏÂÙÔÉÑÈ, ÏÔÎÏÓÑÝÉÈÓÑ Ë ÄÅÑÔÅÌØÎÏÓÔÉ ÐÒÅÄÐÒÉÑÔÉÑ.\r\n

\r\nïÓÎÏ×ÎÏÊ ÛÁÂÌÏÎ
\r\n÷ÙÂÅÒÉÔÅ ÛÁÂÌÏÎ, ÏÐÒÅÄÅÌÑÀÝÉÊ ×ÎÅÛÎÉÊ ×ÉÄ ÏÒÇÁÎÁÊÚÅÒÁ. ÷Ù ÍÏÖÅÔÅ ×ÙÂÒÁÔØ ÍÁÌÙÊ ËÁÌÅÎÄÁÒØ, ÂÏÌØÛÏÊ ËÁÌÅÎÄÁÒØ ÉÌÉ ÓÐÉÓÏË ÓÏÂÙÔÉÊ. ðÒÉ ×ÙÂÏÒÅ ÓÐÉÓËÁ ÓÏÂÙÔÉÑ ÓÏÒÔÉÒÕÀÔÓÑ ÐÏ ÄÁÔÅ (ÐÒÉ ÜÔÏÍ ÓÏÂÙÔÉÑ, ËÏÔÏÒÙÅ ÕÖÅ ÐÒÏÛÌÉ, ÎÅ ÏÔÏÂÒÁÖÁÀÔÓÑ).÷ ÓÌÕÞÁÅ ×ÙÂÏÒÁ ÏÄÎÏÇÏ ÉÚ ÔÉÐÏ× ËÁÌÅÎÄÁÒÅÊ ÏÒÇÁÎÁÊÚÅÒ ÂÕÄÅÔ ÉÍÅÔØ ÔÒÁÄÉÃÉÏÎÎÙÊ ×ÎÅÛÎÉÊ ×ÉÄ (Ô.Å. ÏÔÏÂÒÁÖÁÅÔÓÑ × ×ÉÄÅ ËÁÌÅÎÄÁÒÑ).\r\n

\r\nûÁÂÌÏÎ ÓÏÂÙÔÉÑ
\r\n÷ÙÂÅÒÉÔÅ ÛÁÂÌÏÎ ÄÌÑ ÓÏÂÙÔÉÑ.\r\n

\r\nîÁÞÁÌØÎÙÊ ÍÅÓÑÃ
\r\n÷ÙÂÅÒÉÔÅ ÍÅÓÑÃ, Ó ËÏÔÏÒÏÇÏ ÎÁÞÉÎÁÅÔÓÑ ËÁÌÅÎÄÁÒØ.\r\nðÒÉ ×ÙÂÏÒÅ ÔÅËÕÝÅÇÏ ÍÅÓÑÃÁ ÐÒÉ ÐÒÏÓÍÏÔÒÅ ÏÒÇÁÎÁÊÚÅÒÁ ×ÓÅÇÄÁ ÂÕÄÅÔ ÏÔÏÂÒÁÖÁÔØÓÑ ÔÅËÕÝÉÊ ÍÅÓÑÃ.\r\n

\r\níÅÓÑà ÏËÏÎÞÁÎÉÑ
\r\n÷ÙÂÅÒÉÔÅ ÞÉÓÌÏ ÍÅÓÑÃÅ×, ÐÏÓÌÅ ËÏÔÏÒÙÊ ÏÒÇÁÎÁÊÚÅÒ ÎÅ ÏÔÏÂÒÁÖÁÅÔÓÑ.\r\n

\r\nÍÅÓÑÃ ÐÏ ÕÍÏÌÞÁÎÉÀ
\r\n÷ÙÂÅÒÉÔÅ ÐÅÒ×ÙÊ ÍÅÓÑÃ, ËÏÔÏÒÙÊ ÂÕÄÕÔ ×ÉÄÅÔØ ÐÏÌØÚÏ×ÁÔÅÌÉ ÐÒÉ ÐÒÏÓÍÏÔÒÅ ÏÒÇÁÎÁÊÚÅÒÁ.\r\n

\r\níÁËÓÉÍÁÌØÎÏÅ ËÏÌÉÞÅÓÔ×Ï ÓÏÂÙÔÉÊ ÎÁ ÓÔÒÁÎÉÃÅ
\r\n÷Ù ÍÏÖÅÔÅ ÕËÁÚÁÔØ, ËÁËÏÅ ËÏÌÉÞÅÓÔ×Ï ÓÏÂÙÔÉÊ ÍÏÖÎÏ ÐÏËÁÚÁÔØ ÏÄÎÏÊ ÓÔÒÁÎÉÃÅ ÐÒÉ ÉÓÐÏÌØÚÏ×ÁÎÉÉ ÏÔÏÂÒÁÖÅÎÉÑ ÓÏÂÙÔÉÊ × ×ÉÄÅ ÓÐÉÓËÁ.\r\n

\r\näÏÂÁ×ÉÔØ ÅÝÅ ÏÄÎÏ ÓÏÂÙÔÉÅ?
\r\nåÓÌÉ ×Ù ÈÏÔÉÔÅ ÎÅÍÅÄÌÅÎÎÏ ÄÏÂÁ×ÉÔØ ÓÌÅÄÕÀÝÅÅ ÓÏÂÙÔÉÅ, ÔÏ ×ËÌÀÞÉÔÅ ÜÔÕ ÏÐÃÉÀ.\r\n

\r\n',1041683983,NULL); INSERT INTO international VALUES (20,'EventsCalendar',21,'äÏÂÁ×ÉÔØ ÓÏÂÙÔÉÅ',1034230256,NULL); INSERT INTO international VALUES (71,'Article',21,'ðÏÞÔÉ ×ÓÀ ÓÔÁÔÉÞÅÓËÕÀ ÉÎÆÏÒÍÁÃÉÉ ÎÁ ÓÁÊÔ ÍÏÖÎÏ ÄÏÂÁ×ÉÔØ ÐÒÉ ÐÏÍÏÝÉ ÄÏÂÁ×ÌÅÎÉÑ ÓÔÁÔØÉ.\r\n

\r\nûÁÂÌÏÎ
\r\n÷ÙÂÅÒÉÔÅ ÛÁÂÌÏÎ ÄÌÑ ÓÔÁÔØÉ.\r\n

\r\nçÒÁÆÉÞÅÓËÉÊ ÆÁÊÌ
\r\n÷Ù ÍÏÖÅÔÅ ×ÓÔÁ×ÉÔØ ÇÒÁÆÉÞÅÓËÉÊ ÆÁÊÌ (*.jpg, *.gif, *.png), ÎÁÈÏÄÑÝÉÊÓÑ ÎÁ ×ÁÛÅÍ ËÏÍÐØÀÔÅÒÅ.\r\n

\r\n÷ÌÏÖÅÎÎÙÊ ÆÁÊÌ
\r\nåÓÌÉ ×Ù ÈÏÔÉÔÅ ×ÓÔÁ×ÉÔØ ÄÏËÕÍÅÎÔ Microsoft Word, ÁÒÈÉ×ÎÙÊ ÄÏËÕÍÅÎÔ ÉÌÉ ÌÀÂÏÊ ÄÒÕÇÏÊ ÔÉÐ ÆÁÊÌÁ, ÐÒÏÓÔÏ ×ÙÂÅÒÉÔÅ ÎÁÊÄÉÔÅ ÅÇÏ ÎÁ ×ÁÛÅÍ ËÏÍÐØÀÔÅÒÅ ÐÒÉ ÐÏÍÏÝÉ ËÎÏÐËÉ \"ïÂÚÏÒ\".\r\n

\r\néÍÑ ÓÓÙÌËÉ
\r\nåÓÌÉ ×Ù ÈÏÔÉÔÅ ÄÏÂÁ×ÉÔØ ÓÓÙÌËÕ × ÓÔÁÔØÀ, ××ÅÄÉÔÅ ÉÍÑ ÓÓÙÌËÉ. \r\n
ðÒÉÍÅÒ: Google\r\n

\r\nURL
\r\nðÏÓÌÅ ÄÏÂÁ×ÌÅÎÉÑ ÉÍÅÎÉ ÓÓÙÌËÉ, ××ÅÄÉÔÅ URL (uniform resource locator). \r\n
\r\nðÒÉÍÅÒ: http://www.google.com\r\n

\r\näÏÂÁ×ÉÔØ ÒÁÚÒÙ× ÓÔÒÏËÉ?
\r\nåÓÌÉ ×Ù ×ÓÔÁ×ÌÑÅÔÅ ×ÁÛÕ ÓÔÁÔØÀ × ÆÏÒÍÁÔÅ HTML, ÔÏ ÓËÁÖÉÔÅ \"îÅÔ\", Á ÅÓÌÉ ×Ù ÎÅ ÐÏÎÉÍÁÅÔÅ Ï ÞÅÍ ÚÄÅÓØ ÎÁÐÉÓÁÎÏ, ÓËÁÖÉÔÅ \"äÁ\".\r\n

\r\nòÁÚÒÅÛÉÔØ ÏÂÓÕÖÄÅÎÉÅ ÓÔÁÔØÉ?
\r\nåÓÌÉ ×Ù ÏÔ×ÅÔÉÔÅ \"äÁ\", ÔÏ ÌÀÂÏÊ ÐÏÌØÚÏ×ÁÔÅÌØ, ÚÁÛÅÄÛÉÊ ÎÁ ÓÁÊÔ ÓÍÏÖÅÔ ÏÓÔÁ×ÉÔØ ËÏÍÍÅÎÔÁÒÉÊ Ë ×ÁÛÅÊ ÓÔÁÔØÅ.\r\n

\r\næÉÌØÔÒ ÓÏÏÂÝÅÎÉÊ
\r\n÷ÙÂÅÒÉÔÅ ÕÒÏ×ÅÎØ ÆÉÌØÔÒÁÃÉÉ ÐÒÉÓÙÌÁÅÍÙÈ ÓÏÏÂÝÅÎÉÊ.

\r\nëÔÏ ÉÍÅÅÔ ÐÒÁ×Ï ÐÒÉÎÉÍÁÔØ ÕÞÁÓÔÉÅ × ÏÂÓÕÖÄÅÎÉÉ?
\r\n÷ÙÂÅÒÉÔÅ ÇÒÕÐÐÕ ÐÏÌØÚÏ×ÁÔÅÌÅÊ, ËÏÔÏÒÁÑ ÓÍÏÖÅÔ ÐÉÓÁÔØ ËÏÍÍÅÎÔÁÒÉÉ Ë ÓÔÁÔØÉ.\r\n

\r\n÷ÒÅÍÑ ÒÅÄÁËÔÉÒÏ×ÁÎÉÑ
\r\n÷Ù ÍÏÖÅÔÅ ÚÁÄÁÔØ ×ÒÅÍÑ, × ÔÅÞÅÎÉÉ ËÏÔÏÒÏÇÏ ÓÔÁÔØÀ ÍÏÖÎÏ ÒÅÄÁËÔÉÒÏ×ÁÔØ; ÐÏ ÉÓÔÅÞÅÎÉÉ ÜÔÏÇÏ ×ÒÅÍÅÎÉ ÄÏÓÔÕÐ Ë ÒÅÄÁËÔÉÒÏ×ÁÎÉÀ ÓÔÁÔØÉ ÂÕÄÅÔ ÚÁÂÌÏËÉÒÏ×ÁÎ.\r\n

\r\nîÁÂÌÀÄÁÔØ ÚÁ ÏÔÐÒÁ×ËÏÊ
\r\n÷Ù ÍÏÖÅÔÅ ÕËÁÚÁÔØ, ÎÁÄÏ ÌÉ ÎÁÂÌÀÄÁÔØ ÚÁ ÐÏÌØÚÏ×ÁÔÅÌÅÍ.\r\n

\r\nëÔÏ ÉÍÅÅÔ ÐÒÁ×Ï ÍÏÄÅÒÉÒÏ×ÁÔØ?
\r\n÷ÙÂÅÒÉÔÅ ÇÒÕÐÐÕ ËÏÔÏÒÁÑ ÉÍÅÅÔ ÐÒÁ×Ï ÍÏÄÅÒÉÒÏ×ÁÔØ ÏÂÓÕÖÄÅÎÉÅ.\r\n

\r\nôÉÐ ÍÏÄÅÒÉÒÏ×ÁÎÉÑ
\r\núÄÅÓØ ×Ù ÍÏÖÅÔÅ ×ÙÂÒÁÔØ ÔÉÐ ÍÏÄÅÒÉÒÏ×ÁÎÉÑ. âÅÚ ÐÒÅÄ×ÁÒÉÔÅÌØÎÏÇÏ ÐÒÏÓÍÏÔÒÁ ÏÚÎÁÞÁÅÔ, ÞÔÏ ÓÏÏÂÝÅÎÉÑ, ÎÁÐÉÓÁÎÎÙÅ ÐÏÌØÚÏ×ÁÔÅÌÑÍÉ ÐÕÂÌÉËÕÀÔÓÑ ÓÒÁÚÕ.ðÒÅÄ×ÁÒÉÔÅÌØÎÙÊ ÐÒÏÓÍÏÔÒ ÓÏÏÂÝÅÎÉÑ ÏÚÎÁÞÁÅÔ, ÞÔÏ ÍÏÄÅÒÁÔÏÒ ÄÏÌÖÅÎ ÐÒÏÓÍÏÔÒÅÔØ É ÒÁÚÒÅÛÉÔØ ÏÐÕÂÌÉËÏ×ÁÎÉÅ ÐÉÓØÍÁ ÐÅÒÅÄ ÏÐÕÂÌÉËÏ×ÁÎÉÅÍ ÅÇÏ ÎÁ ÓÁÊÔÅ.\r\n

\r\näÏÂÁ×ÉÔØ ÚÁÐÉÓØ Ï ÒÅÄÁËÔÉÒÏ×ÁÎÉÉ?
\r\nåÓÌÉ ÓÔÁÔØÑ ÂÙÌÁ ÍÏÄÉÆÉÃÉÒÏ×ÁÎÁ, ÔÏ ÍÏÖÎÏ ÄÏÂÁ×ÉÔØ \r\n',1048509677,NULL); @@ -8125,65 +7802,50 @@ INSERT INTO international VALUES (13,'Article',21,' INSERT INTO international VALUES (12,'Article',21,'òÅÄÁËÔÉÒÏ×ÁÔØ ÓÔÁÔØÀ',1034227611,NULL); INSERT INTO international VALUES (1,'Article',21,'óÔÁÔØÑ',1034227567,NULL); INSERT INTO international VALUES (10,'Article',21,'äÏÂÁ×ÉÔØ ÒÁÚÒÙ× ÓÔÒÏË?',1034227536,NULL); -INSERT INTO international VALUES (1,'ExtraColumn',21,'äÏÐÏÌÎÉÔÅÌØÎÁÑ ËÏÌÏÎËÁ',1034189690,NULL); INSERT INTO international VALUES (1,'Poll',21,'ïÐÒÏÓ',1034189690,NULL); INSERT INTO international VALUES (1,'SQLReport',21,'SQL-ÚÁÐÒÏÓ',1034189690,NULL); INSERT INTO international VALUES (1,'SyndicatedContent',21,'URL Ë ÆÁÊÌÕ RSS',1034189690,NULL); INSERT INTO international VALUES (1,'WebGUI',21,'äÏÂÁ×ÌÅÎÉÅ ÍÏÄÕÌÑ...',1034189690,NULL); INSERT INTO international VALUES (1,'DataForm',21,'æÏÒÍÁ',1034189690,NULL); INSERT INTO international VALUES (2,'EventsCalendar',21,'ïÒÇÁÎÁÊÚÅÒ',1034189690,NULL); -INSERT INTO international VALUES (2,'FAQ',21,'þÁÓÔÏ ÚÁÄÁ×ÁÅÍÙÅ ×ÏÐÒÏÓÙ',1034189690,NULL); INSERT INTO international VALUES (2,'MessageBoard',21,'æÏÒÕÍ',1034189690,NULL); INSERT INTO international VALUES (2,'SiteMap',21,'ëÁÒÔÁ ÓÁÊÔÁ',1034189690,NULL); INSERT INTO international VALUES (2,'SyndicatedContent',21,' éÎÆÏÒÍÁÃÉÑ Ó ÄÒÕÇÉÈ ÓÁÊÔÏ×',1034189690,NULL); INSERT INTO international VALUES (2,'WebGUI',21,'óÔÒÁÎÉÃÁ',1034189690,NULL); INSERT INTO international VALUES (3,'Article',21,'îÁÞÁÌØÎÁÑ ÄÁÔÁ',1034189690,NULL); -INSERT INTO international VALUES (3,'ExtraColumn',21,'ðÒÏÂÅÌ',1034189690,NULL); -INSERT INTO international VALUES (3,'Item',21,'õÄÁÌÉÔØ ×ÌÏÖÅÎÎÙÊ ÆÁÊÌ',1034189690,NULL); -INSERT INTO international VALUES (3,'LinkList',21,'ïÔËÒÙ×ÁÔØ ÓÓÙÌËÕ × ÎÏ×ÏÍ ÏËÎÅ?',1034189690,NULL); +INSERT INTO international VALUES (92,'USS',21,'ïÔËÒÙ×ÁÔØ ÓÓÙÌËÕ × ÎÏ×ÏÍ ÏËÎÅ?',1034189690,NULL); INSERT INTO international VALUES (3,'Poll',21,'áËÔÉ×ÎÙÅ',1034189690,NULL); INSERT INTO international VALUES (3,'SiteMap',21,'îÁÞÁÌØÎÙÊ ÕÒÏ×ÅÎØ',1041690643,NULL); -INSERT INTO international VALUES (3,'SQLReport',21,'ûÁÂÌÏÎ ÏÔÞÅÔÏ×',1034189690,NULL); -INSERT INTO international VALUES (3,'WebGUI',21,'÷ÓÔÁ×ÉÔØ ÉÚ ÂÕÆÅÒÁ...',1034189690,NULL); INSERT INTO international VALUES (4,'Article',21,'ëÏÎÅÞÎÁÑ ÄÁÔÁ',1034189690,NULL); -INSERT INTO international VALUES (4,'ExtraColumn',21,'ûÉÒÉÎÁ',1034189690,NULL); INSERT INTO international VALUES (4,'Poll',21,'ëÔÏ ÉÍÅÅÔ ÐÒÁ×Ï ÇÏÌÏÓÁ?',1034189690,NULL); INSERT INTO international VALUES (4,'SiteMap',21,'çÌÕÂÉÎÁ ×ÌÏÖÅÎÎÏÓÔÉ',1034189690,NULL); INSERT INTO international VALUES (4,'SQLReport',21,'úÁÐÒÏÓ',1034189690,NULL); INSERT INTO international VALUES (4,'SyndicatedContent',21,'òÅÄÁËÔÉÒÏ×ÁÎÉÅ ÉÎÆÏÒÍÁÃÉÉ Ó ÄÒÕÇÉÈ ÓÁÊÔÏ×',1034189690,NULL); INSERT INTO international VALUES (4,'WebGUI',21,'îÁÓÔÒÏÊËÉ',1034189690,NULL); -INSERT INTO international VALUES (5,'ExtraColumn',21,'ëÌÁÓÓ CSS',1034189690,NULL); -INSERT INTO international VALUES (5,'FAQ',21,'÷ÏÐÒÏÓ',1034189690,NULL); +INSERT INTO international VALUES (85,'USS',21,'÷ÏÐÒÏÓ',1034189690,NULL); INSERT INTO international VALUES (821,'WebGUI',1,'Any',1038432387,NULL); INSERT INTO international VALUES (5,'Poll',21,'ûÉÒÉÎÁ ÇÒÁÆÉËÁ',1034189690,NULL); INSERT INTO international VALUES (5,'SiteMap',21,'òÅÄÁËÔÉÒÏ×ÁÔØ ËÁÒÔÕ ÓÁÊÔÁ',1034189690,NULL); -INSERT INTO international VALUES (5,'SQLReport',21,'DSN',1034189690,NULL); -INSERT INTO international VALUES (6,'ExtraColumn',21,'òÅÄÁËÔÉÒÏ×ÁÔØ ËÏÌÏÎËÕ',1034189690,NULL); -INSERT INTO international VALUES (6,'FAQ',21,'ïÔ×ÅÔ',1034189690,NULL); -INSERT INTO international VALUES (6,'LinkList',21,'óÐÉÓÏË ÓÓÙÌÏË',1034189690,NULL); +INSERT INTO international VALUES (86,'USS',21,'ïÔ×ÅÔ',1034189690,NULL); INSERT INTO international VALUES (6,'MessageBoard',21,'òÅÄÁËÔÉÒÏ×ÁÔØ ÆÏÒÕÍ',1034189690,NULL); INSERT INTO international VALUES (6,'Poll',21,'÷ÏÐÒÏÓ',1034189690,NULL); INSERT INTO international VALUES (6,'SiteMap',21,'ïÔÓÔÕÐ',1034189690,NULL); -INSERT INTO international VALUES (6,'SQLReport',21,'ðÏÌØÚÏ×ÁÔÅÌØ ÂÁÚÙ ÄÁÎÎÙÈ',1034189690,NULL); +INSERT INTO international VALUES (25,'WSClient',1,'There was a problem with the SOAP call: ',1055349116,NULL); INSERT INTO international VALUES (7,'Article',21,'îÁÚ×ÁÎÉÅ ÓÓÙÌËÉ',1034189690,NULL); -INSERT INTO international VALUES (7,'FAQ',21,'õÄÁÌÉÔØ ÜÔÏÔ ×ÏÐÒÏÓ?',1034189690,NULL); INSERT INTO international VALUES (7,'Poll',21,'÷ÁÒÉÁÎÔÙ ÏÔ×ÅÔÏ×',1034189690,NULL); -INSERT INTO international VALUES (7,'SQLReport',21,'ðÁÒÏÌØ Ë ÂÁÚÅ ÄÁÎÎÙÈ',1034189690,NULL); +INSERT INTO international VALUES (1078,'WebGUI',1,'There is already a user of this system with the email address you\'ve entered. Press \"Save\" if you still wish to create this user',1067951807,NULL); INSERT INTO international VALUES (8,'Article',21,'URL',1034189690,NULL); INSERT INTO international VALUES (8,'EventsCalendar',21,'ðÅÒÉÏÄÉÞÎÏÓÔØ ÐÏ×ÔÏÒÅÎÉÊ ÓÏÂÙÔÉÑ',1046342497,NULL); -INSERT INTO international VALUES (8,'FAQ',21,'òÅÄÁËÔÉÒÏ×ÁÔØ ÓÐÉÓÏË ÞÁÓÔÏ ÚÁÄÁ×ÁÅÍÙÈ ×ÏÐÒÏÓÏ×',1034189690,NULL); -INSERT INTO international VALUES (8,'LinkList',21,'URL',1034189690,NULL); +INSERT INTO international VALUES (91,'USS',21,'URL',1034189690,NULL); INSERT INTO international VALUES (8,'SQLReport',21,'òÅÄÁËÔÉÒÏ×ÁÔØ SQL-ÚÁÐÒÏÓ ',1034189690,NULL); INSERT INTO international VALUES (8,'WebGUI',21,'óÔÒÁÎÉÃÁ ÎÅ ÎÁÊÄÅÎÁ.',1034189690,NULL); INSERT INTO international VALUES (9,'Article',21,'÷ÌÏÖÅÎÎÙÊ ÆÁÊÌ',1034189690,NULL); INSERT INTO international VALUES (9,'EventsCalendar',21,'ÄÏ',1034189690,NULL); -INSERT INTO international VALUES (9,'FAQ',21,'äÏÂÁ×ÉÔØ ÎÏ×ÙÊ ×ÏÐÒÏÓ',1034189690,NULL); -INSERT INTO international VALUES (9,'LinkList',21,'õÄÁÌÉÔØ ÜÔÕ ÓÓÙÌËÕ?',1034189690,NULL); +INSERT INTO international VALUES (83,'USS',21,'äÏÂÁ×ÉÔØ ÎÏ×ÙÊ ×ÏÐÒÏÓ',1034189690,NULL); INSERT INTO international VALUES (9,'Poll',21,'òÅÄÁËÔÉÒÏ×ÁÔØ ÇÏÌÏÓÏ×ÁÎÉÅ',1034189690,NULL); -INSERT INTO international VALUES (9,'SQLReport',21,'ïÛÉÂËÁ: DSN ÚÁÐÉÓÁÎ × ÎÅÐÒÁ×ÉÌØÎÏÍ ÆÏÒÍÁÔÅ.',1034189690,NULL); +INSERT INTO international VALUES (1076,'WebGUI',1,'WebGUI Database',1070899134,'A label indicating the the user will be selecting the default WebGUI database.'); INSERT INTO international VALUES (9,'WebGUI',21,'ðÒÏÓÍÏÔÒ ÓÏÄÅÒÖÉÍÏÇÏ ÂÕÆÅÒÁ ÏÂÍÅÎÁ.',1034189690,NULL); -INSERT INTO international VALUES (10,'FAQ',21,'òÅÄÁËÔÉÒÏ×ÁÔØ ×ÏÐÒÏÓ',1034189690,NULL); -INSERT INTO international VALUES (10,'LinkList',21,'òÅÄÁËÔÉÒÏ×ÁÔØ ÓÐÉÓÏË ÓÓÙÌÏË',1034189690,NULL); +INSERT INTO international VALUES (84,'USS',21,'òÅÄÁËÔÉÒÏ×ÁÔØ ×ÏÐÒÏÓ',1034189690,NULL); INSERT INTO international VALUES (10,'Poll',21,'óÂÒÏÓÉÔØ ÒÅÚÕÌØÔÁÔÙ ÇÏÌÏÓÏ×ÁÎÉÑ',1034189690,NULL); INSERT INTO international VALUES (11,'Poll',21,'ðÒÏÇÏÌÏÓÏ×ÁÔØ',1034189690,NULL); INSERT INTO international VALUES (10,'SQLReport',21,'ïÛÉÂËÁ: ÎÅÐÒÁ×ÉÌØÎÙÊ ÆÏÒÍÁÔ SQL-ÚÁÐÒÏÓÁ.',1034189690,NULL); @@ -8192,7 +7854,7 @@ INSERT INTO international VALUES (1022,'WebGUI',1,'Subscribe to discussion',1065 INSERT INTO international VALUES (11,'SQLReport',21,'ïÛÉÂËÁ: ÐÒÏÂÌÅÍÙ Ó ×ÁÛÉÍ ÚÁÐÒÏÓÏÍ.',1034189690,NULL); INSERT INTO international VALUES (11,'WebGUI',21,'ïÞÉÓÔÉÔØ ËÏÒÚÉÎÕ',1034189690,NULL); INSERT INTO international VALUES (12,'EventsCalendar',21,'ïÒÇÁÎÁÊÚÅÒ',1046341762,NULL); -INSERT INTO international VALUES (12,'LinkList',21,'òÅÄÁËÔÉÒÏ×ÁÔØ ÓÓÙÌËÕ',1034189690,NULL); +INSERT INTO international VALUES (90,'USS',21,'òÅÄÁËÔÉÒÏ×ÁÔØ ÓÓÙÌËÕ',1034189690,NULL); INSERT INTO international VALUES (12,'SQLReport',21,'ïÛÉÂËÁ: ÎÅ ÍÏÇÕ ÓÏÅÄÉÎÉÔØÓÑ Ó ÂÁÚÏÊ.',1034189690,NULL); INSERT INTO international VALUES (12,'WebGUI',21,'õÂÒÁÔØ ÐÁÎÅÌØ ÕÐÒÁ×ÌÅÎÉÑ',1034189690,NULL); INSERT INTO international VALUES (13,'EventsCalendar',21,'òÅÄÁËÔÏÒ ÓÏÂÙÔÉÊ',1046341870,NULL); @@ -8219,7 +7881,6 @@ INSERT INTO international VALUES (30,'WebGUI',21,' INSERT INTO international VALUES (31,'WebGUI',21,'þÅÔ×ÅÒÇ',1034189690,NULL); INSERT INTO international VALUES (32,'WebGUI',21,'ðÑÔÎÉÃÁ',1034189690,NULL); INSERT INTO international VALUES (33,'WebGUI',21,'óÕÂÂÏÔÁ',1034189690,NULL); -INSERT INTO international VALUES (34,'WebGUI',21,'õÓÔÁÎÏ×ÉÔØ ÄÁÔÕ',1034189690,NULL); INSERT INTO international VALUES (35,'WebGUI',21,'æÕÎËÃÉÉ ÕÐÒÁ×ÌÅÎÉÑ',1034189690,NULL); INSERT INTO international VALUES (36,'WebGUI',21,'üÔÕ ÆÕÎËÃÉÀ ÍÏÖÅÔ ×ÙÐÏÌÎÉÔØ ÔÏÌØËÏ ÁÄÍÉÎÉÓÔÒÁÔÏÒ ÓÉÓÔÅÍÙ. óÐÉÓÏË ÁÄÍÉÎÉÓÔÒÁÔÏÒÏ×:',1034189690,NULL); INSERT INTO international VALUES (37,'WebGUI',21,'äÏÓÔÕÐ ÚÁÐÒÅÝÅÎ!',1034189690,NULL); @@ -8298,10 +7959,6 @@ INSERT INTO international VALUES (146,'WebGUI',21,' INSERT INTO international VALUES (147,'WebGUI',21,'óÔÒÁÎÉÃÙ',1034189690,NULL); INSERT INTO international VALUES (148,'WebGUI',21,'íÏÄÕÌÉ',1045500224,NULL); INSERT INTO international VALUES (149,'WebGUI',21,'ðÏÌØÚÏ×ÁÔÅÌÉ',1034189690,NULL); -INSERT INTO international VALUES (151,'WebGUI',21,'îÁÚ×ÁÎÉÅ ÇÒÁÆÉÞÅÓËÏÊ ÏÂÏÌÏÞËÉ',1036151718,NULL); -INSERT INTO international VALUES (154,'WebGUI',21,'CSS',1034189690,NULL); -INSERT INTO international VALUES (155,'WebGUI',21,'õÄÁÌÉÔØ ÜÔÕ ÇÒÁÆÉÞÅÓËÕÀ ÏÂÏÌÏÞËÕ? (÷ÓÅ ÓÔÒÁÎÉÃÙ, ËÏÔÏÒÙÅ ÉÓÐÏÌØÚÕÀÔ ÜÔÏÔ ÓÔÉÌØ ÂÕÄÕÔ ÏÔÏÂÒÁÖÅÎÙ × ÓÔÉÌÅ \"Fail Safe\") ',1034189690,NULL); -INSERT INTO international VALUES (156,'WebGUI',21,'òÅÄÁËÔÏÒ ÇÒÁÆÉÞÅÓËÏÊ ÏÂÏÌÏÞËÉ',1042472648,NULL); INSERT INTO international VALUES (159,'WebGUI',21,'÷ÈÏÄÑÝÉÅ ÓÏÏÂÝÅÎÉÑ',1034189690,NULL); INSERT INTO international VALUES (160,'WebGUI',21,'äÁÔÁ ÐÒÉÓÙÌËÉ',1034189690,NULL); INSERT INTO international VALUES (161,'WebGUI',21,'ðÒÉÓÌÁÌ(Á)',1034189690,NULL); @@ -8370,25 +8027,20 @@ INSERT INTO international VALUES (350,'WebGUI',21,' INSERT INTO international VALUES (351,'WebGUI',21,'óÏÏÂÝÅÎÉÅ',1034189690,NULL); INSERT INTO international VALUES (352,'WebGUI',21,'äÁÔÁ ×ÈÏÄÁ',1034189690,NULL); INSERT INTO international VALUES (353,'WebGUI',21,'õ ×ÁÓ ÎÅÔ ×ÈÏÄÑÝÉÈ ÓÏÏÂÝÅÎÉÊ.',1034189690,NULL); -INSERT INTO international VALUES (803,'WebGUI',21,'òÅÄÁËÔÉÒÏ×ÁÔØ ÛÁÂÌÏÎ',1042133497,NULL); INSERT INTO international VALUES (471,'WebGUI/Profile',21,'òÅÄÁËÔÉÒÏ×ÁÔØ ÐÏÌÅ × ÉÎÆÏÒÍÁÃÉÉ Ï ÐÏÌØÚÏ×ÁÔÅÌÅ',1034189690,NULL); INSERT INTO international VALUES (355,'WebGUI',21,'ðÏ ÕÍÏÌÞÁÎÉÀ',1034189690,NULL); INSERT INTO international VALUES (356,'WebGUI',21,'ûÁÂÌÏÎ',1034189690,NULL); INSERT INTO international VALUES (358,'WebGUI',21,'ìÅ×ÁÑ ËÏÌÏÎËÁ',1034189690,NULL); INSERT INTO international VALUES (359,'WebGUI',21,'ðÒÁ×ÁÑ ËÏÌÏÎËÁ',1034189690,NULL); -INSERT INTO international VALUES (365,'WebGUI',21,'òÅÚÕÌØÔÁÔÙ ÐÏÉÓËÁ',1034189690,NULL); -INSERT INTO international VALUES (366,'WebGUI',21,'ðÏ ×ÁÛÅÍÕ ÚÁÐÒÏÓÕ ÎÅ ÎÁÊÄÅÎÏ ÎÉ ÏÄÎÏÊ ÓÔÒÁÎÉÃÙ.',1034189690,NULL); INSERT INTO international VALUES (369,'WebGUI',21,'äÁÔÁ ÏËÏÎÞÁÎÉÑ',1034189690,NULL); INSERT INTO international VALUES (370,'WebGUI',21,'òÅÄÁËÔÉÒÏ×ÁÔØ ÇÒÕÐÐÕ',1034189690,NULL); INSERT INTO international VALUES (372,'WebGUI',21,'òÅÄÁËÔÉÒÏ×ÁÔØ ÐÏÌØÚÏ×ÁÔÅÌØÓËÕÀ ÇÒÕÐÐÕ',1034189690,NULL); -INSERT INTO international VALUES (375,'WebGUI',21,'÷ÙÂÅÒÉÔÅ ÐÁËÅÔ ÄÌÑ ÒÁÓÐÁËÏ×ËÉ',1034189690,NULL); INSERT INTO international VALUES (376,'WebGUI',21,'ðÁËÅÔÙ',1034189690,NULL); -INSERT INTO international VALUES (377,'WebGUI',21,'ðÁËÅÔÏ× ÎÅÔ.',1034189690,NULL); +INSERT INTO international VALUES (1083,'WebGUI',1,'New Content',1076866510,'A label for adding new wobjects that users can understand.'); INSERT INTO international VALUES (378,'WebGUI',21,'ID ÐÏÌØÚÏ×ÁÔÅÌÑ',1034189690,NULL); INSERT INTO international VALUES (379,'WebGUI',21,'ID ÇÒÕÐÐÙ',1034189690,NULL); -INSERT INTO international VALUES (380,'WebGUI',21,'ID ÓÔÉÌÑ',1034189690,NULL); INSERT INTO international VALUES (381,'WebGUI',21,'ðÏÌÕÞÅÎ ÎÅÐÒÁ×ÉÌØÎÙÊ ÚÁÐÒÏÓ.îÁÖÍÉÔÅ ÎÁ ËÎÏÐËÕ \"îÁÚÁÄ\" É ÐÏÐÒÏÂÕÊÔÅ ÅÝÅ ÒÁÚ.',1034189690,NULL); -INSERT INTO international VALUES (13,'SQLReport',21,'äÏÂÁ×ÉÔØ ÒÁÚÒÙ× ÓÔÒÏËÉ?',1034189690,NULL); +INSERT INTO international VALUES (87,'Survey',1,'Click here to start a new response.',1075639972,'A label indicating that the user could start a new survey/quiz response by clicking.'); INSERT INTO international VALUES (14,'EventsCalendar',21,'äÁÔÁ ÎÁÞÁÌÁ',1034189690,NULL); INSERT INTO international VALUES (15,'EventsCalendar',21,'äÁÔÁ ÏËÏÎÞÁÎÉÑ',1034189690,NULL); INSERT INTO international VALUES (14,'SQLReport',21,'íÁËÓÉÍÁÌØÎÏÅ ËÏÌÉÞÅÓÔ×Ï ÓÔÒÏË ÎÁ ÏÄÎÏÊ ÓÔÒÁÎÉÃÅ',1034189690,NULL); @@ -8414,7 +8066,7 @@ INSERT INTO international VALUES (411,'WebGUI',21,' INSERT INTO international VALUES (823,'WebGUI',1,'Go to the new page.',1038706332,NULL); INSERT INTO international VALUES (24,'Article',21,'îÁÐÉÓÁÔØ ÏÔ×ÅÔ',1034189690,NULL); INSERT INTO international VALUES (28,'Article',21,'ðÏÓÍÏÔÒÅÔØ ÏÔ×ÅÔÙ',1034189690,NULL); -INSERT INTO international VALUES (416,'WebGUI',21,'

ðÒÏÂÌÅÍÁ Ó ÚÁÐÒÏÓÏÍ

îÁÖÍÉÔÅ ËÎÏÐËÕ \"îÁÚÁÄ\" É ÐÏ×ÔÏÒÉÔÅ ÚÁÐÒÏÓ ÓÎÏ×Á.',1034189690,NULL); +INSERT INTO international VALUES (958,'WebGUI',16,'Schowek jest specjalnym miejscem w systemie do którego tre¶æ a nawet ca³e modu³y tre¶ci mog± byæ tymczasowo skopiowane lub przeniesione. Elementy umieszczone w schowku mog± byæ nastêpnie wklejone w nowej lokalizacji.\r\n

\r\nZawarto¶æ schowka mo¿e byæ zarz±dzana indywidualnie. Mo¿esz usun±æ lub wkleiæ dany element wybieraj±c w³a¶ciw± ikonê operacji. Mo¿esz tak¿e zupe³nie wyczy¶ciæ schowek przenosz±c jego zawarto¶æ do kosza - wybieraj±c z menu opcjê Wyczy¶æ Schowek.\r\n

\r\nTytu³
\r\nNazwa elementu w schowku. Mo¿esz wybraæ element klikaj±c na jego nazwê.\r\n

\r\nTyp
\r\nTyp elementu. Na przyk³ad Strona, Artyku³, Kalendarz itd.\r\n

\r\nData
\r\nData i czas umieszczenia elementu w schowku.\r\n

\r\nPoprzednia lokalizacja
\r\nMiejsce serwisu w którym dany element dot±d siê znajdowa³. Mo¿esz obejrzeæ poprzedni± lokalizacjê wybieraj±c ten link.\r\n

\r\nU¿ytkownik
\r\nLogin u¿ytkownika który umie¶ci³ element w schowku. To opcjonalne pole jest widoczne tylko gdy schowek jest wspó³dzielony lub gdy administrator zarz±dza jego zawarto¶ci±.',1076561160,NULL); INSERT INTO international VALUES (417,'WebGUI',21,'

îÁÒÕÛÅÎÉÅ ÐÒÁ×ÉÌ ÂÅÚÏÐÁÓÎÏÓÔÉ

÷Ù ÐÙÔÁÅÔÅÓØ ÐÏÌÕÞÉÔØ ÄÏÓÔÕÐ Ë ÍÏÄÕÌÀ, ÎÅ ÐÒÉÎÁÄÌÅÖÁÝÅÍÕ ÜÔÏÊ ÓÔÒÁÎÉÃÅ.',1037084777,NULL); INSERT INTO international VALUES (418,'WebGUI',21,'æÉÌØÔÒ ÄÌÑ HTML-ËÏÄÁ',1048515643,NULL); INSERT INTO international VALUES (421,'WebGUI',21,'ÏÓÔÁ×ÉÔØ ÐÒÏÓÔÏÅ ÆÏÒÍÁÔÉÒÏ×ÁÎÉÅ.',1048515762,NULL); @@ -8475,11 +8127,9 @@ INSERT INTO international VALUES (497,'WebGUI',21,' INSERT INTO international VALUES (498,'WebGUI',21,'äÁÔÁ ÏËÏÎÞÁÎÉÑ',1034189690,NULL); INSERT INTO international VALUES (499,'WebGUI',21,'ID ÍÏÄÕÌÑ',1037084820,NULL); INSERT INTO international VALUES (500,'WebGUI',21,'ID ÓÔÒÁÎÉÃÙ',1034189690,NULL); -INSERT INTO international VALUES (501,'WebGUI',21,'óÏÄÅÒÖÁÎÉÅ',1034189690,NULL); INSERT INTO international VALUES (578,'WebGUI',21,'õ ×ÁÓ ÅÓÔØ ÓÏÏÂÝÅÎÉÅ, ÎÁÈÏÄÑÝÅÅÓÑ × ÏÖÉÄÁÎÉÉ ÐÏÄÔ×ÅÒÖÄÅÎÉÑ.',1036499843,NULL); INSERT INTO international VALUES (468,'WebGUI/Profile',21,'òÅÄÁËÔÉÒÏ×ÁÔØ ËÁÔÅÇÏÒÉÀ × ÉÎÆÏÒÍÁÃÉÉ Ï ÐÏÌØÚÏ×ÁÔÅÌÅ',1034189690,NULL); INSERT INTO international VALUES (508,'WebGUI',21,'ûÁÂÌÏÎÙ',1036492586,NULL); -INSERT INTO international VALUES (11,'FAQ',21,'äÏÂÁ×ÉÔØ ÓÏÄÅÒÖÁÎÉÅ?',1034189690,NULL); INSERT INTO international VALUES (509,'WebGUI',21,'÷ÎÅÛÎÉÊ ×ÉÄ ÏÂÓÕÖÄÅÎÉÑ',1034189690,NULL); INSERT INTO international VALUES (514,'WebGUI',21,'ëÏÌÉÞÅÓÔ×Ï ÐÒÏÓÍÏÔÒÏ×',1034189690,NULL); INSERT INTO international VALUES (518,'WebGUI',21,'÷ÈÏÄÑÝÉÅ ÓÏÏÂÝÅÎÉÑ',1034189690,NULL); @@ -8503,7 +8153,6 @@ INSERT INTO international VALUES (552,'WebGUI',21,' INSERT INTO international VALUES (553,'WebGUI',21,'óÔÁÔÕÓ',1034189690,NULL); INSERT INTO international VALUES (556,'WebGUI',21,'ëÏÌÉÞÅÓÔ×Ï',1034189690,NULL); INSERT INTO international VALUES (557,'WebGUI',21,'ïÐÉÓÁÎÉÅ',1034189690,NULL); -INSERT INTO international VALUES (6,'Item',21,'òÅÄÁËÔÉÒÏ×ÁÎÉÅ ÓÓÙÌËÉ ÎÁ ÄÏËÕÍÅÎÔ',1034189690,NULL); INSERT INTO international VALUES (559,'WebGUI',21,'òÅÇÉÓÔÒÁÃÉÑ',1034189690,NULL); INSERT INTO international VALUES (581,'WebGUI',21,'äÏÂÁ×ÉÔØ ÎÏ×ÏÅ ÚÎÁÞÅÎÉÅ',1034189690,NULL); INSERT INTO international VALUES (582,'WebGUI',21,'ïÓÔÁ×ÉÔØ ÐÕÓÔÙÍ',1034189690,NULL); @@ -8541,19 +8190,15 @@ INSERT INTO international VALUES (24,'DataForm',21,' INSERT INTO international VALUES (25,'DataForm',21,'úÎÁÞÅÎÉÅ ÐÏ ÕÍÏÌÞÁÎÉÀ (ÏÐÃÉÏÎÁÌØÎÏ)',1034189690,NULL); INSERT INTO international VALUES (945,'WebGUI',1,'Scratch Filter',1052560369,'There is a type of session variable called a \"scratch\" variable. So a scratch filter allows you to add someone to a group based upon a scratch variable.'); INSERT INTO international VALUES (642,'WebGUI',21,'óÔÒÁÎÉÃÁ (ÄÏÂÁ×ÌÅÎÉÅ/ÒÅÄÁËÔÉÒÏ×ÁÎÉÅ)',1042132791,NULL); -INSERT INTO international VALUES (61,'Item',21,'óÓÙÌËÁ ÎÁ ÄÏËÕÍÅÎÔ (ÄÏÂÁ×ÌÅÎÉÅ/ÒÅÄÁËÔÉÒÏ×ÁÎÉÅ)',1041688165,NULL); -INSERT INTO international VALUES (61,'FAQ',21,'þÁÓÔÏ ÚÁÄÁ×ÁÅÍÙÅ ×ÏÐÒÏÓÙ (ÄÏÂÁ×ÌÅÎÉÅ/ÒÅÄÁËÔÉÒÏ×ÁÎÉÅ)',1041687588,NULL); INSERT INTO international VALUES (61,'SyndicatedContent',21,'éÎÆÏÒÍÁÃÉÑ Ó ÄÒÕÇÉÈ ÓÁÊÔÏ× (ÄÏÂÁ×ÌÅÎÉÅ/ÒÅÄÁËÔÉÒÏ×ÁÎÉÅ)',1048510340,NULL); INSERT INTO international VALUES (61,'EventsCalendar',21,'ïÒÇÁÎÁÊÚÅÒ (ÄÏÂÁ×ÌÅÎÉÅ/ÒÅÄÁËÔÉÒÏ×ÁÎÉÅ)',1041683121,NULL); -INSERT INTO international VALUES (61,'LinkList',21,'óÐÉÓÏË ÓÓÙÌÏË (ÄÏÂÁ×ÌÅÎÉÅ/ÒÅÄÁËÔÉÒÏ×ÁÎÉÅ)',1041688304,NULL); -INSERT INTO international VALUES (61,'ExtraColumn',21,'äÏÐÏÌÎÉÔÅÌØÎÁ ËÏÌÏÎËÁ (ÄÏÂÁ×ÌÅÎÉÅ/ÒÅÄÁËÔÉÒÏ×ÁÎÉÅ)',1041684269,NULL); INSERT INTO international VALUES (61,'Poll',21,'çÏÌÏÓÏ×ÁÎÉÅ (ÄÏÂÁ×ÌÅÎÉÅ/ÒÅÄÁËÔÉÒÏ×ÁÎÉÅ)',1034189690,NULL); INSERT INTO international VALUES (61,'SiteMap',21,'ëÁÒÔÁ ÓÁÊÔÁ (ÄÏÂÁ×ÌÅÎÉÅ/ÒÅÄÁËÔÉÒÏ×ÁÎÉÅ)',1041690702,NULL); INSERT INTO international VALUES (61,'SQLReport',21,'SQL-ÚÁÐÒÏÓ (ÄÏÂÁ×ÌÅÎÉÅ/ÒÅÄÁËÔÉÒÏ×ÁÎÉÅ)',1034189690,NULL); INSERT INTO international VALUES (62,'DataForm',21,'ðÏÌÑ ÆÏÒÍÙ (ÄÏÂÁ×ÌÅÎÉÅ/ÒÅÄÁËÔÉÒÏ×ÁÎÉÅ)',1041688800,NULL); INSERT INTO international VALUES (71,'SyndicatedContent',21,'ðÒÉ ÐÏÍÏÝÉ ÜÔÏÇÏ ÍÏÄÕÌÑ ×Ù ÍÏÖÅÔÅ ÉÓÐÏÌØÚÏ×ÁÔØ ÉÎÆÏÒÍÁÃÉÀ, ÒÁÚÍÅÝÅÎÎÕÀ ÎÁ ÄÒÕÇÉÈ ÓÁÊÔÁÈ ÉÓÐÏÌØÚÕÑ RDF/RSS.\r\n

\r\n\r\nURL Ë ÆÁÊÌÕ RSS
\r\n÷×ÅÄÉÔÅ ÔÏÞÎÙÊ URL (ÎÁÞÉÎÁÑ Ó http://) Ë ÆÁÊÌÕ RDF ÉÌÉ RSS. éÎÆÏÒÍÁÃÉÑ Ó ×ÙÂÒÁÎÎÏÇÏ ÓÁÊÔÁ ÂÕÄÅÔ ÓËÁÞÉ×ÁÔØÓÑ ËÁÖÄÙÊ ÞÁÓ.\r\n

\r\nûÁÂÌÏÎ
\r\n÷ÙÂÅÒÉÔÅ ÛÁÂÌÏÎ ÄÌÑ ÍÏÄÕÌÑ ÓÂÏÒÁ ÉÎÆÏÒÍÁÃÉÉ.',1048510491,NULL); INSERT INTO international VALUES (71,'MessageBoard',21,'ëÏÌÉÞÅÓÔ×Ï ÓÏÏÂÝÅÎÉÊ ÎÁ ÓÔÒÁÎÉÃÅ
\r\nëÏÇÄÁ ÐÏÓÅÔÉÔÅÌØ ×ÐÅÒ×ÙÅ ÚÁÈÏÄÉÔ ÎÁ ÓÁÊÔ, ÏÎ ÓÍÏÖÅÔ ÐÒÏÓÍÏÔÒÅÔØ ÓÐÉÓÏË ×ÓÅÈ ÓÏÏÂÝÅÎÉÊ ÆÏÒÕÍÁ. úÁÄÁ×ÁÑ ÍÁËÓÉÍÁÌØÎÏ ËÏÌÉÞÅÓÔ×Ï ÓÏÏÂÝÅÎÉÊ ÎÁ ÏÄÎÏÊ ÓÔÒÁÎÉÃÅ ×Ù ÍÏÖÅÔÅ ÕÐÒÁ×ÌÑÔØ ×ÎÅÛÎÉÍ ×ÉÄÏÍ ÆÏÒÕÍÁ.\r\n

\r\nçÌÁ×ÎÙÊ ÛÁÂÌÏÎ
\r\n÷ÙÂÅÒÉÔÅ ÛÁÂÌÏÎ, ÏÐÒÅÄÅÌÑÀÝÉÊ ×ÎÅÛÎÉÊ ×ÉÄ ÆÏÒÕÍÁ. \r\n

\r\n

\r\næÉÌØÔÒ ÓÏÏÂÝÅÎÉÊ
\r\n÷ÙÂÅÒÉÔÅ ÕÒÏ×ÅÎØ ÆÉÌØÔÒÁÃÉÉ ÔÅËÓÔÏ× ÓÏÏÂÝÅÎÉÊ.

\r\nëÔÏ ÉÍÅÅÔ ÐÒÁ×Ï ÐÒÉÎÉÍÁÔØ ÕÞÁÓÔÉÅ × ÏÂÓÕÖÄÅÎÉÉ?
\r\n÷ÙÂÅÒÉÔÅ ÇÒÕÐÐÕ ÐÏÌØÚÏ×ÁÔÅÌÅÊ, ËÏÔÏÒÏÊ ÂÕÄÅÔ ÐÏÚ×ÏÌÅÎÏ ÏÔÐÒÁ×ÌÑÔØ ÓÏÏÂÝÅÎÉÑ.\r\n\r\n

\r\n÷ÒÅÍÑ ÒÅÄÁËÔÉÒÏ×ÁÎÉÑ
\r\n÷ÒÅÍÑ, ÏÔ×ÅÄÅÎÎÏÅ ÄÌÑ ÒÅÄÁËÔÉÒÏ×ÁÎÉÑ ÓÏÏÂÝÅÎÉÑ; ÐÏ ÉÓÔÅÞÅÎÉÀ ÜÔÏÇÏ ×ÒÅÍÅÎÉ ÒÅÄÁËÔÉÒÏ×ÁÎÉÅ ÂÕÄÅÔ ÚÁÂÌÏËÉÒÏ×ÁÎÏ.\r\n
\r\n÷ÎÉÍÁÎÉÅ: üÔÁ ÏÐÃÉÑ ××ÅÄÅÎÁ ÄÌÑ ÏÂÅÓÐÅÞÅÎÉÑ ÂÅÚÏÐÁÓÎÏÓÔÉ.\r\n

\r\nîÁÂÌÀÄÅÎÉÅ ÚÁ ÏÔÐÒÁ×ËÏÊ
\r\nïÐÃÉÑ ÐÏÚ×ÏÌÑÅÔ ÎÁÂÌÀÄÁÔØ ÚÁ ÄÅÊÓÔ×ÉÑÍÉ ÐÏÌØÚÏ×ÁÔÅÌÅÊ.\r\n

\r\nëÔÏ ÉÍÅÅÔ ÐÒÁ×Ï ÍÏÄÅÒÉÒÏ×ÁÔØ?
\r\núÄÅÓØ ×Ù ÍÏÖÅÔÅ ×ÙÂÒÁÔØ ÇÒÕÐÐÕ, ËÏÔÏÒÏÊ ÂÕÄÅÔ ÐÏÚ×ÏÌÅÎÏ ÎÁÂÌÀÄÁÔØ ÚÁ ÈÏÄÏÍ ÏÂÓÕÖÄÅÎÉÑ.\r\n

\r\nôÉÐ ÍÏÄÅÒÉÒÏ×ÁÎÉÑ.
\r\nÂÅÚ ÐÒÏÓÍÏÔÒÁ ÏÚÎÁÞÁÅÔ, ÞÔÏ ÓÏÏÂÝÅÎÉÅ ÏÔÐÒÁ×ÌÅÎÎÏÊ ÐÏÌØÚÏ×ÁÔÅÌÅÍ ÎÅÍÅÄÌÅÎÎÏ ÐÕÂÌÉËÕÅÔÓÑ ÎÁ ÓÁÊÔÅ. ðÒÅÄ×ÁÒÉÔÅÌØÎÙÊ ÐÒÏÓÍÏÔÒ ÓÏÏÂÝÅÎÉÑ ÏÚÎÁÞÁÅÔ, ÞÔÏ ÐÅÒÅÄ ÐÕÂÌÉËÁÃÉÅÊ ÎÁ ÓÁÊÔÅ ÍÏÄÅÒÁÔÏÒ ÐÒÏÓÍÁÔÒÉ×ÁÅÔ ÓÏÏÂÝÅÎÉÑ, É ÔÏÌØËÏ ÐÏÓÌÅ ÅÇÏ ÒÁÚÒÅÛÅÎÉÑ ÓÏÏÂÝÅÎÉÅ ÐÕÂÌÉËÕÅÔÓÑ ÎÁ ÓÁÊÔÅ.\r\n',1048509829,NULL); -INSERT INTO international VALUES (71,'LinkList',21,'ðÏÚ×ÏÌÑÅÔ Á×ÔÏÍÁÔÉÚÉÒÏ×ÁÔØ ÐÒÏÃÅÓÓ ÄÏÂÁ×ÌÅÎÉÑ ÓÓÙÌÏË ÎÁ ÓÁÊÔ.\r\n

\r\nûÁÂÌÏÎ
\r\n÷ÙÂÅÒÉÔÅ ×ÎÅÛÎÉÊ ×ÉÄ ÍÏÄÕÌÑ.\r\n

\r\nóÌÅÄÕÀÝÅÅ ÄÅÊÓÔ×ÉÅ
',1041688386,NULL); +INSERT INTO international VALUES (29,'IndexedSearch',1,'Search template',1070202588,''); INSERT INTO international VALUES (855,'WebGUI',21,'óÐÉÓÏË ÛÁÂÌÏÎÏ×',1041679407,NULL); INSERT INTO international VALUES (854,'WebGUI',21,'óÐÉÓÏË ×ÓÅÈ ÛÁÂÌÏÎÏ×',1041679264,NULL); INSERT INTO international VALUES (853,'WebGUI',21,'õÄÁÌÉÔØ ÛÁÂÌÏÎ',1041679018,NULL); @@ -8561,10 +8206,10 @@ INSERT INTO international VALUES (852,'WebGUI',21,' INSERT INTO international VALUES (851,'WebGUI',21,'òÅÄÁËÔÉÒÏ×ÁÔØ ÛÁÂÌÏÎ',1041678870,NULL); INSERT INTO international VALUES (848,'WebGUI',21,'ïÛÉÂËÁ ÓÉÎÔÁËÓÉÓÁ × ÛÁÂÌÏÎÅ!',1041678800,NULL); INSERT INTO international VALUES (847,'WebGUI',21,'÷ÅÒÎÕÔØÓÑ ÎÁ ÔÅËÕÝÕÀ ÓÔÒÁÎÉÃÕ',1041678676,NULL); -INSERT INTO international VALUES (71,'ExtraColumn',21,'äÏÂÁ×ÌÅÎÉÅ ÎÏ×ÏÊ ËÏÌÏÎËÉ ÐÏÚ×ÏÌÑÅÔ ÉÚÍÅÎÉÔØ ×ÎÅÛÎÉÊ ×ÉÄ ÔÏÌØËÏ ÔÅËÕÝÅÊ ÓÔÒÁÎÉÃÙ. åÓÌÉ ×Ù ÈÏÔÉÔÅ ÉÚÍÅÎÉÔØ ×ÎÅÛÎÉÊ ×ÉÄ ×ÓÅÈ ÓÔÒÁÎÉà ÓÁÊÔÁ, ×ÁÍ ÎÅÏÂÈÏÄÉÍÏ ÉÚÍÅÎÉÔØ ÓÔÉÌØ ÓÁÊÔÁ ÃÅÌÉËÏÍ ÉÓÐÏÌØÚÕÑ ÛÁÂÌÏÎ ×ÍÅÓÔÏ ÄÏÂÁ×ÌÅÎÉÑ ËÏÌÏÎËÉ. \r\n

\r\nëÏÌÏÎËÉ ×ÓÅÇÄÁ ÄÏÂÁ×ÌÑÀÔÓÑ ÓÌÅ×Á ÎÁÐÒÁ×Ï. ðÏÜÔÏÍÕ ÓÕÝÅÓÔ×ÕÀÝÅÅ ÎÁÐÏÌÎÅÎÉÅ ÓÔÒÁÎÉà ÏËÁÖÅÔÓÑ ÓÌÅ×Á ÏÔ ÎÏ×ÏÊ ËÏÌÏÎËÉ.\r\n

\r\nðÒÏÂÅÌ
\r\níÅÎÑÑ ÚÎÁÞÅÎÉÅ ÐÒÏÂÅÌÁ ×Ù ÍÏÖÅÔÅ ÉÚÍÅÎÑÔØ ÐÒÏÍÅÖÕÔÏË ÍÅÖÄÕ ÓÕÝÅÓÔ×ÕÀÝÉÍ ÎÁÐÏÌÎÅÎÉÅÍ É ÄÏÂÁ×ÌÅÎÎÏÊ ËÏÌÏÎËÏÊ. úÎÁÞÅÎÉÅ ÐÒÏÂÅÌÁ × ÐÉËÓÅÌÁÈ.\r\n

\r\nûÉÒÉÎÁ
\r\n÷Ù ÍÏÖÅÔÅ ÕËÁÚÁÔØ ÛÉÒÉÎÕ ÎÏ×ÏÊ ËÏÌÏÎËÉ × ÐÉËÓÅÌÁÈ.\r\n

\r\nCSS
\r\nðÏ ÕÍÏÌÞÁÎÉÀ ËÏ ×ÓÅÍ ÄÏÂÁ×ÌÑÅÍÙÍ ËÏÌÏÎËÁÍ ÐÒÉÍÅÎÑÅÔÓÑ ÔÏÔ ÖÅ ÓÔÉÌØ, ËÏÔÏÒÙÊ ÉÍÅÅÔ ÓÔÒÁÎÉÃÁ. îÏ ÅÓÌÉ ×Ù ÈÏÔÉÔÅ, ÞÔÏÂÙ ËÏÌÏÎËÁ ÉÍÅÌÁ ÄÒÕÇÏÊ ÓÔÉÌØ, ×Ù ÍÏÖÅÔÅ ÅÇÏ ÉÚÍÅÎÉÔØ.\r\n',1041684375,NULL); +INSERT INTO international VALUES (1091,'WebGUI',1,'Statistical Overview Report Template',1078517114,NULL); +INSERT INTO international VALUES (1092,'WebGUI',1,'The following are the variables available in this template:\r\n

\r\n\r\ntitle
\r\nThe default title for this report.\r\n

\r\n\r\nanswer.label
\r\nThe default label for answer_loop.\r\n

\r\n\r\nresponse.count.label
\r\nThe default label for response.count.\r\n

\r\n\r\nresponse.percent.label
\r\nThe default label for response.percent.\r\n

\r\n\r\nshow.responses.label
\r\nThe default label that will display responses.\r\n

\r\n\r\nshow.comments.label
\r\nThe default label that will display comments.\r\n

\r\n\r\nquestion_loop
\r\nA loop containing questions.\r\n

\r\n\r\n

\r\n\r\nquestion
\r\nThe question itself.\r\n

\r\n\r\nquestion.id
\r\nThe unique identifier for this question.\r\n

\r\n\r\nquestion.isRadioList
\r\nA boolean indicating whether the answer for this question is a radio list.\r\n

\r\n\r\nquestion.response.total
\r\nThe total number of responses for this answer.\r\n

\r\n\r\nquestion.allowComment
\r\nA boolean indicating whether this question allows comments.\r\n

\r\n\r\nanswer_loop
\r\nA loop containing the answers and responses for this question.\r\n

\r\n

\r\n\r\nanswer.isCorrect
\r\nA boolean indicating whether this answer is marked correct.\r\n

\r\n\r\nanswer
\r\nThe answer itself.\r\n

\r\n\r\nanswer.response.count
\r\nThe total number of responses given for this answer.\r\n

\r\n\r\nanswer.response.percent
\r\nThe percent of responses to this question that went to this answer.\r\n

\r\n\r\n\r\ncomment_loop
\r\nA loop that contains all of the comments for this answer.\r\n

\r\n\r\n

\r\nanswer.comment
\r\nA comment.\r\n

\r\n\r\n\r\n

\r\n\r\n
\r\n\r\n\r\n
',1078517114,NULL); INSERT INTO international VALUES (670,'WebGUI',21,'çÒÁÆÉÞÅÓËÉÊ ÆÁÊÌ (ÄÏÂÁ×ÌÅÎÉÅ/ÒÅÄÁËÔÉÒÏ×ÁÎÉÅ)',1042132839,NULL); INSERT INTO international VALUES (72,'EventsCalendar',21,'óÏÂÙÔÉÅ (ÄÏÂÁ×ÌÅÎÉÅ/ÒÅÄÁËÔÉÒÏ×ÁÎÉÅ)',1041684015,NULL); -INSERT INTO international VALUES (72,'FAQ',21,'÷ÏÐÒÏÓ (ÄÏÂÁ×ÌÅÎÉÅ/ÒÅÄÁËÔÉÒÏ×ÁÎÉÅ)',1041687982,NULL); INSERT INTO international VALUES (697,'WebGUI',21,'îÁÂÌÀÄÅÎÉÅ (ÉÓÐÏÌØÚÏ×ÁÎÉÅ)',1034189690,NULL); INSERT INTO international VALUES (5,'WobjectProxy',21,'ðÒÏËÓÉ ÍÏÄÕÌÅÊ (ÄÏÂÁ×ÌÅÎÉÅ/ÒÅÄÁËÔÉÒÏ×ÁÎÉÅ)',1037087918,NULL); INSERT INTO international VALUES (72,'Poll',21,'òÁÓÐÏÌÁÇÁÔØ ÏÔ×ÅÔÙ × ÐÒÏÉÚ×ÏÌØÎÏÍ ÐÏÒÑÄËÅ?',1034189690,NULL); @@ -8577,8 +8222,6 @@ INSERT INTO international VALUES (716,'WebGUI',21,' INSERT INTO international VALUES (717,'WebGUI',21,'÷ÙÊÔÉ ÉÚ ÓÉÓÔÅÍÙ',1034189690,NULL); INSERT INTO international VALUES (722,'WebGUI',21,'Id',1034189690,NULL); INSERT INTO international VALUES (721,'WebGUI',21,'ðÒÏÓÔÒÁÎÓÔ×Ï ÉÍÅÎ',1034189690,NULL); -INSERT INTO international VALUES (804,'WebGUI',21,'ËÏÐÉÒÏ×ÁÔØ ÛÁÂÌÏÎ',1042133520,NULL); -INSERT INTO international VALUES (805,'WebGUI',21,'õÄÁÌÉÔØ ÛÁÂÌÏÎ',1042133548,NULL); INSERT INTO international VALUES (806,'WebGUI',21,'õÄÁÌÉÔØ ÇÒÕÐÐÕ',1042133567,NULL); INSERT INTO international VALUES (807,'WebGUI',21,'õÐÒÁ×ÌÅÎÉÅ ÐÏÄÇÒÕÐÐÁÍÉ',1042134020,NULL); INSERT INTO international VALUES (808,'WebGUI',21,'ïÔÐÒÁ×ÉÔØ ÐÉÓØÍÏ ÄÌÑ ÇÒÕÐÐÙ',1042133768,NULL); @@ -8588,9 +8231,6 @@ INSERT INTO international VALUES (447,'WebGUI',21,' INSERT INTO international VALUES (5,'WebGUI',21,'óÐÉÓÏË ÇÒÕÐÐ ÐÏÌØÚÏ×ÁÔÅÌÅÊ',1034155904,NULL); INSERT INTO international VALUES (90,'WebGUI',21,'äÏÂÁ×ÉÔØ ÎÏ×ÕÀ ÇÒÕÐÐÕ',1034153981,NULL); INSERT INTO international VALUES (89,'WebGUI',21,'óÐÉÓÏË ÇÒÕÐÐ ÐÏÌØÚÏ×ÁÔÅÌÅÊ',1034153938,NULL); -INSERT INTO international VALUES (157,'WebGUI',21,'óÐÉÓÏË ÇÒÁÆÉÞÅÓËÉÈ ÏÂÏÌÏÞÅË',1034153862,NULL); -INSERT INTO international VALUES (6,'WebGUI',21,'çÒÁÆÉÞÅÓËÁÑ ÏÂÏÌÏÞËÁ ÓÁÊÔÁ',1034153818,NULL); -INSERT INTO international VALUES (158,'WebGUI',21,'äÏÂÁ×ÉÔØ ÎÏ×ÕÀ ÇÒÁÆÉÞÅÓËÕÀ ÏÂÏÌÏÞËÕ',1034153765,NULL); INSERT INTO international VALUES (169,'WebGUI',21,'äÏÂÁ×ÉÔØ ÎÏ×ÏÇÏ ÐÏÌØÚÏ×ÁÔÅÌÑ',1034153708,NULL); INSERT INTO international VALUES (7,'WebGUI',21,'óÐÉÓÏË ÐÏÌØÚÏ×ÁÔÅÌÅÊ ÓÁÊÔÁ',1034153673,NULL); INSERT INTO international VALUES (117,'WebGUI',21,'õÐÒÁ×ÌÅÎÉÅ ÎÏ×ÙÍÉ ÐÏÌØÚÏ×ÁÔÅÌÑÍÉ',1036145263,NULL); @@ -8604,7 +8244,6 @@ INSERT INTO international VALUES (1025,'WebGUI',21,' INSERT INTO international VALUES (515,'WebGUI',21,'äÏÂÁ×ÉÔØ ËÏÍÍÅÎÔÁÒÉÊ Ï ÒÅÄÁËÔÉÒÏ×ÁÎÉÉ?',1037169693,NULL); INSERT INTO international VALUES (406,'WebGUI',21,'òÁÚÍÅÒ ÕÍÅÎØÛÅÎÎÙÈ ËÏÐÉÊ ÉÚÏÂÒÁÖÅÎÉÊ',1034149253,NULL); INSERT INTO international VALUES (130,'WebGUI',21,'íÁËÓÉÍÁÌØÎÙÊ ÒÁÚÍÅÒ ×ÌÏÖÅÎÎÙÈ ÆÁÊÌÏ×',1034149144,NULL); -INSERT INTO international VALUES (398,'WebGUI',21,'ïÂßÑ×ÌÅÎÉÅ ÔÉÐÁ ÄÏËÕÍÅÎÔÏ×',1034149105,NULL); INSERT INTO international VALUES (141,'WebGUI',21,'óÔÒÁÎÉÃÁ \"óÔÒÁÎÉÃÁ ÎÅ ÎÁÊÄÅÎÁ\"',1034149033,NULL); INSERT INTO international VALUES (527,'WebGUI',21,'îÁÞÁÌØÎÁÑ ÓÔÒÁÎÉÃÁ',1034148929,NULL); INSERT INTO international VALUES (525,'WebGUI',21,'éÎÆÏÒÍÁÃÉÏÎÎÏÅ ÎÁÐÏÌÎÅÎÉÅ',1034148876,NULL); @@ -8612,10 +8251,6 @@ INSERT INTO international VALUES (127,'WebGUI',21,'URL INSERT INTO international VALUES (125,'WebGUI',21,'îÁÚ×ÁÎÉÅ ÆÉÒÍÙ',1034148713,NULL); INSERT INTO international VALUES (124,'WebGUI',21,'éÎÆÏÒÍÁÃÉÑ Ï ÆÉÒÍÅ',1034148253,NULL); INSERT INTO international VALUES (584,'WebGUI',21,'äÏÂÁ×ÉÔØ ÎÏ×ÙÊ ÑÚÙË',1042130354,NULL); -INSERT INTO international VALUES (73,'LinkList',21,'îÁÚ×ÁÎÉÅ
\r\n÷×ÅÄÉÔÅ ÔÅËÓÔ ÓÓÙÌËÉ.\r\n

\r\nURL
\r\n÷×ÅÄÉÔÅ URL ÓÁÊÔÁ, ÎÁ ËÏÔÏÒÙÊ ×Ù ÈÏÔÉÔÅ ÐÏÓÔÁ×ÉÔØ ÓÓÙÌËÕ.\r\n

\r\nïÔËÒÙ×ÁÔØ ÓÓÙÌËÕ × ÎÏ×ÏÍ ÏËÎÅ?
\r\n÷ÙÂÅÒÉÔÅ \"äÁ\", ÅÓÌÉ ×Ù ÈÏÔÉÔÅ, ÞÔÏÂÙ ÓÁÊÔ, ÎÁ ËÏÔÏÒÙÊ ÓÔÏÉÔ ÓÓÙÌËÁ, ÏÔËÒÙ×ÁÌÓÑ × ÎÏ×ÏÍ ÏËÎÅ.\r\n

\r\nïÐÉÓÁÎÉÅ
\r\n÷Ù ÍÏÖÅÔÅ ××ÅÓÔÉ ËÒÁÔËÏÅ ÏÐÉÓÁÎÉÅ ÓÁÊÔÁ, ÎÁ ËÏÔÏÒÙÊ ×ÅÄÅÔ ÓÓÙÌËÁ. üÔÏ ÐÏÌÅ ÔÁËÖÅ ÍÏÖÎÏ ÏÓÔÁ×ÉÔØ ÐÕÓÔÙÍ.\r\n

\r\nóÌÅÄÕÀÝÅÅ ÄÅÊÓÔ×ÉÅ
\r\n',1041688527,NULL); -INSERT INTO international VALUES (1,'Item',21,'URL',1034072933,NULL); -INSERT INTO international VALUES (73,'FAQ',21,'÷ÏÐÒÏÓ
\r\n÷×ÅÄÉÔÅ ÔÅËÓÔ ×ÏÐÒÏÓ.\r\n

\r\nïÔ×ÅÔ
\r\n÷×ÅÄÉÔÅ ÔÅËÓÔ ÏÔ×ÅÔÁ.\r\n

\r\nóÌÅÄÕÀÝÅÅ ÄÅÊÓÔ×ÉÅ
\r\n\r\n',1041688061,NULL); -INSERT INTO international VALUES (71,'FAQ',21,'äÏÂÁ×É× \"ÞÁÓÔÏ ÚÁÄÁ×ÁÅÍÙÅ ×ÏÐÒÏÓÙ\" ÎÁ ×ÁÛ ÓÁÊÔ, ×Ù ÉÚÂÁ×ÉÔÅ ÓÅÂÑ ÏÔ ÎÅÏÂÈÏÄÉÍÏÓÔÉ ÏÔ×ÅÞÁÔØ, Á ÐÏÌØÚÏ×ÁÔÅÌÅÊ ÓÁÊÔÁ ÚÁÄÁ×ÁÔØ ×ÏÐÒÏÓÙ, Ó×ÑÚÁÎÎÙÅ Ó ÐÒÁ×ÉÌÁÍÉ ÒÅÇÉÓÔÒÁÃÉÉ, ÉÓÐÏÌØÚÏ×ÁÎÉÅÍ ÓÁÊÔÁ É Ô.Ä.\r\n

\r\nûÁÂÌÏÎ
\r\n÷ÙÂÅÒÉÔÅ ÛÁÂÌÏÎ ÄÌÑ ÞÁÓÔÏ ÚÁÄÁ×ÁÅÍÙÈ ×ÏÐÒÏÓÏ×.\r\n

\r\nóÌÅÄÕÀÝÅÅ ÄÅÊÓÔ×ÉÅ
',1041687957,NULL); INSERT INTO international VALUES (78,'EventsCalendar',21,'õÄÁÌÅÎÉÅ ÎÅ ×ÏÚÍÏÖÎÏ',1034072600,NULL); INSERT INTO international VALUES (73,'EventsCalendar',21,'îÁÚ×ÁÎÉÅ
\r\n÷×ÅÄÉÔÅ ÎÁÚ×ÁÎÉÅ ÓÏÂÙÔÉÑ.\r\n

\r\nïÐÉÓÁÎÉÅ
\r\n÷×ÅÄÉÔÅ ÏÐÉÓÁÎÉÅ ÐÒÅÄÓÔÏÑÝÅÇÏ ÓÏÂÙÔÉÑ.\r\n

\r\näÁÔÁ ÎÁÞÁÌÁ
\r\n÷×ÅÄÉÔÅ ÄÁÔÕ ÎÁÞÁÌÁ ÓÏÂÙÔÉÑ.\r\n

\r\näÁÔÁ ÏËÏÎÞÁÎÉÑ
\r\n÷×ÅÄÉÔÅ ÄÁÔÕ ÏËÏÎÞÁÎÉÑ ÓÏÂÙÔÉÑ.\r\n

\r\nðÅÒÉÏÄÉÞÎÏÓÔØ ÐÏ×ÔÏÒÅÎÉÑ ÓÏÂÙÔÉÑ
\r\n÷ÙÂÅÒÉÔÅ ÐÒÏÍÅÖÕÔÏË ×ÒÅÍÅÎÉ, × ÔÅÞÅÎÉÉ ËÏÔÏÒÏÇÏ ÐÏ×ÔÏÒÑÅÔÓÑ ÓÏÂÙÔÉÅ. \r\n

\r\nóÌÅÄÕÀÝÅÅ ÄÅÊÓÔ×ÉÅ
\r\n\r\n',1046342551,NULL); INSERT INTO international VALUES (4,'WobjectProxy',21,'ðÒÏËÓÉ ÍÏÄÕÌÅÊ ÎÅ ÒÁÂÏÔÁÅÔ. ÷ÏÚÍÏÖÎÏ ÍÏÄÕÌØ ÕÄÁÌÅÎ.',1037087909,NULL); @@ -8674,17 +8309,14 @@ INSERT INTO international VALUES (832,'WebGUI',2,'Das Upload-Verwaltungssystem ( INSERT INTO international VALUES (715,'WebGUI',21,'ðÅÒÅÎÁÐÒÁ×ÌÅÎÉÅ ÎÁ URL',1036070893,NULL); INSERT INTO international VALUES (724,'WebGUI',21,'éÍÑ ÐÏÌØÚÏ×ÁÔÅÌÑ ÎÅ ÍÏÖÅÔ ÎÁÞÉÎÁÔØÓÑ Ó ÐÒÏÂÅÌÁ.',1036070945,NULL); INSERT INTO international VALUES (6,'WobjectProxy',21,'ðÒÏËÓÉ ÍÏÄÕÌÅÊ ÓÏÚÄÁÎ ÄÌÑ ÔÏÇÏ, ÞÔÏÂÙ ÓÏÚÄÁÔØ ËÏÐÉÀ Ó ÏÄÎÏÊ ÓÔÒÁÎÉÃÙ ÓÁÊÔÁ É ÐÏÍÅÓÔÉÔØ ÅÅ ÎÁ ÄÒÕÇÕÀ ÓÔÒÁÎÉÃÕ. éÓÐÏÌØÚÕÅÔÓÑ × ÔÅÈ ÓÌÕÞÁÑÈ, ËÏÇÄÁ ÏÄÎÕ É ÔÕ ÖÅ ÉÎÆÏÒÍÁÃÉÀ ÎÁÄÏ ÒÁÚÍÅÓÔÉÔØ × ÒÁÚÎÙÈ ÒÁÚÄÅÌÁÈ ÓÁÊÔÁ.

\r\néÍÑ ÍÏÄÕÌÑ
\r\n÷ÙÂÅÒÉÔÅ ÓÕÝÅÓÔ×ÕÀÝÉÊ ÍÏÄÕÌØ, Ó ËÏÔÏÒÏÇÏ ×Ù ÈÏÔÉÔÅ ÓÄÅÌÁÔØ ËÏÐÉÀ. éÍÑ ×ÙÂÉÒÁÅÍÏÇÏ ÍÏÄÕÌÑ ÉÍÅÅÔ ÓÌÅÄÕÀÝÉÊ ÆÏÒÍÁÔ: îÁÚ×ÁÎÉÅ ÓÔÒÁÎÉÃÙ/éÍÑ ÍÏÄÕÌÑ (Id ÍÏÄÕÌÑ). \r\n',1037088080,NULL); -INSERT INTO international VALUES (609,'WebGUI',21,'ðÏÓÌÅ ÕÄÁÌÅÎÉÑ ÇÒÁÆÉÞÅÓËÏÊ ÏÂÏÌÏÞËÉ, ×ÓÅ ÓÔÒÁÎÉÃÙ, ÉÓÐÏÌØÚÕÀÝÉÅ ÜÔÕ ÏÂÏÌÏÞËÕ, ÂÕÄÕÔ ÏÔÏÂÒÁÖÁÔØÓÑ × ÓÔÉÌÅ, ÕÓÔÁÎÏ×ÌÅÎÎÏÍ ÐÏ ÕÍÏÌÞÁÎÉÀ.',1036140377,NULL); INSERT INTO international VALUES (610,'WebGUI',21,'éÍÑ ÐÏÌØÚÏ×ÁÔÅÌÑ
\r\n
÷×ÅÄÉÔÅ ÉÍÑ ÐÏÌØÚÏ×ÁÔÅÌÑ (login).
\r\nðÁÒÏÌØ
\r\n÷×ÅÄÉÔÅ ÐÁÒÏÌØ ÄÌÑ ÄÏÓÔÕÐÁ ÐÏÌØÚÏ×ÁÔÅÌÑ Ë ÓÉÓÔÅÍÅ.\r\n

\r\níÅÔÏÄ ÉÄÅÎÔÉÆÉËÁÃÉÉ
\r\néÄÅÎÔÉÆÉËÁÃÉÑ ÐÏÌØÚÏ×ÁÔÅÌÅÊ ÍÏÖÅÔ ÏÓÕÝÅÓÔ×ÌÑÔØÓÑ Ä×ÕÍÑ ÍÅÔÏÄÁÍÉ: ÓÒÅÄÓÔ×ÁÍÉ ÓÉÓÔÅÍÙ É ÓÒÅÄÓÔ×ÁÍÉ LDAP.\r\n

\r\nLDAP URL
\r\n÷×ÅÄÉÔÅ ÐÕÔØ Ë ÓÅÒ×ÅÒÕ LDAP.\r\n

\r\néÍÑ ÐÏÌØÚÏ×ÁÔÅÌÑ ÄÌÑ ÐÏÄÓÏÅÄÉÎÅÎÉÑ Ë ÓÅÒ×ÅÒÕ LDAP
\r\n÷×ÅÄÉÔÅ ÉÍÑ ÐÏÌØÚÏ×ÁÔÅÌÑ, ÉÓÐÏÌØÚÕÅÍÏÅ ÐÒÉ ÓÏÅÄÉÎÅÎÉÉ Ó ÓÅÒ×ÅÒÏÍ LDAP.\r\n

',1036141119,NULL); INSERT INTO international VALUES (612,'WebGUI',21,'úÁÍÅÞÁÎÉÑ:
\r\n
    \r\n
  1. åÓÌÉ ×Ù ÈÏÔÉÔÅ ÚÁÂÌÏËÉÒÏ×ÁÔØ ×ÈÏÄ ÐÏÌØÚÏ×ÁÔÅÌÑ × ÓÉÓÔÅÍÕ, ×Ù ÍÏÖÅÔÅ ÐÒÏÓÔÏ ÉÚÍÅÎÉÔØ ÅÇÏ ÐÁÒÏÌØ.\r\n
  2. ÷ÓÑ ÉÎÆÏÒÍÁÃÉÑ, ÐÒÉÓÌÁÎÎÁÑ ÎÁ ÓÁÊÔ ÐÏÌØÚÏ×ÁÔÅÌÅÍ, ÂÕÄÅÔ ÓÏÈÒÁÎÅÎÁ. \r\n
  3. ÷ ÓÌÕÞÁÅ ÐÏ×ÔÏÒÎÏÇÏ ÄÏÂÁ×ÌÅÎÉÑ ÐÏÌØÚÏ×ÁÔÅÌÑ ÎÁ ÓÁÊÔ, ÐÏÌØÚÏ×ÁÔÅÌØ ÎÅ ÓÍÏÖÅÔ ÐÏÌÕÞÉÔØ ÄÏÓÔÕÐ Ë Ó×ÏÉÍ ÐÒÅÖÎÉÍ ÎÁÓÔÒÏÊËÁÍ É ÐÒÉÓÌÁÎÎÙÍ ÓÏÏÂÝÅÎÉÑÍ.\r\n
\r\n÷Ù Õ×ÅÒÅÎÙ, ÞÔÏ ÈÏÔÉÔÅ ÕÄÁÌÉÔØ ÐÏÌØÚÏ×ÁÔÅÌÑ?',1036142412,NULL); INSERT INTO international VALUES (613,'WebGUI',21,'äÏÂÁ×ÉÔØ ÎÏ×ÏÇÏ ÐÏÌØÚÏ×ÁÔÅÌÑ
\r\n÷Ù ÍÏÖÅÔÅ ÄÏÂÁ×ÉÔØ ÎÏ×ÏÇÏ ÐÏÌØÚÏ×ÁÔÅÌÑ × ÓÉÓÔÅÍÕ.\r\n

\r\nðÏÉÓË
\r\n÷Ù ÍÏÖÅÔÅ ÎÁÊÔÉ ÐÏÌØÚÏ×ÁÔÅÌÑ ÎÅ ÔÏÌØËÏ ÐÏ ÉÍÅÎÉ, ÎÏ É ÐÏ ÄÒÕÇÏÊ ÌÉÞÎÏÊ ÉÎÆÏÒÍÁÃÉÉ (ÎÁÐÒÉÍÅÒ, ÐÏ ÁÄÒÅÓÕ ÜÌÅËÔÒÏÎÎÏÊ ÐÏÞÔÙ).\r\n

\r\n',1036142778,NULL); -INSERT INTO international VALUES (614,'WebGUI',21,'÷ ÓÉÓÔÅÍÅ ÐÒÉÓÕÔÓÔ×ÕÅÔ ×ÏÚÍÏÖÎÏÓÔØ ÓÏÚÄÁ×ÁÔØ ÒÁÚÌÉÞÎÙÅ ÇÒÁÆÉÞÅÓËÉÅ ÏÂÏÌÏÞËÉ ÄÌÑ ÒÁÚÌÉÞÎÙÈ ÓÔÒÁÎÉà ÓÁÊÔÁ. þÉÓÌÏ ÏÂÏÌÏÞÅË ÎÅ ÏÇÒÁÎÉÞÅÎÏ.

\r\n÷ÅÒÓÉÑ ÄÌÑ ÐÅÞÁÔÉ
\r\nüÔÁ ÇÒÁÆÉÞÅÓËÁÑ ÏÂÏÌÏÞËÁ ÉÓÐÏÌØÚÕÅÔÓÑ ÍÁËÒÏÓÏÍ ^r;.\r\n

\r\n\r\n',1036144283,NULL); INSERT INTO international VALUES (615,'WebGUI',21,'çÒÕÐÐÙ ÐÏÌØÚÏ×ÁÔÅÌÅÊ ÓÏÚÄÁÎÙ ÄÌÑ ÏÂßÅÄÉÎÅÎÉÑ ÐÏÌØÚÏ×ÁÔÅÌÅÊ, ÉÍÅÀÝÉÈ ÏÄÉÎÁËÏ×ÙÅ ÐÒÁ×Á ÄÏÓÔÕÐÁ Ë ÒÁÚÌÉÞÎÙÍ ÏÐÅÒÁÃÉÑÍÉ É ÄÏËÕÍÅÎÔÁÍ ÓÁÊÔÁ. ',1036144932,NULL); INSERT INTO international VALUES (617,'WebGUI',21,'éÎÆÏÒÍÁÃÉÀ Ï ÆÉÒÍÅ
\r\n÷ÙÂÒÁ× ÜÔÏÔ ÐÕÎËÔ ÍÏÖÎÏ ÉÚÍÅÎÉÔØ ÎÁÚ×ÁÎÉÅ ÆÉÒÍÙ.\r\n

\r\néÎÆÏÒÍÁÃÉÏÎÎÏÅ ÎÁÐÏÌÎÅÎÉÅ
\r\n÷ ÜÔÏÊ ÆÏÒÍÅ ×Ù ÍÏÖÅÔÅ ÉÚÍÅÎÉÔØ ÏÂÝÉÅ ÎÁÓÔÒÏÊËÉ ÓÉÓÔÅÍÙ, ÔÁËÉÅ ËÁË ÛÉÒÉÎÁ É ×ÙÓÏÔÁ ÐÏÌÅÊ ÆÏÒÍÙ É Ô.Ä.

\r\nîÁÓÔÒÏÊËÉ e-mail
\r\núÄÅÓØ ÕËÁÚÙ×ÁÅÔÓÑ ÐÕÔØ Ë ÐÏÞÔÏ×ÏÍÕ ÓÅÒ×ÅÒÕ É ÔÅËÓÔ, ÏÔÓÙÌÁÅÍÙÊ ÐÏÌØÚÏ×ÁÔÅÌÑÍ ÐÒÉ ×ÏÓÓÔÁÎÏ×ÌÅÎÉÉ ÐÁÒÏÌÑ.\r\n

\r\nïÂÝÉÅ ÎÁÓÔÒÏÊËÉ
\r\núÄÅÓØ ÈÒÁÎÑÔÓÑ ÎÁÓÔÒÏÊËÉ, ËÏÔÏÒÙÅ ÐÒÉÇÏÄÑÔÓÑ ÒÁÚÒÁÂÏÔÞÉËÁÍ ÓÉÓÔÅÍÙ.\r\n

\r\nðÅÒÓÏÎÁÌØÎÙÅ ÎÁÓÔÒÏÊËÉ ÐÏÌØÚÏ×ÁÔÅÌÅÊ
\r\núÄÅÓØ ÕËÁÚÙ×ÁÅÔÓÑ ÓÐÉÓÏË ÐÏÌÅÊ, ËÏÔÏÒÙÅ ÐÒÅÄÌÁÇÁÅÔÓÑ ÚÁÐÏÌÎÉÔØ ÐÏÌØÚÏ×ÁÔÅÌÀ. ðÏÌÑ ÍÏÖÎÏ ÓÄÅÌÁÔØ ÏÂÑÚÁÔÅÌØÎÙÍÉ Ë ÚÁÐÏÌÎÅÎÉÀ.\r\n

\r\nõÐÒÁ×ÌÅÎÉÅ ÎÏ×ÙÍÉ ÐÏÌØÚÏ×ÁÔÅÌÑÍÉ
\r\n÷ ÜÔÏÊ ÆÏÒÍÅ ÕËÁÚÙ×ÁÀÔÓÑ ÐÒÁ×ÉÌÁ ÒÅÇÉÓÔÒÁÃÉÉ ÐÏÌØÚÏ×ÁÔÅÌÅÊ ÓÁÊÔÁ.\r\n

',1045504281,NULL); INSERT INTO international VALUES (618,'WebGUI',21,'óÅÒ×ÅÒ SMTP
\r\n÷×ÅÄÉÔÅ ÁÄÒÅÓ SMTP-ÓÅÒ×ÅÒÁ. åÓÌÉ ÉÓÐÏÌØÚÕÅÔÓÑ ÏÐÅÒÁÃÉÏÎÎÁÑ ÓÉÓÔÅÍÁ Linux, ÔÏ ÏÂÙÞÎÏ ÐÕÔØ Ë ÐÏÞÔÏ×ÏÍÕ ÓÅÒ×ÅÒÕ ÓÌÅÄÕÀÝÉÊ: /usr/bin/sendmail\r\n

\r\nðÏÄÐÉÓØ ËÏ ×ÓÅÍ ÓÏÏÂÝÅÎÉÑ, ÏÔÐÒÁ×ÌÑÅÍÙÍ ÐÏ e-mail
\r\n÷×ÅÄÉÔÅ ÔÅËÓÔ ÐÏÄÐÉÓÉ, ËÏÔÏÒÁÑ ÂÕÄÅÔ Á×ÔÏÍÁÔÉÞÅÓËÉ ÄÏÂÁ×ÌÑÔØÓÑ ËÏ ×ÓÅÍ ÓÏÏÂÝÅÎÉÑÍ, ÏÔÐÒÁ×ÌÑÅÍÙÍ ÉÚ ÓÉÓÔÅÍÙ WebGUI.\r\n

\r\n÷ÙÓÙÌÁÔØ ÓÏÏÂÝÅÎÉÅ Ï ÒÅÇÉÓÔÒÁÃÉÉ ÎÏ×ÏÇÏ ÐÏÌØÚÏ×ÁÔÅÌÑ?

\r\nçÒÕÐÐÁ ÐÏÌØÚÏ×ÁÔÅÌÅÊ, ÉÎÆÏÒÍÉÒÕÅÍÁÑ ÐÒÉ ÒÅÇÉÓÔÒÁÃÉÉ ÎÏ×ÏÇÏ ÐÏÌØÚÏ×ÁÔÅÌÑ
\r\n÷ÙÂÅÒÉÔÅ ÇÒÕÐÐÕ ÐÏÌØÚÏ×ÁÔÅÌÅÊ, ËÏÔÏÒÁÑ ÐÏÌÕÞÉÔ ÐÉÓØÍÏ Ï ÒÅÇÉÓÔÒÁÃÉÉ ÎÏ×ÏÇÏ ÐÏÌØÚÏ×ÁÔÅÌÑ.\r\n

\r\n',1045504721,NULL); INSERT INTO international VALUES (619,'WebGUI',21,'üÔÁ ÆÕÎËÃÉÑ ÕÄÁÌÑÅÔ ×ÙÂÒÁÎÎÙÊ ÍÏÄÕÌØ ÓÏ ÓÔÒÁÎÉÃÙ. åÓÌÉ ×Ù ÎÅ ÄÏ ËÏÎÃÁ Õ×ÅÒÅÎÙ × ÔÏÍ, ÞÔÏ ÍÏÄÕÌØ ÎÁÄÏ ÕÄÁÌÉÔØ, ×Ù ÍÏÖÅÔÅ ×ÏÓÐÏÌØÚÏ×ÁÔØÓÑ ÆÕÎËÃÉÅÊ „÷ÙÒÅÚÁÔØ“. ÷ ÜÔÏÍ ÓÌÕÞÁÅ, ×Ù ÍÏÖÅÔÅ ×ÅÒÎÕÔØ ÍÏÄÕÌØ ÎÁ ÍÅÓÔÏ ×ÏÓÐÏÌØÚÏ×Á×ÛÉÓØ ÆÕÎËÃÉÅÊ \r\n„÷ÓÔÁ×ÉÔØ ÉÚ ÂÕÆÅÒÁ“.',1037084944,NULL); INSERT INTO international VALUES (620,'WebGUI',21,'ðÒÉ ÕÄÁÌÅÎÉÉ ÇÒÕÐÐÙ ÐÒÅÄÐÏÌÁÇÁÅÔÓÑ, ÞÔÏ ×Ù ÔÁËÖÅ ÕÄÁÌÑÅÔÅ ×ÓÅÈ ÐÏÌØÚÏ×ÁÔÅÌÅÊ, ×ÈÏÄÑÝÉÈ × ÄÁÎÎÕÀ ÇÒÕÐÐÕ.
\r\nåÓÌÉ ×Ù ÈÏÔÉÔÅ ÕÄÁÌÉÔØ ÇÒÕÐÐÕ, Á ×ÈÏÄÑÝÉÈ × ÎÅÅ ÐÏÌØÚÏ×ÁÔÅÌÅÊ ÚÁÎÅÓÔÉ × ÄÒÕÇÉÅ ÇÒÕÐÐÙ, ÔÏ ×ÎÉÍÁÔÅÌØÎÏ ÐÒÏ×ÅÒØÔÅ ÐÒÁ×Á ÄÏÓÔÕÐÁ ÐÏÌØÚÏ×ÁÔÅÌÅÊ ÉÚ ÕÄÁÌÑÅÍÏÊ ÇÒÕÐÐÙ Ë ÓÔÒÁÎÉÃÁÍ É ÏÐÅÒÁÃÉÑÍ. ',1036151143,NULL); -INSERT INTO international VALUES (621,'WebGUI',21,'îÁÚ×ÁÎÉÅ ÇÒÁÆÉÞÅÓËÏÊ ÏÂÏÌÏÞËÉ
\r\n÷×ÅÄÉÔÅ ÕÎÉËÁÌØÎÏÅ ÉÍÑ ÄÌÑ ÓÏÚÄÁ×ÁÅÍÏÊ ÇÒÁÆÉÞÅÓËÏÊ ÏÂÏÌÏÞËÉ\r\n

\r\nóÏÄÅÒÖÁÎÉÅ
\r\n÷ ÓÏÄÅÒÖÁÎÉÉ ÐÉÛÅÔÓÑ ËÏÄ HTML ÄÌÑ ÏÂÏÌÏÞËÉ, Á ÔÁËÖÅ ÚÁÐÉÓÙ×ÁÀÔÓÑ ÉÓÐÏÌØÚÕÅÍÙÅ ÍÁËÒÏÓÙ.\r\n

\r\nCSS
\r\n÷Ù ÍÏÖÅÔÅ ÉÓÐÏÌØÚÏ×ÁÔØ ËÁÓËÁÄÎÙÅ ÌÉÓÔÙ ÓÔÉÌÅÊ. \r\n

',1042130968,NULL); INSERT INTO international VALUES (622,'WebGUI',21,'éÍÑ ÇÒÕÐÐÙ
\r\n
÷×ÅÄÉÔÅ ÉÍÑ ÄÌÑ ÇÒÕÐÐÙ.
\r\nïÐÉÓÁÎÉÅ
\r\n÷×ÅÄÉÔÅ ÐÏÄÒÏÂÎÏÅ ÏÐÉÓÁÎÉÅ ÆÕÎËÃÉÊ É ÐÒÁ× ÐÏÌØÚÏ×ÁÔÅÌÅÊ, ×ÈÏÄÑÝÉÈ × ÜÔÕ ÇÒÕÐÐÕ.\r\n

\r\nóÒÏË ÏËÏÎÞÁÎÉÑ ÐÏÌÎÏÍÏÞÉÊ ÇÒÕÐÐÙ
\r\n
÷×ÅÄÉÔÅ ÐÅÒÉÏÄ ×ÒÅÍÅÎÉ, × ÔÅÞÅÎÉÉ ËÏÔÏÒÏÇÏ ÐÏÌØÚÏ×ÁÔÅÌÉ ÄÁÎÎÏÊ ÇÒÕÐÐÙ ÓÏÈÒÁÎÑÀÔ Ó×ÏÉ ÐÏÌÎÏÍÏÞÉÑ.

\r\néÎÆÏÒÍÉÒÏ×ÁÔØ ÐÏÌØÚÏ×ÁÔÅÌÅÊ Ï ÏËÏÎÞÁÎÉÉ ÓÒÏËÁ ÄÅÊÓÔ×ÉÑ ÐÏÌÎÏÍÏÞÉÊ?
åÓÌÉ ×Ù ÈÏÔÉÔÅ Õ×ÅÄÏÍÉÔØ ×ÓÅÈ ÐÏÌØÚÏ×ÁÔÅÌÅÊ, ÏÔÎÏÓÑÝÉÈÓÑ Ë ÄÁÎÎÏÊ ÇÒÕÐÐÅ, Ï ÓËÏÒÏÍ ÏËÏÎÞÁÎÉÉ ÓÒÏËÁ ÄÅÊÓÔ×ÉÑ ÐÏÌÎÏÍÏÞÉÊ ÏÔ×ÅÔØÔÅ ÕÔ×ÅÒÄÉÔÅÌØÎÏ ÎÁ ÄÁÎÎÙÊ ×ÏÐÒÏÓ.\r\n

\r\núÁ ÓËÏÌØËÏ ÄÎÅÊ ÉÎÆÏÒÍÉÒÏ×ÁÔØ ÐÏÌØÚÏ×ÁÔÅÌÅÊ Ï ÏËÏÎÞÁÎÉÑ ÄÅÊÓÔ×ÉÑ ÐÏÌÎÏÍÏÞÉÊ?
\r\nåÓÌÉ ×Ù ÒÅÛÉÌÉ, ÞÔÏ ÈÏÔÉÔÅ ÉÎÆÏÒÍÉÒÏ×ÁÔØ ÐÏÌØÚÏ×ÁÔÅÌÅÊ ÇÒÕÐÐÙ Ï ÏËÏÎÞÁÎÉÉ ÓÒÏËÁ ÄÅÊÓÔ×ÉÑ ÐÏÌÎÏÍÏÞÉÊ, ÔÏ × ÜÔÏÍ ÐÕÎËÔÅ ×ÁÍ ÎÁÄÏ ×ÙÂÒÁÔØ ÚÁ ÓËÏÌØËÏ ÄÎÅÊ ÄÏ ÜÔÏÇÏ ÓÏÂÙÔÉÑ ÏÎÉ ÐÏÌÕÞÁÔ ÓÏÏÂÝÅÎÉÅ.

\r\nóÏÏÂÝÅÎÉÅ ÄÌÑ ÐÏÌØÚÏ×ÁÔÅÌÅÊ, ÐÏÓÙÌÁÅÍÏÅ ÉÍ ÐÏ ÉÓÔÅÞÅÎÉÉ ÓÒÏËÁ ÄÅÊÓÔ×ÉÑ ÐÏÌÎÏÍÏÞÉÊ ÇÒÕÐÐÙ
\r\n÷×ÅÄÉÔÅ ÔÅËÓÔ ÓÏÏÂÝÅÎÉÑ

\r\nþÅÒÅÚ ËÁËÏÅ ÞÉÓÌÏ ÄÎÅÊ ÉÎÆÏÒÍÁÃÉÀ ÏÂ ÕÄÁÌÅÎÎÏÊ ÇÒÕÐÐÅ ÓÔÉÒÁÔØ ÉÚ ÂÁÚÙ?
\r\nðÏÓÌÅ ÏËÏÎÞÁÎÉÑ ÓÒÏËÏ× ÐÏÌÎÏÍÏÞÉÊ ÄÌÑ ÇÒÕÐÐÙ ÐÏÌØÚÏ×ÁÔÅÌÅÊ, ÉÎÆÏÒÍÁÃÉÑ Ï ÇÒÕÐÐÅ × ÔÅÞÅÎÉÅ ÏÐÒÅÄÅÌÅÎÎÏÇÏ × ÜÔÏÊ ÓÔÒÏËÅ ËÏÌÉÞÅÓÔ×Á ÄÎÅÊ ÂÕÄÅÔ ÈÒÁÎÉÔØÓÑ × ÂÁÚÅ ÄÁÎÎÙÈ. \r\n

\r\nõÒÏ×ÅÎØ ÎÁÂÌÀÄÅÎÉÑ ÚÁ ÄÅÊÓÔ×ÉÑÍÉ ÇÒÕÐÐÙ ÐÏÌØÚÏ×ÁÔÅÌÅÊ
\r\nåÓÌÉ ÎÁÂÌÀÄÅÎÉÅ ÚÁ ÄÅÊÓÔ×ÉÑÍÉ ÐÏÌØÚÏ×ÁÔÅÌÅÊ ÒÁÚÒÅÛÅÎÏ, ÔÏ ×ÓÅ ÄÅÊÓÔ×ÉÑ ÐÏÌØÚÏ×ÁÔÅÌÅÊ ÂÕÄÕÔ ÐÒÏÔÏËÏÌÉÒÏ×ÁÔØÓÑ. (÷×ÅÄÅÎÎÏÅ × ÜÔÏÍ ÐÏÌÅ ÚÎÁÞÅÎÉÅ „0“ ÏÚÎÁÞÁÅÔ ÞÔÏ ÎÁÂÌÀÄÅÎÉÅ ÎÅ ×ÅÄÅÔÓÑ, Á „1“ ÏÚÎÁÞÁÅÔ ÒÁÚÒÅÛÅÎÉÅ ÚÁÐÉÓÉ × ÂÁÚÕ ÄÁÎÎÙÈ.\r\n

\r\nIP
\r\n÷ ÜÔÏÍ ÐÏÌÅ ÍÏÖÎÏ ××ÅÓÔÉ IP ÁÄÒÅÓ É ÍÁÓËÕ ÁÄÒÅÓÏ×. åÓÌÉ ÁÄÒÅÓ ÐÏÌØÚÏ×ÁÔÅÌÑ ÐÒÉÛÅÄÛÅÇÏ ÎÁ ÓÁÊÔ ÓÏ×ÐÁÄÅÔ Ó ××ÅÄÅÎÎÙÍ, ÔÏ ÏÎ Á×ÔÏÍÁÔÉÞÅÓËÉ ÐÏÐÁÄÅÔ × ×ÙÂÒÁÎÎÕÀ ÇÒÕÐÐÕ ÐÏÌØÚÏ×ÁÔÅÌÅÊ.\r\n

',1045563572,NULL); INSERT INTO international VALUES (640,'WebGUI',21,'÷ÎÉÍÁÎÉÅ üÔÏÔ ÛÁÂÌÏÎ ÍÏÖÅÔ ÉÓÐÏÌØÚÏ×ÁÔØÓÑ ÎÁ ÒÁÚÌÉÞÎÙÈ ÓÔÒÁÎÉÃÁÈ ÓÁÊÔÁ. ðÒÉ ÕÄÁÌÅÎÉÉ ÛÁÂÌÏÎÁ, ËÏ ×ÓÅÍ ÓÔÒÁÎÉÃÁÍ, ÉÓÐÏÌØÚÕÀÝÉÍ ÕÄÁÌÑÅÍÙÊ ÛÁÂÌÏÎ, ÂÕÄÅÔ ÐÒÉÍÅÎÅÎ ÛÁÂÌÏÎ, ÉÓÐÏÌØÚÕÅÍÙÊ ÐÏ ÕÍÏÌÞÁÎÉÀ.',1042132782,NULL); INSERT INTO international VALUES (623,'WebGUI',21,'éÓÐÏÌØÚÕÑ CSS Õ ×ÁÓ ÅÓÔØ ×ÏÚÍÏÖÎÏÓÔØ ÉÚÍÅÎÑÔØ ×ÎÅÛÎÉÊ ×ÉÄ ÔÅËÓÔÏ×ÙÈ ÜÌÅÍÅÎÔÏ× ÓÔÒÁÎÉà ÓÁÊÔÁ.
\r\nîÁ ÍÏÍÅÎÔ ÓÏÚÄÁÎÉÑ ÓÁÊÔÁ ÂÉÌÉ ÓÏÚÄÁÎÙ ÓÌÅÄÕÀÝÉÅ ËÌÁÓÓÙ:
\r\n.accountLink - ÓÔÉÌØ ÄÌÑ ÓÓÙÌËÉ ÎÁ ÓÔÒÁÎÉÃÕ ÁËËÁÕÎÔÁ ÐÏÌØÚÏ×ÁÔÅÌÑ
\r\n.makePrintableLink - ÓÔÉÌØ ÓÓÙÌËÉ ÎÁ ÐÅÞÁÔÎÕÀ ×ÅÒÓÉÀ ÄÏËÕÍÅÎÔÁ
\r\n.loginToggleLink - ÓÔÉÌØ ÓÓÙÌËÉ ÎÁ ÓÔÒÁÎÉÃÕ ÉÄÅÎÔÉÆÉËÁÃÉÉ
\r\n.verticalMenu - ÓÔÉÌØ ×ÅÒÔÉËÁÌØÎÏÇÏ ÍÅÎÀ
\r\nbody - ÓÔÉÌØ ÔÅÌÁ ÓÔÒÁÎÉÃÙ
\r\ntd - ÓÔÉÌØ ÑÞÅÊËÉ ÔÁÂÌÉÃÙ
\r\nH1 - ÓÔÉÌØ ÄÌÑ ÚÁÇÏÌÏ×ËÁ ÐÅÒ×ÏÇÏ ÕÒÏ×ÎÑ
\r\nH3 - ÓÔÉÌØ ÄÌÑ ÚÁÇÏÌÏ×ËÁ ÔÒÅÔØÅÇÏ ÕÒÏ×ÎÑ
\r\nH4 - ÓÔÉÌØ ÄÌÑ ÚÁÇÏÌÏ×ËÁ ÞÅÔ×ÅÒÔÏÇÏ ÕÒÏ×ÎÑ
\r\nH5 - ÓÔÉÌØ ÄÌÑ ÚÁÇÏÌÏ×ËÁ ÐÑÔÏÇÏ ÕÒÏ×ÎÑ
\r\nul - ÓÔÉÌØ ÄÌÑ ÎÅÎÕÍÅÒÏ×ÁÎÎÏÇÏ ÓÐÉÓËÁ
\r\nA - ÓÔÉÌØ ÄÌÑ ÓÓÙÌËÉ ÏÂÝÅÇÏ ÎÁÚÎÁÞÅÎÉÑ
\r\n.pagination - ÓÔÉÌØ ÄÌÑ ÓÓÙÌÏË ÎÁ ÓÔÒÁÎÉÃÙ, ÏÂÒÁÚÏ×Á×ÛÉÅÓÑ ÐÏÓÌÅ ÒÁÚÂÉÅÎÉÑ ÓÔÒÁÎÉÃÙ ÎÁ ÓÔÒÁÎÉÞËÉ ÍÅÎØÛÅÇÏ ÒÁÚÍÅÒÁ
\r\n.horizontalMenu - ÓÔÉÌØ ÄÌÑ ÇÏÒÉÚÏÎÔÁÌØÎÏÇÏ ÍÅÎÀ
\r\n.adminBar - ÓÔÉÌØ ÄÌÑ ÐÁÎÅÌÉ ÎÁ×ÉÇÁÃÉÉ
\r\n.formDescription - ÓÔÉÌØ ÄÌÑ ÐÉÓÁÎÉÑ ÆÏÒÍÙ
\r\n.formSubtext - ÓÔÉÌØ ÄÌÑ ÓÏÄÅÒÖÉÍÏÇÏ ÆÏÒÍÙ
\r\n.tableMenu - ÓÔÉÌØ ÄÌÑ ÔÁÂÌÉÞÎÏÇÏ ÍÅÎÀ
\r\n.tableHeader - ÓÔÉÌØ ÄÌÑ ÚÁÇÏÌÏ×ËÁ ÔÁÂÌÉÃÙ
\r\n.tableCell - ÓÔÉÌØ ÄÌÑ ÑÞÅÊËÉ ÔÁÂÌÉÃÙ #2
\r\n.tableCellColor - ÓÔÉÌØ ÄÌÑ ÑÞÅÊËÉ ÔÁÂÌÉÃÙ #3
\r\n.tableData - ÓÔÉÌØ ÄÌÑ ÑÞÅÊËÉ ÔÁÂÌÉÃÙ #4
\r\n.pollAnswer - ÓÔÉÌØ ÄÌÑ ÏÔ×ÅÔÏ× ÎÁ ×ÏÐÒÏÓÙ ÇÏÌÏÓÏ×ÁÎÉÑ
\r\n.pollColor - ÓÔÉÌØ ÄÌÑ ÇÒÁÆÉÞÅÓËÏÇÏ ÐÒÅÄÓÔÁ×ÌÅÎÉÑ ÐÒÏÃÅÎÔÎÏÇÏ ÒÁÓÐÒÅÄÅÌÅÎÉÑ ÏÔ×ÅÔÏ× ÎÁ ×ÏÐÒÏÓÙ ÇÏÌÏÓÏ×ÁÎÉÑ
\r\n.pollQuestion - ÓÔÉÌØ ÄÌÑ ×ÏÐÒÏÓÏ× ÄÌÑ ÇÏÌÏÓÏ×ÁÎÉÑ
\r\n.faqQuestion - ÓÔÉÌØ ÄÌÑ ×ÏÐÒÏÓÏ× ÉÚ ÓÐÉÓËÁ „þÁÓÔÏ ÚÁÄÁ×ÁÅÍÙÈ ×ÏÐÒÏÓÏ×&147;
\r\n.listItemInvisible - ÓÔÉÌØ ÄÌÑ ÜÌÅÍÅÎÔÏ× ÓÐÉÓËÁ #2
\r\n\r\n',1048515944,NULL); @@ -8703,12 +8335,10 @@ INSERT INTO international VALUES (636,'WebGUI',21,' INSERT INTO international VALUES (638,'WebGUI',21,'ðÒÉ ÐÏÍÏÝÉ ÛÁÂÌÏÎÏ× ÍÏÖÎÏ ÌÅÇËÏ ÉÚÍÅÎÉÔØ ×ÎÅÛÎÉÊ ×ÉÄ ÏÔÄÅÌØÎÏÊ ÓÔÒÁÎÉÃÙ, ÎÅ ÍÅÎÑÑ ×ÉÄ ÓÁÊÔÁ ÃÅÌÉËÏÍ.',1042132615,NULL); INSERT INTO international VALUES (639,'WebGUI',21,'éÍÑ ÛÁÂÌÏÎÁ
\r\n÷×ÅÄÉÔÅ ÉÍÑ ÛÁÂÌÏÎÁ, ÈÁÒÁËÔÅÒÉÚÕÀÝÅÅ ×ÎÅÛÎÉÊ ×ÉÄ ÓÔÒÁÎÉÃÙ ÐÏÓÌÅ ÅÇÏ ÐÒÉÍÅÎÅÎÉÑ.

\r\nûÁÂÌÏÎ
\r\nüÔÏ ÔÅËÓÔÏ×ÏÅ ÐÏÌÅ ÐÒÅÄÎÁÚÎÁÞÅÎÏ ÄÌÑ ÎÁÐÉÓÁÎÉÑ ÓÁÍÏÇÏ ÛÁÂÌÏÎÁ. ðÒÉ ÎÁÐÉÓÁÎÉÉ ÛÁÂÌÏÎÏ× ÍÏÖÎÏ ÉÓÐÏÌØÚÏ×ÁÔØ ÒÁÚÌÉÞÎÙÅ ÍÁËÒÏÓÙ. ûÁÂÌÏÎ ÚÁÐÉÓÙ×ÁÅÔÓÑ ÎÁ ÑÚÙËÅ HTML.

\r\n',1042132742,NULL); INSERT INTO international VALUES (637,'WebGUI',21,'úÁÄÅÒÖËÁ ×Ï ×ÒÅÍÅÎÉ
\r\n÷ ÜÔÏÍ ÐÏÌÅ ÎÁÄÏ ÕËÁÚÁÔØ ÞÉÓÌÏ ÞÁÓÏ×, ÎÁ ËÏÔÏÒÏÅ ÏÔÌÉÞÁÅÔÓÑ ÌÏËÁÌØÎÏÅ ×ÒÅÍÑ ÐÏÌØÚÏ×ÁÔÅÌÑ É ×ÒÅÍÑ ÎÁ ÓÅÒ×ÅÒÅ.\r\n

\r\n÷ÎÅÛÎÉÊ ×ÉÄ ÏÂÓÕÖÄÅÎÉÑ
\r\n÷ÙÂÅÒÉÔÅ, × ËÁËÏÍ ×ÉÄÅ ÂÕÄÕÔ ÏÔÏÂÒÁÖÁÔØ ÓÏÏÂÝÅÎÉÑ ÏÂÓÕÖÄÅÎÉÑ.\r\n

\r\n÷ÈÏÄÑÝÉÅ ÓÏÏÂÝÅÎÉÑ
\r\n÷ÙÂÅÒÉÔÅ ÄÅÊÓÔ×ÉÅ, ËÏÔÏÒÏÅ ÂÕÄÅÔ ÐÒÏÉÚ×ÏÄÉÔØÓÑ ÐÒÉ ÐÏÓÔÕÐÌÅÎÉÉ ×ÈÏÄÑÝÅÇÏ ÓÏÏÂÝÅÎÉÑ.\r\n

',1037190271,NULL); -INSERT INTO international VALUES (845,'WebGUI',1,'Style Macros',1046656109,NULL); -INSERT INTO international VALUES (846,'WebGUI',1,'These macros are mainly useful in maintaining styles in WebGUI.\r\n

\r\n\r\n^AdminBar;
\r\nPlaces the administrative tool bar on the page. This is a required element in the \"body\" segment of the Style Manager.\r\n

\r\n\r\n\r\n^c; - Company Name
\r\nThe name of your company specified in the settings by your Administrator.\r\n

\r\n\r\n\r\n^e; - Company Email Address
\r\nThe email address for your company specified in the settings by your Administrator.\r\n

\r\n\r\n^Extras;
\r\nReturns the path to the WebGUI \"extras\" folder, which contains things like WebGUI icons.\r\n

\r\n\r\n^LastModified; or ^LastModified();
\r\nDisplays the date that the current page was last modified based upon the wobjects on the page. The date is defaultly displayed based upon the user\'s date preferences. Optionally, it can take two parameters. The first is text to display before the date. The second is a date format string (see the D (date) macro for details.\r\n

\r\nExample: ^LastModified(\"Updated: \",\"%c %D, %y\");\r\n

\r\n\r\n\r\n^PageTitle;
\r\nDisplays the title of the current page.\r\n

\r\n\r\nNOTE: If you begin using admin functions or the indepth functions of any wobject, the page title will become a link that will quickly bring you back to the page.\r\n

\r\n\r\n^r; or ^r(); - Make Page Printable
\r\nCreates a link to remove the style from a page to make it printable. In addition, you can change the link text by creating a macro like this ^r(\"Print Me!\");.\r\n

\r\n\r\nBy default, when this link is clicked, the current page\'s style is replaced with the \"Make Page Printable\" style in the Style Manager. However, that can be overridden by specifying the name of another style as the second parameter, like this: ^r(\"Print!\",\"WebGUI\");\r\n

\r\n\r\nNOTES: You can also use the special case ^r(linkonly); to return only the URL to the make printable page and nothing more. Also, the .makePrintableLink style sheet class is tied to this macro.\r\n

\r\n\r\n^RootTitle;
\r\nReturns the title of the root of the current page. For instance, the main root in WebGUI is the \"Home\" page. Many advanced sites have many roots and thus need a way to display to the user which root they are in.\r\n

\r\n\r\n^u; - Company URL
\r\nThe URL for your company specified in the settings by your Administrator.\r\n

\r\n\r\n\r\n\r\n^?; - Search
\r\nAdd a search box to the page. The search box is tied to WebGUI\'s built-in search engine.\r\n

\r\n\r\nNOTE: The .searchBox style sheet class is tied to this macro.\r\n

\r\n\r\n^Spacer();
\r\nCreate a spacer in your layout. Great for creating blocks of color with divs and tables. It takes two parameters, width and height.\r\n

\r\nExample: ^Spacer(\"100\",\"50\");\r\n

\r\n\r\n^-;
\r\nThis is known as the separator macro. It must appear exactly once in every style. Wherever it appears is where the content for any given page will be put.\r\n

',1051223157,NULL); +INSERT INTO international VALUES (845,'WebGUI',1,'Style Macros',1078243435,NULL); INSERT INTO international VALUES (843,'WebGUI',1,'User Macros',1046656765,NULL); INSERT INTO international VALUES (844,'WebGUI',1,'These macros have to do with users and logins.\r\n

\r\n\r\n^a; or ^a(); - My Account Link
\r\nA link to your account information. In addition you can change the link text by creating a macro like this ^a(\"Account Info\");. \r\n

\r\n\r\nNOTES: You can also use the special case ^a(linkonly); to return only the URL to the account page and nothing more. Also, the .myAccountLink style sheet class is tied to this macro.\r\n

\r\n\r\n\r\n^AdminText();
\r\nDisplays a small text message to a user who is in admin mode. Example: ^AdminText(\"You are in admin mode!\");\r\n

\r\n\r\n^AdminToggle; or ^AdminToggle();
\r\nPlaces a link on the page which is only visible to content managers and adminstrators. The link toggles on/off admin mode. You can optionally specify other messages to display like this: ^AdminToggle(\"Edit On\",\"Edit Off\");\r\n

\r\n\r\n^CanEditText();
\r\nDisplay a message to a user that can edit the current page.\r\n

\r\nExample: ^CanEditText(^AdminToggle;);\r\n

\r\n\r\n^EditableToggle; or ^EditableToggle();
\r\nExactly the same as AdminToggle, except that the toggle is only displayed if the user has the rights to edit the current page.\r\n

\r\n\r\n^GroupAdd();
\r\nUsing this macro you can allow users to add themselves to a group. The first parameter is the name of the group this user should be added to. The second parameter is a text string for the user to click on to add themselves to this group.\r\n

\r\nNOTE: If the user is not logged in, or or already belongs to the group, or the group is not set to allow auto adds, then no link will be displayed.\r\n

\r\n\r\n\r\n^GroupDelete();
\r\nUsing this macro you can allow users to delete themselves from a group. The first parameter is the name of the group this user should be deleted from. The second parameter is a text string for the user to click on to delete themselves from this group.\r\n

\r\nNOTE: If the user is not logged in or the user does not belong to the group, or the group is not set to allow auto deletes, then no link will be displayed.\r\n

\r\n\r\n^GroupText();
\r\nDisplays a small text message to the user if they belong to the specified group. And you can specify an alternate message to those who are not in the group.\r\n

\r\nExample: ^GroupText(\"Visitors\",\"You need an account to do anything cool on this site!\",\"We value our registered users!\");\r\n

\r\n\r\n^L; or ^L(); - Login Box
\r\nA small login form. You can also configure this macro. You can set the width of the login box like this ^L(20);. You can also set the message displayed after the user is logged in like this ^L(20,Hi ^a(^@;);. Click %here% if you wanna log out!)\r\n

\r\n\r\nNOTE: The .loginBox style sheet class is tied to this macro.\r\n

\r\n\r\n^LoginToggle; or ^LoginToggle();
\r\nDisplays a \"Login\" or \"Logout\" message depending upon whether the user is logged in or not. You can optionally specify other labels like this: ^LoginToggle(\"Click here to log in.\",\"Click here to log out.\");. You can also use the special case ^LoginToggle(linkonly); to return only the URL with no label.\r\n

\r\n\r\n^@; - Username
\r\nThe username of the currently logged in user.\r\n

\r\n\r\n\r\n^#; - User ID
\r\nThe user id of the currently logged in user.\r\n

\r\n\r\n',1053779917,NULL); -INSERT INTO international VALUES (841,'WebGUI',1,'Navigation Macros',1046656370,NULL); -INSERT INTO international VALUES (842,'WebGUI',1,'These macros are used to create navigation on the site.\r\n

\r\n\r\n^C; or ^C(); - Crumb Trail
\r\nA dynamically generated crumb trail to the current page. You can optionally specify a delimeter to be used between page names by using ^C(::);. The default delimeter is >.\r\n

\r\n\r\nNOTE: The .crumbTrail style sheet class is tied to this macro.\r\n

\r\n\r\n^FlexMenu;
\r\nThis menu macro creates a top-level menu that expands as the user selects each menu item.\r\n

\r\n\r\n^H; or ^H(); - Home Link
\r\nA link to the home page of this site. In addition you can change the link text by creating a macro like this ^H(\"Go Home\");.\r\n

\r\n\r\nNOTES: You can also use the special case ^H(linkonly); to return only the URL to the home page and nothing more. Also, the .homeLink style sheet class is tied to this macro.\r\n

\r\n\r\n^M; or ^M(); - Current Menu (Vertical)
\r\nA vertical menu containing the sub-pages at the current level. In addition, you may configure this macro by specifying how many levels deep the menu should go. By default it will show only the first level. To go three levels deep create a macro like this ^M(3);. If you set the macro to \"0\" it will track the entire site tree.\r\n

\r\n\r\n^m; - Current Menu (Horizontal)
\r\nA horizontal menu containing the sub-pages at the current level. You can optionally specify a delimeter to be used between page names by using ^m(:--:);. The default delimeter is ·.\r\n

\r\n\r\n^PreviousDropMenu;
\r\nCreate a drop down menu containing the sub-pages at the previous level in the page tree.\r\n

\r\nExample: ^PreviousDropMenu;\r\n

\r\n\r\n^P; or ^P(); - Previous Menu (Vertical)
\r\nA vertical menu containing the sub-pages at the previous level. In addition, you may configure this macro by specifying how many levels deep the menu should go. By default it will show only the first level. To go three levels deep create a macro like this ^P(3);. If you set the macro to \"0\" it will track the entire site tree.\r\n

\r\n\r\n^p; - Previous Menu (Horizontal)
\r\nA horizontal menu containing the sub-pages at the previous level. You can optionally specify a delimeter to be used between page names by using ^p(:--:);. The default delimeter is ·.\r\n

\r\n\r\n^rootmenu; or ^rootmenu(); (Horizontal)
\r\nCreates a horizontal menu of the various roots on your system (except for the WebGUI system roots). You can optionally specify a menu delimiter like this: ^rootmenu(|);\r\n

\r\n\r\n^RootTab;
\r\nCreate a tab navigation system from the roots on your site (except WebGUI\'s system roots) similar to the tabs used in the tab forms (editing wobjects or pages).\r\n

\r\nNOTE: Has two special style sheet classes: .RootTabOn{} and .RootTabOff{}.\r\n

\r\nExample:
\r\n<style>\r\n.rootTabOn {\r\n line-height: 17px;\r\n font-size: 16px;\r\n spacing: 3px;\r\n border: 1px solid black;\r\n border-bottom-width: 0px;\r\n background-color: #333333;\r\n z-index: 10000;\r\n padding: 3px 9px 5px 9px;\r\n color: white;\r\n}\r\n\r\n.rootTabOn A, .rootTabOn A:visited {\r\n color: white;\r\n font-weight: bold;\r\n text-decoration: none;\r\n}\r\n\r\n.rootTabOff {\r\n line-height: 15px;\r\n font-size: 14px;\r\n border: 1px solid black;\r\n border-bottom-width: 0px;\r\n background-color: #c8c8c8;\r\n z-index: 1000;\r\n padding: 2px 9px 2px 9px;\r\n}\r\n\r\n.rootTabOff A, .rootTabOff A:visited {\r\n color: black;\r\n text-decoration: underline;\r\n}\r\n\r\n.rootTabOff A:hover {\r\n font-weight: bold;\r\n}\r\n</style>\r\n^RootTab;\r\n

\r\n\r\n\r\n^SpecificDropMenu();
\r\nCreate a drop down menu starting at a specific point in your navigation tree. This takes two parameters. The first is the url of the page to start with and the second (optional parameter) is the depth to traverse to.\r\n

\r\nExample: ^SpecificDropMenu(\"home\",3);\r\n

\r\n\r\n^S(); - Specific SubMenu (Vertical)
\r\nThis macro allows you to get the submenu of any page, starting with the page you specified. For instance, you could get the home page submenu by creating a macro that looks like this ^S(\"home\",0);. The first value is the urlized title of the page and the second value is the depth you\'d like the menu to go. By default it will show only the first level. To go three levels deep create a macro like this ^S(\"home\",3);.\r\n

\r\n\r\n\r\n^s(); - Specific SubMenu (Horizontal)
\r\nThis macro allows you to get the submenu of any page, starting with the page you specified. For instance, you could get the home page submenu by creating a macro that looks like this ^s(\"home\");. The value is the urlized title of the page. You can optionally specify a delimeter to be used between page names by using ^s(\"home\",\":--:\");. The default delimeter is ·.\r\n

\r\n\r\n^Synopsis; or ^Synopsis(); Menu
\r\nThis macro allows you to get the submenu of a page along with the synopsis of each link. You may specify an integer to specify how many levels deep to traverse the page tree.\r\n

\r\n\r\nNOTES: The .synopsis_sub, .synopsis_summary, and .synopsis_title style sheet classes are tied to this macro.\r\n

\r\n\r\n^TopDropMenu;
\r\nCreate a drop down menu of your top level navigation.\r\n

\r\nExample: ^TopDropMenu;\r\n

\r\n\r\n^T; or ^T(); - Top Level Menu (Vertical)
\r\nA vertical menu containing the main pages of the site (aka the sub-pages from the home page). In addition, you may configure this macro by specifying how many levels deep the menu should go. By default it will show only the first level. To go three levels deep create a macro like this ^T(3);. If you set the macro to \"0\" it will track the entire site tree.\r\n

\r\n\r\n^t; - Top Level Menu (Horizontal)
\r\nA vertical menu containing the main pages of the site (aka the sub-pages from the home page). You can optionally specify a delimeter to be used between page names by using ^t(:--:);. The default delimeter is ·.\r\n

\r\n\r\n^/; - System URL
\r\nThe URL to the gateway script (example: /index.pl/).\r\n

\r\n\r\n^\\; - Page URL
\r\nThe URL to the current page (example: /index.pl/pagename).\r\n

\r\n\r\n',1051222723,NULL); +INSERT INTO international VALUES (841,'WebGUI',1,'Navigation Macro',1078243564,NULL); INSERT INTO international VALUES (837,'WebGUI',1,'Folder, Add/Edit',1038871918,NULL); INSERT INTO international VALUES (838,'WebGUI',1,'Folders are used to organize collateral, much the same way you\'d use folders on your hard drive or in a file cabinet.\r\n

\r\nOrganize in Folder
\r\nFolders can be inside of other folders. In which folder would you like to put this folder?\r\n

\r\n\r\nName
\r\nGive this folder a name so you can recognize what\'s in it.\r\n

\r\n\r\nDescription
\r\nDescribe the folder so that you remember why you created it and what it\'s supposed to contain.\r\n

',1038871918,NULL); INSERT INTO international VALUES (835,'WebGUI',1,'Snippet, Add/Edit',1038871744,NULL); @@ -8717,33 +8347,27 @@ INSERT INTO international VALUES (833,'WebGUI',1,'File, Add/Edit',1038871497,NUL INSERT INTO international VALUES (834,'WebGUI',1,'You can upload any kind of file to the repository to be used later.\r\n

\r\n\r\nName
\r\nGive this file a unique name that you can use to retrieve it later.\r\n

\r\n\r\nOrganize in Folder
\r\nWhich collateral folder should hold this file?\r\n

\r\n\r\nFile
\r\nSelect a file from your hard drive to upload.\r\n

',1038871497,NULL); INSERT INTO international VALUES (831,'WebGUI',1,'Collateral Macros',1050441851,NULL); INSERT INTO international VALUES (829,'WebGUI',1,'Page Template',1038870260,NULL); -INSERT INTO international VALUES (830,'WebGUI',1,'Page templates are used to organize wobjects on your page. To do this you create page template positions. You can have any number of positions in your page template, but you must always have position one. The page template position variables look like this: \r\n

\r\n<tmpl_var page.position1>\r\n<tmpl_var page.position2>\r\n<tmpl_var page.position3>\r\n<tmpl_var page.position4>\r\n<tmpl_var page.position5>\r\n<tmpl_var page.position6>\r\n<tmpl_var page.position7>\r\n<tmpl_var ...>\r\n\r\n
\r\n\r\nThe position elements can go up to 1 billion, which should be more than enough for the average site.',1038870260,NULL); +INSERT INTO international VALUES (830,'WebGUI',1,'Page templates are used to organize wobjects on your page. To do this you create page template positions. You can have any number of positions in your page template, but you must always have position one. The following are the variables available to page templates.\r\n

\r\n\r\npositionX_loop
\r\nThe loop that defines a page position and contains a list of wobjects for that position. Replace X with a number, so position one would be position1_loop, and position two would be position2_loop, etc.\r\n

\r\n\r\nwobject.canView
\r\nA condition indicating whether the current user has the privileges to view this wobject. \r\n

\r\n\r\nwobject.canEdit
\r\nA condition indicating whether the current user has the privileges to edit this wobject.\r\n

\r\n\r\nwobject.controls
\r\nThe toolbar for manipulating the properties of this wobject.\r\n

\r\n\r\nwobject.namespace
\r\nThe namespace of this wobject. This is also known as the wobject type, for instance Article, USS, SQLReport, and SiteMap are all namespaces.\r\n

\r\n\r\nwobject.id
\r\nThe unique identifier for this wobject.\r\n

\r\n\r\nwobject.isInDateRange
\r\nA condition indicating whether the wobject is scheduled to be displayed right now. The variable wobject.canView already takes this into account, but content managers can always view content, so this is an extra check so they don\'t have to see the wobject if it\'s not scheduled to appear yet, or if it\'s end date has already passed.\r\n

\r\n\r\nwobject.content
\r\nThe content produced by the wobject.\r\n

\r\n\r\n

\r\n\r\n

\r\nNOTE: The position elements can go up to 1 billion, which should be more than enough for the average site.\r\n\r\n

\r\n\r\npage.canEdit
\r\nA condition indicating whether the current user has the privileges to edit this page.\r\n

\r\n\r\npage.controls
\r\nThe toolbar for manipulating the properties of the page.\r\n

\r\n\r\n\r\n\r\n',1070028702,NULL); INSERT INTO international VALUES (825,'WebGUI',1,'Template, Language',1038865669,NULL); INSERT INTO international VALUES (826,'WebGUI',1,'WebGUI has a powerful templating language built to give you maximum control over the layout of your content. The following is a list of the template language syntax.\r\n\r\n

\r\nNOTE: Please note that the words foo and bar are used below as placeholders for the actual variable names that you\'ll use. They are not part of the template language.\r\n\r\n

\r\nVariables
\r\nVariables are the most basic of the template commands. They are used to position pieces of content.\r\n\r\n

\r\nSyntax: <tmpl_var foo> or <tmpl_var name=\"foo\">\r\n

\r\n\r\nExample: <tmpl_var name>\r\n

\r\n\r\nConditions
\r\nTo programmers conditions are nothing new, but to designers they can often be confusing at first. Conditions are really just true or false questions, and if you think of them that way, you\'ll have no trouble at all.\r\n

\r\n\r\nSyntax: <tmpl_if foo> <tmpl_else> </tmpl_if>\r\n
\r\nSyntax: <tmpl_unless foo> <tmpl_else> </tmpl_unless>\r\n

\r\n\r\nExample: <tmpl_if isTrue> It was true!<tmpl_else> It was false! </tmpl_if>\r\n

\r\n\r\nLoops
\r\nLoops iterate over a list of data output for each pass in the loop. Loops are slightly more complicated to use than plain variables, but are considerably more powerful.\r\n

\r\n\r\nSyntax: <tmpl_loop foo> </tmpl_loop>\r\n

\r\n\r\nExample:
\r\n<tmpl_loop users>
\r\n   Name: <tmpl_var first_name><br/>
\r\n</tmpl_loop>\r\n

\r\n\r\nLoop Conditions
\r\nLoops come with special condition variables of their own. They are __FIRST__, __ODD__, __INNER__, and __LAST__.\r\n

\r\n\r\nExamples:
\r\n

\r\n   <TMPL_LOOP FOO>\r\n      <TMPL_IF __FIRST__>\r\n        This only outputs on the first pass.\r\n      </TMPL_IF>\r\n\r\n      <TMPL_IF __ODD__>\r\n        This outputs every other pass, on the odd passes.\r\n      </TMPL_IF>\r\n\r\n      <TMPL_UNLESS __ODD__>\r\n        This outputs every other pass, on the even passes.\r\n      </TMPL_UNLESS>\r\n\r\n      <TMPL_IF __INNER__>\r\n        This outputs on passes that are neither first nor last.\r\n      </TMPL_IF>\r\n\r\n      <TMPL_IF __LAST__>\r\n        This only outputs on the last pass.\r\n      <TMPL_IF>\r\n   </TMPL_LOOP>\r\n
\r\n\r\n

\r\nNOTE:Both the template language and template variables are case-insensitive.',1038865669,NULL); INSERT INTO international VALUES (74,'USS',1,'User Submission System Template',1038865585,NULL); -INSERT INTO international VALUES (75,'USS',1,'This is the listing of template variables available in user submission system templates.\r\n

\r\n\r\nreadmore.label
\r\nA translated label that indicates that the user should click to read more.\r\n

\r\n\r\nresponses.label
\r\nA translated label that indicates that the user should click to view the responses to this submission.\r\n

\r\n\r\ncanPost
\r\nA condition that indicates whether a user can add a new submission.\r\n

\r\n\r\npost.url
\r\nThe URL to add a new submission.\r\n

\r\n\r\npost.label
\r\nA translated label for the post link.\r\n

\r\n\r\nsearch.label
\r\nA translated label for the search link.\r\n

\r\n\r\nsearch.url
\r\nThe URL to toggle on/off WebGUI\'s power search form.\r\n

\r\n\r\nsearch.form
\r\nWebGUI\'s power search form.\r\n

\r\n\r\ntitle.label
\r\nA translated label for the title column.\r\n

\r\n\r\nthumbnail.label
\r\nA translated label for the thumbnail column.\r\n

\r\n\r\ndate.label
\r\nA translated label for the date column.\r\n

\r\n\r\ndate.updated.label
\r\nThe translated label indicating what date this submission was last edited.\r\n

\r\n\r\nby.label
\r\nA translated label stating who the submission was submitted by.\r\n

\r\n\r\nsubmissions_loop
\r\nA loop containing each submission.\r\n

\r\nsubmission.id
\r\nA unique identifier for this submission.\r\n

\r\n\r\nsubmission.url
\r\nThe URL to view this submission.\r\n

\r\n\r\nsubmission.content
\r\nThe abbreviated text content of this submission.\r\n

\r\n\r\nsubmission.responses
\r\nThe number of responses to this submission.\r\n

\r\n\r\nsubmission.title
\r\nThe title for this submission.\r\n

\r\n\r\nsubmission.userId
\r\nThe user id of the user that posted this submission.\r\n

\r\n\r\nsubmission.username
\r\nThe username of the person that posted this submission.\r\n

\r\n\r\nsubmission.status
\r\nThe status of this submission (approved, pending, denied).\r\n

\r\n\r\nsubmission.thumbnail
\r\nThe thumbnail of the image uploaded with this submission (if any).\r\n

\r\n\r\nsubmission.date
\r\nThe that this submission was posted.\r\n

\r\n\r\nsubmission.date.updated
\r\nA human readable date that displays the date and time this submission was last edited.\r\n

\r\n\r\nsubmission.currentUser
\r\nA condition indicating whether the current user is the same as the user that posted this submission.\r\n

\r\n\r\nsubmission.userProfile
\r\nThe URL to the profile of the user that posted this submission.\r\n

\r\n\r\nsubmission.secondColumn
\r\nA condition indicating whether or not this submission would belong in the second column, in a multi-column layout.\r\n

\r\n\r\nsubmission.thirdColumn
\r\nA condition indicating whether or not this submission would belong in the third column, in a multi-column layout.\r\n

\r\n\r\nsubmission.fourthColumn
\r\nA condition indicating whether or not this submission would belong in the fourth column, in a multi-column layout.\r\n

\r\n\r\nsubmission.fifthColumn
\r\nA condition indicating whether or not this submission would belong in the fifth column, in a multi-column layout.\r\n

\r\n\r\n

\r\n

\r\n\r\n\r\nfirstPage
\r\nA link to the first page in the paginator.\r\n

\r\n\r\nlastPage
\r\nA link to the last page in the paginator.\r\n

\r\n\r\nnextPage
\r\nA link to the next page forward in the paginator.\r\n

\r\n\r\npreviousPage
\r\nA link to the next page backward in the paginator.\r\n

\r\n\r\npageList
\r\nA list of links to all the pages in the paginator.\r\n

\r\n\r\nmultiplePages
\r\nA conditional indicating whether there is more than one page in the paginator.\r\n

\r\n',1066637208,NULL); +INSERT INTO international VALUES (75,'USS',1,'This is the listing of template variables available in user submission system templates.\r\n

\r\n\r\nreadmore.label
\r\nA translated label that indicates that the user should click to read more.\r\n

\r\n\r\nresponses.label
\r\nA translated label that indicates that the user should click to view the responses to this submission.\r\n

\r\n\r\ncanPost
\r\nA condition that indicates whether a user can add a new submission.\r\n

\r\n\r\npost.url
\r\nThe URL to add a new submission.\r\n

\r\n\r\npost.label
\r\nA translated label for the post link.\r\n

\r\n\r\naddquestion.label
\r\nA translated label that prompts the user to add a question to the USS.\r\n

\r\n\r\naddlink.label
\r\nA translated label that prompts the user to add a link to the USS.\r\n

\r\n\r\nsearch.label
\r\nA translated label for the search link.\r\n

\r\n\r\nsearch.url
\r\nThe URL to toggle on/off WebGUI\'s power search form.\r\n

\r\n\r\nsearch.form
\r\nWebGUI\'s power search form.\r\n

\r\n\r\nrss.url
\r\nThe URL to generate an RSS feed from the content in the USS.\r\n

\r\n\r\ncanModerate
\r\nA condition indicating whether the current user has the rights to moderate posts in this USS.\r\n

\r\n\r\ntitle.label
\r\nA translated label for the title column.\r\n

\r\n\r\nthumbnail.label
\r\nA translated label for the thumbnail column.\r\n

\r\n\r\ndate.label
\r\nA translated label for the date column.\r\n

\r\n\r\ndate.updated.label
\r\nThe translated label indicating what date this submission was last edited.\r\n

\r\n\r\nby.label
\r\nA translated label stating who the submission was submitted by.\r\n

\r\n\r\nsubmission.edit.label
\r\nA translated text label that prompts the user to edit a particular submission.\r\n

\r\n\r\nsubmissions_loop
\r\nA loop containing each submission.\r\n

\r\n\r\nsubmission.id
\r\nA unique identifier for this submission.\r\n

\r\n\r\nsubmission.url
\r\nThe URL to view this submission.\r\n

\r\n\r\nsubmission.content
\r\nThe abbreviated text content of this submission.\r\n

\r\n\r\nsubmission.content.full
\r\nThe full text content of this submission.\r\n

\r\n\r\n\r\nsubmission.responses
\r\nThe number of responses to this submission.\r\n

\r\n\r\nsubmission.title
\r\nThe title for this submission.\r\n

\r\n\r\nsubmission.userDefined1 - submission.userDefined5
\r\nA series of user defined fields to add custom functionality to the USS.\r\n

\r\n\r\nsubmission.userId
\r\nThe user id of the user that posted this submission.\r\n

\r\n\r\nsubmission.username
\r\nThe username of the person that posted this submission.\r\n

\r\n\r\nsubmission.status
\r\nThe status of this submission (approved, pending, denied).\r\n

\r\n\r\nsubmission.thumbnail
\r\nThe thumbnail of the image uploaded with this submission (if any).\r\n

\r\n\r\nsubmission.image
\r\nThe URL of the image attached to this submission.\r\n

\r\n\r\n\r\nsubmission.date
\r\nThe that this submission was posted.\r\n

\r\n\r\nsubmission.date.updated
\r\nA human readable date that displays the date and time this submission was last edited.\r\n

\r\n\r\nsubmission.currentUser
\r\nA condition indicating whether the current user is the same as the user that posted this submission.\r\n

\r\n\r\nsubmission.userProfile
\r\nThe URL to the profile of the user that posted this submission.\r\n

\r\n\r\nsubmission.edit.url
\r\nThe URL to edit this submission.\r\n

\r\n\r\n\r\nsubmission.secondColumn
\r\nA condition indicating whether or not this submission would belong in the second column, in a multi-column layout.\r\n

\r\n\r\nsubmission.thirdColumn
\r\nA condition indicating whether or not this submission would belong in the third column, in a multi-column layout.\r\n

\r\n\r\nsubmission.fourthColumn
\r\nA condition indicating whether or not this submission would belong in the fourth column, in a multi-column layout.\r\n

\r\n\r\nsubmission.fifthColumn
\r\nA condition indicating whether or not this submission would belong in the fifth column, in a multi-column layout.\r\n

\r\n\r\nsubmission.controls
\r\nThe administrative toolbar for each submission.\r\n

\r\n\r\n

\r\n

\r\n\r\n\r\nfirstPage
\r\nA link to the first page in the paginator.\r\n

\r\n\r\nlastPage
\r\nA link to the last page in the paginator.\r\n

\r\n\r\nnextPage
\r\nA link to the next page forward in the paginator.\r\n

\r\n\r\npreviousPage
\r\nA link to the next page backward in the paginator.\r\n

\r\n\r\npageList
\r\nA list of links to all the pages in the paginator.\r\n

\r\n\r\nmultiplePages
\r\nA conditional indicating whether there is more than one page in the paginator.\r\n

\r\n',1070197639,NULL); INSERT INTO international VALUES (73,'MessageBoard',1,'Message Board Template',1066584179,NULL); INSERT INTO international VALUES (74,'MessageBoard',1,'The following is the list of template variables available in message board templates.\r\n

\r\n\r\nforum.add.url
\r\nA url that will add a forum to this message board.\r\n

\r\n\r\nforum.add.label
\r\nThe default label for forum.add.url.\r\n

\r\n\r\ntitle.label
\r\nThe default label for the title columnn.\r\n

\r\n\r\nviews.label
\r\nThe default label for the views column.\r\n

\r\n\r\nrating.label
\r\nThe default label for the ratings column.\r\n

\r\n\r\nthreads.label
\r\nThe default label for the threads column.\r\n

\r\n\r\nreplies.label
\r\nThe default label for the replies column.\r\n

\r\n\r\nlastpost.label
\r\nThe default label for the last post column.\r\n

\r\n\r\n\r\nforum_loop
\r\nA loop containing the data for each of the forums contained in this message board.\r\n

\r\n\r\n

\r\n\r\nforum.controls
\r\nThe editing controls for this forum.\r\n

\r\n\r\nforum.count
\r\nAn integer displaying the forum count as it goes through the loop.\r\n

\r\n\r\nforum.title
\r\nThe title of this forum.\r\n

\r\n\r\nforum.description
\r\nThe description of this forum.\r\n

\r\n\r\nforum.replies
\r\nThe number of replies all the threads in this forum have received.\r\n

\r\n\r\nforum.rating
\r\nThe average rating of all the posts in the forum.\r\n

\r\n\r\nforum.views
\r\nThe total number of views of all the posts in the forum.\r\n

\r\n\r\nforum.threads
\r\nThe total number of threads in this forum.\r\n

\r\n\r\nforum.url
\r\nThe url to view this forum.\r\n

\r\n\r\nforum.lastpost.url
\r\nThe url to view the last post in this forum.\r\n

\r\n\r\nforum.lastpost.date
\r\nThe human readable date of the last post in this forum.\r\n

\r\n\r\nforum.lastpost.time
\r\nThe human readable time of the last post in this forum.\r\n

\r\n\r\nforum.lastpost.epoch
\r\nThe epoch date of the last post in this forum.\r\n

\r\n\r\nforum.lastpost.subject
\r\nThe subject of the last post in this forum.\r\n

\r\n\r\nforum.lastpost.user.id
\r\nThe userid of the last poster.\r\n

\r\n\r\nforum.lastpost.user.name
\r\nThe username of the last poster.\r\n

\r\n\r\nforum.lastpost.user.profile
\r\nThe url to the last poster\'s profile.\r\n

\r\n\r\nforum.lastpost.user.isVisitor
\r\nA condition indicating where the last poster was a visitor.\r\n

\r\n\r\n\r\n

\r\n

\r\n\r\ndefault.listing
\r\nA full forum rendered using the forum template.\r\n

\r\n\r\ndefault.description
\r\nThe description of the default forum.\r\n

\r\n\r\ndefault.title
\r\nThe title of the default forum.\r\n

\r\n\r\ndefault.controls
\r\nThe controls for the default forum.\r\n

\r\n\r\nareMultipleForums
\r\nA condition indicating whether there is more than one forum.\r\n

\r\n',1066584179,NULL); INSERT INTO international VALUES (72,'SiteMap',1,'Site Map Template',1047855100,NULL); INSERT INTO international VALUES (73,'SiteMap',1,'This is the list of template variables available for site map templates.\r\n

\r\n\r\npage_loop
\r\nThis loop contains all of the pages in the site map.\r\n

\r\n\r\npage.indent
\r\nThe indent spacer for this page indicating the depth of the page in the tree.\r\n

\r\n\r\npage.url
\r\nThe URL to the page.\r\n

\r\n\r\npage.id
\r\nThe unique identifier for this page that WebGUI uses internally.\r\n

\r\n\r\npage.title
\r\nThe title of this page.\r\n

\r\n\r\npage.menutitle
\r\nThe title of this page that appears in navigation.\r\n

\r\n\r\npage.synopsis
\r\nThe description of the contents of this page (if any).\r\n

\r\n\r\npage.isRoot
\r\nA condition indicating whether or not this page is a root.\r\n

\r\n\r\npage.isTop
\r\nA condition indicating whether or not this page is at the top of the navigation tree.\r\n

\r\n\r\n\r\n

\r\n

',1047855100,NULL); INSERT INTO international VALUES (75,'FileManager',1,'File Manager Template',1038853712,NULL); INSERT INTO international VALUES (76,'FileManager',1,'This is the list of template variables available in File Manager templates.\r\n

\r\n\r\ntitleColumn.url
\r\nThe URL to sort by the title.\r\n

\r\n\r\ntitleColumn.label
\r\nThe translated label for the title.\r\n

\r\n\r\ndescriptionColumn.label
\r\nThe translated label for the description.\r\n

\r\n\r\ndescriptionColumn.url
\r\nThe URL to sort by the description.\r\n

\r\n\r\ndateColumn.label
\r\nThe translated label for the upload date.\r\n

\r\n\r\ndateColumn.url
\r\nThe URL to sort by the date uploaded.\r\n

\r\n\r\nsearch.form
\r\nWebGUI\'s power search form.\r\n

\r\n\r\nsearch.url
\r\nThe URL to toggle search mode on and off.\r\n

\r\n\r\nsearch.label
\r\nThe translated label for the search link.\r\n

\r\n\r\naddfile.url
\r\nThe URL to add a file to the file manager.\r\n

\r\n\r\naddfile.label
\r\nThe translated label for the add file link.\r\n

\r\n\r\nfile_loop
\r\nA loop containing the information about each file uploaded to this file manager.\r\n

\r\nfile.canView
\r\nA condition as to whether the current user has the privileges to view this file.\r\n

\r\nfile.controls
\r\nThe WebGUI management controls for this file.\r\n

\r\nfile.title
\r\nThe title for this file.\r\n

\r\nfile.version1.name
\r\nThe filename for the first version of this file.\r\n

\r\nfile.version1.url
\r\nThe download URL for the first version of this file.\r\n

\r\nfile.version1.icon
\r\nThe URL to the icon for the file type of the first version of this file.\r\n

\r\nfile.version1.size
\r\nThe storage size of the first version of this file.\r\n

\r\nfile.version1.type
\r\nThe type (or file extension) of the first version of this file.\r\n

\r\nfile.version1.thumbnail
\r\nThe URL to the thumbnail for the first version of this file.\r\n

\r\nfile.version1.isImage
\r\nA conditional indicating whether the first version of this file is an image or not.\r\n

\r\nfile.version2.name
\r\nThe filename for the second version of this file.\r\n

\r\nfile.version2.url
\r\nThe download URL for the second version of this file.\r\n

\r\nfile.version2.icon
\r\nThe URL to the icon for the file type of the second version of this file.\r\n

\r\nfile.version2.size
\r\nThe storage size of the second version of this file.\r\n

\r\nfile.version2.type
\r\nThe type (or file extension) of the second version of this file.\r\n

\r\nfile.version2.thumbnail
\r\nThe URL to the thumbnail for the second version of this file.\r\n

\r\nfile.version2.isImage
\r\nA conditional indicating whether the second version of this file is an image or not.\r\n

\r\nfile.version3.name
\r\nThe filename for the third version of this file.\r\n

\r\nfile.version3.url
\r\nThe download URL for the third version of this file.\r\n

\r\nfile.version3.icon
\r\nThe URL to the icon for the file type of the third version of this file.\r\n

\r\nfile.version3.size
\r\nThe storage size of the third version of this file.\r\n

\r\nfile.version3.type
\r\nThe type (or file extension) of the third version of this file.\r\n

\r\nfile.version3.thumbnail
\r\nThe URL to the thumbnail for the third version of this file.\r\n

\r\nfile.version3.isImage
\r\nA conditional indicating whether the third version of this file is an image or not.\r\n

\r\nfile.description
\r\nThe description of this file.\r\n

\r\nfile.date
\r\nThe date that this file was uploaded.\r\n

\r\nfile.time
\r\nThe time that this file was uploaded.\r\n

\r\n

\r\n

\r\nnoresults.message
\r\nA translated message stating that this file manager has no files for this user to view.\r\n

\r\nnoresults
\r\nA conditional indicating whether there are any files for this user to view.\r\n

\r\n\r\nfirstPage
\r\nA link to the first page in the paginator.\r\n

\r\n\r\nlastPage
\r\nA link to the last page in the paginator.\r\n

\r\n\r\nnextPage
\r\nA link to the next page forward in the paginator.\r\n

\r\n\r\npreviousPage
\r\nA link to the next page backward in the paginator.\r\n

\r\n\r\npageList
\r\nA list of links to all the pages in the paginator.\r\n

\r\n\r\nmultiplePages
\r\nA conditional indicating whether there is more than one page in the paginator.\r\n

\r\n',1038853712,NULL); -INSERT INTO international VALUES (75,'LinkList',1,'Link List Template',1038852816,NULL); -INSERT INTO international VALUES (76,'LinkList',1,'The following is the list of template variables available in Link List templates.\r\n

\r\n\r\n\r\naddlink.url
\r\nThe URL to add a link to this link list.\r\n

\r\n\r\naddlink.label
\r\nThe translated label for the add link URL.\r\n

\r\n\r\ncanEdit
\r\nA condition indicating whether the user can edit the links.\r\n

\r\n\r\n\r\nlink_loop
\r\nThis loop contains all of the information about each link.\r\n

\r\n\r\nlink.url
\r\nThe URL for this link.\r\n

\r\n\r\nlink.name
\r\nThe text to be linked.\r\n

\r\n\r\nlink.controls
\r\nThe WebGUI management controls for this link.\r\n

\r\n\r\nlink.newwindow
\r\nA conditional as to whether the link should be opened in a new window.\r\n

\r\n\r\nlink.description
\r\nThe description of this link.\r\n

\r\n\r\n

\r\n

\r\n',1050158350,NULL); -INSERT INTO international VALUES (73,'Item',1,'Item Template',1038852468,NULL); -INSERT INTO international VALUES (74,'Item',1,'The following is the list of template variables available in item templates.\r\n

\r\n\r\nattachment.name
\r\nThe filename for the file attached to this item.\r\n

\r\n\r\nattachment.url
\r\nThe URL to download the file attached to this item.\r\n

\r\n\r\nattachment.icon
\r\nThe URL to the icon for the file attached to this item.\r\n

',1038852468,NULL); -INSERT INTO international VALUES (96,'EventsCalendar',1,'Event Template',1038852164,NULL); -INSERT INTO international VALUES (97,'EventsCalendar',1,'The following is the list of template variables available in event templates.\r\n

\r\n\r\ntitle
\r\nThe title of this event.\r\n

\r\n\r\nstart.label
\r\nThe translated label for the start date.\r\n

\r\n\r\nstart.date
\r\nThe date this event starts.\r\n

\r\n\r\nend.date
\r\nThe date this event ends.\r\n

\r\n\r\nend.label
\r\nThe translated label for the end date.\r\n

\r\n\r\ncanEdit
\r\nA condition indicating whether the current user can edit an event.\r\n

\r\n\r\nedit.url
\r\nThe URL to edit this event.\r\n

\r\n\r\nedit.label
\r\nThe translated label for the edit URL.\r\n

\r\n\r\ndelete.url
\r\nThe URL to delete this event.\r\n

\r\n\r\ndelete.label
\r\nThe translated label for the delete URL.\r\n

\r\n\r\nprevious.url
\r\nThe URL to view the event before this one.\r\n

\r\n\r\nprevious.label
\r\nThe translated label for the previous URL.\r\n

\r\n\r\nnext.label
\r\nThe translated label for the next URL.\r\n

\r\n\r\nnext.url
\r\nThe URL to view the event after this one.\r\n

\r\n\r\ndescription
\r\nThe description of this event.\r\n

\r\n',1038852164,NULL); -INSERT INTO international VALUES (76,'FAQ',1,'FAQ Template',1038802597,NULL); -INSERT INTO international VALUES (77,'FAQ',1,'The following is the list of template variables available in FAQ templates.\r\n

\r\n\r\naddquestion.url
\r\nThe URL to add a question to the FAQ.\r\n

\r\n\r\naddquestion.label
\r\nThe translated label for the add question link.\r\n

\r\n\r\nqa_loop
\r\nThe loop containing the variables for each question in the FAQ.\r\n

\r\nqa.id
\r\nThe unique identifier for this question.\r\n

\r\nqa.answer
\r\nThe answer for this question.\r\n

\r\nqa.question
\r\nThe question itself.\r\n

\r\nqa.controls
\r\nThe WebGUI management controls for this question.\r\n

\r\n

\r\n

',1038802597,NULL); -INSERT INTO international VALUES (94,'EventsCalendar',1,'Events Calendar Template',1038795945,NULL); -INSERT INTO international VALUES (95,'EventsCalendar',1,'The following template variables are available for you to customize your events calendar.\r\n

\r\naddevent.url
\r\nThe URL to add an event to the calendar.\r\n

\r\n\r\naddevent.label
\r\nThe translated label for the add event link.\r\n

\r\n\r\ncalendar.big
\r\nA full page calendar.\r\n

\r\n\r\ncalendar.small
\r\nA small calendar showing only dates.\r\n

\r\n\r\ncalendar.firstPage
\r\nA link to the first page of the calendar pagination.\r\n

\r\n\r\ncalendar.lastPage
\r\nA link to the last page of the calendar pagination.\r\n

\r\n\r\ncalendar.nextPage
\r\nA link to the next page forward in the calendar pagination.\r\n

\r\n\r\ncalendar.previousPage
\r\nA link to the next page backward in the calendar pagination.\r\n

\r\n\r\ncalendar.pageList
\r\nA list of links to all the pages in the calendar pagination.\r\n

\r\n\r\ncalendar.multiplePages
\r\nA conditional variable indicating whether there is more than one page in the calendar pagination.\r\n

\r\n\r\nlist_loop
\r\nA loop containing the list view of an events calendar.\r\n

\r\nlist.date
\r\nThe date of this event.\r\n

\r\nlist.title
\r\nThe title of this event.\r\n

\r\nlist.description
\r\nThe description of this event.\r\n

\r\nlist.sameAsPrevious
\r\nA conditional indicating whether the this event has the same date as the last event.\r\n

\r\nlist.url
\r\nThe URL to the full page view of this event.\r\n

\r\nlist.controls
\r\nThe WebGUI management controls for this event.\r\n

\r\n\r\n

\r\n

\r\n\r\nlist.firstPage
\r\nA link to the first page of the pagination.\r\n

\r\n\r\nlist.lastPage
\r\nA link to the last page of the pagination.\r\n

\r\n\r\nlist.nextPage
\r\nA link to the next page forward in the pagination.\r\n

\r\n\r\nlist.previousPage
\r\nA link to the next page backward in the pagination.\r\n

\r\n\r\nlist.pageList
\r\nA list of links to all the pages in the pagination.\r\n

\r\n\r\nlist.multiplePages
\r\nA conditional variable indicating whether there is more than one page in the pagination.\r\n

\r\n\r\n',1038795945,NULL); +INSERT INTO international VALUES (96,'EventsCalendar',1,'Event Template',1078568518,NULL); +INSERT INTO international VALUES (97,'EventsCalendar',1,'The following is the list of template variables available in event templates.\r\n

\r\n\r\ntitle
\r\nThe title of this event.\r\n

\r\n\r\nstart.label
\r\nThe translated label for the start date.\r\n

\r\n\r\nstart.date
\r\nThe date this event starts.\r\n

\r\n\r\nstart.time
\r\nThe time this event starts.\r\n

\r\n\r\nend.date
\r\nThe date this event ends.\r\n

\r\n\r\nend.time
\r\nThe time this event ends.\r\n

\r\n\r\nend.label
\r\nThe translated label for the end date.\r\n

\r\n\r\ncanEdit
\r\nA condition indicating whether the current user can edit an event.\r\n

\r\n\r\nedit.url
\r\nThe URL to edit this event.\r\n

\r\n\r\nedit.label
\r\nThe translated label for the edit URL.\r\n

\r\n\r\ndelete.url
\r\nThe URL to delete this event.\r\n

\r\n\r\ndelete.label
\r\nThe translated label for the delete URL.\r\n

\r\n\r\nprevious.url
\r\nThe URL to view the event before this one.\r\n

\r\n\r\nprevious.label
\r\nThe translated label for the previous URL.\r\n

\r\n\r\nnext.label
\r\nThe translated label for the next URL.\r\n

\r\n\r\nnext.url
\r\nThe URL to view the event after this one.\r\n

\r\n\r\ndescription
\r\nThe description of this event.\r\n

\r\n',1078568518,NULL); +INSERT INTO international VALUES (94,'EventsCalendar',1,'Events Calendar Template',1078520840,NULL); +INSERT INTO international VALUES (95,'EventsCalendar',1,'The following template variables are available for you to customize your events calendar.\r\n

\r\naddevent.url
\r\nThe URL to add an event to the calendar.\r\n

\r\n\r\naddevent.label
\r\nThe translated label for the add event link.\r\n

\r\n\r\nmonth_loop
\r\nA loop containing all the months in the calendar.\r\n

\r\n\r\n

\r\n\r\ndaysInMonth
\r\nThe number of days in this month.\r\n

\r\n\r\nday_loop
\r\nA loop containing all the days in the month.\r\n

\r\n\r\n

\r\n\r\ndayOfWeek
\r\nThe day number for the day in the week.\r\n

\r\n\r\nday
\r\nThe day of the month.\r\n

\r\n\r\nisStartOfWeek
\r\nA boolean indicating this is the first day in the week.\r\n

\r\n\r\nisEndOfWeek
\r\nA boolean indicating this is the last day in the week.\r\n

\r\n\r\nisToday
\r\nA boolean indicating that this day is today.\r\n

\r\n\r\nevent_loop
\r\nA loop containing all of the events in this day.\r\n

\r\n\r\n

\r\n\r\ndescription
\r\nThe description or detail of this event.\r\n

\r\n\r\nname
\r\nThe name or title of this event.\r\n

\r\n\r\nstart.date.human
\r\nThe human representation of the start date of this event.\r\n

\r\n\r\nstart.time.human
\r\nThe human representation of the start time of this event.\r\n

\r\n\r\nstart.date.epoch
\r\nThe epoch representation of the start date of this event.\r\n

\r\n\r\nstart.year
\r\nThe year this event starts.\r\n

\r\n\r\nstart.month
\r\nThe month this event starts.\r\n

\r\n\r\nstart.day
\r\nThe day this event starts.\r\n

\r\n\r\nend.date.human
\r\nThe human representation of the end date of this event.\r\n

\r\n\r\nend.time.human
\r\nThe human representation of the end time of this event.\r\n

\r\n\r\nend.date.epoch
\r\nThe epoch representation of the end date of this event.\r\n

\r\n\r\nend.year
\r\nThe year this event ends.\r\n

\r\n\r\nend.month
\r\nThe month this event ends.\r\n

\r\n\r\nend.day
\r\nThe day this event ends.\r\n

\r\n\r\nstartEndYearMatch
\r\nA boolean indicating whether the start and end year match.\r\n

\r\n\r\nstartEndMonthMatch
\r\nA boolean indicating whether the start and end month match.\r\n

\r\n\r\nstartEndDayMatch
\r\nA boolean indicating whether the start and end day match.\r\n

\r\n\r\nisFirstDayOfEvent
\r\nA boolean indicating whether this day is the first day of the event.\r\n

\r\n\r\ndateIsSameAsPrevious
\r\nA boolean indicating whether the start and end date of this event are the same as the previous event\'s start and end date.\r\n

\r\n\r\ndaysInEvent
\r\nThe length of this event in days.\r\n

\r\n\r\nurl
\r\nThe URL to view this event in detail.\r\n

\r\n\r\n\r\n\r\n

\r\n\r\n\r\nurl
\r\nA URL to today\'s events.\r\n

\r\n\r\n\r\n\r\n

\r\n\r\nprepad_loop
\r\nA loop containing info to prepad the days in the month before the start day.\r\n

\r\n\r\n

\r\ncount
\r\nThe day of the week for this pad.\r\n

\r\n\r\n\r\n

\r\n\r\npostpad_loop
\r\nA loop containing the info to postpad the days in the month after the last day.\r\n

\r\n\r\n

\r\ncount
\r\nThe day of the week for this pad.\r\n

\r\n\r\n

\r\n\r\nmonth
\r\nThe name of this month.\r\n

\r\n\r\nyear
\r\nThe name of this year.\r\n

\r\n\r\n\r\n\r\n

\r\n\r\nsunday.label
\r\nA label representing \"Sunday\".\r\n

\r\n\r\nmonday.label
\r\nA label representing \"Monday\".\r\n

\r\n\r\ntuesday.label
\r\nA label representing \"Tuesday\".\r\n

\r\n\r\nwednesday.label
\r\nA label representing \"Wednesday\".\r\n

\r\n\r\nthursday.label
\r\nA label representing \"Thursday\".\r\n

\r\n\r\nfriday.label
\r\nA label representing \"Friday\".\r\n

\r\n\r\nsaturday.label
\r\nA label representing \"Saturday\".\r\n

\r\n\r\n\r\nsunday.label.short
\r\nA label representing the abbreviated version of \"Sunday\".\r\n

\r\n\r\nmonday.label.short
\r\nA label representing the abbreviated version of \"Monday\".\r\n

\r\n\r\ntuesday.label.short
\r\nA label representing the abbreviated version of \"Tuesday\".\r\n

\r\n\r\nwednesday.label.short
\r\nA label representing the abbreviated version of \"Wednesday\".\r\n

\r\n\r\nthursday.label.short
\r\nA label representing the abbreviated version of \"Thursday\".\r\n

\r\n\r\nfriday.label.short
\r\nA label representing the abbreviated version of \"Friday\".\r\n

\r\n\r\nsaturday.label.short
\r\nA label representing the abbreviated version of \"Saturday\".\r\n

\r\n\r\n',1078520840,NULL); INSERT INTO international VALUES (73,'Article',1,'The following template variables are available for article templates.\r\n

\r\n\r\nnew.template
\r\nArticles have the special ability to change their template so that you can allow users to see different views of the article. You do this by creating a link with a URL like this (replace 999 with the template Id you wish to use):

\r\n<a href=\"<tmpl_var new.template>999\">Read more...</a>\r\n

\r\ndescription.full
\r\nThe full description without any pagination. (For the paginated description use \"description\" instead.)\r\n

\r\n\r\ndescription.first.100words
\r\nThe first 100 words in the description. Words are defined as characters separated by whitespace, so HTML entities and tags count as words.\r\n

\r\n\r\ndescription.first.75words
\r\nThe first 75 words in the description. Words are defined as characters separated by whitespace, so HTML entities and tags count as words.\r\n

\r\n\r\ndescription.first.50words
\r\nThe first 50 words in the description. Words are defined as characters separated by whitespace, so HTML entities and tags count as words.\r\n

\r\n\r\ndescription.first.25words
\r\nThe first 25 words in the description. Words are defined as characters separated by whitespace, so HTML entities and tags count as words.\r\n

\r\n\r\ndescription.first.10words
\r\nThe first 10 words in the description. Words are defined as characters separated by whitespace, so HTML entities and tags count as words.\r\n

\r\n\r\ndescription.first.paragraph
\r\nThe first paragraph of the description. The first paragraph is determined by the first carriage return found in the text.\r\n

\r\n\r\ndescription.first.2paragraphs
\r\nThe first two paragraphs of the description. A paragraph is determined by counting the carriage returns found in the text.\r\n

\r\n\r\ndescription.first.sentence
\r\nThe first sentence in the description. A sentence is determined by counting the periods found in the text.\r\n

\r\n\r\ndescription.first.2sentences
\r\nThe first two sentences in the description. A sentence is determined by counting the periods found in the text.\r\n

\r\n\r\ndescription.first.3sentences
\r\nThe first three sentences in the description. A sentence is determined by counting the periods found in the text.\r\n

\r\n\r\ndescription.first.4sentences
\r\nThe first four sentences in the description. A sentence is determined by counting the periods found in the text.\r\n

\r\n\r\n\r\n\r\nattachment.box
\r\nOutputs a standard WebGUI attachment box including icon, filename, and attachment indicator.\r\n

\r\n\r\nattachment.icon
\r\nThe URL to the icon image for this attachment type.\r\n

\r\n\r\nattachment.name
\r\nThe filename for this attachment.\r\n

\r\n\r\nattachment.url
\r\nThe URL to download this attachment.\r\n

\r\n\r\nimage.thumbnail
\r\nThe URL to the thumbnail for the attached image.\r\n

\r\n\r\nimage.url
\r\nThe URL to the attached image.\r\n

\r\n\r\npost.label
\r\nThe translated label to add a comment to this article.\r\n

\r\n\r\n\r\npost.URL
\r\nThe URL to add a comment to this article.\r\n

\r\n\r\nreplies.count
\r\nThe number of comments attached to this article.\r\n

\r\n\r\nreplies.label
\r\nThe translated text indicating that you can view the replies.\r\n

\r\n\r\nreplies.url
\r\nThe URL to view the replies to this article.\r\n

\r\n\r\n\r\nfirstPage
\r\nA link to the first page in the paginator.\r\n

\r\n\r\nlastPage
\r\nA link to the last page in the paginator.\r\n

\r\n\r\nnextPage
\r\nA link to the next page forward in the paginator.\r\n

\r\n\r\npreviousPage
\r\nA link to the next page backward in the paginator.\r\n

\r\n\r\npageList
\r\nA list of links to all the pages in the paginator.\r\n

\r\n\r\nmultiplePages
\r\nA conditional indicating whether there is more than one page in the paginator.\r\n

\r\n\r\nisFirstPage
\r\nA conditional indicating whether the visitor is viewing the first page.\r\n

\r\n\r\nisLastPage
\r\nA conditional indicating whether the visitor is viewing the last page.\r\n

\r\n\r\n',1053770001,NULL); INSERT INTO international VALUES (72,'Article',1,'Article Template',1038794871,NULL); INSERT INTO international VALUES (827,'WebGUI',1,'Wobject Template',1052046436,NULL); INSERT INTO international VALUES (828,'WebGUI',1,'Most wobjects have templates that allow you to change the layout of the wobject\'s user interface. Those wobjects that do have templates all have a common set of template variables that you can use for layout, as well as their own custom variables. The following is a list of the common template variables shared among all wobjects.\r\n

\r\ntitle
\r\nThe title for this wobject.\r\n

\r\n\r\ndisplayTitle
\r\nA conditional variable for whether or not the title should be displayed.\r\n

\r\n\r\ndescription
\r\nThe description of this wobject.\r\n

\r\n\r\nwobjectId
\r\nThe unique identifier that WebGUI uses to control this wobject.\r\n

\r\n\r\nisShortcut
\r\nA conditional indicating if this wobject is a shortcut to an original wobject.\r\n

\r\n\r\noriginalURL
\r\nIf this wobject is a shortcut, then this URL will direct you to the original wobject.\r\n

',1053469640,NULL); INSERT INTO international VALUES (1,'Auth/LDAP',1,'LDAP Authentication Options',1039450730,NULL); -INSERT INTO international VALUES (1,'Auth/WebGUI',1,'WebGUI Authentication Options',1039449605,NULL); +INSERT INTO international VALUES (1,'Auth/WebGUI',1,'WebGUI Authentication Options',1071507721,NULL); INSERT INTO international VALUES (9,'Auth/SMB',1,'NT Password',1039453225,NULL); INSERT INTO international VALUES (8,'Auth/SMB',1,'NT Login',1039452980,NULL); INSERT INTO international VALUES (7,'Auth/SMB',1,'NT Domain',1039452950,NULL); @@ -8758,7 +8382,6 @@ INSERT INTO international VALUES (665,'WebGUI',3,'Groep, Verwijderen',1038483979 INSERT INTO international VALUES (664,'WebGUI',3,'Wobject, Verwijderen',1038483964,NULL); INSERT INTO international VALUES (662,'WebGUI',3,'Instellingen, Beheer',1038483913,NULL); INSERT INTO international VALUES (660,'WebGUI',3,'Groepen, Beheer',1038483881,NULL); -INSERT INTO international VALUES (659,'WebGUI',3,'Stijlen, Beheer',1063590290,NULL); INSERT INTO international VALUES (658,'WebGUI',3,'Gebruikers, Beheer',1038483848,NULL); INSERT INTO international VALUES (657,'WebGUI',3,'Gebruiker, Verwijderen',1038483831,NULL); INSERT INTO international VALUES (653,'WebGUI',3,'Pagina, Verwijderen',1038483777,NULL); @@ -8769,16 +8392,12 @@ INSERT INTO international VALUES (629,'WebGUI',3,'Voorkom Proxy CachingNaam
\r\n
Het label waaraan naar dit plaatje gerefereerd kan worden wanneer het \r\nin pagina\'s geplaatst wordt met ^I(\"label\");
\r\n
\r\n Bestand
\r\n Kies een bestand van je lokale harddisk om op de server te zetten.
\r\n
\r\n Parameters
\r\n Hier kunnen HTML <img> parameters toegevoegd worden die voor dit plaatje \r\ngebruikt zullen worden.
\r\n
\r\n Voorbeelden:
\r\n align=\"right\"
\r\n alt=\"Beschrijving voor dit plaatje\"
\r\n width=\"300\" (breedte in pixels)
\r\n height=\"200\" (hoogte in pixels)
\r\n
\r\nPictogram grootte

\r\nHoe groot (in pixels) moet het pictogram voor dit plaatje zijn?
\r\n',1039782372,NULL); INSERT INTO international VALUES (74,'FileManager',3,'Voeg een bestand toe.',1038480509,NULL); -INSERT INTO international VALUES (75,'FAQ',3,'Voeg vraag toe.',1038480472,NULL); -INSERT INTO international VALUES (71,'ExtraColumn',3,'Extra kolommen geven je de mogelijkheid om de layout van de pagina voor een \r\nspecifieke pagina aan te passen. Meer mogelijkheden hiertoe bieden de stijlen \r\nen sjablonen.
\r\n
\r\n Kolommen worden altijd van links naar rechts toegevoegd. Reeds bestaande \r\ninhoud zal daarom links van de nieuwe kolom te zien zijn.
\r\n
\r\n Tussenruimte
\r\n
Tussenruimte is de hoeveelheid ruimte in pixels tussen de reeds bestaande \r\ncontent en de nieuwe kolom.
\r\n
\r\n Breedte
\r\n Breedte is de werkelijke breedte van de nieuwe kolom in pixels.
\r\n
\r\n Style sheet klasse (class)
\r\n De standaardklasse die normaal aan alle kolommen wordt toegekend is content \r\n(de stijl die de body van de site normaal gebruikt). Het is echter mogelijk \r\nom een speciale stijl voor de extra kolom te definieren.
\r\n
\r\n',1039775096,NULL); INSERT INTO international VALUES (7,'Survey',3,'Antwoordgestuurd',1038479871,NULL); INSERT INTO international VALUES (11,'Survey',3,'Mode',1038479785,NULL); INSERT INTO international VALUES (623,'WebGUI',3,'Cascading Style Sheets (CSS) zijn \r\neen goede manier om het uiterlijk en gevoel van een webpagina te beheren. \r\nZe worden uitgebreid gebruikt in WebGUI.
\r\n
\r\n Als er geen ervaring is met het gebruik van CSS, heeft Plain Black Software cursussen in XHTML \r\nen CSS. Als alternatief kan de CSS editor, genaamd Top Style gebruikt \r\nworden.
\r\n
\r\n De volgende lijst bevat de verschillende klassen die gebruikt worden het \r\nuiterlijk en gevoel van WebGUI te bepalen:
\r\n
\r\n A
\r\n De links in een stijl.
\r\n
\r\n BODY
\r\n De tsandaard indeling van alle paginas die de stijl gebruiken.
\r\n
\r\n H1
\r\n De headers (koppen) op elke pagina.
\r\n
\r\n .accountOptions
\r\n De links sie onder de login en account update formulieren verschijnen.
\r\n
\r\n .adminBar
\r\n De balk die bovenaan de pagina verschijnt wanneer de beheer modus gebruikt \r\nwordt.
\r\n
\r\n .inhoud
\r\n Het belangrijkste inhouds gebied in elke pagina die de stijl gebruikt
\r\n
\r\n .formDescription
\r\n De labels op alle formulieren naast de formulier elementen.
\r\n
\r\n .formSubtext
\r\n De labels onder sommige formulier elementen.
\r\n
\r\n.highlight

\r\nDuid een highlighted object aan, zoals een bericht dat bekeken wordt binnen\r\neen lijst.
\r\n
\r\n.horizontalMenu
\r\nHet horizontale menu (als het horizontale menu macro gebruikt wordt).
\r\n
\r\n.pagination
\r\nDe Vorige en Volgende links op paginas die opgebroken worden in meer paginas.
\r\n
\r\n.selectedMenuItem
\r\nGebruik deze klasse om de huidige pagina te highlighten in een menu macro.
\r\n
\r\n.tableData
\r\nDe data rijen in dingen zoals berichtenborden en gebruikersbijdragen.
\r\n
\r\n.tableHeader
\r\nDe headers van kolommen in dingen zoals berichtenborden en gebruikersbijdragen.
\r\n
\r\n.tableMenu
\r\nHet menu in dingen zoals berichtenborden en gebruikersbijdragen.
\r\n
\r\n.verticalMenu
\r\n Het vertikale menu (als het vertikale menu macro gebruikt wordt).
\r\n
\r\nN.B.: Sommige wobjecten en macros hebben hun eigen unieke stylesheet\r\nklasse, die gedocumenteerd worden in hun eigen hulp bestanden.
\r\n',1043314620,NULL); INSERT INTO international VALUES (622,'WebGUI',3,'Zie Beheren Groep voor een beschrijving van groepeer functies en de\r\nstandaard groepen.
\r\n
\r\nGroepsnaam
\r\nEen naam van de groep. Het is handig een naam te kiezen die de groep beschrijft,\r\nzodat het makkelijk herkenbaar is.
\r\n
\r\nBeschrijving
\r\nEen langere beschrijving van de groep zodat beheerders en inhoud beheerders\r\n(of u als u het zelf vergeet) weten wat het doel van de groep is.
\r\n
\r\nVerlopen Na
\r\nDe tijd die een gebruiker tot deze groep behoort, voordat de gebruikersaccount\r\nverloopt (of dat de gebruiker verwijderd wordt). Dit is nuttig voor paginas\r\nwaarop de gebruikers bepaalde privileges hebben voor een specifieke periode.\r\nDit kan ook per gebruiker worden ingesteld.
\r\n
\r\nKarma Drempel
\r\nWanneer Karma gebruikt wordt, kan deze waarde ingesteld worden. De Karma\r\nDrempel is de hoeveelheid karma die een gebruiker moet hebben om als onderdeel\r\nvan de groep beschouwd te worden.
\r\n',1038415439,NULL); INSERT INTO international VALUES (612,'WebGUI',3,'Er is geen noodzaak om ooit een gebruiker te verwijderen. Wanneer een gebruiker uitgesloten moet worden, verander dan het wachtwoord. Als het echt gewenst is een gebruiker te verwijderen, hou dan in gedachten dat er consequenties zijn. Wanneer een gebruiker verwijdert wordt, zal alle inhoud die met wobjects is toegevoegd (zoals berichten op een berichtenbord en gebruikers bijdragen) op depagina blijven staan. Maar als een andere gebruiker het profiel van de verwijderde gebruiker wilt bekijken, zal de gebruiker een foutmelding krijgen. Ook kan als de gebruiker weer toegelaten wordt op de pagina, er geen toegang meer verleent worden tot zijn/haar oude inhoud objecten, behalve door de gebruiker handmatig opnieuw toe te voegen in het gebruikers tabel.\r\n

\r\nZoals bij elke verwijderingsoperatie wordt er gevraagd of er verder gegaan moet worden met het verwijderen. Als dit met \"Ja\" beantwoord wordt, zal het verwijderingsproces verder gaan en is er geen kans meer om dit te herstellen. Wanneer er met \"Nee\" beantwoord wordt, zal de het programma teruggaan naar het vorige scherm.',1038414758,NULL); -INSERT INTO international VALUES (621,'WebGUI',3,'Stijlen zijn uitgerust met WebGUI macros. Zie Macros Gebruiken voor \r\nmeer informatie.
\r\n
\r\n Stijl Naam
\r\n Dit is een unieke naam die in een oogopslag omschrijft hoe de stijl eruit \r\nziet. De naam heeft geen effect op het uiterlijk van de stijl.
\r\n
\r\n Body
\r\n De body is vrij letterlijk het HTML lichaam van de site. Het definieerd\r\nhoe de pagina navigatie eruit ziet en vele andere dingen zoals logos, copyright \r\netc. Het kale minimum waaruit een body moet bestaan bestaat uit een paar dinegen:\r\nhet ^Adminbalk; macro en het ^-; macro. het ^Adminbalk; macro vertelt WebGUI\r\nwaar de administratieve functies getoond moeten worden. Het ^-; macro (de\r\nsplijter) vertelt WebGUI waar de inhoud moet komen te staan.
\r\n
\r\n Als er hulp nodig is bij het maken van een uiterlijk van een site of als \r\ner hulp nodig is om het ontwerp te converteren naar WebGUI, kan Plain Black Software hulp bieden voor \r\neen klein bedrag (voor Nederlandse support: Procolix.com).
\r\n
\r\n Veel mensen zullen WebGUI macros aan de body toevoegen voor automatische \r\nnavigatie en andere kenmerken.
\r\n
\r\n Style Sheet
\r\n Plaats de style sheet entries hier. Style sheets worden gebruikt om kleuren, \r\nafmetingen en andere eigenschappen van de elementen op de site te controleren. \r\nZie Style Sheets Gebruiken voor meer informatie.
\r\n
\r\n Geavanceerde Gebruikers: voor betere prestaties kan de stylesheet\r\nin het bestandssysteem worden gemaakt (noem het zoiets als webgui.css) en\r\nvoeg een entry toe in deze omgeving: stylesheet
\r\n
\r\n',1039782189,NULL); INSERT INTO international VALUES (620,'WebGUI',3,'Zoals de functie al suggereerd wordt met deze functie een groep verwijdert\r\nen daarmee alle gebruikers in de groep. Zorg dat gebruikers niet afgesloten\r\nworden van paginas waar ze toegang toe zouden moeten hebben door een groep\r\ndie gebruikt wordt te verwijderen.
\r\n
\r\nZoals bij elke verwijderingsoperatie wordt er gevraagd of er verder gegaan \r\nmoet worden met het verwijderen. Als dit met \"Ja\" beantwoord wordt, zal het \r\nverwijderingsproces verder gaan en is er geen kans meer om dit te herstellen. \r\nWanneer er met \"Nee\" beantwoord wordt, zal de het programma teruggaan naar \r\nhet vorige scherm.\r\n',1038413071,NULL); -INSERT INTO international VALUES (609,'WebGUI',3,'Wanneer een stijl verwijderd wordt, zullen alle paginas die deze stijl gebruiken de standaard stijl gaan gebruiken. Om ongestoord de pagina te kunnen bekijken, wees dan zeker dat geen pagina de stijl gebruikt die verwijdert gaat worden.

\r\n\r\nZoals bij elke verwijderingsoperatie wordt er gevraagd of er verder gegaan moet worden met het verwijderen. Als dit met \"Ja\" beantwoord wordt, zal het verwijderingsproces verder gaan en is er geen kans meer om dit te herstellen. Wanneer er met \"Nee\" beantwoord wordt, zal de het programma teruggaan naar het vorige scherm. ',1038412855,NULL); INSERT INTO international VALUES (608,'WebGUI',3,'Het verwijderen van een pagina kan een chaos veroorzaken als iemand niet\r\nweet wat hij/zij aan het doen is. Wanneer een pagina verwijdert wordt, wordt\r\nook de inhoud van de pagina, alle onderliggende paginas en hun inhoud die\r\naan deze pagina gekoppeld zijn, verwijdert. Wees zeker dat alle inhoud die\r\nbehouden moet worden verplaatst is, voordat een pagina verwijderd wordt.
\r\n
\r\nZoals bij elke verwijderingsoperatie wordt er gevraagd of er verder gegaan\r\nmoet worden met het verwijderen. Als dit met \"Ja\" beantwoord wordt, zal het\r\nverwijderingsproces verder gaan en is er geen kans meer om dit te herstellen.\r\nWanneer er met \"Nee\" beantwoord wordt, zal de het programma teruggaan naar\r\nhet vorige scherm.
\r\n',1038412813,NULL); INSERT INTO international VALUES (619,'WebGUI',3,'Deze functie verwijdert permanent het geselcteerde wobject van een pagina.\r\nWanneer het onzeker is of deze inhoud echt verwijderd moet worden, kan het\r\ngeknipt worden zodat het op het klembord komt te staan totdat zeker is of\r\nhet verwijderd moet worden.
\r\n
\r\n Zoals bij elke verwijderingsoperatie wordt er gevraagd of er verder gegaan \r\nmoet worden met het verwijderen. Als dit met \"Ja\" beantwoord wordt, zal het \r\nverwijderingsproces verder gaan en is er geen kans meer om dit te herstellen. \r\nWanneer er met \"Nee\" beantwoord wordt, zal de het programma teruggaan naar \r\nhet vorige scherm.
\r\n',1038412792,NULL); INSERT INTO international VALUES (618,'WebGUI',3,'Herstel Wachtwoord Bericht
\r\n Het bericht dat een gebruiker toegestuurd wordt wanneer ze de \"herstel wachtwoord\"\r\nfunctie gebruiken.
\r\n
\r\nE-mail voettekst
\r\nDeze voettekst zal gebruikt worden voor macro\'s en e-mail die vanaf WebGUI\r\nverstuurd worden.
\r\n
\r\n SMTP Server
\r\n Dit is het adres van de locale mail server. Dit is nodig voor alle kenmerken \r\ndie het Internet email systeem gebruiken (zoals wachtwoord herstellen).
\r\n
\r\n Als er een sendmail server en het WebGUI systeem op dezelfde machine gedraaid \r\nworden  kan er optioneel ook een pad gespecificeerd worden naar het sendmail\r\nprogramma. Dit kan op de meeste Linux systemen gevonden worden in \"/usr/lib/sendmail\".
\r\n
\r\n',1039781234,NULL); @@ -8786,7 +8405,6 @@ INSERT INTO international VALUES (617,'WebGUI',3,'Instellingen zijn objecten waa INSERT INTO international VALUES (616,'WebGUI',3,'Pad naar WebGUI Extras
\r\n
Het web-pad naar de map die de WebGUI afbeeldings-en javascript bestanden.
\r\n
\r\nMaximum Bijlage Grootte
\r\nDe maximum grootte van bestanden waarvan het toegestaan is dat ze in de site\r\ningeladen worden. Dit heeft betrekking op alle wobjecten die het inladen\r\nvan bestanden toestaan (zoals het Artikel en gebruikers bijdragen). De grootte\r\nwordt gemeten in kilobytes.
\r\n
\r\nGrootte Miniaturen
\r\nDe grootte van de langste zijde van miniaturen. Bij het genereren van miniaturen\r\nworden de verhoudingen van de zijden behouden. Dus als deze waarde op 100\r\nstaat en er is een afbeelding van 400 bij 200 pixels, zal het miniatuur 100\r\nbij 50 pixels worden.
\r\n
\r\nN.B.: Miniaturen worden automatisch gegenereerd wanneer afbeeldingen\r\nin het systeem worden ingeladen.
\r\n
\r\nWeb Bijlage Pad
\r\nHet web-pad van de map waar bijlagen worden opgeslagen.
\r\n
\r\nServer Bijlage Pad
\r\nHet locale pad van de map waar bijlagen worden opgeslagen (Dit kan bijvoorbeeld\r\n/var/www/public/uploads zijn). Zorg ervoor dat de webserver de rechten heeft\r\nom in deze map te schrijven.
\r\n',1038411072,NULL); INSERT INTO international VALUES (615,'WebGUI',3,'Groepen wworden gebruikt om privileges en verantwoordelijkheden onder te\r\nverdelen binnen het WebGUI systeem. Er kan bijboorbeeld een pagina gemaakt\r\nworden voor een klaslokaal situatie. In dit geval zou er een groep gemaakt\r\nkunnen worden per klas. Deze groepen kunnen nu toegepast worden op de paginas\r\ndie per klas ontworpen zijn.
\r\n
\r\nDe volgende verschillende groepen zijn in WebGUI ingebouwd:
\r\n
\r\nBeheerders
\r\nBeheerders zijn gebruikers die binnen WebGUI onbeperkte privileges hebben.\r\nEen gebruiker moet alleen aan deze groep toegevoegd worden als de gebruiker\r\nhet systeem kan overzien. Normaal gesproken behoren slechts drie mensen tot\r\ndeze groep.
\r\n
\r\nInhoud Beheerders
\r\nInhoud Beheerders zijn de gebruikers die het recht hebben om inhoud toe tevoegen,\r\nbewerken en verwijderen van verschillende gebieden van de pagina. Deze groep\r\nmoet niet gebruikt worden individuele inhoud gebieden in de pagina te beheren,\r\nmaar om te bepalen of een gebruiker inhoud  kan bewerken of niet. Verschillende\r\ngroepen moeten gemaakt worden om de verschillende inhoud gebieden van elkaar\r\nte scheiden
\r\n
\r\nIedereen
\r\nIedereen is een virtuele groep waar nooit iemand aan toegevoegd is, maar\r\nalle leden van de pagina zijn hier een onderdeel van. Als de pagina open\r\ngezet wordt voor zowel bezoekers als geregistreerde gebruikers, gebruik dan\r\ndeze groep.
\r\n
\r\nPakketten Beheerders
\r\ngebruikers die het recht hebben om pakketten van in te zetten wobjecten en\r\npaginas toe te voegen, bewerken en verwijderen.
\r\n
\r\nGeregistreerde Gebruikers
\r\nWanneer gebruikers worden toegevoegd aan het systeem worden ze in de geregistreerde\r\ngebruiks groep gezet. Een gebruikerzou alleen uit deze groep verwijderd moeten\r\nworden als de account wordt verwijderd of als een onruststoker gestraft moet\r\nworden.
\r\n
\r\nStijl Beheerders
\r\nGebruikers die het privilege hebben stijlen voor deze paginas te bewerken.\r\nDeze privileges staan de gebruiker niet toe privileges toe te kennen voor\r\neen pagina.
\r\n
\r\nSjabloon Beheerders
\r\ngebruikers die sjablonen mogen bewerken.
\r\n
\r\nBezoekers
\r\nBezoekers zijn gebruikers die niet ingelogd zijn door een accountvan het\r\nsysteem te gebruiken. Ook kan een geregistreerde gebruiker gestraft worden\r\ndoor naar deze groep verplaatst te worden.
\r\n',1037988236,NULL); INSERT INTO international VALUES (759,'WebGUI',3,'Bewerk deze map.',1037986853,NULL); -INSERT INTO international VALUES (614,'WebGUI',3,'Stijlen worden gebruikt om te regelen he de WebGUI paginas eruit zien en\r\naanvoelen. Met WebGUI kan een onbeperkt aantal stijlen gemaakt worden, zodat\r\nde pagina zoveel uiterlijken kan hebben als gewenst. Er kunnen een paar paginas\r\ngemaakt worden die de stijl van de brochure hebben en een paar andere met\r\nhet uitelijk van Yahoo!®. Er kunnen zelfs paginas gemaakt worden\r\nmet het uiterlijk van de paginas van een boek. Met stijl beheer is er onbeperkt\r\ninvloed op alle ontwerpen.
\r\n
\r\nEr zijn verscheidene stijlen ingebouwd in WebGUI. De eersten worden gebruikt\r\ndoor WebGUIen moeten niet worden bewerkt of verwijderd. De laatste paar zijn\r\nvoorbeeldstijlen en kunnen zoveel als gewenst worden bewerkt of verwijderd.
\r\n
\r\nKlembord
\r\nDeze stijl wordt door het klembord systeem gebruikt.
\r\n
\r\nVeilige modus
\r\nWanneer een stijl wordt verwijderd dat op sommige paginas nog steeds gebruikt\r\nwordt, zal de Veilige Modus stijl gebruikt worden op deze paginas. Deze stijl\r\nheeft een witte achtergrond en een simpele navigatie.
\r\n
\r\nMaak Pagina Printbaar
\r\nDeze stijl wordt gebruikt als een ^r; macro wordt geplaatst op de\r\npaginas en de gebruiker hierop klikt. Deze stijl stelt u in staat een simpel\r\nlogo en een copyright bericht op de printbare paginas af te drukken.
\r\n
\r\nPakketten
\r\nDeze stijl wordt gebruikt bij het pakketten beheer systeem.
\r\n
\r\nAfval
\r\nDeze stijl wordt gebruikt door het afval systeem
\r\n
\r\n


Demonstratie Stijl
\r\nDit is een proefontwerp dat van een sjablonenpagina (www.freewentemplates.com)\r\ngehaald.
\r\n
\r\nPlain Black Software (black) & (white)
\r\nDeze ontwerpen worden op de Plain Black paginas gebruikt.
\r\n
\r\nYahoo!®
\r\nDit is is het ontwerp van de Yahoo!® pagina (zonder toestemming gebruikt).
\r\n
\r\nWebGUI
\r\nDit is een simpel ontwerp met de WebGUI logos.
\r\n
\r\nWebGUI 4
\r\nDeze stijl was toegevoegd bij WebGUI 4.0.0. Het is nu de standaard stijl\r\nen heeft de WebGUI stijl overtroffen.
\r\n',1037986626,NULL); INSERT INTO international VALUES (613,'WebGUI',3,'Gebruikers zijn de accounts in het systeem die de rechten hebben om bepaalde\r\ndingen te doen. er zijn twee standaard gebruikers in het systeem: Beheerder\r\nen Bezoeker.
\r\n
\r\nBeheerder
\r\nDe is precies wat het zegt. Het is een gebruiker met onbeperkte rechten in\r\nde WebGUI omgeving. Als iets gedaan kan worden, heeft deze gebruiker het\r\nrecht om het te doen.
\r\n
\r\n
\r\nBezoeker
\r\nDe Bezoeker is precies het tegenovergestelde van de Beheerder. een Bezoeker\r\nheeft geen rechten. Standaard wordt een gebruiker die niet ingelogd is gezien\r\nals Bezoeker.
\r\n
\r\n
\r\nVoeg nieuwe gebruiker toe.
\r\nKlik hierop om naar het \"Gebruiker Toevoegen\" scherm te gaan.
\r\n
\r\n
\r\nZoek
\r\nGebruikers kunnen gezocht worden op gebruikersnaam en email adres. Er kunnen\r\nook gedeeltelijke zoekopdrachten uitgevoerd worden.

\r\n',1037983861,NULL); INSERT INTO international VALUES (611,'WebGUI',3,'Bedrijfsnaam
\r\nDe naam van het bedrijf. Deze zal in alle e-mails en overal waar het bedrijfsnaam\r\nmacro wordt gebruikt verschijnen.
\r\n
\r\nBedrijfs E-mail Adres
\r\nEen algemeen e-mail adres van het bedrijf. Dit is het adres waar alle geautomatiseerde\r\ne-mails van het bedrijf vandaan komen. Het kan ook gebruikt worden met behulp\r\nvan het WebGUI macro systeem.
\r\n
\r\nBedrijfs URL
\r\nHet primaire URL van het bedrijf. Dit zal in alle e-mails, die met het WebGUI\r\nsysteem verstuurd worden verschijnen. Het kan ook gebruikt worden met behulp\r\nvan het WebGUI macro systeem.
\r\n',1039781103,NULL); INSERT INTO international VALUES (610,'WebGUI',3,'Zie Gebruiker Beheer voor extra details.
\r\n
\r\nGebruikersnaam
\r\nDe gebruikersnaam is een unieke identificatie voor een gebruiker. Het is\r\nook de naam waaronder een gebruiker bekend staat op de pagina. (N.B.:\r\nbeheerders hebben ongelimiteerd gebruik in het WebGUI systeem. Dit betekent\r\nook dat ze het systeem kapot kunnen maken. Wanneer een gebruiker wordt hernoemd\r\nof toegevoegd, zorg dan dat er geen gebruiksnaam wordt gebruikt die al bestaat.)
\r\n
\r\nWachtwoord
\r\nEen wachtwoord wordt gebruikt om te controleren of een gebruiker inderdaad\r\nis wie hij of zij zegt dat hij of zij is.
\r\n
\r\nAuthenticatie Methode
\r\nZie Bewerk Instellingen voor details.
\r\n
\r\nLDAP URL
\r\n
Zie Bewerk Instellingen voor details.
\r\n
\r\nDN verbinding
\r\nDe DN verbinding is de cn (of common name (normale naam)) van een\r\ngegeven gebruiker in de LDAP database. Deze zou bijvoorbeeld gespecificeerd\r\nmoeten worden als cn=John Doe. Dez is in een aangepaste versie is\r\nmeestal ook de gebruikersnaa, die gebruikt wordt voor de authenticatie in\r\nde LDAP server.
\r\n',1037982376,NULL); @@ -8797,7 +8415,6 @@ INSERT INTO international VALUES (73,'USS',3,'Sjabloon van de Bijdrage',10379736 INSERT INTO international VALUES (61,'USS',3,'Gebruikersbijdrage systeem, Toevoegen/Bewerken',1063589893,NULL); INSERT INTO international VALUES (59,'USS',3,'Volgende Bijdrage',1037970733,NULL); INSERT INTO international VALUES (58,'USS',3,'Vorige Bijdrage',1037970719,NULL); -INSERT INTO international VALUES (38,'USS',3,'(Selecteer \"Nee\" als er een HTML bijdrage geschreven wordt.)',1037970705,NULL); INSERT INTO international VALUES (71,'SyndicatedContent',3,'Syndicated content is inhoud van een pagina die van een andere pagina gehaald\r\nwordt met behulp van de RDF/RSS specificatie. Deze techniek wordt vaak gebruikt\r\nom de koppen van verschillende nieuwspaginas zoals CNN en Slashdot te\r\nhalen. Het kan natuurlijk ook voor andere dingen zoals sportuitslagen, informatie\r\nover de aandelenmarkt, etc. gebruikt worden.
\r\n
\r\nURL naar RSS bestand
\r\nVoorzie het syndicated content bestand (RDF of RSS) bestand van het volledige\r\nURL (beginnend met http://). De syndicated content wordt elk uur gedownload\r\nvan dit URL.
\r\n
\r\nSyndicated content kan onder andere op de volgende plaatsen gevonden worden:\r\n\r\n',1037970486,NULL); INSERT INTO international VALUES (61,'SyndicatedContent',3,'Syndicated Content, Toevoegen/Bewerken',1063589881,NULL); INSERT INTO international VALUES (71,'Survey',3,'Cijferboek',1037969411,NULL); @@ -8811,7 +8428,7 @@ INSERT INTO international VALUES (73,'Survey',3,'Verwijder alle reacties.',10379 INSERT INTO international VALUES (72,'Survey',3,'Weet u zeker dat u de reacties van deze gebruiker wilt verwijderen?',1037968899,NULL); INSERT INTO international VALUES (70,'Survey',3,'Indivuele Reacties',1037968852,NULL); INSERT INTO international VALUES (69,'Survey',3,'Verwijder de reacties van deze gebruiker.',1037968762,NULL); -INSERT INTO international VALUES (68,'Survey',3,'Bekijk verslagen en exports.',1037968735,NULL); +INSERT INTO international VALUES (23,'WSClient',1,'The URI/WSDL specified is of an improper format.',1055348955,NULL); INSERT INTO international VALUES (67,'Survey',3,'Gebruiker',1037968674,NULL); INSERT INTO international VALUES (66,'Survey',3,'Reacties',1037968663,NULL); INSERT INTO international VALUES (65,'Survey',3,'Exporteer samengestelde samenvatting.',1037968653,NULL); @@ -8966,12 +8583,7 @@ INSERT INTO international VALUES (20,'Poll',3,'Karma per stem',1037884915,NULL); INSERT INTO international VALUES (12,'Poll',3,'Totaal Aantal Stemmen',1063589764,NULL); INSERT INTO international VALUES (61,'MessageBoard',3,'Berichtenbord, Toevoegen/Bewerken',1063589750,NULL); INSERT INTO international VALUES (72,'DataForm',3,'Er kan een willekeurig aantal velden aan het e-mail formulier toegevoegd\r\nworden.
\r\n
\r\n Veldnaam
\r\n De naam van dit veld. Dit dient uniek te zijn voor alle velden op het formulier.
\r\n
\r\n Status
\r\n Verborgen velden zijn niet zichtbaar voor de gebruiker, maar worden wel\r\nmeegezonden in de email.
\r\n Weergegeven velden laat de gebruiker het veld zien, maar stelt de gebruiker \r\nniet in staat het veld aan te passen.
\r\n Aanpasbare velden kunnen ingevuld worden door de gebruiker.
\r\n Zorg dat een Standaardwaarde ingevuld word als hier voor een verborgen of \r\nweergegeven veld wordt gekozen.
\r\n
\r\n Type
\r\n Kies het type element voor dit veld. De volgende typen velden worden ondersteund:
\r\n URL: Een textveld dat automatisch ingevulde URL\'s  opmaakt.
\r\n Tekstveld: een standaard tekstveld.
\r\n Datum: Een tekstveld met een popup window waar een datum in geselecteerd \r\nkan worden.
\r\n Ja/Nee: Een set van keuzeknoppen.
\r\n Email adres: Een tekstveldwaar een geldig email adres ingevuld moet worden \r\ndoor de gebruiker.
\r\n Tekstvak: Een simpel tekstvak.
\r\n Aanvinkveld: Een enkel aanvinkveld
\r\n Drop-down veld: een drop-down veld. Gebruik het Mogelijke Waarden veld om \r\nelke weer te geven mogelijkheid in te voeren. Voer één optie \r\nin per regel.
\r\n
\r\n Mogelijke Waarden
\r\n Dit vled wordt alleen gebruikt voor het type drop-down veld. Voer de waarden \r\nin die in het drop-down veld weergegeven moeten worden, per regel één.
\r\n
\r\n Standaard Waarde (optioneel)
\r\n Voer de eventuele standaard waarde van het veld in. Voor Ja/Nee velden voer \r\n \"ja \" of \"nee\" in om respectievelijk  \"Ja\"  en \"Nee\" van te\r\nvoren te selecteren. Voor Aanvinkvelden voer \"aangevinkt\" in om het vak vante\r\nvoren aan te vinken.
\r\n
\r\n Verder gaan met toevoegen velden?
\r\n Laat dit aangevinkt staan als direct na het invoeren van het veld nog een \r\nveld ingevoerd wordt.
\r\n
\r\n',1039776778,NULL); -INSERT INTO international VALUES (71,'LinkList',3,'Link lijsten zijn precies wat het zegt, een lijst van links. Veel webpaginas \r\nhebben een link sectie, dit wobject automatiseert het proces.
\r\n
\r\n Sjabloon
\r\n
Kies een layout voor dit wobject.
\r\n
\r\n Hoe verder?
\r\nKies het standaard antwoord als u meteen een link toe wilt voegen na het\r\naanmaken van de lijst.
\r\n',1039775791,NULL); INSERT INTO international VALUES (71,'FileManager',3,'De bestanden beheerder is ontworpen om te helpen de bestanden te distriburen \r\nop de site. Hiermee kan gespecificeerd worden wie bestanden mag downloaden \r\nvan de site.
\r\n
\r\n Sjabloon
\r\n
Kies een layout voor de bestanden beheerder.
\r\n
\r\nBreek Af Na

\r\n Hoeveel bestanden moeten er weergegeven worden voordat de bestanden over \r\nmeer paginas verdeeld worden? Met andere woorden: hoeveel bestanden moeten \r\ner getoond worden per pagina?
\r\n
\r\n Doorgaan met nog een bestand toevoegen?
\r\n Laat dit aangevinkt staan wanneer meteen nog meer bestanden toegevoegd \r\nworden.
\r\n
\r\n',1039775538,NULL); -INSERT INTO international VALUES (61,'LinkList',3,'Link Lijst, Toevoegen/Bewerken',1039597029,NULL); -INSERT INTO international VALUES (71,'Item',3,'Net als artikelen zijn items een soort Zwitsers zakmes van WebGUI. De meeste\r\nstukken statische inhoud kunnen worden toegevoegd met behulp van Objecten, \r\nhoewel Objecten meestal een kleinere inhoud hebben dan Artikelen.
\r\n
\r\n URL link
\r\n Dit URL zal worden verbonden met dit Object.
\r\n
\r\n Voorbeeld: http://www.google.com
\r\n
\r\n Bijlage
\r\n Als het gewenst is een tekstbestand, een zip-bestand of een ander willekeurig \r\ntype bestand toe te voegen als bijlage, die gedownload kan worden door gebruikers, \r\ndient dit bestand gekozen te worden van de harde schijf.
\r\n
\r\nSjabloon
\r\nKies een layout voor dit object.
\r\n',1039783783,NULL); -INSERT INTO international VALUES (61,'Item',3,'Item, Toevoegen/Bewerken',1039783705,NULL); -INSERT INTO international VALUES (6,'Item',3,'Bewerk Item',1039783723,NULL); INSERT INTO international VALUES (73,'FileManager',3,'Bestandstitel  
\r\n De titel die voor dit bestand zal worden weergegeven.
\r\n
\r\nBestand
\r\n
Kies het bestand van de harde schijf dat in de wonload manager wordt \r\ningeladen.
\r\n
\r\n Alternatieve Versie #1
\r\n Een alternatieve versie van het bestand. Als het bestand bijvoorbeeld een\r\nJPEG is, kan de alternatieve versie een .TIF of .BMP formaat hebben.
\r\n
\r\n Alternatieve Versie #2
\r\n Een alternatieve versie van het bestand. Als het bestand bijvoorbeeld een\r\nJPEG is, kan de alternatieve versie een .TIF of .BMP formaat hebben.
\r\n
\r\n Korte samenvatting
\r\n Een korte beschrijving van het bestand. Zorg dat er sleutelwoorden in staan \r\nwaar gebruikers naar zouden kunnen zoeken.
\r\n
\r\n Download Groep
\r\n Kies de groep die dit bestand kan downloaden.
\r\n
\r\n Hoe verder?
\r\nAls u nog een bestand wilt toevoegen kies dan \"voeg nog een bestand toe\"\r\nanders kunt u terug gaan naar de huidige pagina.
\r\n
\r\n',1039775633,NULL); INSERT INTO international VALUES (847,'WebGUI',1,'Go back to the current page.',1039587250,NULL); INSERT INTO international VALUES (848,'WebGUI',1,'There is a syntax error in this template. Please correct.',1039892202,NULL); @@ -8984,7 +8596,6 @@ INSERT INTO international VALUES (675,'WebGUI',3,'Zoekmachine, Gebruiken',103978 INSERT INTO international VALUES (674,'WebGUI',3,'Allerlei instellingen, Bewerken',1039783002,NULL); INSERT INTO international VALUES (670,'WebGUI',3,'Plaatje, Toevoegen/Bewerken',1039782993,NULL); INSERT INTO international VALUES (669,'WebGUI',3,'Macros, Gebruiken',1063590321,NULL); -INSERT INTO international VALUES (666,'WebGUI',3,'Stijl, Toevoegen/Bewerken',1039782945,NULL); INSERT INTO international VALUES (663,'WebGUI',3,'Berichten instellingen, Bewerken',1063590303,NULL); INSERT INTO international VALUES (656,'WebGUI',3,'Bedrijfsinformatie, Bewerken',1039782919,NULL); INSERT INTO international VALUES (642,'WebGUI',3,'Pagina, Toevoegen/Bewerken',1063590281,NULL); @@ -8997,7 +8608,6 @@ INSERT INTO international VALUES (634,'WebGUI',3,'Standaard Thuis Pagina (Hom INSERT INTO international VALUES (624,'WebGUI',3,'WebGUI macros worden gebruikt voor het maken van dynamische inhoud binnen een voor de rest statische inhoud. Zo kan bijvoorbeeld voor elke pagina getoond worden welke gebruikers op deze pagina ingelogd zijn of er kan een dynamisch gebouwd menu of een webpad weergegeven worden.
\r\n
\r\nMacros beginnen altijd met een carat (dakje) (^) en wordt vervolgd met minstens één ander karakter en eindigen met een puntkomma (;). Sommige macros kunnen uitgebreid of aangepast worden door de opmaak\r\n^x(\"aangepaste tekst\"); te gebruiken.\r\n
\r\nN.B.
\r\nOnderstaande macros worden apart gehouden voor systeem of wobject specifieke functies zoals het SQL Verslag wobject en de Body in de Stijl Beheerder.^-;, ^0;, ^1;, ^2;, ^3;, etc
',1043314531,NULL); INSERT INTO international VALUES (71,'USS',3,'Begruikersbijdrage systemen zijn een goede manier om een een gevoel van betrokkenheid\r\n te krijgen voor een pagina, alsook om een gratis inhoud te krijgen van de\r\n gebruikers.
\r\n
\r\n Hoofd sjabloon
\r\n
Kies een layout voor dit gebruikersbijdrage systeem.
\r\n
\r\nBijdrage sjabloon
\r\n
Kies een layout voor de individuele bijdragen.
\r\n
    \r\n \r\n
\r\n Wie kan goedkeuren?
\r\n Welke groep kan inhoud goed-en afkeuren?
\r\n
\r\n Wie kan bijdragen?
\r\n Welke groep kan inhoud toevoegen?
\r\n
\r\n Bijdragen Per Pagina
\r\n Hoeveel bijdragen moeten per pagina op de lijst van bijdragen gezet worden?
\r\n
\r\n Standaard Status
\r\n Moeten bijdragen standaard op Goedkeurd, Wachtend of Afgekeurd staan\r\n in de bijdrage index?
\r\n
\r\n N.B.: Als de standaard status Wachtend is, moet het berichtenlogboek\r\n in de gaten gehouden worden voor nieuwe bijdragen.
\r\n
\r\n Karma Per Bijdrage
\r\n Hoeveel karma moet een gebruiker gegeven worden wanneer er mee gedaan wordt\r\n aan het gebruikersbijdrage systeem?
\r\n
\r\n Miniaturen tonen?
\r\n Als er zich een afbeelding in de bijdrage bevindt, dan wordt een miniatuur\r\n afgebeeld in de matrix (zie hierboven).
\r\n
\r\n Discussie toestaan?
\r\n Is het gewenst een discussie toe te voegen aan dit gebruikerbijdrage systeem? \r\nGebruikers zijn dan in staat om op alle bijdragen te reageren.
\r\n
\r\n Wie kan discussiëren?
\r\n Selecteer de groep die mee kan doen aan de discussie.
\r\n
\r\n Verlopen na
\r\n Hoe lang kunnen gebruikers hun bijdrage bewerken?
\r\n
\r\n N.B.: Zet deze limiet niet te hoog. Een voordeel van discussies is\r\n dat er precies op wordt geslagen wie wat zegt. Als er lange tijd bewerkt\r\nkan worden kan de gebruiker teruggaan en de gedachten over een lang geleden\r\ngedane uitspraak veranderen.
\r\n
\r\n Karma Per Bijdrage
\r\n Hoeveel karma moet er aan een gebruiker gegeven worden als ze bijdragen\r\naan de discussie?
\r\n
\r\n Wie kan bewerken?
\r\n Selecteer de groep die de discussie kan bewerken.
\r\n
\r\n Moderatietype?
\r\n Het type moderatie dat gebruikt wordt, kan gekozen worden. Naderhand\r\n betekent dat een bericht meteen publiekelijk gepubliceerd wordt. Vooraf\r\n Betekent dat een moderatiebevoegde een bericht moet zien en goedkeuren voordat\r\n ze publiekelijk weergegeven worden. Er wordt automatisch een bericht gestuurd\r\n naar de moderatiebevoegde, dit bericht komt in de WebGUI Inbox van de moderatiebevoegde.
\r\n
\r\n N.B.: Bij beide typen moderatie kan de moderatiebevoegde de berichten\r\n van gebruikers bewerken of verwijderen.
\r\n
\r\n',1039779058,NULL); INSERT INTO international VALUES (71,'MessageBoard',3,'Berichtenborden, ook forum en/of discussie genoemd, zijn een goede manier \r\nom betrokkenheid an een webpagina od intranet toe te voegn. Veel bedrijven \r\ngebruiken berichtenborden om samen te werken bij projecten.
\r\n
\r\n Berichten per pagina.
\r\n Als een bezoeker voor het eerst op een berichtenbord komt, zal eerst een \r\nlijst met onderwerpen van het berichtenbord getoond worden. Wanneer een berichtenbord \r\npopulair is zal het snel veel onderwerpen bevatten. Met de Berichten Per Pagina\r\nbepaling kan het aantal onerwerpen op een pagina gespecificeerd worden.
\r\n
\r\n E-mail sjabloon
\r\n
Selecteer de layout voor de hoofdlijst van deze discussie.
\r\n
\r\nWie kan reageren?

\r\n Selecteer de groep die reacties op de discussies kan plaatsen.
\r\n
\r\n Stel reactietijd in
\r\n Hoe lang moet een gebruiker in staat zijn zijn reactie te bewerken voordat \r\ndeze mogelijkheid afgesloten wordt.
\r\n
\r\n N.B.: Zet deze limiet niet te hoog. Een voordeel van discussies is \r\ndat er precies op wordt geslagen wie wat zegt. Als er lange tijd bewerkt kan\r\nworden kan de gebruiker teruggaan en de gedachten over een lang geleden gedane\r\nuitspraak veranderen.
\r\n
\r\n Karma per bericht
\r\n Hoeveel karma moet er aan een gebruiker gegeven worden wanneer ze op de\r\ndiscussie reageren?
\r\n
\r\n Wie kan bewerken?
\r\n Selecteer de groep die de discussie kan bewerken.
\r\n
\r\n Moderatietype?
\r\n Het type moderatie dat gebruikt wordt, kan gekozen worden. Naderhand \r\nbetekent dat een bericht meteen publiekelijk gepubliceerd wordt. Vooraf \r\nBetekent dat een moderatiebevoegde een bericht moet zien en goedkeuren voordat \r\nze publiekelijk weergegeven worden. Er wordt automatisch een bericht gestuurd \r\nnaar de moderatiebevoegde, dit bericht komt in de WebGUI Inbox van de aanpasbevoegde.
\r\n
\r\n N.B.: Bij beide typen moderatie kan de moderatiebevoegde de berichten \r\nvan gebruikers bewerken of verwijderen.
\r\n',1039776873,NULL); -INSERT INTO international VALUES (71,'FAQ',3,'Het lijkt alsof elke website, intranet en extranet in de wereld een Frequently \r\nAsked Questions (FAQ, in het Nederlands: Vaak Gestelde Vragen) sectie heeft. \r\nDit wobject biedt hulp bij het bouwen van zo\'n sectie.
\r\n
\r\n Sjabloon
\r\n
Kies een layout voor deze FAQ.
\r\n
\r\n
Hoe verder?
\r\nSelecteer \"nog een vraag toevoegen\" als u meteen nog een vraag toe wilt voegen.
\r\n
\r\n \r\n
N.B.: De volgende \r\nstijl is specifiek voor het FAQ wobject in sommige van de ingebouwde FAQ\r\nsjablonen.
\r\n
\r\n .faqQuestion
\r\n Een FAQ vraag, dit ter onderscheiding van een antwoord.
\r\n
\r\n',1039775411,NULL); INSERT INTO international VALUES (61,'FileManager',3,'Bestands beheer, Toevoegen/Bewerken',1039741327,NULL); INSERT INTO international VALUES (846,'WebGUI',3,'

Deze macro\'s zijn voornamelijk handig voor het beheren van stijlen in WebGUI.

\r\n ^AdminBar;
\r\n Plaatst de administratieve werkbalk op de pagina. Dit is een vereist \r\n element in het \"body\" segment van de Stijl Beheerder.
\r\n
\r\n ^c; - Bedrijfsnaam
\r\n De De naam van het bedrijf gespecicificeerd in de instellingen.
\r\n
\r\n \r\n
\r\n ^e; Bedrijfs email Adres
\r\n Het email adres dat door de beheerder in gespecificeerd in de instellingen.
\r\n
\r\n ^Extras;
\r\n Zet het pad in de WebGUI \"extras\" map, die dingen als de WebGUI iconen \r\n bevat.
\r\n
\r\n ^PageTitle;
\r\n Toont de titel van de huidige pagina.
\r\n
\r\n N.B.: Wanneer er begonnen wordt met het gebruiken van de beheerders\r\n functies of de geavanceerde functies van wobjecten zal de pagina titel\r\neen link worden die u terug zal brengen naar de pagina.
\r\n
\r\n ^r; of ^r(); - Maak Pagina Printbaar
\r\n Dit macro maakt een link die de stijl van een pagina verwijdert, zodat\r\n een pagina printbaar wordt. Ook kan de tekst van de link verandert worden\r\n door het macro als volgt te gebruiken: ^r(\"Print Mij\");.
\r\n
\r\n De huidige stijl van de pagina wordt standaard vervangen door de \"Maak\r\n Pagina Printbaar\" stijl uit het Stijlbeheer. Dit kan desgewenst voorkomen\r\n worden door de naam van een andere stijl te specificeren als tweede parameter:
\r\n ^r(\"Print\",\"WebGUI\");
\r\n
\r\n N.B.: Ook kan het speciale geval ^r(linkonly); gebruikt worden \r\ndoor alleen het URL op te sturen om de pagina printbaar te maken. De .makePrintableLink\r\n stijl is verbonden aan dit macro.
\r\n
\r\n ^u; - Bedrijfs URL
\r\n Het door de beheerder gespecificeerde URL van het bedrijf.
\r\n
\r\n^?; - Zoek
\r\nVoegt een zoekopdracht veld toe aan de pagina. Het zoek veld is gebonden\r\naan het in WebGUI ingebouwde zoekprogramma.
\r\n
\r\nN.B.: De .searchBox Stylesheet klasse is gebonden aan dit macro.
\r\n
\r\n

^-;
\r\nDit macro is bekend als het scheidings macro. Het moet in iedere stijl exact een keer bestaan. Waar dit macro geplaatst wordt is waar de inhoud voor die betreffende pagina getoond zal worden.

\r\n',1039740718,NULL); INSERT INTO international VALUES (844,'WebGUI',3,'

Deze macro\'s hebben te maken met gebruikers en logins.

\r\n ^a; or ^a();- Mijn Account Link
\r\n Een link naar de account informatie. Ook kan de link tekst veranderd \r\n worden door een macro op de volgende manier te maken: ^a(Account Info\");.
\r\n
\r\n Aantekening: Er kan ook het speciale geval ^a(linkonly);\r\ngebruikt worden om alleen het URL naar de account pagina terug te sturen\r\nen niet meer. Ook is de .myAccountLink stylesheet klasse aan dit macro\r\ngebonden.
\r\n
\r\n ^AdminText();
\r\n Laat een klein tekstbericht zien aan een gebruiker die in de beheerders\r\n modus is. Voorbeeld: ^AdminTekst(\"u bent in de beheerders modus!\");
\r\n
\r\n ^Admintoggle; of ^AdminToggle();
\r\n Plaatst een link op de pagina die allen zichtbaar is voor inhoud \r\nbeheerders en beheerders. De link zet de beheerders modus aan of uit. \r\nEr kan optioneel ook een ander bericht weergegeven worden op de volgende \r\nmanier: ^AdminToggle(\"Bewerken Aan\",Bewerken Uit\");
\r\n
\r\n ^GroupText();
\r\n Toont een klein bericht aan de gebruikers die tot een bepaaldegroep \r\nbehoren. Voorbeeld: ^GroupText(\"Bezoekers\",\" Je hebt een account nodig om\r\niets leuks te kunnen doen op deze pagina\");
\r\n
\r\n\r\n Aantekening: Er kan ook het speciale geval ^H(linkonly); gebruikt\r\n worden om alleen het URL terug te zetten op dat van de homepage en niets\r\n meer. De .homeLink stylesheet klasse kan alleen voor dit macro gebruikt\r\nworden.
\r\n
\r\n ^L; of ^L(); - Login
\r\n Een klein login formulier. Dit macro kan ook aangepast worden. De breedte \r\n kan op de volgende manier ingesteld worden: ^L(20);. Ook kan een bericht \r\n weergegeven worden wanneer de gebruiker net ingelogd is op de volgende manier:
\r\n ^L(20,Hi ^a(^@;);. Klik %hier% om uit te loggen!);.
\r\n
\r\n N.B.: De .loginBox stylesheet klasse is verbonden met dit macro.
\r\n
\r\n ^LoginToggle; of ^LoginToggle();
\r\n Toont een \"Logout\" of \"Login\" bericht afhankelijk van of de gebruiker\r\n ingelogd is of niet. Ook kunnen andere berichten weergegeven worden op\r\nde volgende manier:
\r\n ^LoginToggle(\"Klik hier om in te loggen.\",\"Klik hierom uit te loggen\");.
\r\n
\r\n ^@; - Gebruikersnaam
\r\nDe gebruiksnaam van de momenteel ingelogde gebruiker.
\r\n
\r\n^#; - Gebruikers Identificatie
\r\nDe Identificatie van de momenteel ingelogde gebruiker.
\r\n
\r\n',1039740451,NULL); @@ -9013,8 +8623,6 @@ INSERT INTO international VALUES (75,'USS',3,'De volgende sjabloon variabelen zi INSERT INTO international VALUES (830,'WebGUI',3,'Pagina sjablonen worden gebruikt om wobjects op een pagina te organiseren.\r\nOm dit te doen moet u paginasjabloon posities maken. U kunt een onbeperkt\r\naantal posities in uw paginasjabloon opnemen, maar u moet er altijd minstens\r\neen positioneren. De paginasjabloon positie ziet er zo uit:
\r\n
<tmpl_var page.position1>
<tmpl_var page.position2>
<tmpl_var page.position3>
<tmpl_var page.position4>
<tmpl_var page.position5>
<tmpl_var page.position6>
<tmpl_var page.position7>
<tmpl_var ...>

\r\nDe positie elementen kunnen oplopen tot 1 miljoen wat ruim voldoende zou\r\nmoeten zijn voor een gemiddelde site.\r\n',1039627261,NULL); INSERT INTO international VALUES (73,'SiteMap',3,'De volgende sjabloon variabelen zijn beschikbaar om uw sitemap aan te passen.
\r\n \r\n

page_loop
\r\nDeze lus bevat alle pagina\'s in de sitemap.

\r\n page.indent
\r\nHet opsommingsteken voor deze pagina die de diepte in de paginaboom aangeeft. \r\n

page.url
\r\nDe URL naar de pagina.

\r\n

page.id
\r\nDe unieke waarde waaraan deze pagina in WebGUI intern gerefereerd wordt.

\r\n

page.title
\r\nDe titel van deze pagina.

\r\n

page.menutitle
\r\nDe titel van deze pagina die in de navigatie wordt getoond.

\r\n

page.synopsis
\r\nDe beschrijving van de inhoud van deze pagina (als die bestaat).

\r\n

page.isRoot
\r\nEen conditie die aangeeft of deze pagina een root is.

\r\n',1039989891,NULL); INSERT INTO international VALUES (74,'MessageBoard',3,'De volgende sjabloon variabelen zijn beschikbaar om het berichtenbord aan\r\nte passen:
\r\n \r\n

canPost
\r\nEen conditie die aangeeft of de huidige gebruiker privileges heeft om een\r\nnieuw bericht te posten.

\r\n

post.url
\r\nDe URL om een nieuw bericht te posten.

\r\n

post.label
\r\nHet vertaalde label voor de URL om een nieuw bericht te posten.

\r\n

search.url
\r\nDe URL om in dit berichtenbord te zoeken.

\r\n

search.label
\r\nHet vertaalde label voor de zoek URL.

\r\n

subject.label
\r\nHet vertaalde label voor de onderwerp kolom.

\r\n

user.label
\r\nHet vertaalde label voor de gebruiker kolom.

\r\n

date.label
\r\nHet vertaalde label voor de datum kolom.

\r\n

views.label
\r\nHet vertaalde label voo\n r de aantal keer bekeken kolom.

\r\n

replies.label
\r\nHet vertaalde label voor de reacties kolom.

\r\n

last.label
\r\nHet vertaalde label voor de laatste reactie kolom.

\r\n

message_loop
\r\nDe lus die de berichten bevat.

\r\n
last.url
\r\n De URL voor de laatste reactie op dit bericht. \r\n

last.subject
\r\nHet ondewerp van de laatste reactie op dit bericht.

\r\n

last.username
\r\nDe gebruiker die de laatste reactie op dit bericht gepost heeft.

\r\n

last.userProfile
\r\nDe URL naar het profiel van de gebruiker die de laatste reactie op dit bericht\r\ngepost heeft.

\r\n

last.date
\r\nDe datum waarop de laatste reactie op dit bericht gepost is.

\r\n

message.subject
\r\nHet onderwerp van dit bericht.

\r\n

message.date
\r\nDe datum waarop dit bericht gepost is.

\r\n

me\n ssage.user
\r\nDe gebruiker die dit bericht gepost heeft.

\r\n

message.views
\r\nHet aantal keer dat dit bericht bekeken is.

\r\n

message.replies
\r\nHet aantal reacties op dit bericht.

\r\n

message.url
\r\nDe URL om dit bericht te bekijken.

\r\n

message.currentUser
\r\nEen conditie die aangeeft of de huidige gebruiker ook de gebruiker is die\r\ndit bericht gepost heeft.

\r\n

message.status
\r\nDe status van dit bericht (lopend, goedgekeurd, afgekeurd).

\r\n

\r\n
\r\n \r\n

firstPage
\r\nEen link naar de eerste pagina van de paginanummering.

\r\n

lastPage
\r\nEen link naar de laatste pagina van de paginanummering.

\r\n

nextPage
\r\nEen link naar de volgende pagina van de paginanummering.

\r\n

previousPage
\r\nEen link naar de vorige pagina van de paginanummering. 

\r\n\n

pageList
\r\nEen lijst van links naar alle pagina\'s in de paginanummering. 

\r\n

multiplePages
\r\n Een conditionele variabele die aangeeft of er meer dan een pagina in de\r\npaginanummering is.

\r\n
\r\n',1056211622,NULL); -INSERT INTO international VALUES (61,'FAQ',3,'FAQ, Toevoegen/Bewerken',1039596915,NULL); -INSERT INTO international VALUES (61,'ExtraColumn',3,'Extra Kolom, Toevoegen/Bewerken',1039596903,NULL); INSERT INTO international VALUES (61,'EventsCalendar',3,'Evenementen Kalender, Toevoegen/Bewerken',1039596872,NULL); INSERT INTO international VALUES (71,'Article',3,'Artikelen zijn het snijblad van het zwitsers zakmes van WebGUI. De meeste \r\nstatische inhoud kan toegevoegd worden via het artikel.
\r\n
\r\n Plaatje
\r\n Kies een plaatjesbestand (.jpg, .gif, .png) van je harddisk. Dit bestand \r\nzal op de server bewaard worden en bij het artikel weergegeven worden.
\r\n
\r\n Plaatje uitlijnen
\r\n
Kies hier waar het plaatje uitgelijnd zal worden ten opzichte van het \r\nartikel.
\r\n
\r\n Bijlage
\r\n Voor het toevoegen van bijvoorbeeld een zip bestand of een tekstverwerkingsbestand \r\nzodat andere gebruikers dit van de WebGUI server op kunnen halen kan hier \r\neen bijlage gekozen worden vanaf de harddisk. Deze worden net zoals plaatjes \r\nop de server bewaard.
\r\n
\r\n Link Titel
\r\n
Voor het toevoegen van een link aan het artikel kan hier een titel gekozen \r\nworden.
\r\n
\r\n Voorbeeld: ProcoliX
\r\n
\r\n Link URL
\r\n Voor de toegevoegde link kan hier de URL (uniform resource locator) toegevoegd \r\nworden.
\r\n
\r\n Voorbeeld: http://www.procolix.com
\r\n
\r\n Enter converteren?
\r\n Wanneer hier HTML-code ingevoerd is heeft deze optie niet veel zin. Wanneer \r\nechter geen HTML ingevoerd wordt kan ervoor gekozen dat iedere \"Enter\" aanslag \r\nomgezet wordt in een op het scherm zichtbare enter.
\r\n
\r\n Discussie toelaten?
\r\n
Mag over dit artikel direct en op deze plaats gediscussieerd worden?
\r\n
\r\n Wie kan posten?
\r\n Kies welke groep toestemming heeft om in de discussie te posten.
\r\n
\r\n Edit Timeout
\r\n Hoe lang mag een gebruiker erover doen om posts voor in de discussie te\r\ntypen?
\r\n
\r\n Note: Zet deze limiet niet te hoog. Een van de goede dingen van discussies \r\nis dat er een duidelijk overzicht is van wie wat gezegd heeft.
\r\n Wanneer gebruikers er lang over mogen doen om een post te typen hebben ze \r\neen kans om terug te gaan en van gedachten te veranderen nadat de oorspronkelijke \r\nmening geformuleerd is.
\r\n
\r\n Karma Per Post
\r\n Hoeveel karma moet er aan een gebruiker toegekend worden wanneer ze in de \r\ndiscussie posten?
\r\n
\r\n Wie kan modereren?
\r\n Selecteer de groep die toestemming heeft om de discussie te modereren.
\r\n
\r\n Moderatie type?
\r\n Wat voor type moderatie moet er toegepast worden op de discussie?
\r\n Achteraf betekent dat wanneer een gebruiker een post gemaakt heeft \r\ndeze direct publiek bekend gemaakt wordt. Vantevoren betekent dat voordat\r\neen post publiek gemaakt wordt deze eerst door een moderator goedgekeurd moet\r\nworden. Waarschuwingen dat zo\'n post gemaakt is wordt automatisch in de moderator\'s\r\nWebGUI Inbox geplaatst.
\r\n
\r\n Note: Bij beide typen moderatie kan de moderator altijd post\'s van \r\ngebruikers bewerken of weggooien.
\r\n
\r\n',1039596858,NULL); INSERT INTO international VALUES (845,'WebGUI',3,'Stijl macro\'s',1063590454,NULL); @@ -9025,10 +8633,7 @@ INSERT INTO international VALUES (831,'WebGUI',3,'Collaterale Macro\'s',10635904 INSERT INTO international VALUES (829,'WebGUI',3,'Pagina sjabloon',1039543299,NULL); INSERT INTO international VALUES (828,'WebGUI',3,'De meeste wobjects hebben sjablonen die de mogelijkheid geven om de layout\r\nvan de gebruikers interface van dat wobject aan te passen. Deze wobject sjablonen\r\nhebben een gezamenlijke set van variabelen die gebruikt kunnen worden voor\r\nde layout. Ze hebben ook een set eigen variabelen. De volgende sjabloon variabelen\r\nzijn beschikbaar om in alle wobjects de sjablonen aan te passen.
\r\n

title
\r\nDe titel voor dit wobject.

\r\n

displayTitle
\r\nEen conditionele variabele die aangeeft of de titel wel of niet getoond moet\r\nworden.

\r\n

description
\r\nDe beschrijving van dit wobject.

\r\n

wobjectId
\r\nHet nummer dat WebGUI gebruikt om dit wobject te identificeren.

\r\n',1039543288,NULL); INSERT INTO international VALUES (827,'WebGUI',3,'Wobject sjabloon',1063590390,NULL); -INSERT INTO international VALUES (76,'LinkList',3,'De volgende sjabloon variabelen zijn beschikbaar om uw link lijst sjablonen \r\naan te passen.
\r\n \r\n

addlink.url
\r\nDe URL om een link aan deze link lijst toe te voegen.

\r\n

addlink.label
\r\nHet vertaalde label voor de \'voeg link toe\' URL.

\r\n

link_loop
\r\nDeze lus bevat alle informatie over iedere link.

\r\n link.url
\r\nDe URL voor deze link. \r\n

link.name
\r\nDe tekst om naar te linken.

\r\n

link.controls
\r\nDe WebGUI beheersgereedschappen voor deze link.

\r\n

link.newwindow
\r\nEen conditie die aangeeft of deze link in een nieuw venster geopend moet\r\nworden.

\r\n

link.description
\r\nDe beschrijving van deze link.

\r\n',1039543022,NULL); -INSERT INTO international VALUES (74,'Item',3,'De volgende sjabloon variabelen zijn beschikbaar om uw item sjablonen aan\r\nte passen.
\r\n \r\n

attachment.name
\r\nDe bestandsnaam voor de bijlage bij dit item.

\r\n

attachment.url
\r\nDe URL om de bijlage bij dit item te downloaden.

\r\n

attachment.icon
\r\nDe URL om naar het pictogram bij de bijlage bij dit item.

\r\n',1039542869,NULL); INSERT INTO international VALUES (76,'FileManager',3,'De volgende sjabloon variabelen zijn beschikbaar om Bestandsbeheer sjablonen\r\naan te passen.
\r\n

titleColumn.url
\r\nDe URL om op titel te sorteren.
\r\n

\r\n

titleColumn.label
\r\nHet vertaalde label voor de titel.

\r\n

descriptionColumn.label
\r\nHet vertaalde label voor de beschrijving.

\r\n

descriptionColumn.url
\r\nDe URL om op beschrijving te sorteren.

\r\n

dateColumn.label
\r\nHet vertaalde label voor de upload datum.

\r\n

dateColumn.url
\r\nDe URL om op upload datum te sorteren.

\r\n

search.form
\r\nWeGUI krachtzoek formulier.

\r\n

search.url
\r\nDe URL om zoek modus aan en uit te zetten.

\r\n

search.label
\r\nHet vertaalde label voor de zoek link.

\r\n

addfile.url
\r\nDe URL om een bestand aan bestandsbeheer toe te voegen.

\r\n

addfile.label
\r\nHet vertaalde label voor de voeg bestand toe link.

\r\n

file_loop
\r\nEen lus die informatie bevat over iedere file die geupload is in deze bestandsbeheer. \r\n

\r\n
file.canView
\r\nEen conditie die aangeeft of de huidige gebruiker rechten heeft om dit bestand\r\nte bekijken. \r\n

file.controls
\r\nDe WebGUI beheergereedschappen voor dit bestand.

\r\n

file.title
\r\nDe titel voor dit bestand.

\r\n

file.version1.name
\r\nDe bestandsnaam voor de eerste versie van dit bestand.

\r\n

file.version1.url
\r\nDe download URL voor de eerste versie van dit bestand.

\r\n

file.version1.icon
\r\nDe URL voor het pictogram voor het bestandstype voor de eerste versie van\r\ndit bestand.

\r\n

file.version1.size
\r\nDe opslaggrootte voor de eerste versie van dit bestand.

\r\n

file.version1.type
\r\nHet type (of bestandsextentie) van de eerste versie van dit bestand.

\r\n

file.version1.thumbnail
\r\nDe URL naar het pictogram voor de eerste versie van dit bestand.

\r\n

file.version1.isImage
\r\nEen conditie die aangeeft of de eerste versie van dit bestand een plaatje\r\nis of niet.

\r\n

file.version2.name
\r\nDe bestandsnaam voor de tweede versie van dit bestand.

\r\n

file.version2.url
\r\nDe download URL voor de tweede versie van dit bestand.

\r\n

file.version2.icon
\r\nDe URL voor het pictogram voor het bestandstype voor de tweede versie van\r\ndit bestand.

\r\n

file.version2.size
\r\nDe opslaggrootte voor de tweede versie van dit bestand. 

\r\n

file.version2.type
\r\nHet type (of bestandsextentie) van de tweede versie van dit bestand.  \r\n

\r\n

file.version2.thumbnail
\r\nDe URL naar het pictogram voor de tweede versie van dit bestand.

\r\n

file.version2.isImage
\r\nEen conditie die aangeeft of de tweede versie van dit bestand een plaatje\r\nis of niet.

\r\n

file.version3.name
\r\nDe bestandsnaam voor de derde versie van dit bestand.

\r\n

file.version3.url
\r\nDe download URL voor de derde versie van dit bestand.

\r\n

file.version3.icon
\r\nDe URL voor het pictogram voor het bestandstype voor de derde versie van\r\ndit bestand.

\r\n

file.version3.size
\r\nDe opslaggrootte voor de derde versie van dit bestand. 

\r\n

file.version3.type
\r\nHet type (of bestandsextentie) van de derde versie van dit bestand.  \r\n

\r\n

file.version3.thumbnail
\r\nDe URL naar het pictogram voor de derde versie van dit bestand.

\r\n

file.version3.isImage
\r\nEen conditie die aangeeft of de derde versie van dit bestand een plaatje\r\nis of niet.

\r\n

file.description
\r\nDe beschrijving van dit bestand.

\r\n

file.date
\r\nDe datum waarop dit bestand geupload is.

\r\n

file.time
\r\nDe tijd waarop dit bestand geupload is.

\r\n

\r\n
\r\n \r\n

noresults.message
\r\nEen vertaald bericht dat aangeeft dat deze bestandsbeheer geen bestanden\r\nheeft die deze gebruiker mag zien.
\r\n

\r\n

\r\n

noresults
\r\nEen conditie die aangeeft of er bestanden zijn die deze gebruiker mag zien. \r\n

\r\n

firstPage
\r\n Een link naar de eerste pagina van de paginanummering. 

\r\n

lastPage
\r\n Een link naar de laatste pagina van de paginanummering. 

\r\n

nextPage
\r\n Een link naar de volgende pagina van de paginanummering.

\r\n

previousPage
\r\n Een link naar de vorige pagina van de paginanummering.

\r\n

pageList
\r\n Een lijst van links naar alle pagina\'s in de paginanummering.

\r\n

multiplePages
\r\n Een conditionele variabele die aangeeft of er meer dan een pagina in de\r\npaginanummering is.

\r\n',1039542744,NULL); -INSERT INTO international VALUES (77,'FAQ',3,'De volgende sjabloon variabelen zijn beschikbaar om in FAQ sjablonen te gebruiken.
\r\n

addquestion.url
\r\nDe URL om een vraag aan de FAQ toe te voegen.

\r\n

addquestion.label
\r\n Het vertaalde label voor de voeg vraag toe link.

\r\n

qa_loop
\r\nDe lus die variabelen voor iedere FAQ vraag bevat.

\r\n qa.id
\r\nHet id om deze vraag te identificeren. \r\n

qa.answer
\r\nHet antwoord voor deze vraag.

\r\n

qa.question
\r\nDe vraag zelf.

\r\n

qa.controls
\r\nDe WebGUI beheergereedschappen voor deze vraag.

\r\n',1039541829,NULL); INSERT INTO international VALUES (73,'Article',3,'De volgende sjabloon variabelen zijn beschikbaar om in artikel sjablonen te\r\ngebruiken.
\r\n

attachment.box
\r\nLaat een standaard WebGUI bijlage box zien, inclusief icoontje, bestandsnaam\r\nen een bijlage indicator.

\r\n

attachment.icon
\r\nDe URL naar het icoon-plaatje voor dit sjabloon type.

\r\n

attachment.name
\r\nDe bestandsnaam voor deze bijlage.

\r\n

attachment.url
\r\nDe URL om deze bijlage te downloaden.

\r\n

image.thumbnail
\r\nDe URL naar het pictogram voor het bijgevoegde plaatje.

\r\n

image.url
\r\nDe URL naar het bijgevoegde plaatje.

\r\n

post.label
\r\nHet vertaalde \'label\' om commentaar aan dit artikel toe te voegen.

\r\n

post.URL
\r\nDe URL om commentaar aan dit artikel toe te voegen.

\r\n

replies.count
\r\nHet aantal commentaar dat bij dit artikel toegevoegd is.

\r\n

replies.label
\r\nDe vertaalde tekst die aangeeft dat je de antwoorden kunt bekijken.

\r\n

replies.url
\r\nDe URL om de antwoorden op dit artikel te bekijken.

\r\n',1039541698,NULL); INSERT INTO international VALUES (97,'EventsCalendar',3,'Hieronder volgt de lijst met beschikbare sjabloon variabelen voor gebeurtenis\r\nsjablonen.
\r\n

title
\r\nDe titel van deze gebeurtenis.

\r\n

start.label
\r\nHet vertaalde label voor de begindatum.

\r\n

start.date
\r\nDe datum waarop deze gebeurtenis begint.

\r\n

end.date
\r\nDe datum waarop deze gebeurtenis eindigt.

\r\n

end.label
\r\nHet vertaalde label voor de einddatum.

\r\n

canEdit
\r\nEen conditie die aangeeft of de huidige gebruiker een gebeurtenis kan aanpassen. \r\n

\r\n

edit.url
\r\nDe URL om deze gebeurtenis aan te passen.

\r\n

edit.label
\r\nHet vertaalde label voor de bewerk URL.

\r\n

delete.url
\r\nDe URL om deze gebeurtenis te verwijderen.

\r\n

delete.label
\r\nHet vertaalde label om deze URL te verwijderen.

\r\n

previous.url
\r\nDe URL om de gebeurtenis voor deze gebeurtenis te bekijken.

\r\n

previous.label
\r\nHet vertaalde label voor de vorige URL.

\r\n

next.label
\r\nHet vertaalde label voor de volgende URL.

\r\n

next.url
\r\nDe URL om de gebeurtenis na deze gebeurtenis te bekijken.

\r\n

description
\r\nDe beschrijving van deze gebeurtenis.

\r\n',1039541021,NULL); INSERT INTO international VALUES (95,'EventsCalendar',3,'De volgende sjabloon variabelen zijn beschikbaar om uw evenementen kalender\r\naan te passen.
\r\n

addevent.url
\r\nDe URL om een gebeurtenis aan de kalender toe te voegen.

\r\n

addevent.label
\r\nHet vertaalde label voor de link om een gebeurtenis toe te voegen.

\r\n

calendar.big
\r\nEen  paginavullende kalender.

\r\n

calendar.small
\r\nEen kleine kalender die alleen datumnummers laat zien.

\r\n

calendar.firstPage
\r\nEen link naar de eerste pagina van de kalender paginanummering.

\r\n

calendar.lastPage
\r\nEen link naar de laatste pagina van de kalender paginanummering. 

\r\n

calendar.nextPage
\r\nEen link naar de volgende pagina van de kalender paginanummering.
\r\n

\r\n

calendar.previousPage
\r\nEen link naar de vorige pagina van de kalender paginanummering. 

\r\n

calendar.pageList
\r\nEen lijst van links naar alle pagina\'s in de kalender paginanummering.

\r\n

calendar.multiplePages
\r\nEen conditionele variabele die aangeeft of er meer dan een pagina in de kalender\r\npaginanummering is.

\r\n

list_loop
\r\nEen lus die de \'lijst layout\' lijst van een kalender bevat.
\r\n

\r\n

\r\n
list.date
\r\nDe datum van deze gebeurtenis. \r\n

list.title
\r\nDe titel van deze gebeurtenis.

\r\n

list.description
\r\nDe beschrijving van deze gebeurtenis.

\r\n

list.sameAsPrevious
\r\nEen conditionele variabele die aangeeft of deze gebeurtenis dezelfde datum\r\nheeft als de laatse gebeurtenis.

\r\n

list.url
\r\nDe URL naar de paginavullende layout voor deze gebeurtenis.

\r\n

list.controls
\r\nDe WebGUI beheergereedschappen voor deze gebeurtenis. 

\r\n

\r\n
\r\n \r\n

list.firstPage
\r\nEen link naar de eerste pagina van de paginanummering. 

\r\n

list.lastPage
\r\nEen link naar de laatste pagina van de paginanummering.  

\r\n

list.nextPage
\r\nEen link naar de volgende pagina van de paginanummering. 
\r\n

\r\n

list.previousPage
\r\nEen link naar de vorige pagina van de paginanummering. 
\r\n

\r\n

list.pageList
\r\nEen lijst van links naar alle pagina\'s in de paginanummering.
\r\n

\r\n

list.multiplePages
\r\nEen conditionele variabele die aangeeft of er meer dan een pagina in de paginanummering\r\nis.

\r\n',1039540752,NULL); @@ -9047,10 +8652,8 @@ INSERT INTO international VALUES (75,'Survey',3,'Bewerk deze vraag.',1039525414, INSERT INTO international VALUES (72,'SiteMap',3,'Sitemap sjabloon',1063589863,NULL); INSERT INTO international VALUES (73,'MessageBoard',3,'Berichtenbord sjabloon',1039525381,NULL); INSERT INTO international VALUES (972,'WebGUI',1,'Date and Time',1053278234,'A field that holds a calendar date and clock time.'); -INSERT INTO international VALUES (75,'LinkList',3,'Link lijst sjabloon',1039525339,NULL); -INSERT INTO international VALUES (73,'Item',3,'Item sjabloon',1039525324,NULL); +INSERT INTO international VALUES (28,'IndexedSearch',1,'\r\n

This is the list of template variables available for \r\nsearch templates:

\r\n

query
Contains the value of the query form \r\nvariable.
The allWords, atLeastOne, exactPhrase \r\nand without values are appended to this variable.

\r\n

queryHighlighted
Same as query but \r\nhighlighted.

\r\n

allWords
Contains the value of the allWords form \r\nvariable.

\r\n

atLeastOne
Contains the value of the atLeastOne \r\nform variable.

\r\n

exactPhrase
Contains the value of the \r\nexactPhrase form variable.

\r\n

without
Contains the value of the without form \r\nvariable.

\r\n

duration
The duration of the search process in seconds. \r\n

\r\n

numberOfResults
The number of results.

\r\n

startNr
The number of the first search result on the \r\npage.

\r\n

endNr
The number of the last search result on the \r\npage.

\r\n

submit
A form button with the word \"Search\" printed on \r\nit.

\r\n

wid
The wobject Id of this wobject.

\r\n

resultsLoop
A loop containing the search results. Inside \r\nthe loop the following template variables are available:

\r\n
\r\n

username
The username of the person that created this \r\nsearch result.

\r\n

ownerId
The Id of the person that created this search \r\nresult.

\r\n

userProfile
An url to the profile of the creator of this \r\nsearch result.

\r\n

header
The title of the search result. (This can be the \r\nsubject of a message, the question of a FAQ, the title of an Article, etc)

\r\n

body
A preview of the content of the search result.

\r\n

namespace
The namespace in which this search result \r\nresides.

\r\n

location
The URL of this search result.

\r\n

crumbtrail
A crumbtrail to this search result.

\r\n

contentType
The type of this search \r\nresult.

\r\n

The loops contentTypes, \r\ncontentTypesSimple, languages, \r\nnamespaces and users all look the same. \r\nThey can be used to create a select list, radio list or check list so users can \r\nrefine their search.

\r\n

This tempate variables are available inside the loops:

\r\n
\r\n

name
The (possibly internationalized) name of the \r\noption.

value
The value of the \r\noption.

selected
A conditional indicating whether \r\nthis option is selected or not.

\r\n

firstPage
A link to the first page in the paginator. \r\n

lastPage
A link to the last page in the paginator. \r\n

nextPage
A link to the next page forward in the paginator. \r\n

previousPage
A link to the next page backward in the paginator. \r\n

pageList
A list of links to all the pages in the paginator. \r\n

multiplePages
A conditional indicating whether there is more than \r\none page in the paginator. \r\n

isFirstPage
A conditional indicating whether the visitor is viewing \r\nthe first page. \r\n

isLastPage
A conditional indicating whether the visitor is viewing \r\nthe last page.

',1070202325,''); INSERT INTO international VALUES (75,'FileManager',3,'Bestandsbeheer sjabloon',1039525237,NULL); -INSERT INTO international VALUES (76,'FAQ',3,'FAQ sjabloon',1039525212,NULL); INSERT INTO international VALUES (96,'EventsCalendar',3,'Gebeurtenis sjabloon',1039523402,NULL); INSERT INTO international VALUES (94,'EventsCalendar',3,'Evenementen kalender sjabloon',1039523374,NULL); INSERT INTO international VALUES (5,'Auth/WebGUI',3,'Uw wachtwoord kan niet \"password\" zijn.',1039523322,NULL); @@ -9086,7 +8689,6 @@ INSERT INTO international VALUES (637,'WebGUI',3,'Voornaam
\r\nDe voor INSERT INTO international VALUES (2,'WobjectProxy',3,'Bewerk Wobject Proxy',1038506942,NULL); INSERT INTO international VALUES (558,'WebGUI',3,'Bewerk het karma van deze gebruiker',1038506928,NULL); INSERT INTO international VALUES (555,'WebGUI',3,'Bewerk het karma van deze gebruiker.',1038506918,NULL); -INSERT INTO international VALUES (803,'WebGUI',3,'Bewerk deze stijl.',1038506807,NULL); INSERT INTO international VALUES (789,'WebGUI/Profile',3,'Bewerk deze profielcategorie.',1038506799,NULL); INSERT INTO international VALUES (787,'WebGUI/Profile',3,'Bewerk dit profielveld.',1038506790,NULL); INSERT INTO international VALUES (776,'WebGUI',3,'Bewerk map',1038506782,NULL); @@ -9094,7 +8696,6 @@ INSERT INTO international VALUES (772,'WebGUI',3,'Bewerk bestand',1038506774,NUL INSERT INTO international VALUES (770,'WebGUI',3,'Bewerk knipsel',1038506767,NULL); INSERT INTO international VALUES (764,'WebGUI',3,'Bewerk dit naburige item.',1038506758,NULL); INSERT INTO international VALUES (753,'WebGUI',3,'Bewerk deze groep.',1038506749,NULL); -INSERT INTO international VALUES (741,'WebGUI',3,'Bewerk dit sjabloon.',1038506742,NULL); INSERT INTO international VALUES (672,'WebGUI',3,'Profiel instellingen, Bewerken',1038506251,NULL); INSERT INTO international VALUES (661,'WebGUI',3,'Bestands instellingen, Bewerken',1038506209,NULL); INSERT INTO international VALUES (667,'WebGUI',3,'Groep, Toevoegen/Bewerken',1038506203,NULL); @@ -9113,7 +8714,6 @@ INSERT INTO international VALUES (818,'WebGUI',3,'Gedeactiveerd',1038486551,NULL INSERT INTO international VALUES (817,'WebGUI',3,'Actief',1038486538,NULL); INSERT INTO international VALUES (816,'WebGUI',3,'Status',1038486522,NULL); INSERT INTO international VALUES (815,'WebGUI',3,'Het bestand dat u getracht heeft te uploaden is te groot.',1038486508,NULL); -INSERT INTO international VALUES (814,'WebGUI',3,'Status',1038486485,NULL); INSERT INTO international VALUES (813,'WebGUI',3,'Groepen in deze groep',1038486477,NULL); INSERT INTO international VALUES (812,'WebGUI',3,'Uw bericht is verstuurd.',1038486467,NULL); INSERT INTO international VALUES (811,'WebGUI',3,'Van',1038486455,NULL); @@ -9122,8 +8722,6 @@ INSERT INTO international VALUES (809,'WebGUI',3,'Groeps e-mail',1038486435,NULL INSERT INTO international VALUES (808,'WebGUI',3,'E-mail naar deze groep.',1038486415,NULL); INSERT INTO international VALUES (807,'WebGUI',3,'Beheer de groepen in deze groep.',1038486401,NULL); INSERT INTO international VALUES (806,'WebGUI',3,'Verwijder deze groep.',1038486388,NULL); -INSERT INTO international VALUES (805,'WebGUI',3,'Verwijder deze stijl.',1038486375,NULL); -INSERT INTO international VALUES (804,'WebGUI',3,'Kopieeer deze stijl.',1038486363,NULL); INSERT INTO international VALUES (802,'WebGUI',3,'Webgui houdt op dit moment geen paginastatistieken bij. Dit kan aangezet worden in de instellingen.',1038486340,NULL); INSERT INTO international VALUES (801,'WebGUI',3,'Wobject interacties',1038486287,NULL); INSERT INTO international VALUES (800,'WebGUI',3,'Unieke bezoekers',1038486275,NULL); @@ -9173,7 +8771,6 @@ INSERT INTO international VALUES (746,'WebGUI',3,'Toolbar Icon Set',1038485282,N INSERT INTO international VALUES (745,'WebGUI',3,'Ga terug naar de pagina.',1038485237,NULL); INSERT INTO international VALUES (744,'WebGUI',3,'Wat komt hierna?',1038485219,NULL); INSERT INTO international VALUES (743,'WebGUI',3,'U moet een geldig e-mail address invullen om uw wachtwoord terug te halen.',1038485202,NULL); -INSERT INTO international VALUES (742,'WebGUI',3,'Beheer sjablonen.',1038485165,NULL); INSERT INTO international VALUES (739,'WebGUI',3,'UI Level (Gebruikers Interface Niveau)',1038485136,NULL); INSERT INTO international VALUES (738,'WebGUI',3,'9 Guru (Goeroe)',1038485102,NULL); INSERT INTO international VALUES (737,'WebGUI',3,'8 Master (Meester)',1038485058,NULL); @@ -9199,14 +8796,11 @@ INSERT INTO international VALUES (671,'WebGUI',3,'Wobjects, Gebruiken',106359033 INSERT INTO international VALUES (593,'WebGUI',4,'Enviar esta traducción',1039818680,NULL); INSERT INTO international VALUES (493,'WebGUI',4,'Regresar al Sitio',1039818652,NULL); INSERT INTO international VALUES (499,'WebGUI',4,'ID del Wobject',1039818606,NULL); -INSERT INTO international VALUES (742,'WebGUI',4,'Gestionar plantillas.',1065273401,NULL); -INSERT INTO international VALUES (803,'WebGUI',4,'Editar este estilo',1039818415,NULL); INSERT INTO international VALUES (789,'WebGUI/Profile',4,'Editar esta categoría de perfil',1039818403,NULL); INSERT INTO international VALUES (787,'WebGUI/Profile',4,'Editar este campo de perfil',1039818379,NULL); INSERT INTO international VALUES (764,'WebGUI',4,'Editar este elemento adicional',1039818362,NULL); INSERT INTO international VALUES (759,'WebGUI',4,'Editar esta carpeta',1039818348,NULL); INSERT INTO international VALUES (753,'WebGUI',4,'Editar este grupo',1039818334,NULL); -INSERT INTO international VALUES (741,'WebGUI',4,'Editar esta plantilla',1039818320,NULL); INSERT INTO international VALUES (555,'WebGUI',4,'Modificar el Karma de este usuario',1039818287,NULL); INSERT INTO international VALUES (459,'WebGUI',4,'Editar el perfil de este usuario',1039818263,NULL); INSERT INTO international VALUES (458,'WebGUI',4,'Editar los grupos de este usuario',1039818248,NULL); @@ -9215,7 +8809,6 @@ INSERT INTO international VALUES (342,'WebGUI',4,'Editar datos de la cuenta',103 INSERT INTO international VALUES (596,'WebGUI',4,'FALTA',1039818076,NULL); INSERT INTO international VALUES (723,'WebGUI',4,'Obsoleto',1039818061,NULL); INSERT INTO international VALUES (675,'WebGUI',4,'Motor de Búsqueda, Usar',1039817837,NULL); -INSERT INTO international VALUES (365,'WebGUI',4,'Resultados de la Búsqueda...',1039817799,NULL); INSERT INTO international VALUES (364,'WebGUI',4,'Buscar',1039817779,NULL); INSERT INTO international VALUES (498,'WebGUI',4,'Fecha Fin',1039817715,NULL); INSERT INTO international VALUES (497,'WebGUI',4,'Fecha inicio',1039817678,NULL); @@ -9246,8 +8839,6 @@ INSERT INTO international VALUES (434,'WebGUI',4,'Estado',1039628408,NULL); INSERT INTO international VALUES (597,'WebGUI',4,'Editar traducción del mensaje',1039628384,NULL); INSERT INTO international VALUES (595,'WebGUI',4,'Mensajes traducidos',1039628357,NULL); INSERT INTO international VALUES (587,'WebGUI',4,'Está seguro que desea eliminar este idioma y todos los mensajes traducidos a él?',1039628342,NULL); -INSERT INTO international VALUES (38,'USS',4,'(Seleccione \"No\" si está escribiendo un texto en código HTML/Rich.)',1065211450,NULL); -INSERT INTO international VALUES (501,'WebGUI',4,'Cuerpo',1039628115,NULL); INSERT INTO international VALUES (80,'EventsCalendar',4,'Plantilla de Evento',1039628048,NULL); INSERT INTO international VALUES (78,'EventsCalendar',4,'No eliminar nada.',1039628022,NULL); INSERT INTO international VALUES (77,'EventsCalendar',4,'Eliminar este evento y además todas sus repeticiones.',1039628003,NULL); @@ -9280,7 +8871,6 @@ INSERT INTO international VALUES (589,'WebGUI',4,'Editar traducci INSERT INTO international VALUES (588,'WebGUI',4,'Está seguro que desea enviar esta traducción a Plain Black para ser incluida en la distribución oficial de WebGUI? Al aceptar, Ud. declara entender que está dando a Plain Black licencia ilimitada para utilizar esta traducción en las distribuciones de su software.',1039626899,NULL); INSERT INTO international VALUES (586,'WebGUI',4,'Gestionar Traducciones',1065273376,NULL); INSERT INTO international VALUES (585,'WebGUI',4,'Gestionar traducciones.',1065273327,NULL); -INSERT INTO international VALUES (380,'WebGUI',4,'ID Estilo',1039626727,NULL); INSERT INTO international VALUES (584,'WebGUI',4,'Añadir una traducción nueva.',1065304612,NULL); INSERT INTO international VALUES (61,'Article',4,'Artículo, Añadir/Editar',1039564394,NULL); INSERT INTO international VALUES (23,'Article',4,'Fecha',1065210991,NULL); @@ -9328,7 +8918,6 @@ INSERT INTO international VALUES (63,'Survey',2,'Fragen exportieren.',1040599013 INSERT INTO international VALUES (65,'Survey',2,'Gemischte Auswertung exportieren.',1040598966,NULL); INSERT INTO international VALUES (66,'Survey',2,'Geantwortet',1049146849,NULL); INSERT INTO international VALUES (67,'Survey',2,'Benutzer',1040598808,NULL); -INSERT INTO international VALUES (68,'Survey',2,'Reports anschauen, Exportieren, ...',1040598788,NULL); INSERT INTO international VALUES (71,'Survey',2,'Rangstufen',1040598736,NULL); INSERT INTO international VALUES (73,'Survey',2,'Alle Antworten löschen.',1049146069,NULL); INSERT INTO international VALUES (75,'Survey',2,'Diese Frage bearbeiten.',1040598384,NULL); @@ -9373,7 +8962,6 @@ INSERT INTO international VALUES (750,'WebGUI',2,'Diesen Benutzer löschen.' INSERT INTO international VALUES (746,'WebGUI',2,'Bearbeitungsleiste Icon Set',1040596900,NULL); INSERT INTO international VALUES (744,'WebGUI',2,'Als nächstes?',1040596874,NULL); INSERT INTO international VALUES (743,'WebGUI',2,'Sie müssen eine korrekte Emailadresse angeben, um Ihr Passwort zu erhalten.',1040596854,NULL); -INSERT INTO international VALUES (742,'WebGUI',2,'Templates verwalten.',1040596824,NULL); INSERT INTO international VALUES (739,'WebGUI',2,'UI Level',1040596808,NULL); INSERT INTO international VALUES (738,'WebGUI',2,'9 Guru',1040596787,NULL); INSERT INTO international VALUES (737,'WebGUI',2,'8 Master',1040596775,NULL); @@ -9392,7 +8980,6 @@ INSERT INTO international VALUES (721,'WebGUI',2,'Namensbereich',1040596472,NULL INSERT INTO international VALUES (720,'WebGUI',2,'OK',1040596445,NULL); INSERT INTO international VALUES (719,'WebGUI',2,'Veraltet',1040596428,NULL); INSERT INTO international VALUES (7,'Survey',2,'Antwort gesteuert',1040596122,NULL); -INSERT INTO international VALUES (805,'WebGUI',2,'Diesen Style löschen.',1040595710,NULL); INSERT INTO international VALUES (806,'WebGUI',2,'Diese Gruppe löschen.',1040595693,NULL); INSERT INTO international VALUES (807,'WebGUI',2,'Untergruppen verwalten',1067366146,NULL); INSERT INTO international VALUES (808,'WebGUI',2,'Senden Sie dieser Gruppe eine Email.',1040595633,NULL); @@ -9464,15 +9051,13 @@ INSERT INTO international VALUES (765,'WebGUI',2,'Diesen Upload löschen.',1 INSERT INTO international VALUES (72,'SiteMap',2,'SiteMap Template',1048242785,NULL); INSERT INTO international VALUES (76,'USS',2,'Benutzerbeitragssystem Template',1041635215,NULL); INSERT INTO international VALUES (73,'MessageBoard',2,'Diskussionsforum Template',1066753594,NULL); -INSERT INTO international VALUES (75,'LinkList',2,'Link Liste Template',1040405733,NULL); +INSERT INTO international VALUES (9,'IndexedSearch',3,'Alleen resultaten in taal',1068830408,NULL); INSERT INTO international VALUES (3,'Survey',2,'Umfrage, Hinzufügen/Bearbeiten',1067897489,NULL); INSERT INTO international VALUES (2,'Survey',2,'Umfrage bearbeiten',1040405651,NULL); INSERT INTO international VALUES (48,'Survey',2,'Sie sind momentan nicht berechtigt, an dieser Umfrage teilzunehmen.',1040650776,NULL); -INSERT INTO international VALUES (73,'Item',2,'Textelement Template',1040404643,NULL); INSERT INTO international VALUES (829,'WebGUI',2,'Seiten Template',1040404503,NULL); INSERT INTO international VALUES (973,'WebGUI',1,'If proxied, use real client IP address?',1053459227,NULL); INSERT INTO international VALUES (75,'FileManager',2,'Download Manager Template',1041600125,NULL); -INSERT INTO international VALUES (76,'FAQ',2,'FAQ Template',1040404432,NULL); INSERT INTO international VALUES (96,'EventsCalendar',2,'Ereignis Template',1040404414,NULL); INSERT INTO international VALUES (94,'EventsCalendar',2,'Ereignis Kalender Template',1040404377,NULL); INSERT INTO international VALUES (80,'EventsCalendar',2,'Ereignis Template',1040404360,NULL); @@ -9483,11 +9068,9 @@ INSERT INTO international VALUES (854,'WebGUI',2,'Alle Templates wie dieses anze INSERT INTO international VALUES (853,'WebGUI',2,'Template löschen',1041631401,NULL); INSERT INTO international VALUES (852,'WebGUI',2,'Template kopieren',1041631380,NULL); INSERT INTO international VALUES (851,'WebGUI',2,'Template bearbeiten',1041631362,NULL); -INSERT INTO international VALUES (741,'WebGUI',2,'Template bearbeiten',1041631291,NULL); INSERT INTO international VALUES (783,'WebGUI',2,'Typ',1040399695,NULL); INSERT INTO international VALUES (766,'WebGUI',2,'Zurück zu den Uploads',1040399523,NULL); INSERT INTO international VALUES (756,'WebGUI',2,'Zurück zur Gruppenliste.',1040399470,NULL); -INSERT INTO international VALUES (814,'WebGUI',2,'Zurück zu den Styles.',1040399446,NULL); INSERT INTO international VALUES (745,'WebGUI',2,'Zurück zur Seite.',1040399379,NULL); INSERT INTO international VALUES (60,'Survey',2,'Zurück zur Umfrage.',1040399321,NULL); INSERT INTO international VALUES (775,'WebGUI',2,'Sind Sie sicher, dass Sie diesen Ordner löschen möchten? Wenn er gelöscht ist, kann er nicht wiederhergestellt werden.',1056098550,NULL); @@ -9518,14 +9101,12 @@ INSERT INTO international VALUES (512,'WebGUI',2,'Nächstes Thema',106675361 INSERT INTO international VALUES (74,'USS',2,'Benutzerbeitragssystem System Template',1041635078,NULL); INSERT INTO international VALUES (73,'USS',2,'Benutzerbeitragssystem Template',1041635105,NULL); INSERT INTO international VALUES (52,'USS',2,'Vorschaubild',1040397318,NULL); -INSERT INTO international VALUES (38,'USS',2,'(Wählen Sie \"Nein\", wenn Sie ein HTML/Richedit Beitragssystem hinzufügen)',1040397301,NULL); INSERT INTO international VALUES (9,'Survey',2,'Umfrage',1040397175,NULL); INSERT INTO international VALUES (511,'WebGUI',2,'durchgehend',1040397160,NULL); INSERT INTO international VALUES (509,'WebGUI',2,'Diskussions Layout',1040397118,NULL); INSERT INTO international VALUES (496,'WebGUI',2,'Editor auswählen',1040397079,NULL); INSERT INTO international VALUES (495,'WebGUI',2,'htmlArea (Internet Explorer 5.5+)',1045240994,NULL); INSERT INTO international VALUES (494,'WebGUI',2,'RealObjects edit-on Pro 2.x',1045240980,NULL); -INSERT INTO international VALUES (501,'WebGUI',2,'Body',1040397021,NULL); INSERT INTO international VALUES (510,'WebGUI',2,'Flach',1040397009,NULL); INSERT INTO international VALUES (748,'WebGUI',2,'Benutzer Zähler',1040396997,NULL); INSERT INTO international VALUES (492,'WebGUI',2,'Liste der Profil-Felder',1040396980,NULL); @@ -9565,7 +9146,6 @@ INSERT INTO international VALUES (74,'SiteMap',2,'Diese Seite',1040395856,NULL); INSERT INTO international VALUES (20,'Poll',2,'Karma pro Abstimmung',1040395813,NULL); INSERT INTO international VALUES (12,'Poll',2,'Gesamtzahl Abstimmungen',1055240977,NULL); INSERT INTO international VALUES (74,'FileManager',2,'Neue Datei hinzufügen.',1040395313,NULL); -INSERT INTO international VALUES (75,'FAQ',2,'Frage hinzufügen.',1040395090,NULL); INSERT INTO international VALUES (3,'Auth/SMB',2,'SMB Protokol Fehler (2)
\r\nBitte nehmen Sie Kontakt mit Ihrem Systemadministrator auf.',1040651984,NULL); INSERT INTO international VALUES (4,'Auth/SMB',2,'SMB Anmeldefehler (3)
\r\nSie haben einen falschen Benutzernamen oder ein falsches Kennwort eingegeben. Bitte versuchen Sie es noch einmal.',1040651997,NULL); INSERT INTO international VALUES (5,'Auth/SMB',2,'PDC',1040394965,NULL); @@ -9599,10 +9179,6 @@ INSERT INTO international VALUES (638,'WebGUI',2,'Templates werden eingesetzt um INSERT INTO international VALUES (639,'WebGUI',2,'Template Name
\r\nVergeben Sie einen aussagekräftigen Namen, damit Sie später wissen, wofür dieses Template ist.\r\n

\r\nNamensbereich
\r\nWelcher Template Typ ist es? z.B. Template für das Textelement\r\n

\r\nTemplate
\r\nBenutzen Sie zur Erstellung des Templates die vorhandenen Template-Befehle und Variablen, Macros und auch HTML-Code.\r\n

\r\nBeachten Sie:
\r\nSie sollten niemals die Standardtemplates, die mit WebGUI ausgeliefert werden, bearbeiten, da diese oft mit jeder neuen Version von WebGUI geändert werden. Verfahren Sie stattdessen so, dass Sie ein Template Ihrer Wahl zuerst kopieren und dann mit dieser Kopie weiterarbeiten und z. B. einen neuen Namen vergeben etc.',1040655572,NULL); INSERT INTO international VALUES (838,'WebGUI',2,'Ordner werden zum Organisieren von Uploads genutzt, ähnlich wie Sie Dateien auf Ihrer Festplatte in Verzeichnissen sortiert haben.\r\n

\r\nIn Ordnern organisieren
\r\nOrdner können sich innerhalb anderer Ordner befinden. Geben Sie hier an, in welchen anderen Ordner Sie diesen verschieben möchten.\r\n

\r\nName
\r\nBenennen Sie den Ordner so, dass Sie auch erkennen, was sich darin befindet (z. B. Grafiken, Private Bilder, Musikfiles, ...)\r\n

\r\nBeschreibung
\r\nGeben Sie eine kurze Beschreibung des Ordners an, so dass Sie sich auch später erinnern können, warum Sie z. B. diesen Ordner erstellt haben, was sich darin befindet, etc.',1056099288,NULL); INSERT INTO international VALUES (830,'WebGUI',2,'Seiten Templates werden genutzt um Wobjects auf Ihrer Seite zu organisieren. Um dies zu ermöglichen, müssen Sie Template Positionen erstellen. Sie können eine unbegrenzte Anzahl von Postionsnummern in Ihren Seiten-Templates benutzen, aber Sie müssen dafür immer eine Position schaffen. Die Template Positions Variablen können ungefähr so aussehen:

\r\n\r\n
\r\n<tmpl_var page.position1>\r\n<tmpl_var page.position2>\r\n<tmpl_var page.position3>\r\n<tmpl_var page.position4>\r\n<tmpl_var page.position5>\r\n<tmpl_var page.position6>\r\n<tmpl_var page.position7>\r\n<tmpl_var ...>\r\n\r\n
\r\n\r\n\r\nSie können mehr als 1 Million dieser Positionen einsetzen... Das sollte mehr als genug auch für die komplexeste Seite sein.',1040654716,NULL); -INSERT INTO international VALUES (74,'Item',2,'Nachfolgend eine Liste von Template Variablen für Textelement Templates.\r\n

\r\nattachment.name
\r\nDer Dateiname für den Anhang\r\n

\r\nattachment.url
\r\nDie URL zum Downloaden des Anhangs\r\n

\r\nattachment.icon
\r\nDie URL zum Icon für den Anhang (z.B. Symbol für PDF-Dateien)
',1040654374,NULL); -INSERT INTO international VALUES (73,'FAQ',2,'Frage
\r\nFügen Sie die Frage hinzu, die in der FAQ erscheinen soll.\r\n

\r\nAntwort
\r\nFügen Sie die Antwort hinzu, die für die Frage, die Sie eben eingegeben haben, erscheinen soll.\r\n

\r\nAls nächstes?
\r\nMöchten Sie eine neue Frage hinzufügen, so wählen Sie es hier aus.
',1040654126,NULL); -INSERT INTO international VALUES (71,'FAQ',2,'Es scheint, dass es auf fast auf jeder Website, privaten Homepage, in Intranets oder auch in Extranets einen F.A.Q-Bereich (Frequently Asked Questions) gibt. Dieses Wobject hilft Ihnen, solch eine FAQ aufzubauen.\r\n

\r\nTemplate
\r\nWählen Sie ein Layout für diese FAQ aus.\r\n

\r\nAls nächstes?
\r\nWählen Sie \"Eine Frage hinzufügen\", wenn Sie eine neue Frage hinzufügen möchten.

\r\n
\r\nBeachten Sie bitte: Die nachfolgende Stylesheet Class ist speziell für die FAQ.\r\n

\r\nfaqQuestion
\r\nEine FAQ Frage. zum Abgrenzen von der Antwort
',1040653967,NULL); -INSERT INTO international VALUES (71,'ExtraColumn',2,'Extra Spalten erlauben Ihnen, unbhängig vom Gesamtlayout(Style) Ihrer Seite für die momentan ausgewählte Seite eine Zusatzspalte einzufügen.\r\n

\r\nMöchten Sie mehrere Spalten auf all Ihren Seiten haben, müssen Sie den Style entsprechend bearbeiten oder stattdessen ein Template benutzen.\r\n

\r\nSpalten werden immer von links nach rechts hinzugefügt. Deswegen erscheint bereits vorhandener Content links von der neuen Spalte.\r\n

\r\nPlatzhalter
\r\nDer Platzhalter ist die Grösse der Abstände zwischen dem bereits vorhandenen Content und Ihrer neuen Spalte. Angaben in Pixel.\r\n

\r\nBreite
\r\nGeben Sie hier bitte die Breite in Pixel für die neue Spalte an.\r\n

\r\nStyleSheet Class
\r\nWenn Sie eine spezielle StyleSheet Class für Spalten benutzen, können Sie diese hier angeben.',1040653582,NULL); INSERT INTO international VALUES (73,'EventsCalendar',2,'Titel
\r\nBezeichnung dieses Ereignisses\r\n

\r\nDescription
\r\nBeschreibung dieses Ereignisses\r\n

\r\nStart Datum
\r\nWann beginnt das Ereignis?\r\n

\r\nEnde Datum
\r\nWann endet das Ereignis?\r\n

\r\nWiederholt sich
\r\nWählen Sie einen Wiederholungszeitraum für dieses Ereignis aus\r\n

\r\nAls nächstes?
\r\nWählen Sie \"Neues Ereignis hinzufügen\", wenn Sie ein neues Ereignis hinzufügen möchten, andernfalls wählen Sie \"Zurück zur Seite\".\r\n
',1040652689,NULL); INSERT INTO international VALUES (71,'SiteMap',2,'SiteMaps (Seitenübersichten) stellen eine zusätzliche Navigationshilfe dar. \r\nSie können eine traditionelle Sitemap verwenden, die eine hierarchische \r\nAnsicht aller Seiten anzeigt. Sie können aber andererseits Sitemaps benutzen, \r\num eine zusätzliche Navigationsebene für bestimmte Ebenen Ihrer Seite einzubauen.

Template
Wählen \r\nSie ein Layout für die Sitemap. \r\n

Beginnen mit
Wählen Sie die Seite aus, mit der die Sitemap beginnen \r\nsoll. \r\n

Tiefe
Wie viel Stufen der Navigation soll die Sitemap anzeigen? \r\nWenn Sie \'0\' angeben, wird die komplette Seitenübersicht angezeigt mit all ihren \r\nStufen. \r\n

Einrückung?
Wie weit soll jede nachfolgende Stufe eingerückt werden?

',1041635478,NULL); INSERT INTO international VALUES (77,'USS',2,'

Nachfolgend sind die Template Variablen, die im Benutzerbeitragssystem verwendet werden. Diese Templates werden benutzt, um den einzelnen Benutzerbeitrag im Benutzerbeitragssystem darzustellen.

\r\n\r\n

title
\r\nDer Titel dieses Beitrages.

\r\n\r\n

content
\r\nDer komplette Text dieses Beitrages.

\r\n\r\n

user.label
\r\nDie übersetzte Bezeichnung die anzeigt, welcher Benutzer diesen Beitrag veröffentlicht hat.

\r\n\r\n

user.profile
\r\nDie URL zum Profil des Benutzers, der den Beitrag veröffentlicht hat.

\r\n\r\n

user.username
\r\nDer Benutzername dieses Benutzers.

\r\n\r\n

user.id
\r\nDie Benutzer ID dieses Benutzers.

\r\n\r\n

date.label
\r\nDie übersetzte Bezeichnung die anzeigt, wann dieser Beitrag geschrieben wurde.

\r\n\r\n

date.epoch
\r\nDie Anzahl der Sekunden seit 1. Januar 1970 zum Zeitpunkt , an dem dieser Beitrag geschrieben wurde.

\r\n\r\n

date.human
\r\nDas umgewandelte Datum, wann dieser Beitrag geschrieben wurde.

\r\n\r\n

date.updated.label
\r\nDie übersetzte Bezeichnung, die anzeigt, an welchem Datum der Beitrag zum letzten Mal bearbeitet wurde.

\r\n\r\n

date.updated.epoch
\r\nDie Anzahl an Sekunden seit 1. Januar 1970 zum Zeitpunkt, an dem dieser Beitrag zum letzten Mal bearbeitet wurde.

\r\n\r\n

date.updated.human
\r\nDas umgewandelte Datum, wann dieser Beitrag zum letzten Mal beabeitet wurde.

\r\n\r\n

status.label
\r\nDie übersetzte Bezeichnung, die den Status dieses Beitrages anzeigt.

\r\n\r\n

status.status
\r\nDer aktuelle Status dieses Beitrages (ausstehend, freigegeben, abgelehnt).

\r\n\r\n

views.label
\r\nDie übersetzte Bezeichnung, wie oft dieser Beitrag angeschaut wurde.

\r\n\r\n

views.count
\r\nAnzahl, wie oft dieser Beitrag angeschaut wurde

\r\n\r\n

canPost
\r\nBedinung, ob der Benutzer einen neuen Beitrag schreiben kann oder nicht.

\r\n\r\n

post.url
\r\nDie URL zum Schreiben eines neuen Beitrages.

\r\n\r\n

post.label
\r\nDie übersetzte Bezeichnung für diese URL.

\r\n\r\n

previous.more
\r\nBedingung, ob es ältere/vorherige Beiträge vor diesem gab oder nicht..

\r\n\r\n

previous.url
\r\nEine URL zu dem vorherigen Beitrag.

\r\n\r\n

previous.label
\r\nDie übersetzte Bezeichnung ! für diese URL.

\r\n\r\n

next.more
\r\nBedingung, ob es noch weiter e Beiträge gibt oder nicht.

\r\n\r\n

next.url
\r\nDie URL zum nachfolgenden Beitrag.

\r\n\r\n

next.label
\r\nDie übersetzte Bezeichnung für diese URL.

\r\n\r\n

canEdit
\r\nBedingung, ob der aktuelle Benutzer diesen Beitrag bearbeiten oder löschen kann.

\r\n\r\n

edit.url
\r\nDie URL zum Bearbeiten dieses Beitrages.

\r\n\r\n

edit.label
\r\nDie übersetzte Bezeichnung für den Bearbeitungslink.

\r\n\r\n

delete.url
\r\nDie URL zum Löschen des Beitrages.

\r\n\r\n

delete.label
\r\nDie übersetzte Bezeichnung diese URL.

\r\n\r\n

canChangeStatus
\r\nBedingung, ob der aktuelle Benutzer die Berechtigung hat, den Status dieses Beitrages zu bearbeiten.

\r\n\r\n

approve.url
\r\nDie URL zum Freigeben dieses Beitrages.

\r\n\r\n

approve.label
\r\nDie übersetzte Bezeichnung diese URL.

\r\n\r\n

deny.url
\r\nDie URL zum Ablehnen des Beitrages.

\r\n\r\n

deny.label
\r\nDie übersetzte Bezeichnung für diese URL.

\r\n\r\n

leave.url
\r\nDie! URL, um diesen Beitrag beim aktuellen Status zu belassen..

\r\n\r\n

leave.label
\r\nDie übersetzte Bezeichnung für diese URL.

\r\n\r\n

canReply
\r\nBedingung, ob der aktuelle Benutzer auf diesen Beitrag antworten kann oder nicht.

\r\n\r\n

reply.url
\r\nDie URL umauf diesen Beitrag zu antworten.

\r\n\r\n

reply.label
\r\nDie übersetzte Bezeichnung für diese URL.

\r\n\r\n

search.url
\r\nDie URL, um zum WebGUI Power Suchformular zu wechseln.

\r\n\r\n

search.label
\r\nDie übersetzte Bezeichnung für diesen Link.

\r\n\r\n

back.url
\r\nDie URL, um zur Hauptübersicht zurückzukehren.

\r\n\r\n

back.label
\r\nDie übersetzte Bezeichnung für diese URL.

\r\n\r\n

replies
\r\nEine komplette Liste aller Antworten zu diesem Beitrag.

',1067278397,NULL); @@ -9624,7 +9200,6 @@ INSERT INTO international VALUES (50,'Product',2,'Vorzüge oder Vorteile sin INSERT INTO international VALUES (71,'SyndicatedContent',2,'Syndicated Content. Hierbei werden Seiten in Art eines \r\nRinges (Syndicate) zusammengeschlossen, indem Sie einen zentralen Inhalt \r\n(Content) zusätzlich zu den eigenen Informationen anbieten. Dies können \r\nbeispielsweise tägliche Nachrichten einer Branche oder eines Themas sein. Diese \r\nTechnologie wird oft genutzt, um Schlagzeilen/Nachrichten von verschiedenen \r\nSeiten anzuzeigen, wie www.heise.de oder www.golem.de. \r\nEs kann natürlich auch für andere Dinge genutzt werden, wie z. B. Sportnachrichten, \r\nAktienkurse, etc.

URL zur RSS \r\nDatei
Geben Sie die genaue URL (beginnend mit http://) zu der angebotenen \r\nRDF oder RSS Datei an. Der Syndicated Content wird stündlich (sofern runHourly.pl \r\nals Cron- oder AT-Job läuft) von dieser URL gedownloadet.\r\n

Hier einige \r\nBeispiele, wo Sie RSS oder RDF Dateien bzw. Anbieter finden können: \r\n

\r\n\r\n

Template
Wählen Sie ein Template für dieses Content aus.

',1048588796,NULL); INSERT INTO international VALUES (61,'SyndicatedContent',2,'Syndicated Content, Hinzufügen/Bearbeiten',1067896940,NULL); INSERT INTO international VALUES (625,'WebGUI',2,'Laden Sie einige Bilder hoch, die Sie in mehreren Bereichen der Seite benutzen \r\nmöchten. \r\n

Name
Die Bezeichnung, mit der Sie dieses Bild referenzieren, um \r\nes in anderen Seiten einzufügen. \r\n

In welchen Ordner?
In welchen Ordner möchten Sie diese \r\nGrafik platzieren?

Datei
Wählen Sie eine Grafik aus Ihrem lokalen \r\nVerzeichnis, die Sie zum Server hochladen möchten. \r\n

Parameter
\r\nGeben Sie hier einige HTML <img> Tag Parameter an, \r\ndie Sie standardmässig für diese Grafik benutzen möchten. \r\n

Beispiel:
align="right"
alt="Dies ist ein Bild"
\r\n

Thumbnail Size
Wie gross (in Pixels) soll das Vorschaubild (Thumbnail) \r\nsein?

',1056098445,NULL); -INSERT INTO international VALUES (609,'WebGUI',2,'Wenn Sie einen Style löschen, werden alle Seiten, die diesen verwenden, auf \r\nden Standard-Style (Fail Safe) umgestellt. Um eine störungsfreie Ansicht \r\nzu gewährleisten, sollten Sie sich sicher sein, dass keine Seite mehr diesen \r\nStyle benutzt, bevor Sie ihn löschen.

Wie es in der Regel bei Löschvorgängen so üblich ist, werden Sie vorher gefragt, \r\nob Sie sich sicher sind, dass Sie diesen Style löschen möchten. Wenn Sie nun \r\nmit "Ja" antworten, wird der Style endültig gelöscht. Wenn Sie mit "nein" antworten, \r\n gelangen Sie wieder zur vorhergehenden Seite

',1041616041,NULL); INSERT INTO international VALUES (608,'WebGUI',2,'Eine Seite zu löschen könnte ein grosses Durcheinander verursachen, wenn Sie \r\nsich nicht sicher sind, was Sie tun. Wenn Sie eine Seite löschen, löschen Sie \r\nauch den kompletten Inhalt dieser Seite, sowie alle Unterseiten, die zu dieser \r\nSeite verbunden sind an auch deren Inhalt. Versichern Sie sich, dass Sie allen \r\nInhalt, den Sie noch benötigen, verschoben haben, bevor Sie zu Löschen beginnen. \r\n

Wie es in der Regel bei Löschvorgängen so üblich ist, werden Sie vorher gefragt, \r\nob Sie sich sicher sind, dass Sie diese Seite löschen möchten. Wenn Sie nun \r\nmit "Ja" antworten, wird die Seite endültig gelöscht. Wenn Sie mit \"nein\" antworten gelangen Sie wieder zur vorhergehenden Seite

',1041615928,NULL); INSERT INTO international VALUES (578,'WebGUI',2,'Sie haben einen ausstehenden Beitrag zu genehmigen.',1041614885,NULL); INSERT INTO international VALUES (555,'WebGUI',2,'Karma dieses Benutzers bearbeiten.',1041614705,NULL); @@ -9705,12 +9280,38 @@ INSERT INTO international VALUES (71,'DataForm',2,'Dieses Wobject erstellt ein e INSERT INTO international VALUES (935,'WebGUI',2,'Die Datei, die Sie hochgeladen haben, scheint kein korrektes Themenfile zu sein.',1055245069,NULL); INSERT INTO international VALUES (939,'WebGUI',2,'

Wenn Sie ein Thema, dass Sie erstellt haben, löschen, so entfernen Sie nur \r\ndas Thema selbst - die Elemente, die dieses Thema enthält, werden nicht gelöscht.

\r\n

Andererseites aber, wenn Sie ein importiertes Thema löschen, so werden auch \r\ndie in diesem Thema enthaltenen Elemente (Grafiken etc.) gelöscht! Achten Sie \r\ndaher darauf, dass Sie Elemente, die in dem importierten Thema enthalten waren, \r\nauch wirklich nicht mehr benötigen.

\r\n',1055245028,NULL); INSERT INTO international VALUES (941,'WebGUI',2,'Checkbox Liste',1055244838,NULL); -INSERT INTO international VALUES (76,'LinkList',2,'Nachfolgend eine Liste von Template Variablen für Links-Listen Templates. \r\n

addlink.url
Die URL um einen Link zur Liste hinzuzufügen. \r\n

addlink.label
Der übersetzte Text für diesen Link. \r\n

canEdit
Eine Variable, ob der Benutzer diesen Link bearbeiten kann \r\noder nicht.

link_loop
Diese Schleife (Loop) enthält alle Informationen über \r\njeden Link. \r\n

link.url
Die URL für diesen Link. \r\n

link.name
Der verlinkte Text. \r\n

link.controls
Die WebGUI Verwaltungscontrols für diesen Link. \r\n

link.newwindow
Eine Variable, um den Link in einem neuen Fenster \r\n anzeigen zu lassen. \r\n

link.description
Die Beschreibung dieses Links.

',1055247879,NULL); -INSERT INTO international VALUES (71,'LinkList',2,'Link Listen sind genau das, was der Name sagt: Eine Liste von Links. Viele Seiten haben Linkbereiche - und dieses Wobject kann zum Erstellen und Verwalten dieser Linklisten eingesetzt werden.

\r\nTemplate
\r\nWählen Sie ein Layout für die Linkliste aus.

\r\nAls nächstes?
\r\nMöchten Sie gleich einen neuen Link in die Liste aufnehmen? Oder zuerst zurück zur Seite gehen, um sie sich anzuschauen?',1041600773,NULL); -INSERT INTO international VALUES (71,'Item',2,'Wie Artikel sind die Textelemente das "Schweizer Messer" von WebGUI. Der \r\ngrösste Teil von statischem Inhalt kann mit Hilfe des Textelements hinzugefügt \r\nwerden. Zusammengefasst kann man sagen, dass Textelemente benutzt werden können, \r\num kleinere Textelemente (aber auch Grafikelemente) einzufügen.

Link URL
Diese URL wird \r\ndem Titel dieses Elements hinzugefügt.
\r\n

Beispiel: http://www.plainblack.com \r\n

Anhang
Möchten Sie z. B. ein Word-Dokument, ein Zip-File oder \r\nirgendeine andere Datei zum Download anbieten, so können Sie diese von Ihrem \r\nlokalen Laufwerk auswählen und hochladen. \r\n

\r\n

Template
Wählen Sie ein Layout für dieses Textelement.

\r\n',1041600534,NULL); +INSERT INTO international VALUES (21,'IndexedSearch',3,'Standaard inhoud',1068830147,NULL); +INSERT INTO international VALUES (22,'IndexedSearch',3,'Profielen',1068830162,NULL); +INSERT INTO international VALUES (23,'IndexedSearch',3,'Ieder content type',1068830186,NULL); +INSERT INTO international VALUES (24,'IndexedSearch',3,'Iedere taal',1068830198,NULL); +INSERT INTO international VALUES (25,'IndexedSearch',3,'Iedere user',1068830230,NULL); +INSERT INTO international VALUES (26,'IndexedSearch',3,'Zoek, Toevoegen/Bewerken',1068830292,NULL); +INSERT INTO international VALUES (3,'IndexedSearch',3,'Zie de documentatie voor meer informatie.',1068830315,NULL); +INSERT INTO international VALUES (4,'IndexedSearch',3,'Deze pagina',1068830328,NULL); +INSERT INTO international VALUES (5,'IndexedSearch',3,'Te gebruiken index',1068830341,NULL); +INSERT INTO international VALUES (6,'IndexedSearch',3,'Doorzoek',1068830353,NULL); +INSERT INTO international VALUES (7,'IndexedSearch',3,'Alleen resultaten van',1068830378,NULL); +INSERT INTO international VALUES (8,'IndexedSearch',3,'Alleen resultaten in bereik',1068830393,NULL); +INSERT INTO international VALUES (2,'IndexedSearch',1,'No index created. The scheduler must run and create the index first.',1066252099,''); +INSERT INTO international VALUES (3,'IndexedSearch',1,'Please refer to the documentation for more info.',1066252166,''); +INSERT INTO international VALUES (4,'IndexedSearch',1,'This page',1066252218,''); +INSERT INTO international VALUES (5,'IndexedSearch',1,'Index to use',1066252241,''); +INSERT INTO international VALUES (6,'IndexedSearch',1,'Search through',1066252264,''); +INSERT INTO international VALUES (1,'IndexedSearch',1,'Table Search_docInfo can\'t be opened.',1066252055,''); +INSERT INTO international VALUES (1,'IndexedSearch',3,'De database tabel Search_docInfo kan niet geopend worden.',1068829661,NULL); +INSERT INTO international VALUES (10,'IndexedSearch',3,'Alleen resultaten van het type',1068829693,NULL); +INSERT INTO international VALUES (11,'IndexedSearch',3,'Breek pagina af na',1068829785,NULL); +INSERT INTO international VALUES (12,'IndexedSearch',3,'Context preview lengte',1068829830,NULL); +INSERT INTO international VALUES (13,'IndexedSearch',3,'Markeer resultaten ?',1068829883,NULL); +INSERT INTO international VALUES (14,'IndexedSearch',3,'Markeer kleur',1068829896,NULL); +INSERT INTO international VALUES (15,'IndexedSearch',3,'Alle pagina\'s',1068829908,NULL); +INSERT INTO international VALUES (16,'IndexedSearch',3,'Zoek',1068829919,NULL); +INSERT INTO international VALUES (17,'IndexedSearch',3,'Zoeken',1068829940,NULL); +INSERT INTO international VALUES (18,'IndexedSearch',3,'Ieder bereik',1068829993,NULL); +INSERT INTO international VALUES (19,'IndexedSearch',3,'Wobject',1068830017,NULL); +INSERT INTO international VALUES (20,'IndexedSearch',3,'Wobject details',1068830113,NULL); INSERT INTO international VALUES (73,'FileManager',2,'Dateititel
Der Text, der für diese Datei angezeigt wird. Falls Sie \r\nhier nichts angeben, wird der Dateiname angezeigt. \r\n

Dateiname
Wählen Sie hier eine Datei von Ihrem lokalen Laufwerk, \r\ndie Sie uploaden möchten. \r\n

Alternative #1
Eine alternative Version dieser Datei. Wenn z. B. \r\ndie Datei im JPEG-Format ist, könnten Sie bei der alternativen Version z. B. \r\nTIFF oder BMP auswählen. \r\n

Alternative #2
Analog zur Alternative #1. \r\n

Kurze Beschreibung
Eine kurze Beschreibung dieser Datei. Beachten \r\nSie, dass Sie Schlüsselwörter benutzen, damit die Benutzer besser nach dieser \r\nDatei suchen können. \r\n

Gruppe, die Download benutzen kann
Wählen Sie die Gruppe aus, die \r\ndiese Datei downloaden kann. \r\n

Als nächstes?
Möchten Sie sofort einen neuen Download hinzufügen? \r\nOder möchten Sie zuerst zurück zur Seite gehen?.

',1064946894,NULL); INSERT INTO international VALUES (71,'FileManager',2,'Der Download-/Dateimanager wurde entwickelt um Ihnen eine Möglichkeit zu geben, \r\nDateien und Downloads in Ihrer Seite zu verwalten. Er bietet Ihnen die Möglichkeit \r\nzu definieren, wer Dateien anschauen oder gar downloaden kann. \r\n

Template
Wählen Sie ein Layout für den Downloadmanager (z. B. \'Standard/Default\' \r\noder \'Standard ohne Suchfunktion\'. \r\n

Einträge pro Seite
Wie viele Dateien sollen pro Seite angezeigt \r\nwerden? \r\n

Als nächstes?
Möchten Sie neue Downloads hinzufügen oder zurück \r\nzur Seite gehen?.

',1041598396,NULL); -INSERT INTO international VALUES (77,'FAQ',2,'Nachfolgend eine Liste aller Variablen für FAQ Templates. \r\n

addquestion.url
Die URL um eine Frage zur FAQ hinzuzufügen. \r\n

addquestion.label
Die übersetzte Bezeichnung für diesen Link. \r\n

qa_loop
Eine Schleife (Loop), die die Variablen für jede einzelne \r\nFrage der FAQ enthält. \r\n

qa.id
Die ID für diese Frage. \r\n

qa.answer
Die Antwort für diese Frage. \r\n

qa.question
Die Frage selbst. \r\n

qa.controls
Die WebGUI Verwaltungscontrols für diese Frage (z. \r\n B. \'Frage bearbeiten\').

',1041597921,NULL); INSERT INTO international VALUES (97,'EventsCalendar',2,'

Nachfolgend eine Liste von Template Variablen für Ereignis Templates.

\r\n

title
\r\nDer Titel des Ereignisses.

\r\n

start.label
\r\nDie  übersetzte Bezeichnung des Startdatums.

\r\n

start.date
\r\nDas Datum, an dem das Ereignis beginnt.

\r\n

end.date
\r\nDas Datum, an dem dieses Ereignis endet.

\r\n

end.label
\r\nDie übersetzte Bezeichung des Ende Datums.

\r\n

canEdit
\r\nVariable, falls der Benutzer des Ereignis bearbeiten kann.

\r\n

edit.url
\r\nDie URL zum Bearbeiten dieses Ereignisses.

\r\n

edit.label
\r\nDie übersetzte Bezeichnung für diese URL (z. B. \'Termin bearbeiten\').

\r\n

delete.url
\r\nDie URL zum Löschen dieses Ereignisses.

\r\n

delete.label
\r\nDie übersetzte Bezeichnung für diese URL.

\r\n

previous.url
\r\nDie URL, um sich das vorherige Ereignis anzeigen zu lassen.

\r\n

previous.label
\r\nDie übersetzte Bezeichnung für diese URL.

\r\n

next.url
\r\nDie URL, um sich das nächste Ereignis anzeigen zu lassen.

\r\n

next.label
\r\nDie übersetzte Bezeichnung für diese URL.

\r\n

description
\r\nDie Beschreibung für dieses Ereignis.

',1067291863,NULL); INSERT INTO international VALUES (71,'EventsCalendar',2,'

Veranstaltungskalender werden z. B. in vielen Intranets benutzt, um interne Termine zu speichern, die das gesamte Unternehmen betreffen. Aber genauso sind Veranstaltungskalender eine besonders gute Möglichkeit, um Ihre Kunden auf Ihrer Unternehmensseite oder privaten Homepage über kommende Veranstaltungen oder Werbeevents zu informieren.
\r\n
\r\nHaupt Template
\r\nWählen Sie ein Layout für den Veranstaltungskalender.
\r\n
\r\nEreignis Template
\r\nWählen Sie ein Layout für die einzelnen Termine innerhalb des Kalenders aus.
\r\n
\r\nStart Monat
\r\nWählen Sie hier den Startmonat Ihres Kalenders aus. Wenn Sie "Aktuell" auswählen, beginnt der Kalender immer im aktuellen Monat. Wenn Sie "Erster im Kalender" auswählen, beginnt der Kalender immer in dem Monat, in dem der früheste Termin eingetragen ist.
\r\n
\r\nEnde Monat
\r\nWählen Sie hier den Endemonat Ihres Kalenders aus. Wenn Sie "X Monate vom Beginn an anzeigen" auswählen, werden auch nur X Monate rückwirkend angezeigt. "Aktuell" und "Letzter im Kalender" gelten analog zum zuvor beschriebenen Startmonat.
\r\n
\r\nStandard Monat
\r\nWählt den Monat für diesen Kalender aus, der dem Besucher angezeigt wird, wenn er die Seite, die den Kalender enthält, aufruft.
\r\n

\r\n\r\nübergeordneter Kalender?
\r\nWenn Sie diese Option auf "Ja" setzen, stellt dieser Kalender die Termine aller Kalender des Systems dar.
\r\n

Einträge pro Seite
\r\nWenn Sie eine Veranstaltungsliste als Layout ausgewählt haben (z. B. Events-List), können Sie hier angeben, wieviel Termine pro Seite angezeigt werden sollen.
\r\n
\r\nAls nächstes?
\r\nMöchten Sie nun nach dem Erstellen des Kalenders gleich ein neues Ereignis einfügen oder zurück zur Seite gehen?
\r\n
\r\nBeachten Sie bitte: Termine, die bereits stattgefunden haben, werden nicht mehr im Kalender angezeigt.
\r\n

\r\n\r\n
\r\nAchtung:Der nachfolgende Style ist speziell für den Veranstaltungskalender
\r\n
\r\n.eventTitle
\r\nDer Titel eines individuellen Termins.',1067274551,NULL); INSERT INTO international VALUES (73,'DataForm',1,'Send',1039776778,NULL); @@ -9810,7 +9411,6 @@ INSERT INTO international VALUES (818,'WebGUI',21,' INSERT INTO international VALUES (817,'WebGUI',21,'áËÔÉ×ÎÙÊ',1041333178,NULL); INSERT INTO international VALUES (816,'WebGUI',21,'óÔÁÔÕÓ',1041333158,NULL); INSERT INTO international VALUES (815,'WebGUI',21,'æÁÊÌ ÓÌÉÛËÏÍ ÂÏÌØÛÏÊ.',1041333092,NULL); -INSERT INTO international VALUES (814,'WebGUI',21,'÷ÅÒÎÕÔØÓÑ Ë ÓÐÉÓËÕ ÓÔÉÌÅÊ',1041332940,NULL); INSERT INTO international VALUES (813,'WebGUI',21,'ðÏÄÇÒÕÐÐÙ',1041332877,NULL); INSERT INTO international VALUES (812,'WebGUI',21,'÷ÁÛÅ ÓÏÏÂÝÅÎÉÅ ÏÔÐÒÁ×ÌÅÎÏ.',1041332184,NULL); INSERT INTO international VALUES (811,'WebGUI',21,'ïÔ',1041332146,NULL); @@ -9868,8 +9468,6 @@ INSERT INTO international VALUES (746,'WebGUI',21,' INSERT INTO international VALUES (745,'WebGUI',21,'×ÅÒÎÕÔØÓÑ ÎÁ ÓÔÒÁÎÉÃÕ',1041251482,NULL); INSERT INTO international VALUES (744,'WebGUI',21,'óÌÅÄÕÀÝÅÅ ÄÅÊÓÔ×ÉÅ',1041251381,NULL); INSERT INTO international VALUES (743,'WebGUI',21,'÷×ÅÄÉÔÅ ÐÒÁ×ÉÌØÎÙÊ e-mail. ',1041251137,NULL); -INSERT INTO international VALUES (742,'WebGUI',21,'óÐÉÓÏË ÛÁÂÌÏÎÏ×',1041251068,NULL); -INSERT INTO international VALUES (741,'WebGUI',21,'òÅÄÁËÔÉÒÏ×ÁÔØ ÛÁÂÌÏÎ',1041251038,NULL); INSERT INTO international VALUES (739,'WebGUI',21,'õÒÏ×ÅÎØ ÚÎÁÎÉÑ ÓÉÓÔÅÍÙ',1041251013,NULL); INSERT INTO international VALUES (738,'WebGUI',21,'9 - ÇÕÒÕ',1041250289,NULL); INSERT INTO international VALUES (737,'WebGUI',21,'8 - ÒÁÚÒÁÂÏÔÞÉË',1041250220,NULL); @@ -9913,10 +9511,9 @@ INSERT INTO international VALUES (1035,'WebGUI',1,'Notification Template',106603 INSERT INTO international VALUES (41,'USS',21,'äÁÔÁ',1041006323,NULL); INSERT INTO international VALUES (4,'USS',21,'÷ÁÛ ÆÁÊÌ ÄÏÂÁ×ÌÅÎ × ÓÉÓÔÅÍÕ ÏÂÍÅÎÁ ÆÁÊÌÁÍÉ',1041006200,NULL); INSERT INTO international VALUES (39,'USS',21,'îÁÐÉÓÁÔØ ÏÔ×ÅÔ',1041006064,NULL); -INSERT INTO international VALUES (38,'USS',21,'(åÓÌÉ ×Ù ÐÏÌØÚÏ×ÁÌÉÓØ ÒÅÄÁËÔÏÒÏÍ Ó ÒÁÓÛÉÒÅÎÎÙÍÉ ×ÏÚÍÏÖÎÏÓÔÑÍÉ, ÔÏ ÏÔÍÅÔØÔÅ „äÁ“)',1041005892,NULL); +INSERT INTO international VALUES (87,'USS',1,'Submission Form Template',1070027660,'Prompt the user to select a template for the USS submission form.'); INSERT INTO international VALUES (37,'USS',21,'õÄÁÌÉÔØ',1041005678,NULL); INSERT INTO international VALUES (35,'USS',21,'îÁÚ×ÁÎÉÅ',1041005652,NULL); -INSERT INTO international VALUES (34,'USS',21,'äÏÂÁ×ÉÔØ ÒÁÚÒÙ× ÓÔÒÏË',1041005625,NULL); INSERT INTO international VALUES (33,'USS',21,'÷ÌÏÖÅÎÎÙÊ ÆÁÊÌ',1041005573,NULL); INSERT INTO international VALUES (32,'USS',21,'çÒÁÆÉÞÅÓËÉÊ ÆÁÊÌ',1041005539,NULL); INSERT INTO international VALUES (31,'USS',21,'óÏÄÅÒÖÁÎÉÅ',1041005463,NULL); @@ -9944,14 +9541,20 @@ INSERT INTO international VALUES (72,'SiteMap',21,' INSERT INTO international VALUES (74,'MessageBoard',21,'The following is the list of template variables available in message board templates.\r\n\r\ncanPost\r\nA conditional indicating whether the current user has the privileges to post a new message.\r\n\r\npost.url\r\nThe URL to post a new message.\r\n\r\npost.label\r\nThe translated label for the post URL.\r\n\r\nsearch.url\r\nThe URL to search this message board.\r\n\r\nsearch.label\r\nThe translated label for the search URL.\r\n\r\nsubject.label\r\nThe translated label for the subject column.\r\n\r\nuser.label\r\nThe translated label for the user column.\r\n\r\ndate.label\r\nThe translated label for the date column.\r\n\r\nviews.label\r\nThe translated label for the views column.\r\n\r\nreplies.label\r\nThe translated label for the replies column.\r\n\r\nlast.label\r\nThe translated label for the last reply column.\r\n\r\nmessage_loop\r\nThe loop containing each message.\r\nlast.url\r\nThe URL to the last reply to this message.\r\n\r\nlast.subject\r\nThe subject on the last reply to this message.\r\n\r\nlast.username\r\nThe username who posted the last reply to this message.\r\n\r\nlast.userProfile\r\nThe URL to the profile of the user who posted the last reply to this message.\r\n\r\nlast.date\r\nThe date that the last reply to this message was posted.\r\n\r\nmessage.subject\r\nThe subject of this message.\r\n\r\nmessage.date\r\nThe date that this message was posted.\r\n\r\nmessage.user\r\nThe user that posted this message.\r\n\r\nmessage.views\r\nThe views that this message has received.\r\n\r\nmessage.replies\r\nThe number of replies to this thread.\r\n\r\nmessage.url\r\nThe URL to view this message.\r\n\r\nmessage.currentUser\r\nA condition indicating whether the current user is also the user that posted this message.\r\n\r\nmessage.status\r\nThe status of this message (pending, approved, denied).\r\n\r\nfirstPage\r\nA link to the first page in the paginator.\r\n\r\nlastPage\r\nA link to the last page in the paginator.\r\n\r\nnextPage\r\nA link to the next page forward in the paginator.\r\n\r\npreviousPage\r\nA link to the next page backward in the paginator.\r\n\r\npageList\r\nA list of links to all the pages in the paginator.\r\n\r\nmultiplePages\r\nA conditional indicating whether there is more than one page in the paginator. ',1040999056,NULL); INSERT INTO international VALUES (73,'MessageBoard',21,'ûÁÂÌÏÎ ÄÌÑ ÆÏÒÕÍÁ',1040998990,NULL); INSERT INTO international VALUES (7,'WobjectProxy',1,'Override title?',1053183682,'Asking the user if s/he would like to use the title specified in the wobject proxy or the original title of the original wobject.'); -INSERT INTO international VALUES (76,'LinkList',21,'The following is the list of template variables available in Link List templates.\r\n\r\naddlink.url\r\nThe URL to add a link to this link list.\r\n\r\naddlink.label\r\nThe translated label for the add link URL.\r\n\r\nlink_loop\r\nThis loop contains all of the information about each link.\r\nlink.url\r\nThe URL for this link.\r\n\r\nlink.name\r\nThe text to be linked.\r\n\r\nlink.controls\r\nThe WebGUI management controls for this link.\r\n\r\nlink.newwindow\r\nA conditional as to whether the link should be opened in a new window.\r\n\r\nlink.description\r\nThe description of this link. ',1040997456,NULL); -INSERT INTO international VALUES (75,'LinkList',21,'ûÁÂÌÏÎ ÄÌÑ ÓÐÉÓËÁ ÓÓÙÌÏË',1040997406,NULL); -INSERT INTO international VALUES (74,'Item',21,'ðÒÉ ÓÏÚÄÁÎÉÉ ÛÁÂÌÏÎÁ ÄÌÑ ÓÓÙÌËÉ ÎÁ ÄÏËÕÍÅÎÔ ÄÏÓÔÕÐÎÙ ÓÌÅÄÕÀÝÉÅ ÐÅÒÅÍÅÎÎÙÅ:\r\n\r\nattachment.name\r\nThe filename for the file attached to this item.\r\n\r\nattachment.url\r\nThe URL to download the file attached to this item.\r\n\r\nattachment.icon\r\nThe URL to the icon for the file attached to this item. ',1040997361,NULL); -INSERT INTO international VALUES (73,'Item',21,'ûÁÂÌÏÎ ÄÌÑ ÓÓÙÌËÉ',1040997146,NULL); +INSERT INTO international VALUES (14,'IndexedSearch',1,'Highlight color',1066252536,''); +INSERT INTO international VALUES (13,'IndexedSearch',1,'Highlight results ?',1066252498,''); +INSERT INTO international VALUES (12,'IndexedSearch',1,'Context preview length',1066252463,''); +INSERT INTO international VALUES (11,'IndexedSearch',1,'Paginate after',1066252409,''); +INSERT INTO international VALUES (10,'IndexedSearch',1,'Only results of type',1066252387,''); +INSERT INTO international VALUES (9,'IndexedSearch',1,'Only results in language',1066252363,''); +INSERT INTO international VALUES (8,'IndexedSearch',1,'Only results in namespace',1066252344,''); +INSERT INTO international VALUES (7,'IndexedSearch',1,'Only results created by',1066252303,''); +INSERT INTO international VALUES (20,'IndexedSearch',1,'Wobject details',1066765556,''); +INSERT INTO international VALUES (18,'IndexedSearch',1,'Any namespace',1066593420,'first option for \"Search in namespace:\"'); +INSERT INTO international VALUES (17,'IndexedSearch',1,'Search',1066593262,'Title of this wobject'); +INSERT INTO international VALUES (16,'IndexedSearch',1,'Search',1066565087,'Label of the search submit button.'); +INSERT INTO international VALUES (15,'IndexedSearch',1,'All pages',1066253116,''); INSERT INTO international VALUES (971,'WebGUI',1,'Time',1053278208,'A field that holds clock time.'); -INSERT INTO international VALUES (77,'FAQ',21,'÷ ÛÁÂÌÏÎÅ ÄÌÑ ÞÁÓÔÏ ÚÁÄÁ×ÁÅÍÙÈ ×ÏÐÒÏÓÏ× ÍÏÇÕÔ ÉÓÐÏÌØÚÏ×ÁÔØÓÑ ÓÌÅÄÕÀÝÉÅ ÐÅÒÅÍÅÎÎÙÅ.\r\n\r\naddquestion.url\r\nThe URL to add a question to the FAQ.\r\n\r\naddquestion.label\r\nThe translated label for the add question link.\r\n\r\nqa_loop\r\nThe loop containing the variables for each question in the FAQ.\r\nqa.id\r\nThe unique identifier for this question.\r\n\r\nqa.answer\r\nThe answer for this question.\r\n\r\nqa.question\r\nThe question itself.\r\n\r\nqa.controls\r\nThe WebGUI management controls for this question. ',1040997064,NULL); -INSERT INTO international VALUES (76,'FAQ',21,'ûÁÂÌÏÎ ÄÌÑ ÞÁÓÔÏ ÚÁÄÁ×ÁÅÍÙÈ ×ÏÐÒÏÓÏ×',1040996979,NULL); -INSERT INTO international VALUES (75,'FAQ',21,'äÏÂÁ×ÉÔØ ×ÏÐÒÏÓ',1040996942,NULL); INSERT INTO international VALUES (97,'EventsCalendar',21,'óÐÉÓÏË ÐÅÒÅÍÅÎÎÙÈ, ÉÓÐÏÌØÚÕÅÍÙÈ ÐÒÉ ÓÏÚÄÁÎÉÉ ÛÁÂÌÏÎÁ.\r\n\r\ntitle\r\nThe title of this event.\r\n\r\nstart.label\r\nThe translated label for the start date.\r\n\r\nstart.date\r\nThe date this event starts.\r\n\r\nend.date\r\nThe date this event ends.\r\n\r\nend.label\r\nThe translated label for the end date.\r\n\r\ncanEdit\r\nA condition indicating whether the current user can edit an event.\r\n\r\nedit.url\r\nThe URL to edit this event.\r\n\r\nedit.label\r\nThe translated label for the edit URL.\r\n\r\ndelete.url\r\nThe URL to delete this event.\r\n\r\ndelete.label\r\nThe translated label for the delete URL.\r\n\r\nprevious.url\r\nThe URL to view the event before this one.\r\n\r\nprevious.label\r\nThe translated label for the previous URL.\r\n\r\nnext.label\r\nThe translated label for the next URL.\r\n\r\nnext.url\r\nThe URL to view the event after this one.\r\n\r\ndescription\r\nThe description of this event. ',1040996778,NULL); INSERT INTO international VALUES (96,'EventsCalendar',21,'ûÁÂÌÏÎ ÓÏÂÙÔÉÑ',1040996647,NULL); INSERT INTO international VALUES (95,'EventsCalendar',21,'éÓÐÏÌØÚÕÑ ÓÌÅÄÕÀÝÉÅ ÐÅÒÅÍÅÎÎÙÅ ×Ù ÌÅÇËÏ ÓÍÏÖÅÔÅ ÉÚÍÅÎÉÔØ ×ÎÅÛÎÉÊ ×ÉÄ ×ÁÛÅÇÏ ÏÒÇÁÎÁÊÚÅÒÁ.\r\n\r\naddevent.url
\r\nURL ÄÌÑ ÄÏÂÁ×ÌÅÎÉÑ ÓÏÂÙÔÉÑ × ÏÒÇÁÎÁÊÚÅÒ.\r\n

\r\naddevent.label
\r\nóÓÙÌËÁ ÐÒÅÄÎÁÚÎÁÞÅÎÎÁÑ ÄÌÑ ÄÏÂÁ×ÌÅÎÉÑ ÓÏÂÙÔÉÑ (ÐÅÒÅ×ÏÄÉÔÓÑ ÎÁ ×ÓÅ ÐÏÄÄÅÒÖÉ×ÁÅÍÙÅ ÑÚÙËÉ).\r\n

\r\ncalendar.big
\r\nëÁÌÅÎÄÁÒØ Ó ÓÏÂÙÔÉÑÍÉ, ÒÁÚ×ÅÒÎÕÔÙÊ ÎÁ ×ÓÀ ÓÔÒÁÎÉÃ.\r\n

\r\ncalendar.small
\r\níÁÌÅÎØËÉÊ ËÁÌÅÎÄÁÒØ (ÔÏÌØËÏ ÄÁÔÙ).\r\n

\r\ncalendar.firstPage
\r\nðÅÒ×ÁÑ ÓÔÒÁÎÉÃÁ ËÁÌÅÎÄÁÒÑ.\r\n

\r\ncalendar.lastPage
\r\nðÏÓÌÅÄÎÑÑ ÓÔÒÁÎÉÃÁ ËÁÌÅÎÄÁÒÑ.\r\n

\r\ncalendar.nextPage
\r\nóÓÙÌËÁ ÎÁ ÓÌÅÄÕÀÝÕÀ ÓÔÒÁÎÉÃÕ ËÁÌÅÎÄÁÒÑ.\r\n

\r\ncalendar.previousPage
\r\nóÓÙÌËÁ ÎÁ ÐÒÅÄÙÄÕÝÕÀ ÓÔÒÁÎÉÃÕ ËÁÌÅÎÄÁÒÑ.\r\n

\r\ncalendar.pageList
\r\nóÓÙÌËÉ ÎÁ ×ÓÅ ÓÔÒÁÎÉÃÙ ËÁÌÅÎÄÁÒÑ.\r\n

\r\ncalendar.multiplePages
\r\nõÓÌÏ×ÉÑ ÉÚÍÅÎÅÎÉÑ ÎÁ×ÉÇÁÃÉÉ, ÅÓÌÉ × ËÁÌÅÎÄÁÒÅ ÓÏÄÅÒÖÉÔÓÑ ÂÏÌÅÅ ÏÄÎÏÊ ÓÔÒÁÎÉÃÙ.\r\n

\r\nlist_loop
\r\núÁÍËÎÕÔÙÊ ÃÉËÌ ÐÒÏÓÍÏÔÒÁ (ÐÏÓÌÅ ÐÒÏÓÍÏÔÒÁ ÐÏÓÌÅÄÎÅÇÏ ÓÏÂÙÔÉÑ ÏÓÕÝÅÓÔ×ÌÑÅÔÓÑ ÐÅÒÅÈÏÄ Ë ÐÅÒ×ÏÍÕ).\r\n

\r\nlist.date
\r\näÁÔÁ ÓÏÂÙÔÉÑ.\r\n

\r\nlist.title
\r\nîÁÚ×ÁÎÉÅ ÓÏÂÙÔÉÑ.\r\n

\r\nlist.description
\r\nðÏÄÒÏÂÎÏÅ ÏÐÉÓÁÎÉÅ ÓÏÂÙÔÉÑ.\r\n

\r\nlist.sameAsPrevious
\r\nõÓÌÏ×ÉÑ ÏÔÏÂÒÁÖÅÎÉÑ ÓÏÂÙÔÉÑ × ÓÌÕÞÁÅ ÓÏ×ÐÁÄÅÎÉÑ ÅÇÏ ÄÁÔÙ Ó ÄÁÔÏÊ ÐÒÅÄÙÄÕÝÅÇÏ ÓÏÂÙÔÉÑ.\r\n

\r\nlist.url
\r\nURL ÎÁ ÏÔÄÅÌØÎÕÀ ÓÔÒÁÎÉÃÕ Ó ÐÏÄÒÏÂÎÙÍ ÏÐÉÓÁÎÉÅÍ ÓÏÂÙÔÉÑ.\r\n

\r\nlist.controls
\r\nëÏÎÔÒÏÌØ ÚÁ ÓÏÂÙÔÉÅÍ ÓÏ ÓÔÏÒÏÎÙ WebGUI.\r\n

\r\nlist.firstPage
\r\nóÓÙÌËÉ ÎÁ ÐÅÒ×ÕÀ ÓÔÒÁÎÉÃÕ.\r\n

\r\nlist.lastPage
\r\nóÓÙÌËÁ ÎÁ ÐÏÓÌÅÄÎÀÀ ÓÔÒÁÎÉÃÕ.\r\n

\r\nlist.nextPage
\r\nóÓÙÌËÁ ÎÁ ÓÌÅÄÕÀÝÕÀ ÓÔÒÁÎÉÃÕ.\r\n

\r\nlist.previousPage
\r\nóÓÙÌËÁ ÎÁ ÐÒÅÄÙÄÕÝÕÀ ÓÔÒÁÎÉÃÕ.\r\n

\r\nlist.pageList
\r\nóÓÙÌËÉ ÎÁ ×ÓÅ ÓÔÒÁÎÉÃÙ.\r\n

\r\nlist.multiplePages
\r\nõÓÌÏ×ÉÑ ÉÚÍÅÎÅÎÉÑ ÎÁ×ÉÇÁÃÉÉ, ÅÓÌÉ ÓÏÄÅÒÖÉÔÓÑ ÂÏÌÅÅ ÏÄÎÏÊ ÓÔÒÁÎÉÃÙ. ',1046345953,NULL); @@ -9981,7 +9584,7 @@ INSERT INTO international VALUES (71,'Survey',21,' INSERT INTO international VALUES (70,'Survey',21,'éÎÄÉ×ÉÄÕÁÌØÎÙÅ ÒÅÚÕÌØÔÁÔÙ',1040994426,NULL); INSERT INTO international VALUES (7,'Survey',21,'úÁ×ÉÓÉÍÙÊ',1040994305,NULL); INSERT INTO international VALUES (69,'Survey',21,'õÄÁÌÉÔØ ÏÔ×ÅÔÙ',1040994278,NULL); -INSERT INTO international VALUES (68,'Survey',21,'ðÏÓÍÏÔÒÅÔØ ÒÅÚÕÌØÔÁÔÙ ÏÐÒÏÓÁ',1040994224,NULL); +INSERT INTO international VALUES (12,'WSClient',1,'Msg if no results',1033575504,NULL); INSERT INTO international VALUES (67,'Survey',21,'ðÏÌØÚÏ×ÁÔÅÌØ',1040993947,NULL); INSERT INTO international VALUES (66,'Survey',21,'òÅÚÕÌØÔÁÔ ÏÐÒÏÓÁ',1040993892,NULL); INSERT INTO international VALUES (65,'Survey',21,'üËÓÐÏÒÔÉÒÏ×ÁÔØ ×ÓÅ',1040993800,NULL); @@ -10128,7 +9731,6 @@ INSERT INTO international VALUES (873,'WebGUI',1,'Subscribe to thread',106587682 INSERT INTO international VALUES (620,'WebGUI',2,'Wie diese Funktion bereits andeutet werden Sie eine Gruppe löschen und alle \r\ndarin befindlichen Benutzer aus dieser Gruppe zu entfernen. Achten Sie darauf, \r\ndass Benutzer in dieser Gruppe nicht vielleicht die Berechtigung für Seiten \r\nverlieren etc. \r\n

Wie mit jedem Löschvorgang werden Sie gefragt, ob sie sich wirklich sicher \r\nsind, diese Gruppe zu löschen. Wenn Sie mit "Ja" antworten, wird \r\nder Löschvorgang durchgeführt, andernfalls gelangen sie zur vorherigen Seite \r\nzurück.

',1044377232,NULL); INSERT INTO international VALUES (619,'WebGUI',2,'Diese Funktion löscht das gewählte Wobject dauerhaft von einer Seite. Wenn sie \r\nsich nicht sicher sind, ob sie dieses Element löschen möchten, können Sie es \r\nauch ausschneiden und in die Zwischenablage legen und es dann irgendwann löschen. \r\n

Wie mit jedem Löschvorgang werden Sie gefragt, ob sie sich wirklich sicher \r\nsind, dieses Wobject zu löschen. Wenn Sie mit "Ja" antworten, wird \r\nder Löschvorgang durchgeführt, andernfalls gelangen sie zur vorherigen Seite \r\nzurück.

',1044376958,NULL); INSERT INTO international VALUES (618,'WebGUI',2,'SMTP Server
Dies ist die Adresse ihres lokalen \r\nMailservers. Diese wird in allen Funktionen benötigt, die das Internet Emailsystem \r\nverwenden (wie z. B. Passwort wiederherstellen). \r\n

Optional können Sie auch den Pfad zu sendmail angeben, wenn ein Sendmail-Server \r\nauf der gleichen Maschine wie WebGUI läuft. Bei den meisten Linux-Servern ist \r\ndies "/usr/lib/sendmail".

Email Fussbereich\r\n

Dieser \r\nFusstext ist für Makros vorgesehen und wird jeder Email, die von WebGUI versandt \r\nwird, angehängt.

Bei neuem Benutzer benachrichtigen?
Soll jemand \r\ninformiert werden, sofern sich jemand anonym registriert hat? \r\n

Gruppe, die bei neuem Benutzer benachrichtig werden soll
Welche \r\nGruppe soll benachrichtigt werden, wenn sich ein neuer Benutzer registriert?

',1045243460,NULL); -INSERT INTO international VALUES (614,'WebGUI',2,'

Styles werden benutzt, um das \"Look and feel\" Ihrer WebGUI Seiten zu bestimmen. Mit WebGUI können Sie eine unbegrenzte Anzahl von Styles verwenden, daher können sie so viele verschiedene Darstellungen benutzen, wie Sie möchten. Sie könnten z. B. Seiten haben, die dem Layout bzw. Corporate Design ihres Unternehmens entsprechen, oder Seiten, die dem Erscheinungsbild von Yahoo ähnlich sind, usw. Genauso können sie auch Seiten erstellen, die wie die Seiten eines Buches aussehen. Mit dem Styleverwaltungs-Tool haben Sie die ultimative Kontrolle über all ihre Designs.

\r\n\r\n

Es gibt bereits verschiedene in WebGUI eingebaute Styles. Die ersteren werden von WebGUI selbst benutzt und sollten daher  nicht bearbeitet oder gelöscht werden. Die letztern sind einige Beispiel-Styles und können als Vorlage für neue Styles verwendet oder auch gelöscht werden.

\r\n\r\n

Clipboard
\r\nDieser Style wird von der Zwischenablage benötigt

\r\n\r\n

Fail Safe
\r\nWenn sie einen Style löschen, der bereits auf einigen Seiten in Benutzung ist, wird dieser FailSafe-Style diesen Seiten zugeordnet. Der Style hat einen weissen Hintergrund und eine einfache Navigation.

\r\n\r\n

Make Page Printable
\r\nDieser Style wird benutzt, wenn sie ein \r\n\r\n^r; Makro in Ihren Seiten einsetzen und der Besucher dann darauf klickt - er erhält dann die Druckversion der Seite. Sie haben hier die Möglichkeit, ein Logo und eine Copyright-Meldung auf der Seite einzubinden.

\r\n\r\n

Packages
\r\nDieser Style wird vom Paketmanager benutzt.

\r\n\r\n

Trash
\r\nDieser Style wird vom Mülleimer genutzt.

\r\n\r\n

\r\n\r\n
\r\nDemo Style
\r\nDies ist ein Beispiellayout, das von einer Templates-Seite genommen wurde (www.freewebtemplates.com). \r\n\r\n

Plain Black Software (black)& (white)
\r\nDiese Layouts wurden auf der Plainblackseite verwendet.

\r\n\r\n

Yahoo®
\r\nDies ist das Design von Yahoo® (genutzt ohne Berechtigung.)

\r\n\r\n

WebGUI
\r\nDies ist ein einfaches Design mit WebGUI logos.

\r\n\r\n

WebGUI 4
\r\nDieser Style wurde seit WebGUI Version 4 verwendet.

\r\n',1067290006,NULL); INSERT INTO international VALUES (613,'WebGUI',2,'Benutzer sind die Konten, die Berechtigungen zu verschiedenen Bereichen in WebGUI \r\nhaben. Es gibt 2 Standard-Benutzer: Admin und Visitor. \r\n

\r\n

Admin
Unter Admin versteht man genau das, was man unter diesem \r\nBegriff erwartet. Dies ist ein Benutzer mit unbegrenzten Berechtigungen in der \r\nWebGUI Umgebung.

\r\n

Visitor
Der Visitor(Besucher) ist das genaue Gegenteil des Admins. \r\nDer Visitor hat keine Rechte und ein Besucher, der nicht eingeloggt ist, wird \r\nvom System als Visitor erkannt

\r\n

Neuen Benutzer hinzufügen.
Klicken Sie hier, um zur "Benutzer \r\nhinzufügen" Seite zu kommen. \r\n

\r\n

Suchen
Sie können nach Benutzernamen und Emailadressen suchen. \r\nDie Suche kann hier auch eingeschränkt werden, z. B. auf die Suche nach aktivierten \r\nBenutzern.

',1044375306,NULL); INSERT INTO international VALUES (606,'WebGUI',2,'Stellen Sie sich Seiten als Behälter für Inhalte vor. Wenn Sie z. B. einen Brief \r\nan den Herausgeber Ihres Lieblingsmagazins schreiben möchten, starten Sie eine \r\nTextverarbeitung und schreiben Ihre Gedanken nieder. Genauso verhält es sich \r\nmit WebGUI. Erstellen Sie eine Seite und füllen sie mit Inhalt.. \r\n

Titel
Der Seitentitel. Titel sollten beschreibend, aber nicht zu \r\nlang sein.

Menü Titel
Ein kürzerer oder \r\nabgeänderter Titel, der in der Navigation erscheinen soll. Wenn Sie hier nichts \r\neingeben, wird die Eingabe verwendet, die Sie bei \'Titel\' eingegeben haben. \r\n

Von der Navigation verbergen?
Wählen Sie \'Ja\' um diese Seite \r\naus der Navigation auszublenden. \r\n

Beachte: Die Seite wird nur aus der Navigation ausgeblendet, aber \r\nnicht aus dem Seitenbaum oder von der SiteMap, nur ausden Navigationsmakros.

In \r\nneuem Fenster öffnen?
Wählen Sie "Ja" um die Seite in einem \r\nneuen Fenster zu öffnen.

URL der Seite
Wenn Sie eine Seite erstellen wird normalerweise \r\ndie URL aufgrund des Seitentitels erstellt. Wenn Sie damit nicht zufrieden sind, \r\nkönnen Sie es hier ändern. \r\n

Sprache
Wählen Sie die Standardsprache für diese Seite. Alle mittels \r\nWebGUI generierten Texte erscheinen in dieser Sprache und das Charakterset wird \r\nentsprechend der ausgewählten Sprache übernommen (z.B. ä, ö, ü im Deutschen). \r\n

Weiterleitungs URL
Der Besucher der Seite wird zu der Seite weitergeleitet, \r\ndie Sie hier angegeben haben. Wenn Sie dann in Zukunft diese weitergeleitete \r\nSeite wieder ändern möchten, müssen Sie dies in den Admininstrativen Funktionen im \r\nBereich "Verwalten-Baumstruktur" vornehmen. \r\n

Template
Standardmässig hat WebGUI einen grossen Inhaltsbereich, \r\num Wobjects zu platzieren. Dennoch können Sie Ihren Content durch Auswahl eines \r\nanderen Templates in verschiedene Bereiche aufteilen. \r\n

Zusammenfassung
Eine kurze Zusammenfassung der Seite. Dieser Bereich \r\nwird sowohl zum Veröffentlichen von beschreibenden MetaTags als auch als Beschreibungstext \r\nin der Sitemap verwendet. \r\n

Meta Tags
Hier können Sie beliebige Meta Tags definieren. Die Seite Meta Tag Builder gibt Ihnen hierzu \r\neinige Tipps.

Erfahrene Anwender: Sie können hier auch andere Dinge, \r\nwie z. B. JavaScript oder Links zu externen Stylesheets, einfügen. \r\n

Standard Meta Tags benutzen?
Sollten Sie keine eigenen MetaTags \r\ndefinieren wollen, kann WebGUI diese basierend auf dem Seitentitel und Ihrem \r\nFirmennamen erzeugen. Aktivieren Sie diese Checkbox, um die WebGUI-generierten \r\nMetaTags einzuschalten. \r\n

Cache Timeout
Die Zeit, die die Seite für registrierte Benutzer \r\ngecachet werden soll. \r\n

Cache Timeout (Besucher)
Die Zeit, die die Seite für Besucher gecachet \r\nwerden soll. \r\n

Beachte: Das Caching (Zwischenspeichern) ist nur verfügbar, wenn der \r\nAdministrator das Cache::FileCache Perl Modul installiert hat. Das Verwenden \r\nvon Caching kann die Performance um bis zu 1000% erhöhen.  \r\n

Template
Stanardmässig verwendet WebGUI einen grossen Contentbereich \r\num die Wobjects zu platzieren. Sie können nun durch die Auswahl eines anderen \r\nTemplates den Inhalt, und damit das Platzieren von Wobjects, auf verschiedene \r\nBereiche aufteilen. \r\n

\r\n

Style
Standardmässig erbt eine Seite, die Sie erstellen, ihre Merkmale \r\nvon der übergeordneten Seite. Eines dieser Merkmale ist der Style. Wählen Sie \r\nhier einen Style aus der Liste aus, den Siefür diese Seite verwenden möchten. \r\nWeitere Details finden Sie unter Style hinzufügen. \r\n

\r\n

Wenn Sie "Ja" unterhalb des Style-Auswahlmenus aktivieren, wird \r\nder Style für alle Seiten unterhalb dieser Seite übernommen. \r\n

Anfangsdatum
Das Datum, ab dem die Seite sichtbar sein soll. Vor \r\ndiesem Datum sehen nur Contentmanager mit der Berechtigung zur Bearbeitung diese \r\nSeite. \r\n

Ende Datum
Das Datum, bis dem die Seite sichtbar sein soll. Nach \r\ndiesem Datum sehen nur Contentmanager mit der Berechtigung zur Bearbeitung diese \r\nSeite. \r\n \r\n

Besitzer
Der Besitzer der Seite ist gewöhnlich die Person, die \r\ndie Seite erstellt hat. \r\nDiese hat die vollen Rechte zum Bearbeiten und Anschauen der Seite.

Beachte: Der \r\nBesitzer kann nur von einem Administrator geändert werden. \r\n

Wer kann anschauen?
Wählen Sie die Gruppe aus, die diese Seite \r\nanschauen kann. Wenn Sie möchten, dass Visitors (Beuscher) und registrierte \r\nBenutzer dieSeite anschauen können, so sollten Sie die "Everybody" (Jeder) \r\nGruppe auswählen.

Wer kann bearbeiten?

Wählen Sie die Gruppe \r\naus, die diese Seite bearbeiten kann. Die Gruppe, die bearbeiten kann, darf \r\nauch jederzeit die Seite anschauen.

Sie können diese Berechtigungen an alle Seiten unterhalb dieser Seite vergeben. \r\n

Als nächstes?
Hier können Sie gleich zu Ihrer neuen Seite gelangen \r\noder zu der vorherigen zurückkehren.

\r\n',1056837275,NULL); INSERT INTO international VALUES (884,'WebGUI',1,'Pop Up',1044705337,NULL); @@ -10160,7 +9762,7 @@ INSERT INTO international VALUES (4,'HttpProxy',2,'Timeout',1048242651,NULL); INSERT INTO international VALUES (3,'HttpProxy',2,'HTTP Proxy',1040395372,NULL); INSERT INTO international VALUES (2,'HttpProxy',2,'HTTP Proxy ändern',1040395360,NULL); INSERT INTO international VALUES (1,'HttpProxy',2,'URL',1040395344,NULL); -INSERT INTO international VALUES (840,'WebGUI',1,'These macros are designed to provide programming-like functionality. They are powerful when used appropriately, and dangerous when used carelessly. Take care when using these macros.\r\n\r\n

\r\nNOTE: These macros are included in WebGUI in order to provide very powerful display mechanisms. Though they could be used to write simple web applications, this is not their intended use, nor is it supported or condoned by Plain Black. If you find yourself trying to do something like that, just write a macro. =) By default these macros are disabled to protect the security of your site and server, and only your administrator can enable them.\r\n\r\n

\r\n\r\n^D; or ^D(); - Date
\r\nThe current date and time.\r\n

\r\n\r\nYou can configure the date by using date formatting symbols. For instance, if you created a macro like this ^D(\"%c %D, %y\"); it would output September 26, 2001. The following are the available date formatting symbols:\r\n

\r\n\r\n
%%%
%y4 digit year
%Y2 digit year
%m2 digit month
%Mvariable digit month
%cmonth name
%d2 digit day of month
%Dvariable digit day of month
%wday of week name
%h2 digit base 12 hour
%Hvariable digit base 12 hour
%j2 digit base 24 hour
%Jvariable digit base 24 hour
%plower case am/pm
%Pupper case AM/PM
%zuser preference date format
%Zuser preference time format
\r\n

\r\n\r\n^Env()
\r\nCan be used to display a web server environment variable on a page. The environment variables available on each server are different, but you can find out which ones your web server has by going to: http://www.yourwebguisite.com/env.pl\r\n

\r\n\r\nThe macro should be specified like this ^Env(\"REMOTE_ADDR\");\r\n

\r\n\r\n^Execute();
\r\nAllows a content manager or administrator to execute an external program. Takes the format of ^Execute(\"/this/file.sh\");.\r\n

\r\n\r\n\r\n^FormParam();
\r\nThis macro is mainly used in generating dynamic queries in SQL Reports. Using this macro you can pull the value of any form field simply by specifing the name of the form field, like this: ^FormParam(\"phoneNumber\");\r\n

\r\n\r\n\r\n^If();
\r\nA simple conditional statement (IF/THEN/ELSE) to control layout and messages.\r\n

\r\nExamples:
\r\nDisplay Happy New Year on 1st January:\r\n ^If(\'^D(\"%m%d\");\' eq \'0101\' , Happy New Year);\r\n

\r\nDisplay a message to people on your subnet (192.168.1.*):
\r\n^If(\'^Env(\"REMOTE_ADDR\");\' =~ /^192.168.1/,\"Hi co-worker\",\"Hi Stranger\");\r\n

\r\nDisplay a message to Windows users:
\r\n ^If(\'^Env(\"HTTP_USER_AGENT\");\' =~ /windows/i,\"Hey... Linux is free !\");\r\n

\r\nDisplay a message if a user is behind a proxy:
\r\n ^If(\'^Env(\"HTTP_VIA\");\' ne \"\", You\'re behind a proxy !, Proxy-free is the best...);\r\n

\r\nDisplay Good Morning/Afternoon/Evening:
\r\n ^If(^D(\"%J\");<=12,Good Morning,^If(^D(\"%J\");<=18,Good Afternoon,Good evening););\r\n

\r\n\r\n^Include();
\r\nAllows a content manager or administrator to include a file from the local filesystem. \r\n

\r\nExample: ^Include(\"/this/file.html\");\r\n

\r\n\r\n^International();
\r\nPull a translated message from the internationalization system.\r\n

\r\nExample: ^International(45,\"Article\");\r\n

\r\n\r\n\r\n^Quote();
\r\nUse this to escape a string before using it in a database query.\r\n

\r\n\r\n\r\n^Page();
\r\nThis can be used to retrieve information about the current page. For instance it could be used to get the page URL like this ^Page(\"urlizedTitle\"); or to get the menu title like this ^Page(\"menuTitle\");.\r\n

\r\n\r\n^SQL();
\r\nA one line SQL report. Sometimes you just need to pull something back from the database quickly. This macro is also useful in extending the SQL Report wobject. It uses the numeric macros (^0; ^1; ^2; etc) to position data and can also use the ^rownum; macro just like the SQL Report wobject. Examples:

\r\n ^SQL(\"select count(*) from users\",\"There are ^0; users on this system.\");\r\n

\r\n^SQL(\"select userId,username from users order by username\",\"<a href=\'^/;?op=viewProfile&uid=^0;\'>^1;</a><br>\");\r\n

\r\n^URLEncode();
\r\nThis macro is mainly useful in SQL reports, but it could be useful elsewhere as well. It takes the input of a string and URL Encodes it so that the string can be passed through a URL. It\'s syntax looks like this: ^URLEncode(\"Is this my string?\");\r\n

\r\n\r\n\r\n^User();
\r\nThis macro will allow you to display any information from a user\'s account or profile. For instance, if you wanted to display a user\'s email address you\'d create this macro: ^User(\"email\");\r\n

\r\n\r\n^*; or ^*(); - Random Number
\r\nA randomly generated number. This is often used on images (such as banner ads) that you want to ensure do not cache. In addition, you may configure this macro like this ^*(100); to create a random number between 0 and 100.\r\n

\r\n\r\n^-;,^0;,^1;,^2;,^3;, etc.
\r\nThese macros are reserved for system/wobject-specific functions as in the SQL Report wobject and the Body in the Style Manager.\r\n

\r\n',1057090848,NULL); +INSERT INTO international VALUES (840,'WebGUI',1,'These macros are designed to provide programming-like functionality. They are powerful when used appropriately, and dangerous when used carelessly. Take care when using these macros.\r\n\r\n

\r\nNOTE: These macros are included in WebGUI in order to provide very powerful display mechanisms. Though they could be used to write simple web applications, this is not their intended use, nor is it supported or condoned by Plain Black. If you find yourself trying to do something like that, just write a macro. =) By default these macros are disabled to protect the security of your site and server, and only your administrator can enable them.\r\n\r\n

\r\n\r\n^D; or ^D(); - Date
\r\nThe current date and time.\r\n

\r\n\r\nYou can configure the date by using date formatting symbols. For instance, if you created a macro like this ^D(\"%c %D, %y\"); it would output September 26, 2001. The following are the available date formatting symbols:\r\n

\r\n\r\n
%%%
%y4 digit year
%Y2 digit year
%m2 digit month
%Mvariable digit month
%cmonth name
%d2 digit day of month
%Dvariable digit day of month
%wday of week name
%h2 digit base 12 hour
%Hvariable digit base 12 hour
%j2 digit base 24 hour
%Jvariable digit base 24 hour
%plower case am/pm
%Pupper case AM/PM
%zuser preference date format
%Zuser preference time format
\r\n

\r\n\r\n^Env()
\r\nCan be used to display a web server environment variable on a page. The environment variables available on each server are different, but you can find out which ones your web server has by going to: http://www.yourwebguisite.com/env.pl\r\n

\r\n\r\nThe macro should be specified like this ^Env(\"REMOTE_ADDR\");\r\n

\r\n\r\n^Execute();
\r\nAllows a content manager or administrator to execute an external program. Takes the format of ^Execute(\"/this/file.sh\");.\r\n

\r\n\r\n\r\n^FormParam();
\r\nThis macro is mainly used in generating dynamic queries in SQL Reports. Using this macro you can pull the value of any form field simply by specifing the name of the form field, like this: ^FormParam(\"phoneNumber\");\r\n

\r\n\r\n\r\n^If();
\r\nA simple conditional statement (IF/THEN/ELSE) to control layout and messages.\r\n

\r\nExamples:
\r\nDisplay Happy New Year on 1st January:\r\n ^If(\'^D(\"%m%d\");\' eq \'0101\' , Happy New Year);\r\n

\r\nDisplay a message to people on your subnet (192.168.1.*):
\r\n^If(\'^Env(\"REMOTE_ADDR\");\' =~ /^192.168.1/,\"Hi co-worker\",\"Hi Stranger\");\r\n

\r\nDisplay a message to Windows users:
\r\n ^If(\'^URLEncode(\"^Env(\"HTTP_USER_AGENT\");\");\' =~ /windows/i,\"Hey... Linux is free !\");\r\n

\r\nDisplay a message if a user is behind a proxy:
\r\n ^If(\'^Env(\"HTTP_VIA\");\' ne \"\", You\'re behind a proxy !, Proxy-free is the best...);\r\n

\r\nDisplay Good Morning/Afternoon/Evening:
\r\n ^If(^D(\"%J\");<=12,Good Morning,^If(^D(\"%J\");<=18,Good Afternoon,Good evening););\r\n

\r\n\r\n^Include();
\r\nAllows a content manager or administrator to include a file from the local filesystem. \r\n

\r\nExample: ^Include(\"/this/file.html\");\r\n

\r\n\r\n^International();
\r\nPull a translated message from the internationalization system.\r\n

\r\nExample: ^International(45,\"Article\");\r\n

\r\n\r\n\r\n^Quote();
\r\nUse this to escape a string before using it in a database query.\r\n

\r\n\r\n\r\n^Page();
\r\nThis can be used to retrieve information about the current page. For instance it could be used to get the page URL like this ^Page(\"urlizedTitle\"); or to get the menu title like this ^Page(\"menuTitle\");.\r\n

\r\n\r\n^SQL();
\r\nA one line SQL report. Sometimes you just need to pull something back from the database quickly. This macro is also useful in extending the SQL Report wobject. It uses the numeric macros (^0; ^1; ^2; etc) to position data and can also use the ^rownum; macro just like the SQL Report wobject. Examples:

\r\n ^SQL(\"select count(*) from users\",\"There are ^0; users on this system.\");\r\n

\r\n^SQL(\"select userId,username from users order by username\",\"<a href=\'^/;?op=viewProfile&uid=^0;\'>^1;</a><br>\");\r\n

\r\n^URLEncode();
\r\nThis macro is mainly useful in SQL reports, but it could be useful elsewhere as well. It takes the input of a string and URL Encodes it so that the string can be passed through a URL. It\'s syntax looks like this: ^URLEncode(\"Is this my string?\");\r\n

\r\n\r\n\r\n^User();
\r\nThis macro will allow you to display any information from a user\'s account or profile. For instance, if you wanted to display a user\'s email address you\'d create this macro: ^User(\"email\");\r\n

\r\n\r\n^*; or ^*(); - Random Number
\r\nA randomly generated number. This is often used on images (such as banner ads) that you want to ensure do not cache. In addition, you may configure this macro like this ^*(100); to create a random number between 0 and 100.\r\n

\r\n\r\n^-;,^0;,^1;,^2;,^3;, etc.
\r\nThese macros are reserved for system/wobject-specific functions as in the SQL Report wobject and the Body in the Style Manager.\r\n

\r\n',1078570360,NULL); INSERT INTO international VALUES (1024,'WebGUI',1,'Filter Post',1046607477,NULL); INSERT INTO international VALUES (419,'WebGUI',1,'Remove everything but the text.',1046637533,NULL); INSERT INTO international VALUES (526,'WebGUI',1,'Remove JavaScript and negate macros.',1047838780,NULL); @@ -10179,7 +9781,6 @@ INSERT INTO international VALUES (658,'WebGUI',10,'Brugere, h INSERT INTO international VALUES (657,'WebGUI',10,'Bruger, slet',1046864764,NULL); INSERT INTO international VALUES (656,'WebGUI',10,'Firma information, rediger',1046864737,NULL); INSERT INTO international VALUES (655,'WebGUI',10,'Bruger, tilføj/rediger',1046864707,NULL); -INSERT INTO international VALUES (654,'WebGUI',10,'Stilart, slet',1046864687,NULL); INSERT INTO international VALUES (653,'WebGUI',10,'Side, slet',1046864669,NULL); INSERT INTO international VALUES (652,'WebGUI',10,'Bruger indstillinger, rediger',1046864650,NULL); INSERT INTO international VALUES (642,'WebGUI',10,'Side, tilføj/rediger',1046864612,NULL); @@ -10219,7 +9820,6 @@ INSERT INTO international VALUES (818,'WebGUI',10,'Deaktiveret',1046860025,NULL) INSERT INTO international VALUES (817,'WebGUI',10,'Aktiv',1046860004,NULL); INSERT INTO international VALUES (816,'WebGUI',10,'Status',1046859991,NULL); INSERT INTO international VALUES (815,'WebGUI',10,'Filen du forsøgte at uploade er større end maksimalgrænsen.',1046859979,NULL); -INSERT INTO international VALUES (814,'WebGUI',10,'Tilbage til stilarter.',1046859940,NULL); INSERT INTO international VALUES (813,'WebGUI',10,'Grupper i denne gruppe',1046859924,NULL); INSERT INTO international VALUES (812,'WebGUI',10,'Din besked er blevet sendt.',1046859910,NULL); INSERT INTO international VALUES (811,'WebGUI',10,'Fra',1046859893,NULL); @@ -10228,9 +9828,6 @@ INSERT INTO international VALUES (809,'WebGUI',10,'Email gruppe',1046859870,NULL INSERT INTO international VALUES (808,'WebGUI',10,'Email denne gruppe.',1046859854,NULL); INSERT INTO international VALUES (807,'WebGUI',10,'Håndter grupperne i denne gruppe',1046859817,NULL); INSERT INTO international VALUES (806,'WebGUI',10,'Slet denne gruppe.',1046859792,NULL); -INSERT INTO international VALUES (805,'WebGUI',10,'Slet denne stilart.',1046859778,NULL); -INSERT INTO international VALUES (804,'WebGUI',10,'Kopier denne stilart',1046859745,NULL); -INSERT INTO international VALUES (803,'WebGUI',10,'Rediger denne stilart',1046859693,NULL); INSERT INTO international VALUES (802,'WebGUI',10,'I øjeblikket sporer WebGUI ikke side statistik.\r\nDu kan slå denne funktion til i indstillinger.',1046859675,NULL); INSERT INTO international VALUES (801,'WebGUI',10,'Wobjects interaktioner',1046859616,NULL); INSERT INTO international VALUES (800,'WebGUI',10,'Unikke besøgende',1046859596,NULL); @@ -10314,7 +9911,7 @@ INSERT INTO international VALUES (72,'Survey',10,'Er du sikker p INSERT INTO international VALUES (69,'Survey',10,'Slet denne brugers besvarelse.',1046848366,NULL); INSERT INTO international VALUES (71,'Survey',10,'Karakterbog',1046848334,NULL); INSERT INTO international VALUES (70,'Survey',10,'Individuelle besvarelser',1046848311,NULL); -INSERT INTO international VALUES (68,'Survey',10,'Vis rapporter og ekspotér.',1046848236,NULL); +INSERT INTO international VALUES (21,'WSClient',1,'There were no results for this query.',1033575504,NULL); INSERT INTO international VALUES (67,'Survey',10,'Bruger',1046848092,NULL); INSERT INTO international VALUES (66,'Survey',10,'Besvarelser',1046848003,NULL); INSERT INTO international VALUES (65,'Survey',10,'Eksporter samlet summering.',1046847662,NULL); @@ -10382,13 +9979,10 @@ INSERT INTO international VALUES (72,'SiteMap',10,'Sitemap skabelon',1046842024, INSERT INTO international VALUES (72,'Poll',10,'Opstil svar tilfældigt?',1046841961,NULL); INSERT INTO international VALUES (73,'MessageBoard',10,'Opslagstavle skabelon',1046841929,NULL); INSERT INTO international VALUES (73,'DataForm',10,'Send',1046841870,NULL); -INSERT INTO international VALUES (75,'LinkList',10,'Link liste skabelon',1046841839,NULL); -INSERT INTO international VALUES (72,'LinkList',10,'Link, tilføj/redigér',1046841812,NULL); -INSERT INTO international VALUES (73,'Item',10,'Item skabelon',1046841772,NULL); +INSERT INTO international VALUES (19,'IndexedSearch',1,'Wobject',1066765495,''); +INSERT INTO international VALUES (22,'IndexedSearch',1,'Profile',1066765844,''); INSERT INTO international VALUES (75,'FileManager',10,'Fil håndterer skabelon',1046841724,NULL); INSERT INTO international VALUES (74,'FileManager',10,'Tilføj en ny fil.',1046841693,NULL); -INSERT INTO international VALUES (76,'FAQ',10,'FAQ skabelon',1046841662,NULL); -INSERT INTO international VALUES (75,'FAQ',10,'Tilføj et spørgsmål.',1046841647,NULL); INSERT INTO international VALUES (9,'Auth/SMB',10,'NT kodeord',1046841584,NULL); INSERT INTO international VALUES (8,'Auth/SMB',10,'NT login',1046841571,NULL); INSERT INTO international VALUES (7,'Auth/SMB',10,'NT domain',1046841557,NULL); @@ -10415,7 +10009,6 @@ INSERT INTO international VALUES (81,'EventsCalendar',10,'Start m INSERT INTO international VALUES (93,'EventsCalendar',10,'Næste begivenhed',1046840633,NULL); INSERT INTO international VALUES (1,'Auth/WebGUI',10,'WebGUI autorisations indstillinger',1046840610,NULL); INSERT INTO international VALUES (80,'EventsCalendar',10,'Begivenheds skabelon',1046840586,NULL); -INSERT INTO international VALUES (741,'WebGUI',10,'Redigér denne template',1046840370,NULL); INSERT INTO international VALUES (739,'WebGUI',10,'Brugerinterface niveau',1046840352,NULL); INSERT INTO international VALUES (738,'WebGUI',10,'9 Guru',1046840329,NULL); INSERT INTO international VALUES (737,'WebGUI',10,'8 Mester',1046840316,NULL); @@ -10431,8 +10024,8 @@ INSERT INTO international VALUES (752,'WebGUI',10,'Vis denne brugers profil',104 INSERT INTO international VALUES (1,'Survey',10,'Undersøgelse',1046840062,NULL); INSERT INTO international VALUES (1,'Auth/SMB',10,'SMB autorisations indstilinger',1046840017,NULL); INSERT INTO international VALUES (1,'Auth/LDAP',10,'LDAP autorisations indstillinger',1046839998,NULL); -INSERT INTO international VALUES (4,'Survey',8,'Il Wobject Survey (Ricerca di Mercato) ti permette di acquisire informazioni\r\ndagli utenti del sito.\r\n

Ordine Domande
\r\nL\'ordine in cui le domande saranno poste. Sequenziale visualizza le domande\r\nnell\'ordine in cui le hai create. Random displays visualizza le domande in\r\nordine casuale. Secondo i Responsi visualizza le domande in un ordine basato\r\nsulle risposte degli utenti.\r\n

Modalità
\r\nDi default la Survey è in modalità Ricerca (survey). Questo consente di porre\r\ndomande agli utenti. L\'atra modalità è il Quiz, puoi inserire un test con\r\nauto-correzione.\r\n

Chi può partecipare alla Survey?
\r\nQuali utenti possono prendere parte alla survey?\r\n

Chi può visualizzare i reports?
\r\nChi può visualizzare i risultati della survey?\r\n

Prossima azione?
\r\nSe lasci settato come visualizzato di default, potrai aggiungere una domanda\r\nsubito dopo aver aggiunto la survey.

\r\n',1046690868,NULL); -INSERT INTO international VALUES (828,'WebGUI',8,'Molti wobjects hanno dei templates che ti permettono di cambiare il layout\r\ndell\'interfaccia utente del wobject. I wobject che devono avere i template\r\npossiedono tutti un set di variabili di template comuni, che puoi usare per il\r\nlayout allo stesso modo delle rispettive variabili personalizzabili. Questa è\r\nuna lista delle variabili di template condivise da tutti i wobject. \r\n

title
\r\nIl titolo per questo wobject.\r\n

displayTitle
\r\nUna variabile condizionale per decidere se il titolo deve essere o no\r\nvisualizzato.\r\n

description
\r\nLa descrizione di questo wobject.\r\n

wobjectId
\r\nl\'identificatore univoco che  WebGUI usa per controllare questo wobject.\r\n

isShortcut
\r\nUna varabile che indica se il wobject è un shortcut (scorciatoia) verso un wobject originale.\r\n

originalURL\r\n
\r\nSe questo wobject è un shortcut, allora questo URL ti dirigerà verso il wobject originale.\r\n\r\n

\r\n',1054314520,NULL); +INSERT INTO international VALUES (4,'Survey',8,'Il Wobject Survey (Ricerca di Mercato) ti permette di acquisire informazioni\r\ndagli utenti del sito.\r\n

Ordine Domande
\r\nL\'ordine in cui le domande saranno poste. Sequenziale visualizza le domande\r\nnell\'ordine in cui le hai create. Random displays visualizza le domande in\r\nordine casuale. Secondo i Responsi visualizza le domande in un ordine basato\r\nsulle risposte degli utenti.\r\n

Modalità
\r\nDi default la Survey è in modalità Ricerca (survey). Questo consente di porre\r\ndomande agli utenti. L\'atra modalità è il Quiz, puoi inserire un test con\r\nauto-correzione.\r\n\r\n\r\n

Risposte anonime?
\r\nSelezione se la survey registrerà e mostrerà le informazioni che possano identificare un utente e le sue risposte.\r\nSe lasciato al valore di default \"NO\" la survey registrerà l\' IP address dell\'utente come la User ID e la Username se è loggato. Queste info saranno quindi disponibili nel survey reports. Se settato su \"SI\", questi campi conterranno dati che non consentiranno di tracciare gli utenti. \r\n\r\n\r\n\r\n

Chi può partecipare alla Survey?
\r\nQuali utenti possono prendere parte alla survey?\r\n

Chi può visualizzare i reports?
\r\nChi può visualizzare i risultati della survey?\r\n

Prossima azione?
\r\nSe lasci settato come visualizzato di default, potrai aggiungere una domanda\r\nsubito dopo aver aggiunto la survey.

\r\n',1068900963,NULL); +INSERT INTO international VALUES (828,'WebGUI',8,'Molti wobjects hanno dei templates che ti permettono di cambiare il layout\ndell\'interfaccia utente del wobject. I wobject che devono avere i template\npossiedono tutti un set di variabili di template comuni, che puoi usare per il\nlayout allo stesso modo delle rispettive variabili personalizzabili. Questa è\nuna lista delle variabili di template condivise da tutti i wobject. \n

title
\nIl titolo per questo wobject.\n

displayTitle
\nUna variabile condizionale per decidere se il titolo deve essere o no\nvisualizzato.\n

description
\nLa descrizione di questo wobject.\n

wobjectId
\nl\'identificatore univoco che  WebGUI usa per controllare questo wobject.\n

isShortcut
\nUna varabile che indica se il wobject è un shortcut (scorciatoia) verso un wobject originale.\n

originalURL\n
\nSe questo wobject è un shortcut, allora questo URL ti dirigerà verso il wobject originale.\n\n

\n',1054314520,NULL); INSERT INTO international VALUES (825,'WebGUI',8,'Template, Linguaggio',1046634290,NULL); INSERT INTO international VALUES (816,'WebGUI',8,'Stato',1046634267,NULL); INSERT INTO international VALUES (764,'WebGUI',8,'Modifica questo elemento dell\'archivio collaterale.',1046634233,NULL); @@ -10441,86 +10034,175 @@ INSERT INTO international VALUES (72,'Survey',8,'Sei sicuro di voler cancellare INSERT INTO international VALUES (7,'Survey',8,'Secondo i responsi',1046633651,NULL); INSERT INTO international VALUES (38,'Survey',8,'Assolutamente non d\'accordo',1046633615,NULL); INSERT INTO international VALUES (57,'Product',8,'Sei sicuro di voler cancellare questo template e associare a tutti i prodotti che lo utilizzavano il template di default?',1046633526,NULL); -INSERT INTO international VALUES (50,'Product',8,'I benefici sono il vantaggio che offrono le caratteristiche del prodotto. Sono la ragione per cui il tuo prodotto è buono. Se aggiungi dei benefici, dovresti inserire anche qualche caratteristica.\r\n\r\n\r\n\r\n

\r\n\r\nBeneficio
\r\nPuoi inserire un nuovo beneficio, selezionarne uno da quelli già inseriti.\r\n

\r\n\r\nAggiungi un\'altro beneficio?
\r\nSe vuoi aggiungere un\'altro beneficio, seleziona \"Si\".\r\n

\r\n',1046633484,NULL); -INSERT INTO international VALUES (840,'WebGUI',8,'Queste macro sono fatte per funzionalità di programmazione. \r\n

^D; or ^D(); - Data
\r\nLa data e l\'ora corrente.\r\n

Puoi configurare il formato della data usando simboli di formattazione della\r\ndata. per esempio, se crei una macro così: ^D("%D %c, %y");\r\nstamperà 16 Aprile, 2001. I seguenti sono i simboli disponibili per\r\nformattare la data:\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n
%%%
%yAnno a 4 cifre
%YAnno a 2 cifre
%mMese a 2 cifre
%MMese a cifra variabile
%cNome del mese
%dGiorno del mese a 2 cifre
%DGiorno del mese a cifra variabile
%wNome del giorno della settimana
%hora a 2 cifre base 12 ore
%Hora a cifra variabile base 12 ore
%jora a 2 cifre base 24 ore
%Jora a cifra variabile base 24 ore
%pam/pm in minuscolo
%PAM/PM in maiuscolo
%zformato data preferito dell\'utente
%zformato ora preferito dall\'utente
\r\n

^Env()
\r\nPuò essere usata per visualizzare variabili di ambiente del web server in una\r\npagina.\r\n

Deve essere usata così: ^Env("REMOTE_ADDR");

\r\n

^Execute();
\r\nConsente all\'amministratore o al content manager di eseguire un programma\r\nesterno. Nel formato ^Execute("/questo/file.sh");.\r\n

^FormParam();
\r\nQuesta macro è principalmente usata per generare query dinamiche negli SQL\r\nReport. Usando questa macro puoi prendere il valore di qualsiasi form\r\nsemplicemente specificando il nome del campo, in questo modo: ^FormParam("numerotelefonico");\r\n

^If();
\r\nUna semplice variabile condizionale (IF/THEN/ELSE) per controllare\r\nvisualizzazioni e messaggi.\r\n

Esempi:
\r\nVisualizza Felice anno nuovo il 1° gennaio: ^If(\'^D("%m%d");\' eq\r\n\'0101\' , Felice anno nuovo);\r\n

Visualizza un messaggio alle persone della tua rete (192.168.1.*):
\r\n^If(\'^Env("REMOTE_ADDR");\' =~ /^192.168.1/,"Ciao collega","Ciao\r\nospite");\r\n

Visualizza un messaggio agli utenti Windows:
\r\n^If(\'^Env("HTTP_USER_AGENT");\' =~ /windows/i,"Hey... Linux è\r\nlibero !");\r\n

Visualizza un messaggio se un utente è dietro a un proxy:
\r\n^If(\'^Env("HTTP_VIA");\' ne "", Sei dietro a un proxy !,\r\nProxy-free è il meglio...);\r\n

Visualizza Buon giorno /buon pomeriggio / buona sera:
\r\n^If(^D("%J");<=12,Buon giorno,^If(^D("%J");<=18,buon\r\npomeriggio,buona sera););

\r\n

 \r\n

^Include();
\r\nConsente ai content manager o agli amministratori di includere un file dal\r\ndisco. Nel formato ^Include("/questo/file.html");\r\n

^International();
\r\nInserisce un messaggio tradotto dall\' internationalization system.\r\n

Esempio: ^International(45,"Article");\r\n

^Quote();
\r\nUsa questa macro per proteggere una stringa prima di usarla in una query al database.\r\n

^Page();
\r\nQuesta può essere usata per recuperare informazioni sulla pagina corrente; Per\r\nesempio può essere usata per ottenere la URL della pagina così: ^Page("TitoloUrlizzato");\r\noppure per ottenere il titolo del menu così: ^Page("TitoloMenu");.\r\n

^SQL();
\r\nun SQL report di una linea. A volte hai bisogno solamente di tirar fuori\r\nqualcosa dal database velocemente. Questa macro è utile anche per estendere il\r\nwobject SQL report. Usa le macro numeriche (^0; ^1; ^2; etc) per posizionare i\r\ndati e usa anche la macro ^rownum; proprio come il wobject SQL report. Esempi:\r\n

^SQL("select count(*) from users","Ci sono ^0; utenti in\r\nquesto sistema.");\r\n

^SQL("select userId,username from users order by username","<a\r\nhref=\'^/;?op=viewProfile&uid=^0;\'>^1;</a><br>");

\r\n

URLEncode();
\r\nQuesta macro è utile soprattutto negli SQL reports, ma può essere usata\r\novunque. Prende una stringa e la codifica in modo che possa essere passata\r\nattraverso un URL. La sintassi è simile a questa: ^URLEncode("Questa è\r\nuna stringa?");\r\n

^User();
\r\nQuesta macro ti permette di visualizzare qualsiasi informazione dall\' account o\r\ndal profilo utente. Per esempio, se vuoi visualizzare l\'email dell\'utente if you\r\ndevi creare questa macro: ^User("email");\r\n

^*; or ^*(); - Numero casuale
\r\nUn numero generato casualmente. Questo é spesso usato sulle immagini (come\r\nbanner e ad) per assicurarsi che le immagini non vengano tenute in cache. In più,\r\npuoi configurare questa macro così: ^*(100); per creare un numero\r\ncasuale tra 0 e 100.\r\n

^-;,^0;,^1;,^2;,^3;, etc.
\r\nQueste macro sono riservate per funzione specifiche relative ai widgets come nel\r\nSQL report.

\r\n',1054486344,NULL); +INSERT INTO international VALUES (50,'Product',8,'I benefici sono il vantaggio che offrono le caratteristiche del prodotto. Sono la ragione per cui il tuo prodotto è buono. Se aggiungi dei benefici, dovresti inserire anche qualche caratteristica.\n\n\n\n

\n\nBeneficio
\nPuoi inserire un nuovo beneficio, selezionarne uno da quelli già inseriti.\n

\n\nAggiungi un\'altro beneficio?
\nSe vuoi aggiungere un\'altro beneficio, seleziona \"Si\".\n

\n',1046633484,NULL); +INSERT INTO international VALUES (840,'WebGUI',8,'Queste macro sono fatte per funzionalità di programmazione. \r\n

^D; or ^D(); - Data
\r\nLa data e l\'ora corrente.\r\n

Puoi configurare il formato della data usando simboli di formattazione della\r\ndata. per esempio, se crei una macro così: ^D("%D %c, %y");\r\nstamperà 16 Aprile, 2001. I seguenti sono i simboli disponibili per\r\nformattare la data:\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n
%%%
%yAnno a 4 cifre
%YAnno a 2 cifre
%mMese a 2 cifre
%MMese a cifra variabile
%cNome del mese
%dGiorno del mese a 2 cifre
%DGiorno del mese a cifra variabile
%wNome del giorno della settimana
%hora a 2 cifre base 12 ore
%Hora a cifra variabile base 12 ore
%jora a 2 cifre base 24 ore
%Jora a cifra variabile base 24 ore
%pam/pm in minuscolo
%PAM/PM in maiuscolo
%zformato data preferito dell\'utente
%zformato ora preferito dall\'utente
\r\n

^Env()
\r\nPuò essere usata per visualizzare variabili di ambiente del web server in una\r\npagina.\r\n

Deve essere usata così: ^Env("REMOTE_ADDR");

\r\n

^Execute();
\r\nConsente all\'amministratore o al content manager di eseguire un programma\r\nesterno. Nel formato ^Execute("/questo/file.sh");.\r\n

^FormParam();
\r\nQuesta macro è principalmente usata per generare query dinamiche negli SQL\r\nReport. Usando questa macro puoi prendere il valore di qualsiasi form\r\nsemplicemente specificando il nome del campo, in questo modo: ^FormParam("numerotelefonico");\r\n

^If();
\r\nUna semplice variabile condizionale (IF/THEN/ELSE) per controllare\r\nvisualizzazioni e messaggi.\r\n

Esempi:
\r\nVisualizza Felice anno nuovo il 1° gennaio: ^If(\'^D("%m%d");\' eq\r\n\'0101\' , Felice anno nuovo);\r\n

Visualizza un messaggio alle persone della tua rete (192.168.1.*):
\r\n^If(\'^Env("REMOTE_ADDR");\' =~ /^192.168.1/,"Ciao collega","Ciao\r\nospite");\r\n

Visualizza un messaggio agli utenti Windows:
\r\n^If(\'^Env("HTTP_USER_AGENT");\' =~ /windows/i,"Hey... Linux è\r\nlibero !");\r\n

Visualizza un messaggio se un utente è dietro a un proxy:
\r\n^If(\'^Env("HTTP_VIA");\' ne "", Sei dietro a un proxy !,\r\nProxy-free è il meglio...);\r\n

Visualizza Buon giorno /buon pomeriggio / buona sera:
\r\n^If(^D("%J");<=12,Buon giorno,^If(^D("%J");<=18,buon\r\npomeriggio,buona sera););

\r\n

 \r\n

^Include();
\r\nConsente ai content manager o agli amministratori di includere un file dal\r\ndisco. Nel formato ^Include("/questo/file.html");\r\n

^International();
\r\nInserisce un messaggio tradotto dall\' internationalization system.\r\n

Esempio: ^International(45,"Article");\r\n

^Quote();
\r\nUsa questa macro per proteggere una stringa prima di usarla in una query al database.\r\n

^Page();
\r\nQuesta può essere usata per recuperare informazioni sulla pagina corrente; Per\r\nesempio può essere usata per ottenere la URL della pagina così: ^Page("TitoloUrlizzato");\r\noppure per ottenere il titolo del menu così: ^Page("TitoloMenu");.\r\n

^SQL();
\r\nun SQL report di una linea. A volte hai bisogno solamente di tirar fuori\r\nqualcosa dal database velocemente. Questa macro è utile anche per estendere il\r\nwobject SQL report. Usa le macro numeriche (^0; ^1; ^2; etc) per posizionare i\r\ndati e usa anche la macro ^rownum; proprio come il wobject SQL report. Esempi:\r\n

^SQL("select count(*) from users","Ci sono ^0; utenti in\r\nquesto sistema.");\r\n

^SQL("select userId,username from users order by username","<a\r\nhref=\'^/;?op=viewProfile&uid=^0;\'>^1;</a><br>");

\r\n

URLEncode();
\r\nQuesta macro è utile soprattutto negli SQL reports, ma può essere usata\r\novunque. Prende una stringa e la codifica in modo che possa essere passata\r\nattraverso un URL. La sintassi è simile a questa: ^URLEncode("Questa è\r\nuna stringa?");\r\n

^User();
\r\nQuesta macro ti permette di visualizzare qualsiasi informazione dall\' account o\r\ndal profilo utente. Per esempio, se vuoi visualizzare l\'email dell\'utente if you\r\ndevi creare questa macro: ^User("email");\r\n

^*; or ^*(); - Numero casuale
\r\nUn numero generato casualmente. Questo é spesso usato sulle immagini (come\r\nbanner e ad) per assicurarsi che le immagini non vengano tenute in cache. In più,\r\npuoi configurare questa macro così: ^*(100); per creare un numero\r\ncasuale tra 0 e 100.\r\n

^-;,^0;,^1;,^2;,^3;, etc.
\r\nQueste macro sono riservate per funzione specifiche relative ai widgets come nel\r\nSQL report.

\r\n',1058378564,NULL); INSERT INTO international VALUES (677,'WebGUI',8,'Wobject, Aggiungi/Modifica',1048067547,NULL); INSERT INTO international VALUES (671,'WebGUI',8,'Wobject, Usare',1048067532,NULL); INSERT INTO international VALUES (664,'WebGUI',8,'Wobject, Cancella',1046633241,NULL); -INSERT INTO international VALUES (616,'WebGUI',8,'Percorso degli Extra del C.M.S.
\r\nIl percorso web della directory contenente le immagini e i files di javascript.\r\n

\r\nMassima Dimensione Allegato
\r\nLa dimensione massima consentita dei file uploadati sul sito. Questo si applica a tutti i wobject che consentono l\'upload di file e immagini (come gli articoli e i contributi degli utenti). Questa dimensione é espressa in kilobytes.\r\n

\r\n\r\nDimensione Thumbnail
\r\nLa dimensione del lato più lungo del thumbnails. Il thumbnail generato mantiene le proporzioni dell\'immagine originale. Questo significa che se la tua immagine è di 400x200 px, se il valore del thumbnail eìè settato a 100, il thmbnail sarà di 100x50 px.

Nota: i thumbnail sono automaticamente generati quando carichi l\'immagine.\r\n

\r\n\r\nPercorso degli allegati web
\r\nLIl percorso web della directory dove gli allegati devono essere salvati.\r\n

\r\nPercorso degli Allegati sul Server
\r\nIl percorso locale della directory dove gli allegati devono essere salvati. (Per esempio /www/miosito/uploads) Assicurati che il web server abbia i diritti di scrittura su questa directory.\r\n',1046633193,NULL); -INSERT INTO international VALUES (615,'WebGUI',8,'I gruppi sono usati per suddividere privilegi e responsabilità nel sistema. Per esempio se sei un insegnante, puoi costruire un sito per i tuoi alunni. In questo caso puoi creare un gruppo diverso per ogni classe nella quale insegni. Quindi applicherai questi gruppi alle pagine pensate per ogni classe.\r\n

\r\n\r\nCi sono vari gruppi predefiniti. Eccoli:\r\n

\r\n\r\nAdmins
\r\nAdmins sono utenti che hanno privilegi illimitati nel sistema. Un utente dovrebbe essere aggiunto al gruppo admins solo se questi é veramente un amministratore del sistema. Normalmente in questo gruppo ci saranno solo da una a tre persone.\r\n

\r\n\r\nContent Managers
\r\nI Content managers sono utenti che hanno il privilegio di aggiungere, modificare e cancellare contenuti da varie aree del sito. Il gruppo content managers dovrebbe essere usato non per controllare contenuti individuali nel sito, ma per determinare se un utente può o meno eseguire modifiche ai contenuti. Dovresti creare dei nuovi gruppi per separare le aree di contenuti nel sito.\r\n

\r\nEveryone
Everyone è un gruppo speciale nel fatto che nessuno è fisicamente inserito in esso, ma tutti i membri del sito ne fanno parte. Se vuoi aprire il tuo sito sia ai visitors che ai registered users, usa questo gruppo per farlo.

Package Managers
Utenti che hanno i privilegi di aggiunta, modifica e cancellazione di packages di wobject e pagine da sviluppare.

\r\nRegistered Users
\r\nQuandi si aggiungono utenti al sistema, questi sono messi nel gruppo registered users. Un utente dovrebbe essere rimosso da questo gruppo solamente se il suo account é stato cancellato oppure se vuoi punire un utente che crea fastidi.\r\n

\r\nStyle Managers
Utenti che hanno i privilegi di modificare gli stili per il sito. Questi privilegi non consentono all\'utente di assegnare privilegi ad una pagina.

Template Managers
Utenti che hanno i privilegi di modifica per i template del sito.

\r\nVisitors
\r\nI Visitors sono utenti che non si sono loggati nel sistema usando un account. ',1046633143,NULL); -INSERT INTO international VALUES (71,'Item',8,'Come gli articoli, gli Item sono il coltellino svizzero del sistema. La maggior parte di contenuti statici possono essere aggiunti mediante il widget Item, anche se gli item sono usati per contenuti più piccoli che non gli articoli.\r\n

\r\nTemplate
\r\nScegli un layout per questo contenuto?\r\n

\r\nURL del Link
\r\nQuesta URL sarà attaccata al titolo di questo Item.\r\n

\r\nEsempio: http://www.google.com\r\n

\r\nAllegato
\r\nSe vuoi allegare un file di un word processor , un file zip , o qualsiasi altro file da scaricare per gli utenti, sceglilo dal tuo hard disk.\r\n\r\n',1046633095,NULL); -INSERT INTO international VALUES (612,'WebGUI',8,'Non c\'è quasi mai l\'esigenza di cancellare un utente. Se vuoi inibire un utente, cambiagli semplicemente la password. Se vuoi veramente cancellare un utente, tieni a mente che ci sono delle conseguenze. Se cancelli un utente, tutto il contenuto che ha aggiunto mediante i wobjects (come i forum o i contributi degli utenti) rimarrà sul sito. D\'altro canto, se altri utenti provano a visitare il profilo dell\'utente cancellato riceveranno un messaggio d\'errore. Anche se l\'utente è di nuovo benvenuto sul sito, non c\'è modo di ridargli l\'accesso ai propri vecchi contenuti, eccetto che modificando manualmente l\'utente nella tabella users del database.\r\n

Come con ogni operazione di cancellazione, sei chiamato a rispondere ad una conferma per procedere con la cancellazione. Se rispondi di sì, la cancellazione procederà e non ci sarà possibilità di recuperare i dati. Se rispondi di no sarai riportato alla schermata precedente.\r\n\r\n.',1046633062,NULL); -INSERT INTO international VALUES (608,'WebGUI',8,'Cancellare una pagina può creare un grande danno se sei insicuro di quello che stai facendo. Quando cancelli una pagina cancelli anche tutto il suo contenuto (articoli, wobject, et..), tutte le sotto-pagine connesse a questa, e tutto il loro contenuto. Sii sicuro di aver già mosso tutto il contenuto che vuoi conservare prima di cancellare una pagina.\r\n

\r\nCome con ogni operazione di cancellazione, sei chiamato a rispondere ad una conferma per procedere con la cancellazione. Se rispondi di sì, la cancellazione procederà e non ci sarà possibilità di recuperare i dati. Se rispondi di no sarai riportato alla schermata precedente.',1046633024,NULL); -INSERT INTO international VALUES (606,'WebGUI',8,'Pensa alle pagine come a contenitori per i contenuti. Per esempio, se vuoi scrivere una lettera all\'editore del tuo settimanale preferito prendi un foglio (o apri un word processor) e cominci a riempirlo dei tuoi pensieri. Lo stesso vale per il C.M.S.. Crea una pagina, quindi aggiungi i tuoi contenuti alla pagina.\r\n

\r\nTitolo
\r\nIl titolo della pagina è quello che gli utenti useranno per navigare attraverso il tuo sito. I titoli dovrebbero essere descrittivi, ma non molto lunghi.\r\n

\r\nTitolo nel Menu
\r\nUn titolo più breve o diverso che compare nel menù di navigazione. Se non\r\nviene inserito sarò usato il Titolo .\r\n

\r\nURL della pagina
\r\nQuando crei una pagina una URL per la pagina viene generata basandosi sul titolo della pagina. Se non ti piace l\'URL scelto, puoi cambiarlo\r\nqui.\r\n

Redireziona URL
\r\nQuando questa pagina viene visitata l\'utente viene reindirizzato all\'indirizzo\r\nqui specificato.\r\n

NOTA: le redirezioni sono disabilitate qunado si è in modalità admin,\r\nper consentire una più agevole modifica delle pagine.

\r\n

Nascondi dalla navigazione
\r\nSeleziona Si per nascondere dal menù di navigazione.

NOTA:
\r\nla pagina sarà non sarà nascosta nella mappa del sito e nell\'albero di\r\nnavigazione, solo nel menù.

Apri in una nuova finestra?
\r\nSeleziona Si per aprire la pagina in una nuova finestra. Spesso è usata assieme\r\nal parametro Redireziona URL.\r\n

Lingua
\r\nSeleziona il linguaggio di default per questa pagina. Tutti i messaggi di WebGUI\r\nsaranno generati nel linguaggio selezionato.\r\n

Cache Timeout
\r\nLa quantità di tempo che questa pagina rimarrà in cache per i  registered\r\nusers.\r\n

Cache Timeout (Visitors)
\r\nLa quantità di tempo che questa pagina rimarrà in cache per i visitors.\r\n

NOTA: il Page caching è disponibile solo se il tuo amministratore ha\r\ninstallato il modulo Perl  Cache::FileCache. Usando il page caching puoi\r\nmigliorare la performance del sito del 1000%.

\r\n

\r\nTemplate
\r\nPer default, il C.M.S.ha una grande area di contenuto dove piazzare wobjects. Invece, specificando un altro template diverso dal default puoi suddividere l\'area del contenuto in ulteriori sezioni.

Descrizione
\r\nUna breve descrizione della pagina, si usa per fornire contenuti per i meta tags\r\ne per la mappa del sito.\r\n\r\n

\r\nMeta Tags
\r\nI Meta tags sono usati da alcuni motori di ricerca per associare delle parole chiave ad una particolare pagina. Puoi usare\r\nWebopen Meta Tag Builder che ti aiuterà a costruire dei meta tags se non l\'hai mai fatto prima.\r\n

\r\nUtenti Avanzati: Se avete altre cose (come JavaScript) che normalmente mettereste nel tag\r\npotete metterle qui.\r\n

\r\nUsa i meta tags di default?
\r\nSe non vuoi specificare tuoi meta tags, il C.M.S. può generarli basandosi sul titolo della pagina e sul nome dell\'azienda. Spunta questa box per abilitare i meta tags generati dal\r\nC.M.S..\r\n

\r\nStile
\r\nPer default, quando crei una pagina, eredita alcune caratteristiche dalla pagina genitore. Una di queste caratteristiche è lo stile. Scegli dalla lista degli stili se vuoi cambiare l\'aspetto di questa pagina. Vedi Aggiungi Stile per maggiori dettagli.\r\n

\r\nSe spunti la box sottostante il pull-down menu dello stile, tutte le pagine figlie di questa pagina prenderanno lo stile selezionato per questa pagina.\r\n

\r\nData di inizio
\r\nIn che data vuoi che questa pagina appaia sul sito? Le date sono nel formato\r\namericano MM/GG/AAAA. Puoi usare un wizard JavaScript per selezionare la data da\r\nun calendario cliccando su imposta la data
\r\n
\r\nData di fine
\r\nIn che data vuoi che questa pagina venga oscurato dal sito? Dopo tale data solo\r\ni content manager potranno visualizzare la pagina.\r\n

\r\nPropietario
\r\nIl proprietario di una pagina è solitamente chi l\'ha creata. Questo utente ha i\r\nprivilegi per modificare e vedere la pagina\r\n

\r\nNota: Il proprietario può essere cambiato solo da un amministratore.

Chi può visualizzare?
\r\nSeleziona il gruppo che può visualizzare la pagina. Se vuoi che possa essere\r\nvisualizzata sia dai visitatori che dagli utenti registrati,  seleziona il\r\ngruppo "Everybody"\r\n

\r\nChi può modificare?
\r\nSeleziona il gruppo che può modificare la pagina.\r\n

\r\nPuoi scegliere come opzione di dare questi privilegi a tutte le pagine sotto questa.

Prossima\r\nAzione?
\r\nSe lasci l\'opzione al valore di default sarai rediretto alla nuova pagina appena\r\ncreata.\r\n',1056805592,NULL); -INSERT INTO international VALUES (71,'Poll',8,'I sondaggi possono essere usati per testare i gusti dei tuoi utenti su vari argomenti.\r\n

\r\n\r\nAttivo
\r\nSe questo box é selezionato gli utenti potranno votare. Altrimenti saranno in grado solo di visualizzare i risultati del sondaggio.\r\n

\r\nChi può votare?
\r\nScegli un gruppo che può votare in questo sondaggio.\r\n

\r\n

Karma Per Voto
\r\nQuanto karma deve essere assegnato all\'utente quando vota?

\r\n\r\nLarghezza del grafico
\r\nLa larghezza del grafico dei risultati del sondaggio. La larghezza é misurata in pixel.\r\n

\r\nDomanda
\r\nQual\'é la domanda che vorresti fare agli utenti?\r\n

\r\nRisposte
\r\nInserisci le possibili risposte alla tua domanda. Inserisci una sola risposta per linea. I sondaggi sono capaci di gestire fino a 20 risposte possibili.\r\n

\r\n

Randomizza le risposte
\r\nPer essere certi che l\'ordine delle risposte non influenzi gli utenti è spesso utile prensentarle in ordine casuale ogni volta che vengono mostrate. Seleziona SI per abilitare l\'opzione

\r\n\r\n\r\nAzzera i voti.
\r\nAzzera i voti per questo sondaggio.\r\n

\r\n\r\n\r\n',1054311284,NULL); +INSERT INTO international VALUES (616,'WebGUI',8,'Percorso degli Extra del C.M.S.
\nIl percorso web della directory contenente le immagini e i files di javascript.\n

\nMassima Dimensione Allegato
\nLa dimensione massima consentita dei file uploadati sul sito. Questo si applica a tutti i wobject che consentono l\'upload di file e immagini (come gli articoli e i contributi degli utenti). Questa dimensione é espressa in kilobytes.\n

\n\nDimensione Thumbnail
\nLa dimensione del lato più lungo del thumbnails. Il thumbnail generato mantiene le proporzioni dell\'immagine originale. Questo significa che se la tua immagine è di 400x200 px, se il valore del thumbnail eìè settato a 100, il thmbnail sarà di 100x50 px.

Nota: i thumbnail sono automaticamente generati quando carichi l\'immagine.\n

\n\nPercorso degli allegati web
\nLIl percorso web della directory dove gli allegati devono essere salvati.\n

\nPercorso degli Allegati sul Server
\nIl percorso locale della directory dove gli allegati devono essere salvati. (Per esempio /www/miosito/uploads) Assicurati che il web server abbia i diritti di scrittura su questa directory.\n',1046633193,NULL); +INSERT INTO international VALUES (615,'WebGUI',8,'I gruppi sono usati per suddividere privilegi e responsabilità nel sistema. Per esempio se sei un insegnante, puoi costruire un sito per i tuoi alunni. In questo caso puoi creare un gruppo diverso per ogni classe nella quale insegni. Quindi applicherai questi gruppi alle pagine pensate per ogni classe.\n

\n\nCi sono vari gruppi predefiniti. Eccoli:\n

\n\nAdmins
\nAdmins sono utenti che hanno privilegi illimitati nel sistema. Un utente dovrebbe essere aggiunto al gruppo admins solo se questi é veramente un amministratore del sistema. Normalmente in questo gruppo ci saranno solo da una a tre persone.\n

\n\nContent Managers
\nI Content managers sono utenti che hanno il privilegio di aggiungere, modificare e cancellare contenuti da varie aree del sito. Il gruppo content managers dovrebbe essere usato non per controllare contenuti individuali nel sito, ma per determinare se un utente può o meno eseguire modifiche ai contenuti. Dovresti creare dei nuovi gruppi per separare le aree di contenuti nel sito.\n

\nEveryone
Everyone è un gruppo speciale nel fatto che nessuno è fisicamente inserito in esso, ma tutti i membri del sito ne fanno parte. Se vuoi aprire il tuo sito sia ai visitors che ai registered users, usa questo gruppo per farlo.

Package Managers
Utenti che hanno i privilegi di aggiunta, modifica e cancellazione di packages di wobject e pagine da sviluppare.

\nRegistered Users
\nQuandi si aggiungono utenti al sistema, questi sono messi nel gruppo registered users. Un utente dovrebbe essere rimosso da questo gruppo solamente se il suo account é stato cancellato oppure se vuoi punire un utente che crea fastidi.\n

\nStyle Managers
Utenti che hanno i privilegi di modificare gli stili per il sito. Questi privilegi non consentono all\'utente di assegnare privilegi ad una pagina.

Template Managers
Utenti che hanno i privilegi di modifica per i template del sito.

\nVisitors
\nI Visitors sono utenti che non si sono loggati nel sistema usando un account. ',1046633143,NULL); +INSERT INTO international VALUES (612,'WebGUI',8,'Non c\'è quasi mai l\'esigenza di cancellare un utente. Se vuoi inibire un utente, cambiagli semplicemente la password. Se vuoi veramente cancellare un utente, tieni a mente che ci sono delle conseguenze. Se cancelli un utente, tutto il contenuto che ha aggiunto mediante i wobjects (come i forum o i contributi degli utenti) rimarrà sul sito. D\'altro canto, se altri utenti provano a visitare il profilo dell\'utente cancellato riceveranno un messaggio d\'errore. Anche se l\'utente è di nuovo benvenuto sul sito, non c\'è modo di ridargli l\'accesso ai propri vecchi contenuti, eccetto che modificando manualmente l\'utente nella tabella users del database.\n

Come con ogni operazione di cancellazione, sei chiamato a rispondere ad una conferma per procedere con la cancellazione. Se rispondi di sì, la cancellazione procederà e non ci sarà possibilità di recuperare i dati. Se rispondi di no sarai riportato alla schermata precedente.\n\n.',1046633062,NULL); +INSERT INTO international VALUES (608,'WebGUI',8,'Cancellare una pagina può creare un grande danno se sei insicuro di quello che stai facendo. Quando cancelli una pagina cancelli anche tutto il suo contenuto (articoli, wobject, et..), tutte le sotto-pagine connesse a questa, e tutto il loro contenuto. Sii sicuro di aver già mosso tutto il contenuto che vuoi conservare prima di cancellare una pagina.\n

\nCome con ogni operazione di cancellazione, sei chiamato a rispondere ad una conferma per procedere con la cancellazione. Se rispondi di sì, la cancellazione procederà e non ci sarà possibilità di recuperare i dati. Se rispondi di no sarai riportato alla schermata precedente.',1046633024,NULL); +INSERT INTO international VALUES (606,'WebGUI',8,'Pensa alle pagine come a contenitori per i contenuti. Per esempio, se vuoi scrivere una lettera all\'editore del tuo settimanale preferito prendi un foglio (o apri un word processor) e cominci a riempirlo dei tuoi pensieri. Lo stesso vale per il C.M.S.. Crea una pagina, quindi aggiungi i tuoi contenuti alla pagina.\n

\nTitolo
\nIl titolo della pagina è quello che gli utenti useranno per navigare attraverso il tuo sito. I titoli dovrebbero essere descrittivi, ma non molto lunghi.\n

\nTitolo nel Menu
\nUn titolo più breve o diverso che compare nel menù di navigazione. Se non\nviene inserito sarò usato il Titolo .\n

\nURL della pagina
\nQuando crei una pagina una URL per la pagina viene generata basandosi sul titolo della pagina. Se non ti piace l\'URL scelto, puoi cambiarlo\nqui.\n

Redireziona URL
\nQuando questa pagina viene visitata l\'utente viene reindirizzato all\'indirizzo\nqui specificato.\n

NOTA: le redirezioni sono disabilitate qunado si è in modalità admin,\nper consentire una più agevole modifica delle pagine.

\n

Nascondi dalla navigazione
\nSeleziona Si per nascondere dal menù di navigazione.

NOTA:
\nla pagina sarà non sarà nascosta nella mappa del sito e nell\'albero di\nnavigazione, solo nel menù.

Apri in una nuova finestra?
\nSeleziona Si per aprire la pagina in una nuova finestra. Spesso è usata assieme\nal parametro Redireziona URL.\n

Lingua
\nSeleziona il linguaggio di default per questa pagina. Tutti i messaggi di WebGUI\nsaranno generati nel linguaggio selezionato.\n

Cache Timeout
\nLa quantità di tempo che questa pagina rimarrà in cache per i  registered\nusers.\n

Cache Timeout (Visitors)
\nLa quantità di tempo che questa pagina rimarrà in cache per i visitors.\n

NOTA: il Page caching è disponibile solo se il tuo amministratore ha\ninstallato il modulo Perl  Cache::FileCache. Usando il page caching puoi\nmigliorare la performance del sito del 1000%.

\n

\nTemplate
\nPer default, il C.M.S.ha una grande area di contenuto dove piazzare wobjects. Invece, specificando un altro template diverso dal default puoi suddividere l\'area del contenuto in ulteriori sezioni.

Descrizione
\nUna breve descrizione della pagina, si usa per fornire contenuti per i meta tags\ne per la mappa del sito.\n\n

\nMeta Tags
\nI Meta tags sono usati da alcuni motori di ricerca per associare delle parole chiave ad una particolare pagina. Puoi usare\nWebopen Meta Tag Builder che ti aiuterà a costruire dei meta tags se non l\'hai mai fatto prima.\n

\nUtenti Avanzati: Se avete altre cose (come JavaScript) che normalmente mettereste nel tag\npotete metterle qui.\n

\nUsa i meta tags di default?
\nSe non vuoi specificare tuoi meta tags, il C.M.S. può generarli basandosi sul titolo della pagina e sul nome dell\'azienda. Spunta questa box per abilitare i meta tags generati dal\nC.M.S..\n

\nStile
\nPer default, quando crei una pagina, eredita alcune caratteristiche dalla pagina genitore. Una di queste caratteristiche è lo stile. Scegli dalla lista degli stili se vuoi cambiare l\'aspetto di questa pagina. Vedi Aggiungi Stile per maggiori dettagli.\n

\nSe spunti la box sottostante il pull-down menu dello stile, tutte le pagine figlie di questa pagina prenderanno lo stile selezionato per questa pagina.\n

\nData di inizio
\nIn che data vuoi che questa pagina appaia sul sito? Le date sono nel formato\namericano MM/GG/AAAA. Puoi usare un wizard JavaScript per selezionare la data da\nun calendario cliccando su imposta la data
\n
\nData di fine
\nIn che data vuoi che questa pagina venga oscurato dal sito? Dopo tale data solo\ni content manager potranno visualizzare la pagina.\n

\nPropietario
\nIl proprietario di una pagina è solitamente chi l\'ha creata. Questo utente ha i\nprivilegi per modificare e vedere la pagina\n

\nNota: Il proprietario può essere cambiato solo da un amministratore.

Chi può visualizzare?
\nSeleziona il gruppo che può visualizzare la pagina. Se vuoi che possa essere\nvisualizzata sia dai visitatori che dagli utenti registrati,  seleziona il\ngruppo "Everybody"\n

\nChi può modificare?
\nSeleziona il gruppo che può modificare la pagina.\n

\nPuoi scegliere come opzione di dare questi privilegi a tutte le pagine sotto questa.

Prossima\nAzione?
\nSe lasci l\'opzione al valore di default sarai rediretto alla nuova pagina appena\ncreata.\n',1056805592,NULL); +INSERT INTO international VALUES (7,'PhotoGallery',8,'Anteprime per riga',1034022186,NULL); +INSERT INTO international VALUES (71,'Poll',8,'I sondaggi possono essere usati per testare i gusti dei tuoi utenti su vari argomenti.\n

\n\nAttivo
\nSe questo box é selezionato gli utenti potranno votare. Altrimenti saranno in grado solo di visualizzare i risultati del sondaggio.\n

\nChi può votare?
\nScegli un gruppo che può votare in questo sondaggio.\n

\n

Karma Per Voto
\nQuanto karma deve essere assegnato all\'utente quando vota?

\n\nLarghezza del grafico
\nLa larghezza del grafico dei risultati del sondaggio. La larghezza é misurata in pixel.\n

\nDomanda
\nQual\'é la domanda che vorresti fare agli utenti?\n

\nRisposte
\nInserisci le possibili risposte alla tua domanda. Inserisci una sola risposta per linea. I sondaggi sono capaci di gestire fino a 20 risposte possibili.\n

\n

Randomizza le risposte
\nPer essere certi che l\'ordine delle risposte non influenzi gli utenti è spesso utile prensentarle in ordine casuale ogni volta che vengono mostrate. Seleziona SI per abilitare l\'opzione

\n\n\nAzzera i voti.
\nAzzera i voti per questo sondaggio.\n

\n\n\n',1054311284,NULL); INSERT INTO international VALUES (9,'WobjectProxy',8,'Sostituisci descrizione?',1054238594,NULL); INSERT INTO international VALUES (8,'WobjectProxy',8,'Sostituisci il settaggio \"visualizza titolo\"?',1054238386,NULL); INSERT INTO international VALUES (7,'WobjectProxy',8,'Sostituisci il titolo?',1054238043,NULL); -INSERT INTO international VALUES (71,'LinkList',8,'Le liste di link sono semplicemente quello che pensi, una lista di link. Molti siti hanno una sezione di link, e questo wobject automatizza il processo.\r\n

\r\nTemplate
\r\nScegli un template per questo Wobject\r\n

\r\n\r\nProssima Azione?
\r\nLascia selezionato a default se vuoi aggiungere link alla lista direttamente dopo averla creata.\r\n

\r\n',1046632754,NULL); -INSERT INTO international VALUES (71,'FAQ',8,'Sembra che quasi ogni sito web , intranet e extranet nel mondo abbia una sezione FAQ (Frequently Asked Question). Questo wobject ti aiuta a costruirne una.\r\n

\r\n\r\nTemplate
\r\nSeleziona un layout per questa FAQ.\r\n

\r\nContinua aggiungendo una domanda?
\r\nSeleziona \"aggiungi una domanda\" se vuoi aggiungere domande alla FAQ dopo questa.\r\n

\r\n
\r\nNota: IL seguente stile é specifico del wobject FAQ.\r\n

\r\n.faqQuestion
\r\nUna domanda della F.A.Q. Per distinguerla dalla risposta.\r\n\r\n',1046632667,NULL); -INSERT INTO international VALUES (71,'EventsCalendar',8,'I calendari di eventi sono usati in molte intranet per tenere traccia di date interne che coinvolgono l\'intera organizzazione. I calendari di eventi sono anche, su siti per la clientela, un buon modo per informare i clienti su quali eventi si stanno realizzando o su che promozioni sono attualmente in corso.\r\n

\r\nTemplate principale
\r\nSeleziona un template questo calendario eventi?\r\n

\r\nTemplate evento
\r\nSeleziona un template per il singolo evento dentro al calendario\r\n

Mese di inzio
\r\nScegli il mese di inizio per il calendario. Se selezioni "Corrente" il\r\ncalendario partirà sempre dal mese corrente, percui ogni mese cambierà. Se\r\nselezioni "Primo nel Calendario" partirà con la prima data\r\ndisponibile nel calendario.
\r\n
\r\nMese di fine
\r\nScegli il mese di fine per il calendario. Se selezioni "Mostra X mesi\r\ndall\'inizio", solo X mesi di informazioni saranno mostrate. Se selezioni\r\n"corrente" il calendario finirà nel mese in cui sei. Se selezioni\r\n"ultimo nel calendario" allora terminerà alla data dell\'ultimo\r\ninserimento nel calendario.
\r\n
\r\nDefault Month
\r\nSeleziona con quale mese il calendario dovrà partire quando un visitatore entra\r\nnella pagina che lo contiene.

\r\nCambio pagina dopo
\r\nQuando si usa il layout a lista, quanti eventi vuoi che vengano visualizzati per ogni pagina?\r\n

\r\nContinua aggiungendo un evento?
\r\nLascia questo box selezionato se vuoi aggiungere eventi al calendario direttamente dopo averlo\r\ncreato.\r\n

\r\n

\r\nNota: Gli eventi che sono già accaduti non sono visualizzati nel calendario eventi.\r\n

\r\n',1046632373,NULL); -INSERT INTO international VALUES (73,'Article',8,'Queste sono le variabili di template disponibili per i template articolo.\r\n

new.template
\r\nGli articoli hanno la possibilità di cambiare il proprio template di\r\nvisualizzazione, in modo che tu possa consentire agli utenti di vederlo con\r\nvisualizzazioni diverse. Puoi fare questo creando un con un URL come questo (sostituisci\r\n999 con il template Id che vuoi usare):\r\n

<a href="<tmpl_var new.template>999">leggi di più...</a>\r\n

description.full
\r\nLa descrizione (testo) completa senza nessuna impaginazione.\r\n

description.first.100words
\r\nLe prime 100 parole della descrizione. Le parole sono definite come caratteri separati da\r\nspazi vuoti, quindi le entità HTML e i  tags si considerano come parole.\r\n

description.first.75words
\r\nLe prime 75 parole della descrizione. Le parole sono definite come caratteri separati da\r\nspazi vuoti, quindi le entità HTML e i  tags si considerano come parole.\r\n

description.first.50words
\r\nLe prime 50 parole della descrizione. Le parole sono definite come caratteri separati da\r\nspazi vuoti, quindi le entità HTML e i  tags si considerano come parole.\r\n

description.first.25words
\r\nLe prime 25 parole della descrizione. Le parole sono definite come caratteri separati da\r\nspazi vuoti, quindi le entità HTML e i  tags si considerano come parole.\r\n

description.first.10words
\r\nLe prime 10 parole della descrizione. Le parole sono definite come caratteri separati da\r\nspazi vuoti, quindi le entità HTML e i  tags si considerano come parole.\r\n

description.first.paragraph
\r\nIl primo paragrafo della descrizione. Il primo paragrafo è determinato dal\r\nprimo "a capo" trovato nel testo.\r\n

description.first.2paragraphs
\r\nI primi 2 paragrafi della descrizione. Un paragrafo è determinato contando gli\r\n"a capo" trovati nel testo.\r\n

description.first.sentence
\r\nLa prima frase nella descrizione. Una frase è determinata contando i periodi\r\ntrovati nel testo.\r\n

description.first.2sentences
\r\nLe prime 2 frasi nella descrizione. Una frase è determinata contando i periodi\r\ntrovati nel testo.\r\n

description.first.3sentences
\r\nLe prime 3 frasi nella descrizione. Una frase è determinata contando i periodi\r\ntrovati nel testo.\r\n

description.first.4sentences
\r\nLe prime 4 frasi nella descrizione. Una frase è determinata contando i periodi\r\ntrovati nel testo.

\r\n

attachment.box
\r\nVisualizza un box per allegato standard di WebGUI che include icona, nome file e\r\nindicatore allegato.\r\n

attachment.icon
\r\nLa URL all\'icona per questo tipo di allegato.\r\n

attachment.name
\r\nIl nome del file per questo allegato.\r\n

attachment.url
\r\nLa URL per scaricare questo allegato.\r\n

image.thumbnail
\r\nLa URL al thumbnail per l\'immagine allegata.\r\n

image.url
\r\nLa URL per l\'immagine allegata.\r\n

post.label
\r\nL\'etichetta tradotta per aggiungere un commento a questo articolo.\r\n

post.URL
\r\nLa URL per aggiungere un commento a questo articolo.\r\n

replies.count
\r\nil numero di commenti allegati a questo articolo.\r\n

replies.label
\r\nL\'etichetta tradotta che indica che tu puoi vedere le risposte.\r\n

replies.url
\r\nLa URL per visualizzare le risposte a questo articolo.

\r\n

firstPage
\r\nUn Link alla prima pagina dell\'impaginazione.\r\n

lastPage
\r\nUn Link all\'ultima pagina dell\'impaginazione.\r\n

nextPage
\r\nUn Link alla prossima pagina dell\'impaginazione.\r\n

previousPage
\r\nUn Link alla precedente pagina dell\'impaginazione.\r\n

pageList
\r\nUn Link all\'ultima pagina dell\'impaginazione\r\n

multiplePages
\r\nUna variabile che indica dove esiste più di una pagina nell\'impaginazione.\r\n

isFirstPage
\r\nUna variabile che indica se il visitatore sta vedendo la prima pagina.\r\n

isLastPage
\r\nUna variabile che indica se il visitatore sta vedendo l\'ultima pagina.

\r\n',1054313755,NULL); -INSERT INTO international VALUES (71,'ExtraColumn',8,'Le colonne extra ti consentono di cambiare il layout della pagina per una pagina solamente. Se vuoi avere colonne multiple su tutte le pagine forse é meglio alterare lo stile applcato alle pagine. \r\n

\r\nLe colonne sono sempre aggiunte da sinistra a destra. Quindi ogni contenuto esistente sarà piazzato alla sinistra della nuova colonna.\r\n

\r\nPosizione
\r\nle colonne extra saranno sempre inserite da sinistra a destra.\r\n

\r\nSpaziatore
\r\nLo spaziatore é la quantità di spazio tra il contenuto esistente e la tua nuova colonna. E\' misurato in pixel.\r\n

\r\nLarghezza
\r\nLa larghezza della nuova colonna da aggiungere. La larghezza é misurata in pixel.\r\n

\r\nStyleSheet Class
\r\nPer default é applicato lo stile content (che é lo stile usato dal corpo di tutto il sito). Comunque, se hai creato uno stile specifico per le colonne, puoi modificare questa classe.\r\n',1046629104,NULL); -INSERT INTO international VALUES (71,'Article',8,'Gli Articoli sono il coltellino svizzero del C.M.S. . La maggior parte dei contenuti statici possono essere aggiunte mediante il wobject articolo.\r\n

\r\nNOTA: Puoi creare un articolo suddiviso su più pagine mettendo la macro (^-;)separator in vari punti dell\'articolo. \r\n

\r\nTemplate
\r\nSeleziona un  template per il layout del tuo articolo.\r\n

\r\nImmagine
\r\nScegli una immagine (.jpg, .gif, .png) dal tuo disco fisso. Questo file sarà uploadato sul server e visualizzato in alto nel tuo articolo nella posizione che scegli nella box di allineamento (sinistra-centro-destra).\r\n

\r\nTitolo del link
\r\nSe vuoi aggiungere un link al tuo articolo, metti qui il titolo del link. \r\n

\r\nEsempio: Google\r\n

\r\nURL del Link
\r\nSe ha aggiunto un titolo di link, adesso aggiungi la URL (uniform resource locator) in questo campo. \r\n

\r\nEsempio: http://www.google.com\r\n

\r\nAllegato
\r\nSe vuoi allegare un file word, zip o qualsiasi altro file scaricabile dagli utenti, sceglilo dal tuo disco fisso.\r\n

\r\nConverti gli \'a capo\'?
\r\nSe pubblichi in HTML, generalmente non c\'é bisogno di selezionare questa opzione, ma se non stai usando HTML e vuoi un a capo ogni volta che schiacci il tasto \"Invio\" , allora seleziona questa opzione.\r\n

Consenti  discussioni?
\r\nSelezionando questo box abiliterai la possibilità di inviare commenti\r\nall\'articolo.\r\n

Filtra i Messaggi
\r\nSeleziona il livello di filtraggio di contenuto da eseguire sui messaggi della discussione.\r\n

Chi può postare?
\r\nSeleziona il gruppo che è abilitato a inviare messaggi in questa discussione.\r\n

Modifica il Timeout
\r\nPer quanto tempo gli utenti possono modificare i loro messaggi prima che\r\nl\'opzione modifica sia bloccata?\r\n

Nota: non settare un limite troppo alto. Una delle grandi cose di\r\nquesti sistemi è che rappresentato un diario accurato di chi ha detto cosa. Se\r\npermetti di modificare per un arco di tempo troppo lungo, gli utenti avranno la\r\npossibilità di tornare sui propri passi e cambiare la propria opinione molto\r\ntempo dopo che il pensiero originale venisse postato.\r\n

Karma Per Post
\r\nQuanto karma deve essere assegnato ad un utente quando posta in questa\r\ndiscussione?\r\n

Chi può moderare?
\r\nSeleziona il gruppo che è abilitato a moderate questa discussione.\r\n

Tipo di moderazione?
\r\nPuoi selezionare il tipo di moderazione che preferisci. Dopo-il-fatto\r\nsignifica che quando un utente invia un messaggio questo viene pubblicato\r\nimmediatamente. Preventiva significa che un moderatore deve visionare ed\r\napprovare i messaggi prima che essi siano resi pubblicamente visibili. Gli\r\navvisi per i nuovi messaggi sono automaticamente visualizzati nel WebGUI Inbox\r\ndel moderatore.\r\n

Nota: In entrambi i tipi di moderazione il moderatore può sempre\r\nmodificare o cancellare i messaggi inviati.

\r\n

Aggiungi la data di modifica nei post
\r\nVuoi aggiungere la data di modifica nei messaggi così da sapere chi ha modificato un messaggio e quando?',1054311439,NULL); -INSERT INTO international VALUES (63,'Product',8,'La lista delle specifiche associate a questo prodotto.\r\n

\r\n specification.controls
\r\n I controlli di gestione di WebGUI  per questa specifica.\r\n

specification.specification
\r\n Il testo stesso della specifica.\r\n

specification.units
\r\n L\'unità di misura per questa specifica. ex: metri\r\n

specification.label
\r\n L\'etichetta per questa specifica. ex: altezza\r\n

 

\r\n
\r\n

addaccessory.url
\r\nLa URL per aggiungere un accessorio a questo prodotto.\r\n

addaccessory.label
\r\nL\'etichetta tradotta per il link per aggiungere un accessorio.\r\n

accessory_loop
\r\nQuesto ciclo contiene tutti gli accessori associati  a questo prodotto.\r\n

\r\n accessory.url
\r\n La URL all\'accessorio linkato.\r\n

accessory.title
\r\n Il titolo dell\'accessorio linkato.\r\n

accessory.controls
\r\n I controlli di gestione di WebGUI  per questo accessorio.\r\n

 

\r\n
\r\n

addRelatedProduct.url
\r\nla URL per aggiungere un prodotto correlato a questo prodotto.\r\n

addRelatedProduct.label
\r\nL\'etichetta tradotta per il link per aggiungere un prodotto correlato .\r\n

relatedproduct.url
\r\nLa URL al prodotto linkato.\r\n

relatedproduct.title
\r\nIl titolo del prodotto linkato.\r\n

relatedproduct.controls
\r\nI controlli di gestione di WebGUI  per questo prodotto correlato.

\r\n\r\n',1046628858,NULL); -INSERT INTO international VALUES (607,'WebGUI',8,'Registrazione Anonima
\r\nVuoi abilitare i visitatori a registrarsi da soli al sito?\r\n

Esegui su Registrazione
\r\nSe qui inserisci una linea di comando, sarà eseguita ogni volta che un utente\r\nsi registra.

\r\n

Abilita Karma?
\r\nVuoi abilitare la funzione Karma?

\r\n

Karma per Login
\r\nLa quantità di  Karma che viene accreditato ad ogni utente quando effettua\r\nil login. Ha effetto solo se il karma è abilitato.

\r\n

\r\n\r\n\r\nSession Timeout
\r\nIl tempo (in secondi) che una sessione utente rimane attiva (prima che sia necessario un nuovo login). Il timeout si azzera ogni volta che si clicca una pagina. Quindi se setti il timeout per 8 ore, un utente dovrà rifare il log in non ha visitato il sito the site da 8 ore.

\r\n

\r\n\r\nConsenti agli utenti di disattivare i propri account?
\r\nConsenti ai tuoi utenti di disattivare i propri account senza un tuo intervento?
\r\n
\r\nMetodo di autenticazione (default)
\r\nQuale dovrebbe essere il metodo di autenticazione predefinito per i nuovi account creati? I due metodi possibili sono WebGUI e LDAP. L\'autenticazione WebGUI significa che gli utenti si autenticheranno in base alle informazioni conservate nel database. L\'autenticazione LDAP significa che gli utenti si autenticheranno in base ad un server LDAP sesterno.\r\n

\r\nNota: I settaggi di autenticazione possono essere personalizzati utente per utente.\r\n

WebGUI Authentication Options

\r\nInvia un messaggio di benvenuto?
\r\nDesideri che WebGUI automaticamente invii un messaggio di benvenuto all\'utente\r\nquando si registra?\r\n

NOTA: In aggiunta al tuo messaggio saranno incluse  anche le\r\ninformazioni sull\'account.

Messaggio di Benvenuto
\r\nScrivi il messaggio che vuoi che venga inviato all\'utente quando si registra.

Recupera\r\nPassword - Messaggio
\r\nScrivi il messaggio che vuoi che venga inviato agli utenti se cercano di\r\nrecuperare la loro password di WebGUI .

\r\n

\r\n\r\n \r\n\r\n

LDAP Authentication Options

\r\n

\r\nLDAP URL (default)
\r\nLa URL di default del server LDAP. La URL LDAP é nella forma ldap://[server]:[port]/[base DN]. Esempio:\r\nldap://ldap.mycompany.com:389/o=MyCompany.\r\n

LDAP Identity
\r\nLa LDAP è l\'identificatore unico nel LDAP server con cui l\'utente sarà\r\nidentificato. Spesso questo campo è un shortname, che prende la forma\r\ndella  iniziale del nome  + il cognome. Esempio: mrossi. Per questo se\r\nspecifichi la LDAP identity per essere un  shortname allora Mario\r\nRossi  dovrà inserire  mrossi durante il processo di\r\nregistrazione.
\r\n
\r\nLDAP Identity Name
\r\nL\'etichetta utilizzata per descrivere LDAP Identity all\'utente. Per esempio,\r\nalcune aziende usano un LDAP server per autenticare i loro utenti con proxy\r\nserver. Nella documentazione fornita ai propri utenti, la LDAP identity è\r\nconosciuta come la loro Web Username. Quindi per coerenza puoi inserire\r\nquesta etichetta.
\r\n
\r\nLDAP Password Name
\r\nCome per LDAP Identity Name è una etichetta , così lo è la LDAP Password\r\nName. Usa questa etichetta secondo gli stessi principi della LDAP Identity Name.

\r\n\r\n',1046627458,NULL); -INSERT INTO international VALUES (620,'WebGUI',8,'Come il nome suggerisce, con questa funzione cancellerai un gruppo e rimuoverai tutti gli utenti da quel gruppo. Stai attento a non lasciare orfani degli utenti delle pagine alle quali avrebbero accesso cancellando un gruppo che é ancora in uso.\r\n

\r\n\r\nCome per ogni operazione di cancellazione, sei chiamato a rispondere ad una conferma per procedere con la cancellazione. Se rispondi di sì, la cancellazione procederà e non ci sarà possibilità di recuperare i dati. Se rispondi di no sarai riportato alla schermata precedente.',1046625755,NULL); -INSERT INTO international VALUES (622,'WebGUI',8,'

Avverti gli utenti sulla scadenza?
\r\nSetta su "si" se vuoi che WebGUI contatti gli utente quando è\r\nprossima la loro esclusione dal gruppo.\r\n

Offset della notifica di scadenza
\r\nLa differenza di tempo in giorni tra la scadenza/esclusione e la notifica. \r\nPuoi settarla sui ogni parametro che desideri. Per esempio settalo a\r\n"0"  se vuoi che la notifica/avviso sia inviata lo stesso giorno\r\nin cui il privilegio scade. Settalo a "-7" se vuoi che la\r\nnotifica/avviso sia inviata 7 giorni  prima che il privilegio scada.\r\nSettalo a "7" se vuoi che la notifica/avviso sia inviata 7 giorni \r\ndopo che il privilegio scada.\r\n

Messaggio di notifica/avviso della scadenza
\r\nScrivi il messaggio che vuoi spedire agli utenti per dire loro della scadenza.\r\n

Cancellazione Offset
\r\nLa differenza di tempo in giorni tra la scadenza/esclusione e la cancellazione\r\ndefinitiva dal sistema.  Puoi settarla sui ogni parametro che desideri. Per\r\nesempio settalo a "0"  se vuoi che la cancellazione avvenga lo\r\nstesso giorno in cui il privilegio scade. Settalo a "-7" se vuoi che\r\nla cancellazione avvenga 7 giorni  prima che il privilegio scada.\r\nSettalo a "7" se vuoi che la cancellazione avvenga 7 giorni  dopo\r\nche il privilegio scada.\r\n

IP Address
\r\nSpecifica un IP address o un IP mask per l\'autenticazione. Se gli  IP\r\naddress degli utenti corrispondono, saranno automaticamente inclusi nel gruppo.\r\nAn IP mask è semplicemente l\' IP address meno un octet (ottetto) o due. Puoi\r\nspecificare anche  IP masks multiple separandoli da punto-e-virgola.\r\n

IP Mask Esempio: 10.;192.168.;101.42.200.142\r\n

Soglia del Karma
\r\nSe hai abilitato il Karma, allora puoi settare questo valore. La soglia del\r\nKarma è la quantità (valore) di  karma che un utente deve possedere per\r\nessere considerato incluso nel gruppo.

\r\n

Gli Utenti possono aggiungersi autonomamente?
\r\nDesideri consentire agli utenti di aggiungersi da soli a questo gruppo? Vedi la\r\nmacro GroupAdd per maggiori informazioni.\r\n

Gli Utenti possono cancellarsi autonomamente?
\r\nDesideri consentire agli utenti di cancellarsi da soli da questo gruppo? Vedi la\r\nmacro  GroupDelete per maggiori informazioni.

\r\n

 

',1054479309,NULL); -INSERT INTO international VALUES (74,'Poll',8,'Le seguenti sono le variabili disponibili nel template sondaggio: \r\n

canVote
\r\nUna condizione che indica se l\'utente ha i diritti per votare in questo\r\nsondaggio.

\r\n

question
\r\nLa domanda del sondaggio.\r\n

form.start
\r\nL\'inizio del form per votare.\r\n

answer_loop
\r\nUn loop contenente le informazioni relative alle domande nel sondaggio.\r\n

 \r\n

\r\n answer.form
\r\n Il radio button per questa risposta.\r\n

answer.text
\r\n Il testo della risposta.\r\n

answer.number
\r\n il numero di questa risposta.  1, 2, 3, etc.\r\n

answer.graphWidth
\r\n La larghezza che avrà il grafico per questa risposta. Basata su una\r\n percentuale della dimensione totale del grafico.\r\n

answer.percent
\r\n La percentuale di voti che questa risposta ha ottenuto.\r\n

answer.total
\r\n Il numero totale di voti che questa risposta ha ricevuto.\r\n

 

\r\n
\r\nform.submit
\r\nIl bottone di invio per il form del sondaggio.\r\n

form.end
\r\nLa fine del form del sondaggio.\r\n

responses.label
\r\nL\'etichetta  per il totale delle risposte. \"Totale Voti\"\r\n

responses.total
\r\nIl numero totale di voti che sono stati effettuati in questo sondaggio.

\r\n',1054478853,NULL); -INSERT INTO international VALUES (624,'WebGUI',8,'le macro di sono utilizzate per creare contenuti dinamici all\'interno di contenuti che altrimenti sarebbero statici. per esempio, potresti voler visualizzare quale utente é attualmente logato in ogni pagina, oppure avere un menu generato dinamicamente, o ancora un crumb trail. \r\n

\r\nLe macro cominciano sempre con un carattere carat (^) , proseguono con almeno un altro carattere e finiscono con un punto e virgola (;). Alcune macro possono essere estese/configurate nel formato ^x(\"testo della configurazione\");.\r\n

\r\n

Nota: \r\n^-;,^0;,^1;,^2;,^3;, etc.
\r\nQueste macro sono riservate per funzione specifiche relative ai widgets come nel SQL report e il corpo nel gestore degli stili.',1048071547,NULL); -INSERT INTO international VALUES (623,'WebGUI',8,'Cascading Style Sheets (CSS) sono lo strumento migliore per gestire il look and feel di un web site. Sono largamente usati nel C.M.S.\r\n

\r\n\r\nQuella che segue è una lista di classi usate per gestire il look :\r\n

\r\n\r\nA
\r\nI links nello stile.\r\n

\r\n\r\nBODY
\r\nIl setup di default delle pagine nello stile.\r\n

\r\n\r\nH1
\r\nGli headers di ogni pagina.\r\n

\r\n\r\n.accountOptions
\r\nI links che appaiono in modalità login e account update forms.\r\n

\r\n\r\n.adminBar
\r\nLa barra che appare in alto quando sei amministratore del sito.\r\n

\r\n\r\n.content
\r\nLa principale area di contenuto in ogni pagina dello stile.\r\n

\r\n\r\n.formDescription
\r\nI tags su ogni forms prossimi agli elementi del form. \r\n

\r\n\r\n.formSubtext
\r\nI tags sotto alcuni elementi dei form.\r\n

\r\n\r\n.highlight
\r\nDenota un elemento in evidenza, come quale messaggio stai visualizzando in una lista.\r\n

\r\n\r\n.horizontalMenu
\r\nHorizontal menu (se stai usando una horizontal menu macro).\r\n

\r\n\r\n.pagination
\r\nIl link alla pagina precedente o successiva se stai usando il cambia pagina dopo....\r\n

\r\n\r\n.selectedMenuItem
\r\nUtilizza questa classe per evidenziare la pagina corrente in ognuno dei menu macro.\r\n

\r\n\r\n.tableData
\r\nI contenuti di elementi come forum e contributi dagli utenti.\r\n

\r\n\r\n.tableHeader
\r\nHead delle colonne di elementi come forum e contributi dagli utenti.\r\n

\r\n\r\n.tableMenu
\r\nIl menu di elementi come forum e contributi dagli utenti.\r\n

\r\n\r\n.verticalMenu
\r\nVertical menu (se stai utilizzando una vertical menu macro).\r\n

\r\n\r\nNote: Alcuni elementi e macro hanno il proprio stile univoco, che è documentato nello specifico file di help.\r\n\r\n',1046622652,NULL); -INSERT INTO international VALUES (621,'WebGUI',8,'Gli stili del C.M.S. sono abilitati alle macro. Vedi Usare le Macros per maggori informazioni.\r\n

\r\n\r\nNome dello stile
\r\nUn nome univoco che descriva come appare lo stile in una parola. Il nome non ha effetto sulla visualizzazione dello stile.\r\n

\r\n\r\nBody
\r\nBody rappresenta la visualizzazione del tuo sito. Copia il tuo codice HTML e incollalo nello spazio apposito. \r\n

\r\n\r\nMolte persone aggiungeranno macro del C.M.S. ai loro body per automatizzare la navigazione, e per altre funzionalità.\r\n

\r\nEsiste una macro particolare, questa ^-; che dovrai necessariamente posizionare nella parte del body in cui vuoi che venga inserito il contenuto. Non dimenticare di mettere la macro ^AdminBar per visualizzare le funzioni amministrative.\r\n\r\n

\r\n\r\nStyle Sheet
\r\nMetti il codice del tuo foglio di stile qui. Gli Style sheets, o fogli di stile sono usati per controllare colori, dimensioni e altre proprietà degli elementi del tuo sito. Vedi Usare gli Style Sheets per maggiori informazioni.\r\n

\r\n\r\nUtenti avanzati: per una maggior performance create gli style sheet sul file system (chiamateli tipo tuosito.css) e aggiungete in questa area un link come questo: \r\n<link href=\"/tuosito.css\" rel=\"stylesheet\" rev=\"stylesheet\" type=\"text/css\">',1046622576,NULL); -INSERT INTO international VALUES (71,'USS',8,'I sistemi di contribuzione da parte degli utenti sono un ottimo modo di aggiungere un senso di community su ogni sito, e anche un modo di ottenere contenuti gratuitamente dagli utenti.\r\n

\r\nTemplate principale
\r\nselezione un layout per questo Sistema di Contributi degli Utenti

\r\nFiltra il contenuto
\r\nSeleziona il livello di filtraggio del contenuto che vuoi effettuare su tutti i messaggi.

\r\nTemplate di inserimento
\r\nselezione un layout per l\'interfaccia di sottomissione contributi

\r\nChi può approvare?
\r\nChe gruppo é abilitato ad approvare e rifiutare i contenuti?\r\n

\r\nChi può contribuire?
\r\nQuale gruppo é abilitato ad aggiungere contenuto?\r\n

\r\nContributi per pagina
\r\nQuanti contributi vuoi visualizzare per pagina nell\'indice dei contenuti?\r\n

\r\nStato predefinito
\r\nI contributi vengono settati a Approvato, Pendente, o Respinto per default?\r\n

\r\nNote: Se metti lo stato predefinito a Pendente, sii preparato a guardare spesso nel log messaggi per i nuovi contributi.\r\nVisualizza thumbnails?
\r\nSe c\'è unna immagine nella discussione la thumbnail sarà visualizzata nel\r\nLayout .

\r\n

Consenti Discussioni?
\r\nDesideri allegare una discussione a questo sistema di contributi ? Se lo fai,\r\nogni utente potrà commentare ogni discussione. \r\n

Chi può postare?
\r\nQuale gruppo può postare su questa discussione?\r\n

\r\nModifica Timeout
\r\nQuesto settaggio specifica per quanto tempo un utente avrà la possibilità di modificare il proprio messaggio. Il Timeout é misurato in ore.\r\n

\r\nNota: Non settare questo limite troppo alto. Una delle cose più interessanti dei Forum é che sono una registrazione accurata di una discussione. Se consenti di modificare i messaggi per molto tempo, l\'utente avrà la possibilità di cambiare idea molto tempo dopo che il pensiero originale era stato espresso.\r\n\r\n\r\n 

\r\n

Karma Per Post
\r\nQuanto karma deve essere assegnato all\'utente quando posta  su questa\r\ndiscussione?

\r\n

\r\nChi può moderare?
\r\nQuale gruppo può moderare su questa discussione?

\r\n

Tipo di moderazione?
\r\nPuoi selezionare il tipo di moderazione che preferisci. Dopo-il-fatto\r\nsignifica che quando un utente invia un messaggio questo viene pubblicato\r\nimmediatamente. Preventiva significa che un moderatore deve visionare ed\r\napprovare i messaggi prima che essi siano resi pubblicamente visibili. Gli\r\navvisi per i nuovi messaggi sono automaticamente visualizzati nel WebGUI Inbox\r\ndel moderatore.\r\n

Nota: In entrambi i tipi di moderazione il moderatore può sempre\r\nmodificare o cancellare i messaggi inviati.

\r\n\r\n

Aggiungi data di modifica nei post?
\r\nVuoi aggiungere la data di modifica nei messaggi così da sapere cosa è stato modificato e quando?',1048257886,NULL); -INSERT INTO international VALUES (74,'MessageBoard',8,'Questo è l\'elenco delle variabili di template disponibili per i template dei\r\nForum.\r\n

canPost
\r\nUna condizione che indica se un utente può aggiungere un nuovo messaggio.\r\n

post.url
\r\nLa  URL per aggiungere un nuovo messaggio.\r\n

post.label
\r\nL\'etichetta tradotta per il link da cui postare.\r\n

search.url
\r\nLa URL per cercare in questo forum.\r\n

search.label
\r\nL\'etichetta tradotta per il link al  search engine.\r\n

subject.label
\r\nL\'etichetta tradotta per  la colonna Oggetto.\r\n

user.label
\r\nL\'etichetta tradotta per  la colonna Utente\r\n

date.label
\r\nL\'etichetta tradotta per  la colonna Data.\r\n

views.label
\r\nL\'etichetta tradotta per  la colonna Visualizzato.\r\n

replies.label
\r\nL\'etichetta tradotta per  la colonna Risposte.\r\n

last.label
\r\nL\'etichetta tradotta per  la colonna Ultima Risposta\r\n

message_loop
\r\nUn ciclo che contiene ogni messaggio.\r\n

\r\n last.url
\r\n La URL all\'ultima risposta a questo messaggio.\r\n

last.subject
\r\n L\'oggetto dell\'ultima risposta a questo messaggio.\r\n

last.username
\r\n Il Nome Utente di chi  ha postato l\'ultima risposta a questo messaggio.\r\n

last.userProfile
\r\n La URL  al profilo dell\'utente che ha postato l\'ultima risposta a questo\r\n messaggio.\r\n

last.date
\r\n La data in cui l\'ultima risposta a questo messaggio è stata inviata.\r\n

message.subject
\r\n L\'oggetto di questo messaggio.\r\n

message.date
\r\n La data in cui questo messaggio è stato postato.\r\n

message.user
\r\n L\'utente che ha postato questo messaggio.\r\n

message.views
\r\n Le visualizzazioni che questo messaggio ha ricevuto.\r\n

message.replies
\r\n Il numero di risposte a questo thread.\r\n

message.url
\r\n La URL per visualizzare questo messaggio.\r\n

message.currentUser
\r\n Una condizione che indica se l\'utente attuale è lo stesso che ha postato\r\n questo messaggio.\r\n

message.status
\r\n Lo stato di questo messaggio (pendente, approvato, rifiutato).\r\n

 

\r\n
\r\n

firstPage
\r\nUn Link alla prima pagina dell\'impaginazione.\r\n

lastPage
\r\nUn Link all\'ultima pagina dell\'impaginazione.\r\n

nextPage
\r\nUn Link alla prossima pagina dell\'impaginazione.\r\n

previousPage
\r\nUn Link alla prossima pagina dell\'impaginazione.\r\n

pageList
\r\nUna lista di link a tutte le pagine dell\'impaginazione del calendario.\r\n

multiplePages
\r\nUna variabile che indica dove esiste più di una pagina nell\'impaginazione.

\r\n',1046621598,NULL); -INSERT INTO international VALUES (75,'USS',8,'Questo è l\'elenco delle variabili di template disponibili per i template del\r\nSistema di contributi degli Utenti.\r\n

readmore.label
\r\nL\'etichetta tradotta che indica che l\'utente può cliccare per "leggere di\r\npiù".\r\n

responses.label
\r\nL\'etichetta tradotta che indica che l\'utente può cliccare per visualizzare le\r\nrisposte a questo post.

\r\n

canPost
\r\nUna condizione che indica se un utente può aggiungere un nuovo contributo.\r\n

post.url
\r\nLa  URL per aggiungere un nuovo contributo.\r\n

post.label
\r\nL\'etichetta tradotta per il link da cui postare.\r\n

search.label
\r\nL\'etichetta tradotta per il link al  search engine.\r\n

search.url
\r\nLa URL per settare on/off    form di ricerca.\r\n

search.form
\r\nIl form di ricerca di WebGUI.\r\n

title.label
\r\nL\'etichetta tradotta per  la colonna Titolo.\r\n

thumbnail.label
\r\nL\'etichetta tradotta per  la colonna Thumbnail.\r\n

date.label
\r\nL\'etichetta tradotta per  la colonna Data.\r\n

by.label
\r\nL\'etichetta tradotta che indica da chi è stato inviato il contributo.\r\n

submissions_loop
\r\nUn ciclo che contiene ogni contributo.\r\n

\r\n submission.id
\r\n Un identificatore unico per questo contributo.\r\n

submission.url
\r\n La URL per visualizzare questo contributo.\r\n

submission.content
\r\n Il testo abbreviato del contenuto di questo contributo.\r\n

submission.responses
\r\n Il numero di risposte a questo contributo.\r\n

submission.title
\r\n Il titolo per questo contributo.\r\n

submission.userId
\r\n La User Id dell\'utente che ha inviato questo contributo.\r\n

submission.username
\r\n Il nome utente della persona che ha inviato questo contributo\r\n

submission.status
\r\n Lo stato di questo contributo (approvato, pendente, rifiutato).\r\n

submission.thumbnail
\r\n Il thumbnail dell\'imagine caricata con questo contributo (se esiste).\r\n

submission.date
\r\n La data in cui è stato inviato il contributo.\r\n

submission.currentUser
\r\n Una condizione che indica se l\'utente attuale è lo stesso che ha inviato\r\n questo contributo.\r\n

submission.userProfile
\r\n La URL al profilo dell\'utente che ha inviato questo contributo.\r\n

submission.secondColumn
\r\n Una condizione che indica se questo contributo appartiene o no alla seconda\r\n colonna in un layout multi-colonna.\r\n

submission.thirdColumn
\r\n Una condizione che indica  contributo appartiene o no alla terza colonna\r\n in un layout multi-colonna.\r\n

submission.fourthColumn
\r\n Una condizione che indica  contributo appartiene o no alla quarta colonna\r\n in un layout multi-colonna.\r\n

submission.fifthColumn
\r\n Una condizione che indica contributo appartiene o no alla quinta colonna in un\r\n layout multi-colonna.\r\n

 

\r\n
\r\n

firstPage
\r\nUn Link alla prima pagina dell\'impaginazione.\r\n

lastPage
\r\nUn Link all\'ultima pagina dell\'impaginazione.\r\n

nextPage
\r\nUn Link alla prossima pagina dell\'impaginazione.\r\n

previousPage
\r\nUn Link alla prossima pagina dell\'impaginazione.\r\n

pageList
\r\nUna lista di link a tutte le pagine dell\'impaginazione del calendario.\r\n

multiplePages
\r\nUna variabile che indica dove esiste più di una pagina nell\'impaginazione.

\r\n',1046620693,NULL); -INSERT INTO international VALUES (637,'WebGUI',8,'Nome
\r\nIl nome dell\'utente.\r\n

\r\n\r\nSecondo Nome
\r\nIl secondo nome dell\'utente.\r\n

\r\n\r\nCognome
\r\nIl cognome dell\'utente.\r\n

\r\n\r\nIndirizzo Email
\r\nIndirizzo email dell\' utente. Deve essere inserito se l\' utente vuole utilizzare le funzioni che richiedono l\' email.\r\n

\r\n\r\n\r\nLingua
\r\nQuale lingua deve essere usata dal sistema per mostrare messaggi e indici.\r\n

\r\n\r\nICQ UIN
\r\nICQ UIN è \" ID numero utente\" sul network ICQ. ICQ è una tra le più popolari piattaforme di instant messaging.\r\n\r\n\r\nNota: Puoi inserire tutti le categorie e i campi che desideri, puoi senderli obbligatori o meno. Nella gersione profilo troverai configurati quelli di default nella distribuzione di WebGUI.\r\n\r\n',1046619284,NULL); -INSERT INTO international VALUES (618,'WebGUI',8,'\r\nSMTP Server
\r\nQuesto é l\'indirizzo del tuo mail server locale. E\' necessario per tutte le funzionalità che coinvolgono la posta internet (come la funzione di recupero password).

\r\n\r\nEmail footer
\r\nQuesto footer sarà processato per le macro e allegato ad ogni email inviata da questa istanza di WebGUI.\r\n

\r\nAvverti quando c\'è un nuovo utente?
\r\nQualcuno deve essere avvisato se un nuovo utente si registra anonimamente?\r\n

\r\nGruppo da avvertire quando c\'è un nuovo utente?
\r\nQuale gruppo deve essere avvisato se un nuovo utente si registra anonimamente?\r\n

\r\n\r\n',1046556120,NULL); -INSERT INTO international VALUES (617,'WebGUI',8,'I Settaggi sono opzioni che ti consentono di aggiustare il C.M.S. per i tuoi particolari bisogni.\r\n

\r\n\r\n\r\nModifica informazioni sull\'azienda
\r\nInformazioni specifiche riguardo l\'azienda o l\'individuo che controlla questa installazione del C.M.S. .\r\n

\r\n\r\nModifica i settaggi dei contenuti
\r\nSettaggi correlati a contenuti e alla loro gestione.\r\n

\r\n\r\nModifica i settaggi della messaggistica
\r\nSettaggi per le email e le funzioni relative alla messaggistica.\r\n

\r\n\r\nModifica settaggi vari
\r\nTutto il resto.\r\n\r\nModifica i settaggi del profilo
\r\nDefinisce come appaioni i profili degli utenti e cosa gli utenti hanno i privilegi di modificare

\r\n\r\n\r\n\r\nModifica i settaggi per gli utenti
\r\nQuesti settaggi riguardano la identificazione degli utenti e il login, etc.\r\n

\r\n\r\n',1046555813,NULL); -INSERT INTO international VALUES (613,'WebGUI',8,'Gli utenti nel sistema sono gli account ai quali é concesso fare determinate cose. Ci sono due utenti di default: Admin e Visitor.\r\n

\r\n\r\nAdmin
\r\nAdmin é esattamente quello che ti aspetti. E\' un utente con privilegi illimitati nell\'ambiente. Se qualcosa può essere fatto, questo utente ha i diritti per farlo.\r\n

\r\n\r\nVisitor
\r\nVisitor é esattamente l\'opposto di Admin. Visitor non ha nessun diritto. Per default qualsiasi utente non loggato é visto come utente Visitor.\r\n

\r\n\r\nAggiungi un nuovo utente.
\r\nClicca qui per andare allo schermo di aggiunta utente.\r\n

\r\n\r\nCerca
\r\nPuoi cercare gli utenti basandoti sullo username o sull\'indirizzo email. Puoi anche fare delle ricerche parziali se preferisci.',1046555073,NULL); -INSERT INTO international VALUES (632,'WebGUI',8,'Puoi aggiungere wobject selezionando Aggiungi contenuto dal menu in alto a sinistra. Puoi poi editarlo cliccando sul bottone \"Modifica\" che appare proprio sopra l\'istanza di ogni wobject particolare.\r\n

Quasi tutti wobject condividono alcune proprietà:

\r\n

Wobject ID
\r\nL\'identificatore unico che WebGUI  usa per tracciare il wobject. Gli utenti\r\nnormali probabilmente non hanno bisogno di questo parametro, ma qualche utente\r\navanzato può averne bisogno per esempio applicazioni di SQL Reports.

\r\n

Titolo
\r\nQual\'é il titolo di questo articolo? Anche se non vuoi che il titolo appaia, é\r\nuna buona idea dare un titolo ai tuoi contenuti, così quando questi saranno\r\ncopiati negli appunti avranno un nome.\r\n

\r\n

Nota: dovresti sempre specificare un titolo anche se non vuoi visualizzarlo.\r\nquesto perchè il titolo viene mostrato negli appunti e nel cestino e ti sarà\r\nsicuramente utile per distinguere un wobject da un altro.
\r\n
\r\nVisualizza il titolo?
\r\nVuoi visualizzare il titolo? In alcuni siti visualizzare il titolo non è necessario.
\r\n
\r\nProcessa le macro?
\r\nVuoi processare le macro nel contenuto di questo wobject? A volte vorrai attivare l\'interpretazione delle macro. Deselezionando questo\r\nbox non processerà le macro e sarà velocizzata l\'esecuzione della pagina.
\r\n
\r\nPosizione nel template
\r\nLe posizioni nel template variano da 0 (zero) a qualsiasi numero. Quante ne sono disponibili dipende dal template associato a questa pagina. Il template di default ha solo una posizione nel template, altri possono averne di più. Selezionando una posizione nel template, stai specificando dove questo wobject sarà posizionato nella struttura del template.\r\n
\r\n
\r\nData di inizio
\r\nIn che data vuoi che questo articolo appaia sul sito? Le date sono nel formato\r\namericano MM/GG/AAAA. Puoi usare un wizard JavaScript per selezionare la data da\r\nun calendario cliccando su imposta la data. Prima di questa data i\r\ncontenuti saranno visibili solo ai content managers.
\r\n
\r\nData di fine
\r\nIn che data vuoi che questo articolo venga rimosso dal sito? Dopo questa\r\ndata  i contenuti  saranno visibili solo ai content managers.\r\n

\r\n

Proprietario
\r\nIl proprietario di un  wobject è solitamente la persona che lo ha creato.\r\nQuesto utente ha tutti i privilegi per vedere e modificare il wobject, finchè i\r\nprivilegi per modificare la pagina su cui appare  il wobject non vengono\r\nportati via.\r\n

NOTA: il proprietario può essere modificato solo dall\'amministratore.\r\n

Chi può visualizzare?
\r\nScegli quale gruppo può visualizzare questo wobject. Se desideri che possano\r\nvederlo sia i visitatori che gli utenti registrati scegli il gruppo "Everybody".\r\n

Chi può modificare?
\r\nScegli quale gruppo può modificare questo wobject. il gruppo che può\r\nmodificare può sempre anche visualizzare  il wobject.
\r\n
\r\nDescrizione
\r\nUna area di contenuto nella quale puoi mettere quanto contenuto ti pare. Per esempio, perfino prima di una FAQ c\'è di solito un paragrafo che descrive che cosa è contenuto in essa.\r\n
\r\n',1056807423,NULL); -INSERT INTO international VALUES (639,'WebGUI',8,'Nome Template
\r\nDai un nome descrittivo al template, così lo riconoscerai quando vorrai applicarlo ad una pagina.\r\n

\r\nNamespace
\r\nChe tipo di template è questo?\r\n

\r\n\r\n\r\nTemplate
\r\nCrea il tuo template inserendo i comandi di template, le macro di variabile e il codice.\r\n

\r\n\r\n\r\nNota:\r\nNon devi mai modificare i template di default che trovi nella distribuzione di WebGUI, perchè possono variare con ogni realise per introdurre nuove funzioni. Devi fare una copia del template che ti interessa e modificare quello.\r\n',1046550619,NULL); -INSERT INTO international VALUES (71,'SiteMap',8,'Le mappe del sito sono usate per aggiungere un ulteriore ausilio nella navigazione. Puoi aggiungere una mappa del sito tradizionale che visualizzi una vista gerarchica di tutte le pagine nel sito. D\'altra parte, puoi usare le mappe del sito per dare un ausilio di navigazione a certi livelli nel sito.\r\n

\r\n\r\nTemplate
\r\nSeleziona un layout per questa mappa.\r\n

\r\nParti Da
\r\nSeleziona la pagina da cui vuoi far iniziare la mappa.\r\n

\r\nPartire da questo Livello?
\r\nQuanti livelli di profondità della navigazione deve mostrare la mappa? Se è specificato 0(zero) mostrerà tutti i livelli esistenti.\r\n

\r\n\r\nRientro
\r\nDi quanti caratteri deve rientrare ogni livello?

\r\n\r\n',1046550282,NULL); -INSERT INTO international VALUES (71,'SQLReport',8,'I report SQL sono forse il più potente tra i wobject. Consentono all\'utente di eseguire query su qualsiasi database al quale abbia accesso. Questo é utile ad esempio per estrarre dati dal tuo database degli account o per creare dei sommari di\r\ntutti i forum di discussione nel sito.

\r\n\r\nPreprocessa le macro sulla quesry?
\r\nVuoi che vengano processate le macro del C.M.S.? Seleziona questo box.

Debug?
\r\n
Seleziona questo box se vuoi visualizzare il debugging e i messaggi di\r\nerrore nella pagina.

Query
\r\nQuesta é una query SQL standard. Puoi rendere più dinamiche le tue query\r\nutilizzando la macro ^FormParam(); \r\n

\r\n\r\nReport Template
\r\nScrivi qui il codice per generare il report. normalmente userai delle tabelle HTML per generarlo. Sotto é incluso un esempio. Se lasci questo campo in bianco il template sarà generato in base al risultato della query.\r\n

\r\n\r\nCi sono delle macro speciali per generare report SQL. Sono: ^-;, ^0;, ^1;, ^2;, ^3;, etc. Queste macro saranno processate comunque, a prescindere dal fatto che tu abbia deselezionato la box processa macro. La macro ^- rappresenta i punti di split nel documento dove il report comincia e finisce di fare il loop. Le macro numeriche rappresentano i dati ritornati dalla\r\nquery. C\'è una macro aggiuntiva ^rownum; che conta le righe della query\r\npartendo da 1 per usarla dove le linee del\'output devono essere numerate. \r\n\r\n

Database Link
\r\nL\'amministratore può configurare database comuni sui quali puoi eseguire report\r\nSQL, senza dover conoscere o inserire DNS, Username e Password. Se un database\r\nè selezionato da questa lista i campi  DNS, Username e Password saranno\r\nignorati.

\r\n

Se il database che devi usare non è configurato come un Database Link, puoi\r\ninserire DSN, User, e Password.\r\n

\r\n\r\n\r\nDSN
\r\nData Source Name é l\'identificatore univoco che il linguaggio PERL usa per descrivere la locazione del tuo database. La sintassi é DBI:[driver]:[database name]:[host]. \r\n

\r\n\r\nEsempio: DBI:mysql:WebGUI:localhost\r\n

\r\n\r\nUtente Database\r\nLo username che usi per collegarti al DSN.\r\n

\r\n\r\nPassword Database\r\nLa password che usi pe rcollegarti al DSN.\r\n

\r\n\r\nPagina dopo\r\nQuante righe vuoi che siano visualizzate prima di dividere il risultato in pagine separate? In altre parole, quante righe vuoi che siano visualizzate per pagina?\r\n

\r\n\r\nConverti gli a capo?\r\nVuoi convertire gli a capo nei dati del risultato in break HTML (<br>).\r\n',1056804917,NULL); -INSERT INTO international VALUES (43,'Product',8,'Le specifiche sono le caratteristiche tecniche del prodotto.

\r\n\r\nTipo della specifica
\r\n
\r\nil tipo di specifica. Per esempio altezza, larghezza, o colore. Puoi selezionarne una già inserita nel sistema per un altro prodotto, oppure inserirne una nuova.

\r\n\r\nSpecifica
\r\n
\r\nil valore della specifica. Per esempio, se hai scelto altezza come tipo dovrai inserire un valore numerico come \"12\".

\r\n\r\nUnità
\r\n
\r\nLa unità di misura per questa specifica. Per esempio, se hai scelto altezza come tipo, probabilmente dovrebbe essere \"centimetri\".

\r\n\r\nAggiungi una nuova specifica?
\r\n
\r\nSe vuoi aggiungere una ulteriore specifica, seleziona \"Si\".\r\n\r\n\r\n\r\n\r\n',1046548417,NULL); -INSERT INTO international VALUES (39,'Product',8,'Il C.M.S. comprende un sistema di gestione catalogo prodotti che consente di pubblicare facilmente e velocemente i tuoi prodotti e servizi. \r\n

\r\n

Template
\r\nSeleziona un layout per questo prodotto.

\r\n\r\nPrezzo
\r\nIl prezzo di questo prodotto. Se preferisci puoi lasciarlo vuoto oppure inserire un messaggio tipo: contattaci per informazioni.

\r\n\r\nCodice Prodotto
\r\n
\r\nIl codice del prodotto, o un identificativo del prodotto.

\r\n\r\nImmagine Prodotto 1
\r\n
\r\nUna immagine di questo prodotto.

\r\n\r\nImmagine Prodotto 2
\r\n
\r\nUna immagine di questo prodotto.

\r\n\r\nImmagine Prodotto 3
\r\n
\r\nUna immagine di questo prodotto.

\r\n

Brochure
\r\nLa brochure per questo prodotto.\r\n

Manuale
\r\nIl manuale di utilizzo per questo prodotto.\r\n

Garanzia
\r\nLa garanzia per questo prodotto.

\r\n',1046548367,NULL); -INSERT INTO international VALUES (71,'MessageBoard',8,'I Forum di discussione sono un modo efficace di aggiungere un senso di comunità ad ogni sito internet. Molte aziende usano i Forum internamente per collaborare sui progetti.\r\n

\r\nMessaggi per pagina
\r\nQuando un visitatore arriva per la prima volta su un Forum, gli sarà presentata una lista di tutti i soggetti (a.k.a. threads) del Forum. Se un Forum diventa popolare, il numero dei threads aumenterà rapidamente. L\'attributo messaggi per pagina ti consente di specificare il numero di soggetti per ogni pagina.\r\n

Main Template
\r\nSeleziona un layout visualizzazione principale di questo forum.

\r\n

Filtra i messaggi
\r\nSeleziona il livello di filtraggio da applicare ai messaggi del forum.\r\n

\r\nChi può postare?
\r\nQuale gruppo può postare su questo Forum?\r\n

\r\nModifica Timeout
\r\nQuesto settaggio specifica per quanto tempo un utente avrà la possibilità di modificare il proprio messaggio. Il Timeout é misurato in ore.\r\n

\r\nNota: Non settare questo limite troppo alto. Una delle cose più interessanti dei Forum é che sono una registrazione accurata di una discussione. Se consenti di modificare i messaggi per molto tempo, l\'utente avrà la possibilità di cambiare idea molto tempo dopo che il pensiero originale era stato espresso.\r\n\r\n\r\n 

\r\n

Karma Per Post
\r\nQuanto karma deve essere assegnato all\'utente quando posta  su questa\r\ndiscussione?

\r\n

\r\nChi può moderare?
\r\nQuale gruppo può moderare su questo Forum?

\r\n

Tipo di moderazione?
\r\nPuoi selezionare il tipo di moderazione che preferisci. Dopo-il-fatto\r\nsignifica che quando un utente invia un messaggio questo viene pubblicato\r\nimmediatamente. Preventiva significa che un moderatore deve visionare ed\r\napprovare i messaggi prima che essi siano resi pubblicamente visibili. Gli\r\navvisi per i nuovi messaggi sono automaticamente visualizzati nel WebGUI Inbox\r\ndel moderatore.\r\n

Nota: In entrambi i tipi di moderazione il moderatore può sempre\r\nmodificare o cancellare i messaggi inviati.

\r\n

Aggiungi data di modifica nei post?
\r\nVuoi aggiungere la data di modifica nei messaggi così da sapere chi ha modificato un messaggio e quando?\r\n',1048067886,NULL); -INSERT INTO international VALUES (72,'DataForm',8,'Puoi aggiungere tutti i campi che vuoi al tuo modulo dati.\r\n
\r\n\r\n
\r\n\r\nNome/Etichetta
\r\n
\r\nE\' un testo che dice all\'utente cosa questo campo rappresenta.

\r\n\r\nNome Campo
\r\n
\r\nIl nome di questo campo. Deve essere unico nell\'ambito di tutti gli altri campi del form (in pratica ogni campo deve avere un nome univoco).

\r\n\r\nSottotitolo / Subtext
\r\n
\r\nE\' una descrizione di che cosa dovrebbe essere inserito nel campo.

\r\n\r\n

Status
\r\n
\r\nI campi nascosti non saranno visibili al visitatore, ma il loro contenuto sarà spedito nel messaggio.
\r\nI campi visualizzabili possono essere visti dal visitatore, ma non modificati.
\r\nI campi modificabili possono essere compilati dal visitatore.
I campi obbligatori devono essere compilati.\r\nSe utilizzi campi nascosti o visualizzabili assicurati di aver inserito una valore di default.

\r\n

Tipo
\r\nScegli il tipo di elemento da assegnare a questo campo.

\r\n\r\nlarghezza
\r\n
\r\nInserisci il numero di caratteri per determinare la larghezza di questo campo.

\r\n\r\nAltezza
\r\n
\r\nInserisci il numero di caratteri per determinare l\'altezza. Solo per textarea e htmlarea

\r\n\r\nValori Possibili
\r\n
\r\nQuesto campo serve solo per il Menù a tendina e i checkbox. Inserisci i valori che vuoi che vengano mostrati nel Menù a tendina, uno per linea.

\r\n\r\n

Valore di Default (opzionale)
\r\n
\r\ninserisci il valore di default (se vuoi) per il campo. Per i campi si/No, inserisci \"si\" per spuntare \"si\" e \"no\" per spuntare \"No\".\r\n

\r\n\r\n\r\n\r\n',1054393491,NULL); -INSERT INTO international VALUES (71,'DataForm',8,'Questo modulo crea un form multifunzionale per inserire dati o inviare email.\r\n

\r\nRiconoscimento
\r\nQuesto messaggio sarà mostrato agli utenti dopo che avranno inserito e inviato\r\ni dati nel modulo..\r\n

Componenti eMail ?
\r\nSe settato su si, alcuni campi addizionali dedicati alle email saranno aggiunti\r\nal modulo. Questi campi poi saranno utilizzati per spedire via email\r\nall\'indirizzo scelto, tutti i dati inseriti nel modulo.\r\n

NOTA: Il campo "A" può accettare un indirizzo email\r\nstandard , un nome utente di WebGUI  o un nome gruppo di WebGUI.\r\n

Template
\r\nScegli un template per il tuo modulo.\r\n

Email Template
\r\nScegli un template per i dati che saranno spediti via email.\r\n

Template di Riconoscimento
\r\nScegli un template che sarà utilizzato per mostrare il messaggio di\r\nriconoscimento di avvenuto inserimento.\r\n

Template Lista Dati
\r\nScegli un template che sarà utilizzato per mostrare l\'elenco dei dati\r\narchiviati in questo Modulo Dati.

\r\n',1054393304,NULL); +INSERT INTO international VALUES (15,'IndexedSearch',2,'Alle Seiten',1066925603,NULL); +INSERT INTO international VALUES (16,'IndexedSearch',2,'Suche starten!',1066925622,NULL); +INSERT INTO international VALUES (17,'IndexedSearch',2,'Suchen',1066925643,NULL); +INSERT INTO international VALUES (2,'IndexedSearch',2,'Es wurde kein Index erstellt! Starten Sie zuerst das Script \"buildindex.pl\".',1066925703,NULL); +INSERT INTO international VALUES (14,'IndexedSearch',2,'Hervorhebungsfarbe',1066925591,NULL); +INSERT INTO international VALUES (13,'IndexedSearch',2,'Ergebnisse farbig hervorheben?',1066925550,NULL); +INSERT INTO international VALUES (11,'IndexedSearch',2,'Seitenumbruch nach',1066925284,NULL); +INSERT INTO international VALUES (10,'IndexedSearch',2,'Nur Ergebnisse vom Typ',1066925261,NULL); +INSERT INTO international VALUES (1,'IndexedSearch',2,'Die Tabelle Search_docInfo kann nicht geöet werden.',1066925177,NULL); +INSERT INTO international VALUES (25,'IndexedSearch',1,'Any user',1066766053,''); +INSERT INTO international VALUES (24,'IndexedSearch',1,'Any language',1066766053,''); +INSERT INTO international VALUES (23,'IndexedSearch',1,'Any Content Type',1066766053,'Any type of content'); +INSERT INTO international VALUES (21,'IndexedSearch',1,'Content',1066765681,'Collective term for Wobjects, Pages and Wobject details.'); +INSERT INTO international VALUES (71,'EventsCalendar',8,'I calendari di eventi sono usati in molte intranet per tenere traccia di date interne che coinvolgono l\'intera organizzazione. I calendari di eventi sono anche, su siti per la clientela, un buon modo per informare i clienti su quali eventi si stanno realizzando o su che promozioni sono attualmente in corso.\r\n

\r\nTemplate principale
\r\nSeleziona un template questo calendario eventi?\r\n

\r\nTemplate evento
\r\nSeleziona un template per il singolo evento dentro al calendario\r\n

Mese di inzio
\r\nScegli il mese di inizio per il calendario. Se selezioni "Corrente" il\r\ncalendario partirà sempre dal mese corrente, percui ogni mese cambierà. Se\r\nselezioni "Primo nel Calendario" partirà con la prima data\r\ndisponibile nel calendario.
\r\n
\r\nMese di fine
\r\nScegli il mese di fine per il calendario. Se selezioni "Mostra X mesi\r\ndall\'inizio", solo X mesi di informazioni saranno mostrate. Se selezioni\r\n"corrente" il calendario finirà nel mese in cui sei. Se selezioni\r\n"ultimo nel calendario" allora terminerà alla data dell\'ultimo\r\ninserimento nel calendario.
\r\n
\r\nDefault Month
\r\nSeleziona con quale mese il calendario dovrà partire quando un visitatore entra\r\nnella pagina che lo contiene.

\r\n\r\nE\' master?
\r\nSe settato su si allora questo calendario visualizzerà gli eventi di tutti i calendari del sistema.

\r\n\r\nCambio pagina dopo
\r\nQuando si usa il layout a lista, quanti eventi vuoi che vengano visualizzati per ogni pagina?\r\n

\r\nContinua aggiungendo un evento?
\r\nLascia questo box selezionato se vuoi aggiungere eventi al calendario direttamente dopo averlo\r\ncreato.\r\n

\r\n

\r\nNota: Gli eventi che sono già accaduti non sono visualizzati nel calendario eventi.\r\n

\r\n',1068899822,NULL); +INSERT INTO international VALUES (73,'Article',8,'Queste sono le variabili di template disponibili per i template articolo.\n

new.template
\nGli articoli hanno la possibilità di cambiare il proprio template di\nvisualizzazione, in modo che tu possa consentire agli utenti di vederlo con\nvisualizzazioni diverse. Puoi fare questo creando un con un URL come questo (sostituisci\n999 con il template Id che vuoi usare):\n

<a href="<tmpl_var new.template>999">leggi di più...</a>\n

description.full
\nLa descrizione (testo) completa senza nessuna impaginazione.\n

description.first.100words
\nLe prime 100 parole della descrizione. Le parole sono definite come caratteri separati da\nspazi vuoti, quindi le entità HTML e i  tags si considerano come parole.\n

description.first.75words
\nLe prime 75 parole della descrizione. Le parole sono definite come caratteri separati da\nspazi vuoti, quindi le entità HTML e i  tags si considerano come parole.\n

description.first.50words
\nLe prime 50 parole della descrizione. Le parole sono definite come caratteri separati da\nspazi vuoti, quindi le entità HTML e i  tags si considerano come parole.\n

description.first.25words
\nLe prime 25 parole della descrizione. Le parole sono definite come caratteri separati da\nspazi vuoti, quindi le entità HTML e i  tags si considerano come parole.\n

description.first.10words
\nLe prime 10 parole della descrizione. Le parole sono definite come caratteri separati da\nspazi vuoti, quindi le entità HTML e i  tags si considerano come parole.\n

description.first.paragraph
\nIl primo paragrafo della descrizione. Il primo paragrafo è determinato dal\nprimo "a capo" trovato nel testo.\n

description.first.2paragraphs
\nI primi 2 paragrafi della descrizione. Un paragrafo è determinato contando gli\n"a capo" trovati nel testo.\n

description.first.sentence
\nLa prima frase nella descrizione. Una frase è determinata contando i periodi\ntrovati nel testo.\n

description.first.2sentences
\nLe prime 2 frasi nella descrizione. Una frase è determinata contando i periodi\ntrovati nel testo.\n

description.first.3sentences
\nLe prime 3 frasi nella descrizione. Una frase è determinata contando i periodi\ntrovati nel testo.\n

description.first.4sentences
\nLe prime 4 frasi nella descrizione. Una frase è determinata contando i periodi\ntrovati nel testo.

\n

attachment.box
\nVisualizza un box per allegato standard di WebGUI che include icona, nome file e\nindicatore allegato.\n

attachment.icon
\nLa URL all\'icona per questo tipo di allegato.\n

attachment.name
\nIl nome del file per questo allegato.\n

attachment.url
\nLa URL per scaricare questo allegato.\n

image.thumbnail
\nLa URL al thumbnail per l\'immagine allegata.\n

image.url
\nLa URL per l\'immagine allegata.\n

post.label
\nL\'etichetta tradotta per aggiungere un commento a questo articolo.\n

post.URL
\nLa URL per aggiungere un commento a questo articolo.\n

replies.count
\nil numero di commenti allegati a questo articolo.\n

replies.label
\nL\'etichetta tradotta che indica che tu puoi vedere le risposte.\n

replies.url
\nLa URL per visualizzare le risposte a questo articolo.

\n

firstPage
\nUn Link alla prima pagina dell\'impaginazione.\n

lastPage
\nUn Link all\'ultima pagina dell\'impaginazione.\n

nextPage
\nUn Link alla prossima pagina dell\'impaginazione.\n

previousPage
\nUn Link alla precedente pagina dell\'impaginazione.\n

pageList
\nUn Link all\'ultima pagina dell\'impaginazione\n

multiplePages
\nUna variabile che indica dove esiste più di una pagina nell\'impaginazione.\n

isFirstPage
\nUna variabile che indica se il visitatore sta vedendo la prima pagina.\n

isLastPage
\nUna variabile che indica se il visitatore sta vedendo l\'ultima pagina.

\n',1054313755,NULL); +INSERT INTO international VALUES (1088,'WebGUI',1,'The following template variables are available in the survey\'s gradebook report:\r\n

\r\n\r\ntitle
\r\nThe default title of the report.\r\n

\r\n\r\nquestion.count
\r\nThe number of questions in the survey.\r\n

\r\n\r\nresponse.user.label
\r\nThe default label for response.user.name.\r\n

\r\n\r\nresponse.count.label
\r\nThe default label for response.count.correct.\r\n

\r\n\r\nresponse.percent.label
\r\nThe default label for response.percent.\r\n

\r\n\r\nresponse_loop
\r\nA loop containing a list of responses.\r\n

\r\n\r\n

\r\n\r\nresponse.url
\r\nThe URL to view this response.\r\n

\r\n\r\nresponse.user.name
\r\nThe username of the user that gave this response.\r\n

\r\n\r\nresponse.count.correct
\r\nThe total number of questions that this user got correct.\r\n

\r\n\r\nresponse.percent
\r\nThe percentage of correct questions.\r\n

\r\n\r\n\r\n\r\n\r\n

',1078513217,NULL); +INSERT INTO international VALUES (71,'Article',8,'Gli Articoli sono il coltellino svizzero del C.M.S. . La maggior parte dei contenuti statici possono essere aggiunte mediante il wobject articolo.\r\n

\r\nNOTA: Puoi creare un articolo suddiviso su più pagine mettendo la macro (^-;)separator in vari punti dell\'articolo. \r\n

\r\nTemplate
\r\nSeleziona un  template per il layout del tuo articolo.\r\n

\r\nImmagine
\r\nScegli una immagine (.jpg, .gif, .png) dal tuo disco fisso. Questo file sarà uploadato sul server e visualizzato in alto nel tuo articolo nella posizione che scegli nella box di allineamento (sinistra-centro-destra).\r\n

\r\nTitolo del link
\r\nSe vuoi aggiungere un link al tuo articolo, metti qui il titolo del link. \r\n

\r\nEsempio: Google\r\n

\r\nURL del Link
\r\nSe ha aggiunto un titolo di link, adesso aggiungi la URL (uniform resource locator) in questo campo. \r\n

\r\nEsempio: http://www.google.com\r\n

\r\nAllegato
\r\nSe vuoi allegare un file word, zip o qualsiasi altro file scaricabile dagli utenti, sceglilo dal tuo disco fisso.\r\n

\r\nConverti gli \'a capo\'?
\r\nSe pubblichi in HTML, generalmente non c\'é bisogno di selezionare questa opzione, ma se non stai usando HTML e vuoi un a capo ogni volta che schiacci il tasto \"Invio\" , allora seleziona questa opzione.\r\n

Consenti  discussioni?
\r\nSelezionando questo box abiliterai la possibilità di inviare commenti\r\nall\'articolo.\r\n

Filtra i Messaggi
\r\nSeleziona il livello di filtraggio di contenuto da eseguire sui messaggi della discussione.\r\n',1068900404,NULL); +INSERT INTO international VALUES (1062,'WebGUI',8,'Template di notifica del forum',1068900264,NULL); +INSERT INTO international VALUES (1063,'WebGUI',8,'Queste sono le variabili disponibili nel template di notifica del forum.\r\n

notify.subscription.message
\r\nun messaggio che attesta che l\'utente sta ricevendo il messaggio  perchè\r\nha sottoscritto il forum o il thread.\r\n

NOTA: Il template di notifica  include anche tutte le variabili\r\ndel post template.

\r\n',1068900226,NULL); +INSERT INTO international VALUES (1064,'WebGUI',8,'Invia un messaggio',1068899992,NULL); +INSERT INTO international VALUES (1060,'WebGUI',8,'Forum Thread Template',1068899948,NULL); +INSERT INTO international VALUES (1058,'WebGUI',8,'Forum Post Template',1068899910,NULL); +INSERT INTO international VALUES (1065,'WebGUI',8,'Forum Post Form Template',1068899016,NULL); +INSERT INTO international VALUES (1067,'WebGUI',8,'Template cerca del forum',1068898989,NULL); +INSERT INTO international VALUES (1069,'WebGUI',8,'Host da usare',1068898946,NULL); +INSERT INTO international VALUES (1070,'WebGUI',8,'Config Sitename',1068898923,NULL); +INSERT INTO international VALUES (1071,'WebGUI',8,'Env HTTP Host',1068898901,NULL); +INSERT INTO international VALUES (1056,'WebGUI',8,'Forum Template',1068898872,NULL); +INSERT INTO international VALUES (1054,'WebGUI',8,'proprità Forum (discussione)',1068898838,NULL); +INSERT INTO international VALUES (1053,'WebGUI',8,'Gestisci Sostituzioni',1068898803,NULL); +INSERT INTO international VALUES (63,'Product',8,'La lista delle specifiche associate a questo prodotto.\n
\n specification.controls
\n I controlli di gestione di WebGUI  per questa specifica.\n

specification.specification
\n Il testo stesso della specifica.\n

specification.units
\n L\'unità di misura per questa specifica. ex: metri\n

specification.label
\n L\'etichetta per questa specifica. ex: altezza\n

 

\n
\n

addaccessory.url
\nLa URL per aggiungere un accessorio a questo prodotto.\n

addaccessory.label
\nL\'etichetta tradotta per il link per aggiungere un accessorio.\n

accessory_loop
\nQuesto ciclo contiene tutti gli accessori associati  a questo prodotto.\n

\n accessory.url
\n La URL all\'accessorio linkato.\n

accessory.title
\n Il titolo dell\'accessorio linkato.\n

accessory.controls
\n I controlli di gestione di WebGUI  per questo accessorio.\n

 

\n
\n

addRelatedProduct.url
\nla URL per aggiungere un prodotto correlato a questo prodotto.\n

addRelatedProduct.label
\nL\'etichetta tradotta per il link per aggiungere un prodotto correlato .\n

relatedproduct.url
\nLa URL al prodotto linkato.\n

relatedproduct.title
\nIl titolo del prodotto linkato.\n

relatedproduct.controls
\nI controlli di gestione di WebGUI  per questo prodotto correlato.

\n\n',1046628858,NULL); +INSERT INTO international VALUES (607,'WebGUI',8,'Registrazione Anonima
\nVuoi abilitare i visitatori a registrarsi da soli al sito?\n

Esegui su Registrazione
\nSe qui inserisci una linea di comando, sarà eseguita ogni volta che un utente\nsi registra.

\n

Abilita Karma?
\nVuoi abilitare la funzione Karma?

\n

Karma per Login
\nLa quantità di  Karma che viene accreditato ad ogni utente quando effettua\nil login. Ha effetto solo se il karma è abilitato.

\n

\n\n\nSession Timeout
\nIl tempo (in secondi) che una sessione utente rimane attiva (prima che sia necessario un nuovo login). Il timeout si azzera ogni volta che si clicca una pagina. Quindi se setti il timeout per 8 ore, un utente dovrà rifare il log in non ha visitato il sito the site da 8 ore.

\n

\n\nConsenti agli utenti di disattivare i propri account?
\nConsenti ai tuoi utenti di disattivare i propri account senza un tuo intervento?
\n
\nMetodo di autenticazione (default)
\nQuale dovrebbe essere il metodo di autenticazione predefinito per i nuovi account creati? I due metodi possibili sono WebGUI e LDAP. L\'autenticazione WebGUI significa che gli utenti si autenticheranno in base alle informazioni conservate nel database. L\'autenticazione LDAP significa che gli utenti si autenticheranno in base ad un server LDAP sesterno.\n

\nNota: I settaggi di autenticazione possono essere personalizzati utente per utente.\n

WebGUI Authentication Options

\nInvia un messaggio di benvenuto?
\nDesideri che WebGUI automaticamente invii un messaggio di benvenuto all\'utente\nquando si registra?\n

NOTA: In aggiunta al tuo messaggio saranno incluse  anche le\ninformazioni sull\'account.

Messaggio di Benvenuto
\nScrivi il messaggio che vuoi che venga inviato all\'utente quando si registra.

Recupera\nPassword - Messaggio
\nScrivi il messaggio che vuoi che venga inviato agli utenti se cercano di\nrecuperare la loro password di WebGUI .

\n

\n\n \n\n

LDAP Authentication Options

\n

\nLDAP URL (default)
\nLa URL di default del server LDAP. La URL LDAP é nella forma ldap://[server]:[port]/[base DN]. Esempio:\nldap://ldap.mycompany.com:389/o=MyCompany.\n

LDAP Identity
\nLa LDAP è l\'identificatore unico nel LDAP server con cui l\'utente sarà\nidentificato. Spesso questo campo è un shortname, che prende la forma\ndella  iniziale del nome  + il cognome. Esempio: mrossi. Per questo se\nspecifichi la LDAP identity per essere un  shortname allora Mario\nRossi  dovrà inserire  mrossi durante il processo di\nregistrazione.
\n
\nLDAP Identity Name
\nL\'etichetta utilizzata per descrivere LDAP Identity all\'utente. Per esempio,\nalcune aziende usano un LDAP server per autenticare i loro utenti con proxy\nserver. Nella documentazione fornita ai propri utenti, la LDAP identity è\nconosciuta come la loro Web Username. Quindi per coerenza puoi inserire\nquesta etichetta.
\n
\nLDAP Password Name
\nCome per LDAP Identity Name è una etichetta , così lo è la LDAP Password\nName. Usa questa etichetta secondo gli stessi principi della LDAP Identity Name.

\n\n',1046627458,NULL); +INSERT INTO international VALUES (876,'WebGUI',8,'Visualizza le iscrizioni ai thread.',1045776481,NULL); +INSERT INTO international VALUES (620,'WebGUI',8,'Come il nome suggerisce, con questa funzione cancellerai un gruppo e rimuoverai tutti gli utenti da quel gruppo. Stai attento a non lasciare orfani degli utenti delle pagine alle quali avrebbero accesso cancellando un gruppo che é ancora in uso.\n

\n\nCome per ogni operazione di cancellazione, sei chiamato a rispondere ad una conferma per procedere con la cancellazione. Se rispondi di sì, la cancellazione procederà e non ci sarà possibilità di recuperare i dati. Se rispondi di no sarai riportato alla schermata precedente.',1046625755,NULL); +INSERT INTO international VALUES (622,'WebGUI',8,'

Vedi Gestisci Gruppi per una descrizione delle funzioni dei gruppi e dei\r\ngruppi di default

\r\n

Nome gruppo
\r\nUn nome per il gruppo. il meglio è un nome descrittivo così sai di che gruppo\r\nsi tratta.\r\n

Descrizione
\r\nUna descrizione del gruppo che consenta agli altri admins e content managers di\r\ncapire di che gruppo si tratta e i propositi dello stesso.\r\n

Expire Offset
\r\nLa quantità di tempo in cui gli utenti apparterranno a questo gruppo prima di\r\n"scadere" o essere cancellati. E\' molto utile in un sito i cui utenti\r\nhanno dei privilegi solo per un periodo di tempo quantificato \r\n

NOTE: Questo può essere bypassato da una base  per-utente.

\r\n

Avverti gli utenti sulla scadenza?
\r\nSetta su "si" se vuoi che WebGUI contatti gli utente quando è\r\nprossima la loro esclusione dal gruppo.\r\n

Offset della notifica di scadenza
\r\nLa differenza di tempo in giorni tra la scadenza/esclusione e la notifica. \r\nPuoi settarla sui ogni parametro che desideri. Per esempio settalo a\r\n"0"  se vuoi che la notifica/avviso sia inviata lo stesso giorno\r\nin cui il privilegio scade. Settalo a "-7" se vuoi che la\r\nnotifica/avviso sia inviata 7 giorni  prima che il privilegio scada.\r\nSettalo a "7" se vuoi che la notifica/avviso sia inviata 7 giorni \r\ndopo che il privilegio scada.\r\n

Messaggio di notifica/avviso della scadenza
\r\nScrivi il messaggio che vuoi spedire agli utenti per dire loro della scadenza.\r\n

Scratch Filter
\r\nUn utente può essere dinamicamente indirizzato ad un gruppo tramite una\r\nvariabile scratch nella sessione. La variabile scratch può essere settata\r\nprogrammaticamente o via web. Per settare una variabile scratch via web\r\naggancia  ciò che segue  alla fine di oogni url:\r\n

?op=setScratch&scratchName=qualchenome&scratchValue=qualchevalore\r\n

Facendo questo, quando un utente clicca sul quel link avrà una variabile\r\nscratch aggiunta alla sua sessione con un nome di  www_qualchenome e un\r\nvalore di "qualchevalore" . Il "www_" è predisposto per\r\nprevenire richieste web sovrascritte  da variabili scratch settate\r\nprogrammaticamente.\r\n

Per settare uno scratch filter aggiungi una riga al campo scratch filter\r\nsimile a questa:\r\n

www_qualchenome=qualchevalore

\r\n

Cancellazione Offset
\r\nLa differenza di tempo in giorni tra la scadenza/esclusione e la cancellazione\r\ndefinitiva dal sistema.  Puoi settarla sui ogni parametro che desideri. Per\r\nesempio settalo a "0"  se vuoi che la cancellazione avvenga lo\r\nstesso giorno in cui il privilegio scade. Settalo a "-7" se vuoi che\r\nla cancellazione avvenga 7 giorni  prima che il privilegio scada.\r\nSettalo a "7" se vuoi che la cancellazione avvenga 7 giorni  dopo\r\nche il privilegio scada.\r\n

IP Address
\r\nSpecifica un IP address o un IP mask per l\'autenticazione. Se gli  IP\r\naddress degli utenti corrispondono, saranno automaticamente inclusi nel gruppo.\r\nAn IP mask è semplicemente l\' IP address meno un octet (ottetto) o due. Puoi\r\nspecificare anche  IP masks multiple separandoli da punto-e-virgola.\r\n

IP Mask Esempio: 10.;192.168.;101.42.200.142\r\n

Soglia del Karma
\r\nSe hai abilitato il Karma, allora puoi settare questo valore. La soglia del\r\nKarma è la quantità (valore) di  karma che un utente deve possedere per\r\nessere considerato incluso nel gruppo.

\r\n

Gli Utenti possono aggiungersi autonomamente?
\r\nDesideri consentire agli utenti di aggiungersi da soli a questo gruppo? Vedi la\r\nmacro GroupAdd per maggiori informazioni.\r\n

Gli Utenti possono cancellarsi autonomamente?
\r\nDesideri consentire agli utenti di cancellarsi da soli da questo gruppo? Vedi la\r\nmacro  GroupDelete per maggiori informazioni.

\r\n

Database Link
\r\nSe desideri validare questo gruppo tramite un database esterno, scegli il\r\ndatabase link da utilizzare.\r\n

SQL Query
\r\nMolte organizzazioni utilizzano un database esterno per mappare gli utenti ad un\r\ngruppo, per esempio un database potrebbe mappare Employee ID a un Health Care\r\nPlan. Per Autenticare gli utenti attraverso un db esterno è necessario creare\r\nuna dichiarazione SQL che ritorni 1 se un utente è nel gruppo.\r\n

Assicurati di iniziare la dichiarazione con "select 1". Puoi usare\r\ndelle macro in questa query per accedere ai dati del profilo utente, come l\'\r\nEmployee ID. Qui un esempio che verifica un utente attraverso un db fittizio.\r\nQuesto assume che tu abbia creato un campo addizionale nel profilo chiamato\r\nemployeeId.

\r\n

select 1 from employees, health_plans, empl_plan_map
\r\nwhere employees.employee_id = ^User("employeeId");
\r\nand health_plans.plan_name = \'HMO 1\'
\r\nand employees.employee_id = empl_plan_map.employee_id
\r\nand health_plans.health_plan_id = empl_plan_mp.health_plan_id
\r\n
\r\nQuesto gruppo potrebbe essere chiamato "Employees in HMO 1", e\r\npotrebbe consentirti di riservare l\'accesso ad ogni pagina o wobject  solo\r\nagli utenti che fanno parte di questo health plan nel database esterno.

\r\n

Per quanto tenere in Cache gli external groups?
\r\nGrandi siti utilizzando gruppi esterni possono fare molte chiamate a database\r\nesterni. Per aiutare a ridurre il carico di dati puoi selezionare per quanto\r\ntempo tenere in cache i risultati dei database esterni tramite il db di WebGUI.

\r\n',1071925786,NULL); +INSERT INTO international VALUES (74,'Poll',8,'Le seguenti sono le variabili disponibili nel template sondaggio: \n

canVote
\nUna condizione che indica se l\'utente ha i diritti per votare in questo\nsondaggio.

\n

question
\nLa domanda del sondaggio.\n

form.start
\nL\'inizio del form per votare.\n

answer_loop
\nUn loop contenente le informazioni relative alle domande nel sondaggio.\n

 \n

\n answer.form
\n Il radio button per questa risposta.\n

answer.text
\n Il testo della risposta.\n

answer.number
\n il numero di questa risposta.  1, 2, 3, etc.\n

answer.graphWidth
\n La larghezza che avrà il grafico per questa risposta. Basata su una\n percentuale della dimensione totale del grafico.\n

answer.percent
\n La percentuale di voti che questa risposta ha ottenuto.\n

answer.total
\n Il numero totale di voti che questa risposta ha ricevuto.\n

 

\n
\nform.submit
\nIl bottone di invio per il form del sondaggio.\n

form.end
\nLa fine del form del sondaggio.\n

responses.label
\nL\'etichetta  per il totale delle risposte. \"Totale Voti\"\n

responses.total
\nIl numero totale di voti che sono stati effettuati in questo sondaggio.

\n',1054478853,NULL); +INSERT INTO international VALUES (624,'WebGUI',8,'le macro di sono utilizzate per creare contenuti dinamici all\'interno di contenuti che altrimenti sarebbero statici. per esempio, potresti voler visualizzare quale utente é attualmente logato in ogni pagina, oppure avere un menu generato dinamicamente, o ancora un crumb trail. \n

\nLe macro cominciano sempre con un carattere carat (^) , proseguono con almeno un altro carattere e finiscono con un punto e virgola (;). Alcune macro possono essere estese/configurate nel formato ^x(\"testo della configurazione\");.\n

\n

Nota: \n^-;,^0;,^1;,^2;,^3;, etc.
\nQueste macro sono riservate per funzione specifiche relative ai widgets come nel SQL report e il corpo nel gestore degli stili.',1048071547,NULL); +INSERT INTO international VALUES (623,'WebGUI',8,'Cascading Style Sheets (CSS) sono lo strumento migliore per gestire il look and feel di un web site. Sono largamente usati nel C.M.S.\n

\n\nQuella che segue è una lista di classi usate per gestire il look :\n

\n\nA
\nI links nello stile.\n

\n\nBODY
\nIl setup di default delle pagine nello stile.\n

\n\nH1
\nGli headers di ogni pagina.\n

\n\n.accountOptions
\nI links che appaiono in modalità login e account update forms.\n

\n\n.adminBar
\nLa barra che appare in alto quando sei amministratore del sito.\n

\n\n.content
\nLa principale area di contenuto in ogni pagina dello stile.\n

\n\n.formDescription
\nI tags su ogni forms prossimi agli elementi del form. \n

\n\n.formSubtext
\nI tags sotto alcuni elementi dei form.\n

\n\n.highlight
\nDenota un elemento in evidenza, come quale messaggio stai visualizzando in una lista.\n

\n\n.horizontalMenu
\nHorizontal menu (se stai usando una horizontal menu macro).\n

\n\n.pagination
\nIl link alla pagina precedente o successiva se stai usando il cambia pagina dopo....\n

\n\n.selectedMenuItem
\nUtilizza questa classe per evidenziare la pagina corrente in ognuno dei menu macro.\n

\n\n.tableData
\nI contenuti di elementi come forum e contributi dagli utenti.\n

\n\n.tableHeader
\nHead delle colonne di elementi come forum e contributi dagli utenti.\n

\n\n.tableMenu
\nIl menu di elementi come forum e contributi dagli utenti.\n

\n\n.verticalMenu
\nVertical menu (se stai utilizzando una vertical menu macro).\n

\n\nNote: Alcuni elementi e macro hanno il proprio stile univoco, che è documentato nello specifico file di help.\n\n',1046622652,NULL); +INSERT INTO international VALUES (71,'USS',8,'I sistemi di contribuzione da parte degli utenti sono un ottimo modo di aggiungere un senso di community su ogni sito, e anche un modo di ottenere contenuti gratuitamente dagli utenti.\r\n

\r\nTemplate principale
\r\nselezione un layout per questo Sistema di Contributi degli Utenti

\r\nFiltra il contenuto
\r\nSeleziona il livello di filtraggio del contenuto che vuoi effettuare su tutti i messaggi.

\r\nTemplate di inserimento
\r\nselezione un layout per l\'interfaccia di sottomissione contributi

\r\nChi può approvare?
\r\nChe gruppo é abilitato ad approvare e rifiutare i contenuti?\r\n

\r\nChi può contribuire?
\r\nQuale gruppo é abilitato ad aggiungere contenuto?\r\n

\r\nContributi per pagina
\r\nQuanti contributi vuoi visualizzare per pagina nell\'indice dei contenuti?\r\n

\r\n\r\n\r\nOrdina per
\r\nIl campo secondo il quale saranno ordinati i contributi.

\r\n\r\nDirezione Ordinamento
\r\nLa direzione per ordinare i contributi (ascendente - discendente).

\r\n\r\n\r\n\r\nStato predefinito
\r\nI contributi vengono settati a Approvato, Pendente, o Respinto per default?\r\n

\r\nNote: Se metti lo stato predefinito a Pendente, sii preparato a guardare spesso nel log messaggi per i nuovi contributi.\r\n\r\n

Karma Per Post
\r\nQuanto karma deve essere assegnato all\'utente quando posta  su questa\r\ndiscussione?

\r\nVisualizza thumbnails?
\r\nSe c\'è unna immagine nella discussione la thumbnail sarà visualizzata nel\r\nLayout .

\r\n

Consenti Discussioni?
\r\nDesideri allegare una discussione a questo sistema di contributi ? Se lo fai,\r\nogni utente potrà commentare ogni discussione. 

\r\n',1068901383,NULL); +INSERT INTO international VALUES (1009,'WebGUI',8,'HTML',1068896623,NULL); +INSERT INTO international VALUES (1008,'WebGUI',8,'Testo e HTML',1068896611,NULL); +INSERT INTO international VALUES (1007,'WebGUI',8,'Tipo di contenuto',1068896586,NULL); +INSERT INTO international VALUES (1006,'WebGUI',8,'Cripta login?',1068896552,NULL); +INSERT INTO international VALUES (1005,'WebGUI',8,'SQL Query',1068896519,NULL); +INSERT INTO international VALUES (1004,'WebGUI',8,'Per quanto tenere in cache gli external groups?',1068896502,NULL); +INSERT INTO international VALUES (82,'USS',8,'Discendente',1068896427,NULL); +INSERT INTO international VALUES (81,'USS',8,'Ascendente',1068896406,NULL); +INSERT INTO international VALUES (80,'USS',8,'Direzione ordinamento',1068896384,NULL); +INSERT INTO international VALUES (79,'USS',8,'Ordina per',1068896308,NULL); +INSERT INTO international VALUES (99,'EventsCalendar',8,'E\' master?',1068896289,NULL); +INSERT INTO international VALUES (78,'USS',8,'Data di aggiornamento',1068896272,NULL); +INSERT INTO international VALUES (74,'MessageBoard',8,'Questo è l\'elenco delle variabili di template disponibili per i template dei\r\nForum.\r\n

forum.add.url
\r\nLa url che aggiungerà un forum a questa message board.\r\n

forum.add.label
\r\nL\'etichetta di default per forum.add.url.\r\n

title.label
\r\nL\'etichetta di default per la colonna titolo.\r\n

views.label
\r\nL\'etichetta di default per  la colonna visto.\r\n

rating.label
\r\nL\'etichetta di default per  la colonna ratings.\r\n

threads.label
\r\nL\'etichetta di default per la colonna threads.\r\n

replies.label
\r\nL\'etichetta di default per  la colonna replies .\r\n

lastpost.label
\r\nL\'etichetta di default per  la colonna ultimo post .\r\n

forum_loop
\r\nUn loop contenente i dati per ogni forum of the presenti in questa message\r\nboard.\r\n

 \r\n

\r\n forum.controls
\r\n I controlli per modificare questo forum.\r\n

forum.count
\r\n Un numero che mostra il conto dei forum attraverso il loop.\r\n

forum.title
\r\n Il titolo di questo forum.\r\n

forum.description
\r\n La descrizione (testo) di questo forum.\r\n

forum.replies
\r\n Il numero di risposte ricevute da tutti i threads in questo forum.\r\n

forum.rating
\r\n il voto medio di tutti i posts in questo forum.\r\n

forum.views
\r\n Il numero totale di visualizzazioni di tutti i posts in questo forum..\r\n

forum.threads
\r\n Il numero totale di threads in questo forum.\r\n

forum.url
\r\n La url per visualizzare questo forum.\r\n

forum.lastpost.url
\r\n La url per visualizzare l\'ultimo post  in questo forum.\r\n

forum.lastpost.date
\r\n La data leggibile dell\'ultimo post  in questo forum.\r\n

forum.lastpost.time
\r\n L\'ora leggibile dell\'ultimo post  in questo forum.\r\n

forum.lastpost.epoch
\r\n La data in formato epoch  dell\'ultimo post  in questo forum.\r\n

forum.lastpost.subject
\r\n L\'oggetto dell\'ultimo post  in questo forum.\r\n

forum.lastpost.user.id
\r\n La userid dell\'ultimo utente che ha postato.\r\n

forum.lastpost.user.name
\r\n La username dell\'ultimo utente che ha postato.\r\n

forum.lastpost.user.profile
\r\n La url al profilo dell\'ultimo utente che ha postato.\r\n

forum.lastpost.user.isVisitor
\r\n Una condizione che indica se l\'ultimo utente che ha postato era un visitatore.\r\n

 

\r\n
\r\n

default.listing
\r\nUn forum completo disegnato usando il forum template.\r\n

default.description
\r\nLa descrizione (testo) del default forum.\r\n

default.title
\r\nIl titolo del default forum.\r\n

default.controls
\r\nI controlli per il default forum.\r\n

areMultipleForums
\r\nUna condizione che indica se ci sono più di un forum.

\r\n',1071917908,NULL); +INSERT INTO international VALUES (75,'USS',8,'Questo è l\'elenco delle variabili di template disponibili per i template del\r\nSistema di contributi degli Utenti.\r\n

readmore.label
\r\nL\'etichetta tradotta che indica che l\'utente può cliccare per "leggere di\r\npiù".\r\n

responses.label
\r\nL\'etichetta tradotta che indica che l\'utente può cliccare per visualizzare le\r\nrisposte a questo post.

\r\n

canPost
\r\nUna condizione che indica se un utente può aggiungere un nuovo contributo.\r\n

post.url
\r\nLa  URL per aggiungere un nuovo contributo.\r\n

post.label
\r\nL\'etichetta tradotta per il link da cui postare.\r\n

search.label
\r\nL\'etichetta tradotta per il link al  search engine.\r\n

search.url
\r\nLa URL per settare on/off    form di ricerca.\r\n

search.form
\r\nIl form di ricerca di WebGUI.\r\n

title.label
\r\nL\'etichetta tradotta per  la colonna Titolo.\r\n

thumbnail.label
\r\nL\'etichetta tradotta per  la colonna Thumbnail.\r\n

date.label
\r\nL\'etichetta tradotta per  la colonna Data.\r\n

date.updated.label
\r\nL\'etichetta tradotta che indica in che data questo contributo è stato modificato. \r\n

by.label
\r\nL\'etichetta tradotta che indica da chi è stato inviato il contributo.\r\n

submissions_loop
\r\nUn ciclo che contiene ogni contributo.\r\n

\r\n submission.id
\r\n Un identificatore unico per questo contributo.\r\n

submission.url
\r\n La URL per visualizzare questo contributo.\r\n

submission.content
\r\n Il testo abbreviato del contenuto di questo contributo.\r\n

submission.responses
\r\n Il numero di risposte a questo contributo.\r\n

submission.title
\r\n Il titolo per questo contributo.\r\n

submission.userId
\r\n La User Id dell\'utente che ha inviato questo contributo.\r\n

submission.username
\r\n Il nome utente della persona che ha inviato questo contributo\r\n

submission.status
\r\n Lo stato di questo contributo (approvato, pendente, rifiutato).\r\n

submission.thumbnail
\r\n Il thumbnail dell\'imagine caricata con questo contributo (se esiste).\r\n

submission.date
\r\n La data in cui è stato inviato il contributo.\r\n

submission.date.updated
\r\nLa data leggibile che indica data e ora in cui questo contributo è stato modificato.\r\n

submission.currentUser
\r\n Una condizione che indica se l\'utente attuale è lo stesso che ha inviato\r\n questo contributo.\r\n

submission.userProfile
\r\n La URL al profilo dell\'utente che ha inviato questo contributo.\r\n

submission.secondColumn
\r\n Una condizione che indica se questo contributo appartiene o no alla seconda\r\n colonna in un layout multi-colonna.\r\n

submission.thirdColumn
\r\n Una condizione che indica  contributo appartiene o no alla terza colonna\r\n in un layout multi-colonna.\r\n

submission.fourthColumn
\r\n Una condizione che indica  contributo appartiene o no alla quarta colonna\r\n in un layout multi-colonna.\r\n

submission.fifthColumn
\r\n Una condizione che indica contributo appartiene o no alla quinta colonna in un\r\n layout multi-colonna.\r\n

 

\r\n
\r\n

firstPage
\r\nUn Link alla prima pagina dell\'impaginazione.\r\n

lastPage
\r\nUn Link all\'ultima pagina dell\'impaginazione.\r\n

nextPage
\r\nUn Link alla prossima pagina dell\'impaginazione.\r\n

previousPage
\r\nUn Link alla prossima pagina dell\'impaginazione.\r\n

pageList
\r\nUna lista di link a tutte le pagine dell\'impaginazione del calendario.\r\n

multiplePages
\r\nUna variabile che indica dove esiste più di una pagina nell\'impaginazione.

\r\n',1070997214,NULL); +INSERT INTO international VALUES (637,'WebGUI',8,'Nome
\nIl nome dell\'utente.\n

\n\nSecondo Nome
\nIl secondo nome dell\'utente.\n

\n\nCognome
\nIl cognome dell\'utente.\n

\n\nIndirizzo Email
\nIndirizzo email dell\' utente. Deve essere inserito se l\' utente vuole utilizzare le funzioni che richiedono l\' email.\n

\n\n\nLingua
\nQuale lingua deve essere usata dal sistema per mostrare messaggi e indici.\n

\n\nICQ UIN
\nICQ UIN è \" ID numero utente\" sul network ICQ. ICQ è una tra le più popolari piattaforme di instant messaging.\n\n\nNota: Puoi inserire tutti le categorie e i campi che desideri, puoi senderli obbligatori o meno. Nella gersione profilo troverai configurati quelli di default nella distribuzione di WebGUI.\n\n',1046619284,NULL); +INSERT INTO international VALUES (618,'WebGUI',8,'\nSMTP Server
\nQuesto é l\'indirizzo del tuo mail server locale. E\' necessario per tutte le funzionalità che coinvolgono la posta internet (come la funzione di recupero password).

\n\nEmail footer
\nQuesto footer sarà processato per le macro e allegato ad ogni email inviata da questa istanza di WebGUI.\n

\nAvverti quando c\'è un nuovo utente?
\nQualcuno deve essere avvisato se un nuovo utente si registra anonimamente?\n

\nGruppo da avvertire quando c\'è un nuovo utente?
\nQuale gruppo deve essere avvisato se un nuovo utente si registra anonimamente?\n

\n\n',1046556120,NULL); +INSERT INTO international VALUES (617,'WebGUI',8,'I Settaggi sono opzioni che ti consentono di aggiustare il C.M.S. per i tuoi particolari bisogni.\n

\n\n\nModifica informazioni sull\'azienda
\nInformazioni specifiche riguardo l\'azienda o l\'individuo che controlla questa installazione del C.M.S. .\n

\n\nModifica i settaggi dei contenuti
\nSettaggi correlati a contenuti e alla loro gestione.\n

\n\nModifica i settaggi della messaggistica
\nSettaggi per le email e le funzioni relative alla messaggistica.\n

\n\nModifica settaggi vari
\nTutto il resto.\n\nModifica i settaggi del profilo
\nDefinisce come appaioni i profili degli utenti e cosa gli utenti hanno i privilegi di modificare

\n\n\n\nModifica i settaggi per gli utenti
\nQuesti settaggi riguardano la identificazione degli utenti e il login, etc.\n

\n\n',1046555813,NULL); +INSERT INTO international VALUES (613,'WebGUI',8,'Gli utenti nel sistema sono gli account ai quali é concesso fare determinate cose. Ci sono due utenti di default: Admin e Visitor.\n

\n\nAdmin
\nAdmin é esattamente quello che ti aspetti. E\' un utente con privilegi illimitati nell\'ambiente. Se qualcosa può essere fatto, questo utente ha i diritti per farlo.\n

\n\nVisitor
\nVisitor é esattamente l\'opposto di Admin. Visitor non ha nessun diritto. Per default qualsiasi utente non loggato é visto come utente Visitor.\n

\n\nAggiungi un nuovo utente.
\nClicca qui per andare allo schermo di aggiunta utente.\n

\n\nCerca
\nPuoi cercare gli utenti basandoti sullo username o sull\'indirizzo email. Puoi anche fare delle ricerche parziali se preferisci.',1046555073,NULL); +INSERT INTO international VALUES (632,'WebGUI',8,'Puoi aggiungere wobject selezionando Aggiungi contenuto dal menu in alto a sinistra. Puoi poi editarlo cliccando sul bottone \"Modifica\" che appare proprio sopra l\'istanza di ogni wobject particolare.\n

Quasi tutti wobject condividono alcune proprietà:

\n

Wobject ID
\nL\'identificatore unico che WebGUI  usa per tracciare il wobject. Gli utenti\nnormali probabilmente non hanno bisogno di questo parametro, ma qualche utente\navanzato può averne bisogno per esempio applicazioni di SQL Reports.

\n

Titolo
\nQual\'é il titolo di questo articolo? Anche se non vuoi che il titolo appaia, é\nuna buona idea dare un titolo ai tuoi contenuti, così quando questi saranno\ncopiati negli appunti avranno un nome.\n

\n

Nota: dovresti sempre specificare un titolo anche se non vuoi visualizzarlo.\nquesto perchè il titolo viene mostrato negli appunti e nel cestino e ti sarà\nsicuramente utile per distinguere un wobject da un altro.
\n
\nVisualizza il titolo?
\nVuoi visualizzare il titolo? In alcuni siti visualizzare il titolo non è necessario.
\n
\nProcessa le macro?
\nVuoi processare le macro nel contenuto di questo wobject? A volte vorrai attivare l\'interpretazione delle macro. Deselezionando questo\nbox non processerà le macro e sarà velocizzata l\'esecuzione della pagina.
\n
\nPosizione nel template
\nLe posizioni nel template variano da 0 (zero) a qualsiasi numero. Quante ne sono disponibili dipende dal template associato a questa pagina. Il template di default ha solo una posizione nel template, altri possono averne di più. Selezionando una posizione nel template, stai specificando dove questo wobject sarà posizionato nella struttura del template.\n
\n
\nData di inizio
\nIn che data vuoi che questo articolo appaia sul sito? Le date sono nel formato\namericano MM/GG/AAAA. Puoi usare un wizard JavaScript per selezionare la data da\nun calendario cliccando su imposta la data. Prima di questa data i\ncontenuti saranno visibili solo ai content managers.
\n
\nData di fine
\nIn che data vuoi che questo articolo venga rimosso dal sito? Dopo questa\ndata  i contenuti  saranno visibili solo ai content managers.\n

\n

Proprietario
\nIl proprietario di un  wobject è solitamente la persona che lo ha creato.\nQuesto utente ha tutti i privilegi per vedere e modificare il wobject, finchè i\nprivilegi per modificare la pagina su cui appare  il wobject non vengono\nportati via.\n

NOTA: il proprietario può essere modificato solo dall\'amministratore.\n

Chi può visualizzare?
\nScegli quale gruppo può visualizzare questo wobject. Se desideri che possano\nvederlo sia i visitatori che gli utenti registrati scegli il gruppo "Everybody".\n

Chi può modificare?
\nScegli quale gruppo può modificare questo wobject. il gruppo che può\nmodificare può sempre anche visualizzare  il wobject.
\n
\nDescrizione
\nUna area di contenuto nella quale puoi mettere quanto contenuto ti pare. Per esempio, perfino prima di una FAQ c\'è di solito un paragrafo che descrive che cosa è contenuto in essa.\n
\n',1056807423,NULL); +INSERT INTO international VALUES (639,'WebGUI',8,'Nome Template
\nDai un nome descrittivo al template, così lo riconoscerai quando vorrai applicarlo ad una pagina.\n

\nNamespace
\nChe tipo di template è questo?\n

\n\n\nTemplate
\nCrea il tuo template inserendo i comandi di template, le macro di variabile e il codice.\n

\n\n\nNota:\nNon devi mai modificare i template di default che trovi nella distribuzione di WebGUI, perchè possono variare con ogni realise per introdurre nuove funzioni. Devi fare una copia del template che ti interessa e modificare quello.\n',1046550619,NULL); +INSERT INTO international VALUES (71,'SiteMap',8,'Le mappe del sito sono usate per aggiungere un ulteriore ausilio nella navigazione. Puoi aggiungere una mappa del sito tradizionale che visualizzi una vista gerarchica di tutte le pagine nel sito. D\'altra parte, puoi usare le mappe del sito per dare un ausilio di navigazione a certi livelli nel sito.\n

\n\nTemplate
\nSeleziona un layout per questa mappa.\n

\nParti Da
\nSeleziona la pagina da cui vuoi far iniziare la mappa.\n

\nPartire da questo Livello?
\nQuanti livelli di profondità della navigazione deve mostrare la mappa? Se è specificato 0(zero) mostrerà tutti i livelli esistenti.\n

\n\nRientro
\nDi quanti caratteri deve rientrare ogni livello?

\n\n',1046550282,NULL); +INSERT INTO international VALUES (71,'SQLReport',8,'I report SQL sono forse il più potente tra i wobject. Consentono all\'utente di eseguire query su qualsiasi database al quale abbia accesso. Questo é utile ad esempio per estrarre dati dal tuo database degli account o per creare dei sommari di\ntutti i forum di discussione nel sito.

\n\nPreprocessa le macro sulla quesry?
\nVuoi che vengano processate le macro del C.M.S.? Seleziona questo box.

Debug?
\n
Seleziona questo box se vuoi visualizzare il debugging e i messaggi di\nerrore nella pagina.

Query
\nQuesta é una query SQL standard. Puoi rendere più dinamiche le tue query\nutilizzando la macro ^FormParam(); \n

\n\nReport Template
\nScrivi qui il codice per generare il report. normalmente userai delle tabelle HTML per generarlo. Sotto é incluso un esempio. Se lasci questo campo in bianco il template sarà generato in base al risultato della query.\n

\n\nCi sono delle macro speciali per generare report SQL. Sono: ^-;, ^0;, ^1;, ^2;, ^3;, etc. Queste macro saranno processate comunque, a prescindere dal fatto che tu abbia deselezionato la box processa macro. La macro ^- rappresenta i punti di split nel documento dove il report comincia e finisce di fare il loop. Le macro numeriche rappresentano i dati ritornati dalla\nquery. C\'è una macro aggiuntiva ^rownum; che conta le righe della query\npartendo da 1 per usarla dove le linee del\'output devono essere numerate. \n\n

Database Link
\nL\'amministratore può configurare database comuni sui quali puoi eseguire report\nSQL, senza dover conoscere o inserire DNS, Username e Password. Se un database\nè selezionato da questa lista i campi  DNS, Username e Password saranno\nignorati.

\n

Se il database che devi usare non è configurato come un Database Link, puoi\ninserire DSN, User, e Password.\n

\n\n\nDSN
\nData Source Name é l\'identificatore univoco che il linguaggio PERL usa per descrivere la locazione del tuo database. La sintassi é DBI:[driver]:[database name]:[host]. \n

\n\nEsempio: DBI:mysql:WebGUI:localhost\n

\n\nUtente Database\nLo username che usi per collegarti al DSN.\n

\n\nPassword Database\nLa password che usi pe rcollegarti al DSN.\n

\n\nPagina dopo\nQuante righe vuoi che siano visualizzate prima di dividere il risultato in pagine separate? In altre parole, quante righe vuoi che siano visualizzate per pagina?\n

\n\nConverti gli a capo?\nVuoi convertire gli a capo nei dati del risultato in break HTML (<br>).\n',1056804917,NULL); +INSERT INTO international VALUES (43,'Product',8,'Le specifiche sono le caratteristiche tecniche del prodotto.

\n\nTipo della specifica
\n
\nil tipo di specifica. Per esempio altezza, larghezza, o colore. Puoi selezionarne una già inserita nel sistema per un altro prodotto, oppure inserirne una nuova.

\n\nSpecifica
\n
\nil valore della specifica. Per esempio, se hai scelto altezza come tipo dovrai inserire un valore numerico come \"12\".

\n\nUnità
\n
\nLa unità di misura per questa specifica. Per esempio, se hai scelto altezza come tipo, probabilmente dovrebbe essere \"centimetri\".

\n\nAggiungi una nuova specifica?
\n
\nSe vuoi aggiungere una ulteriore specifica, seleziona \"Si\".\n\n\n\n\n',1046548417,NULL); +INSERT INTO international VALUES (39,'Product',8,'Il C.M.S. comprende un sistema di gestione catalogo prodotti che consente di pubblicare facilmente e velocemente i tuoi prodotti e servizi. \n

\n

Template
\nSeleziona un layout per questo prodotto.

\n\nPrezzo
\nIl prezzo di questo prodotto. Se preferisci puoi lasciarlo vuoto oppure inserire un messaggio tipo: contattaci per informazioni.

\n\nCodice Prodotto
\n
\nIl codice del prodotto, o un identificativo del prodotto.

\n\nImmagine Prodotto 1
\n
\nUna immagine di questo prodotto.

\n\nImmagine Prodotto 2
\n
\nUna immagine di questo prodotto.

\n\nImmagine Prodotto 3
\n
\nUna immagine di questo prodotto.

\n

Brochure
\nLa brochure per questo prodotto.\n

Manuale
\nIl manuale di utilizzo per questo prodotto.\n

Garanzia
\nLa garanzia per questo prodotto.

\n',1046548367,NULL); +INSERT INTO international VALUES (71,'MessageBoard',8,'I Forum di discussione sono un modo efficace di aggiungere un senso di comunità ad ogni sito internet. Molte aziende usano i Forum internamente per collaborare sui progetti.\r\n

\r\n',1068900471,NULL); +INSERT INTO international VALUES (1052,'WebGUI',8,'Edita Sostituzione',1068898781,NULL); +INSERT INTO international VALUES (1051,'WebGUI',8,'Sostituisci con',1068898748,NULL); +INSERT INTO international VALUES (1050,'WebGUI',8,'Cerca',1068898724,NULL); +INSERT INTO international VALUES (1049,'WebGUI',8,'ID sostituzione',1068898701,NULL); +INSERT INTO international VALUES (1048,'WebGUI',8,'Gestisci sostituzioni.',1068898679,NULL); +INSERT INTO international VALUES (1047,'WebGUI',8,'Aggiungi sostituzione.',1068898613,NULL); +INSERT INTO international VALUES (1046,'WebGUI',8,'Archiviato',1068898071,NULL); +INSERT INTO international VALUES (1045,'WebGUI',8,'Nested',1068898053,NULL); +INSERT INTO international VALUES (1044,'WebGUI',8,'Template risultati ricerca',1068897910,NULL); +INSERT INTO international VALUES (1043,'WebGUI',8,'Archivia dopo',1068897876,NULL); +INSERT INTO international VALUES (1042,'WebGUI',8,'Messaggi per pagina',1068897846,NULL); +INSERT INTO international VALUES (1041,'WebGUI',8,'Sblocca',1068897820,NULL); +INSERT INTO international VALUES (1040,'WebGUI',8,'Blocca',1068897807,NULL); +INSERT INTO international VALUES (1039,'WebGUI',8,'Indietro',1068897415,NULL); +INSERT INTO international VALUES (1038,'WebGUI',8,'Elimina Sticky',1068897399,NULL); +INSERT INTO international VALUES (1037,'WebGUI',8,'Fai Sticky',1068897367,NULL); +INSERT INTO international VALUES (1036,'WebGUI',8,'Threads',1068897297,NULL); +INSERT INTO international VALUES (1035,'WebGUI',8,'Template di notifica',1068897278,NULL); +INSERT INTO international VALUES (1034,'WebGUI',8,'Post Form Template',1068897249,NULL); +INSERT INTO international VALUES (1033,'WebGUI',8,'Post Template',1068897223,NULL); +INSERT INTO international VALUES (1032,'WebGUI',8,'Thread Template',1068897202,NULL); +INSERT INTO international VALUES (1031,'WebGUI',8,'Forum Template',1068897187,NULL); +INSERT INTO international VALUES (1028,'WebGUI',8,'Modera i post?',1068897172,NULL); +INSERT INTO international VALUES (1027,'WebGUI',8,'Consenti sostituzioni?',1068897144,NULL); +INSERT INTO international VALUES (1026,'WebGUI',8,'Consenti rich edit?',1068897101,NULL); +INSERT INTO international VALUES (1023,'WebGUI',8,'Cancellati dalla discussione',1068897053,NULL); +INSERT INTO international VALUES (1022,'WebGUI',8,'Iscriviti alla discussione',1068897025,NULL); +INSERT INTO international VALUES (1021,'WebGUI',8,'Valuta Messaggio',1068896991,NULL); +INSERT INTO international VALUES (1020,'WebGUI',8,'Rating',1068896921,NULL); +INSERT INTO international VALUES (1019,'WebGUI',8,'Torna alla lista dei thread',1068896889,NULL); +INSERT INTO international VALUES (1018,'WebGUI',8,'Inizia un nuovo thread',1068896869,NULL); +INSERT INTO international VALUES (1013,'WebGUI',8,'Sticky - Matieni il messaggio in alto nella discusssione ?',1068896842,NULL); +INSERT INTO international VALUES (1012,'WebGUI',8,'Blocca questo thread?',1068896704,NULL); +INSERT INTO international VALUES (1011,'WebGUI',8,'Codice',1068896650,NULL); +INSERT INTO international VALUES (1010,'WebGUI',8,'Testo',1068896636,NULL); +INSERT INTO international VALUES (72,'DataForm',8,'Puoi aggiungere tutti i campi che vuoi al tuo modulo dati.\n
\n\n
\n\nNome/Etichetta
\n
\nE\' un testo che dice all\'utente cosa questo campo rappresenta.

\n\nNome Campo
\n
\nIl nome di questo campo. Deve essere unico nell\'ambito di tutti gli altri campi del form (in pratica ogni campo deve avere un nome univoco).

\n\nSottotitolo / Subtext
\n
\nE\' una descrizione di che cosa dovrebbe essere inserito nel campo.

\n\n

Status
\n
\nI campi nascosti non saranno visibili al visitatore, ma il loro contenuto sarà spedito nel messaggio.
\nI campi visualizzabili possono essere visti dal visitatore, ma non modificati.
\nI campi modificabili possono essere compilati dal visitatore.
I campi obbligatori devono essere compilati.\nSe utilizzi campi nascosti o visualizzabili assicurati di aver inserito una valore di default.

\n

Tipo
\nScegli il tipo di elemento da assegnare a questo campo.

\n\nlarghezza
\n
\nInserisci il numero di caratteri per determinare la larghezza di questo campo.

\n\nAltezza
\n
\nInserisci il numero di caratteri per determinare l\'altezza. Solo per textarea e htmlarea

\n\nValori Possibili
\n
\nQuesto campo serve solo per il Menù a tendina e i checkbox. Inserisci i valori che vuoi che vengano mostrati nel Menù a tendina, uno per linea.

\n\n

Valore di Default (opzionale)
\n
\ninserisci il valore di default (se vuoi) per il campo. Per i campi si/No, inserisci \"si\" per spuntare \"si\" e \"no\" per spuntare \"No\".\n

\n\n\n\n',1054393491,NULL); +INSERT INTO international VALUES (11,'PhotoGallery',8,'Visualizza il testo al passaggio del mouse',1034022460,NULL); +INSERT INTO international VALUES (71,'DataForm',8,'Questo modulo crea un form multifunzionale per inserire dati o inviare email.\n

\nRiconoscimento
\nQuesto messaggio sarà mostrato agli utenti dopo che avranno inserito e inviato\ni dati nel modulo..\n

Componenti eMail ?
\nSe settato su si, alcuni campi addizionali dedicati alle email saranno aggiunti\nal modulo. Questi campi poi saranno utilizzati per spedire via email\nall\'indirizzo scelto, tutti i dati inseriti nel modulo.\n

NOTA: Il campo "A" può accettare un indirizzo email\nstandard , un nome utente di WebGUI  o un nome gruppo di WebGUI.\n

Template
\nScegli un template per il tuo modulo.\n

Email Template
\nScegli un template per i dati che saranno spediti via email.\n

Template di Riconoscimento
\nScegli un template che sarà utilizzato per mostrare il messaggio di\nriconoscimento di avvenuto inserimento.\n

Template Lista Dati
\nScegli un template che sarà utilizzato per mostrare l\'elenco dei dati\narchiviati in questo Modulo Dati.

\n',1054393304,NULL); INSERT INTO international VALUES (87,'DataForm',8,'Template Lista Dati',1054393284,NULL); -INSERT INTO international VALUES (89,'DataForm',8,'Queste sono le variabili disponibili per il template List del Modulo Dati:\r\n

back.url
\r\nLa URL per tornare alla pagina di inserimento dati del Modulo.\r\n

back.label
\r\nL\'eticetta di default per il back.url.\r\n

field_loop
\r\nUn loop contenente le informazioni sui campi di questo Modulo.\r\n

field.name
\r\nIl "web safe name" di questo campo.\r\n

field.label
\r\nL\'etichetta "human readable" per questo campo.\r\n

field.id
\r\nUn identificatore univoco che rappresenta questo campo nel database.\r\n

field.isMailField
\r\nUna condizione che indica se questo campo esiste per il "sistema mail"\r\ndel modulo dati.\r\n

field.type
\r\nIl tipo di dato associato a questo campo.\r\n

 \r\n

\r\n
\r\nrecord_loop
\r\nUn loop contenente i record inseriti in questo modulo dati.\r\n

 \r\n

\r\n record.entryId
\r\n Un identificatore univoco per questo inserimento.\r\n

record.ipAddress
\r\n L\' IP Address che ha inviato questo inserimento.\r\n

record.edit.url
\r\n La URL per modificare questo record.\r\n

record.username
\r\n La username della persona che ha inviato questo inserimento.\r\n

record.userId
\r\n La user id della persona che ha inviato questo inserimento.\r\n

record.submissionDate.epoch
\r\n La epoch datestamp per questo inserimento.\r\n

record.submissionDate.human
\r\n La "human readable date stamp", basata sulle preferenze dell\'utente,\r\n per questo inserimento.\r\n

record.data_loop
\r\n Un loop contenente i dati inviati dall\'utente per ogni campo di questo modulo\r\n dati.\r\n

 \r\n

\r\n record.data.value
\r\n Il valore inviato dall\'utente per questo campo in questo inserimento.\r\n

record.data.name
\r\n Il "web safe name" di questo campo.\r\n

record.data.label
\r\n L\'etichetta "human readable" per questo campo.\r\n

record.data.isMailField
\r\n Una condizione che indica se questo campo esiste per il "sistema\r\n mail" del modulo dati.\r\n

\r\n
\r\n',1054387767,NULL); -INSERT INTO international VALUES (73,'LinkList',8,'Titolo
\r\nIl testo che apparirà nel link

\r\nURL\r\n
Il sito da linkare

\r\nApri in nuova finestra?
\r\nSeleziona \"si\" se vuoi che questo link si apra in una finestra nuova.\r\n

Descrizione
\r\nDescrivi il sito che stai linkando. Può essere omessa se vuoi.

\r\nProssima Azione?
\r\nLascia selezionato a default se vuoi aggiungere link alla lista.\r\n

\r\n',1046547071,NULL); -INSERT INTO international VALUES (73,'FileManager',8,'Titolo del file
\r\nIl titolo che sarà mostrato per questo file. Se lasciato vuoto sarà visualizzato il nome del file \r\n

\r\n\r\nFile
\r\nScegli dal tuo computer il file che vuoi caricare.\r\n

\r\n\r\nVersione Alternativa #1
\r\nUna versione alternativa del file ad esempio se il 1° file era una immagine jpg la versione alternativa potrebbe essere un file tiff oppure un file bmp.\r\n

\r\n\r\nVersione Alternativa #2
\r\nUna versione alternativa del file ad esempio se il 1° file era una immagine jpg la versione alternativa potrebbe essere un file tiff oppure un file bmp.\r\n

\r\n\r\nBreve descrizione
\r\nUna breve descrizione del file. Assicurati di includere delle Keyword adatte, i visitatori potrebbero tentare una ricerca.\r\n

\r\n\r\nGruppo di Download
\r\nScegli il gruppo che può scaricare il file.\r\n

\r\n\r\nProssima Azione?
\r\nSe hai un altro file da aggiungere allora seleziona \"Aggiungi un nuovo file\", diversamente seleziona \"Torna alla pagina\".',1046546766,NULL); -INSERT INTO international VALUES (71,'FileManager',8,'Il File Manager é pensato per aiutarti a gestire la distribuzione di file sul tuo sito. Ti consente di specificare chi può\r\nvisualizzare/scaricare i files dal tuo sito.

\r\nTemplate
\r\nScegli un layout per il file manager.\r\n

\r\n\r\nCambio pagina dopo
\r\nQuanti file devono essere visualizzati prima di separare i risultati in pagine separate? In altre parole, quanti file vuoi che siano visualizzati per pagina?\r\n

\r\n\r\nContinua aggiungendo un file?
\r\nSe vuoi cominciare ad aggiungere files per il download subito dopo aver creato il Download Manager, lascialo selezionato.\r\n

',1046546498,NULL); -INSERT INTO international VALUES (77,'USS',8,'Le seguenti sono le variabili di template utilizzate nel template del sistema di\r\ncontributi degli utenti. Sono usati per visualizzare il singolo contributo\r\ndell\'utente.\r\n

title
\r\nIl titolo di questo contributo.\r\n

content
\r\nTutto il testo di questo contributo.\r\n

user.label
\r\nL\'etichetta tradotta che indica quale utente ha inviato questo contributo.\r\n

user.profile
\r\nLa URL al profilo dell\' utente che ha inviato questo contributo.\r\n

user.username
\r\nIl Nome Utente dell\' utente che ha inviato questo contributo.\r\n

user.id
\r\nL\'identificatore univoco dell\' utente che ha inviato questo contributo.\r\n

date.label
\r\nL\'etichetta tradotta che indica in che data è stato postato questo contributo.\r\n

date.epoch
\r\nIl numero di secondi dal 1° gennaio 1970 in cui questo contributo è stato\r\ninviato.\r\n

date.human
\r\nUna data leggibile che visualizza la data e il tempo in cui questo contributo è\r\nstato inviato.\r\n

status.label
\r\nL\'etichetta tradotta che indica lo stato di questo contributo.\r\n

status.status
\r\nLo stato attuale di questo contributo (pendente, approvato, rifiutato).\r\n

views.label
\r\nL\'etichetta tradotta che indica quante volte questo contributo è stato visto.\r\n

views.count
\r\nIl numero di volte che questo contributo è stato visto.\r\n

canPost
\r\nUna condizione che indica se questo utente può o non può inviare un contributo.\r\n

post.url
\r\nLa  URL per inviare un nuovo contributo.\r\n

post.label
\r\nL\'etichetta tradotta per il  link da cui inviare.\r\n

previous.more
\r\nUna condizione che indica se ci sono post precedenti a questo disponibili per\r\nessere visualizzati.\r\n

previous.url
\r\nla URL al post precedente a questo.\r\n

previous.label
\r\nL\'etichetta tradotta per il  link precedente.\r\n

next.more
\r\nUna condizione che indica se ci sono post successivii a questo disponibili per\r\nessere visualizzati.\r\n

next.url
\r\nla URL al post successivo a questo.\r\n

next.label
\r\nL\'etichetta tradotta per il  link successivo.\r\n

canEdit
\r\nUna condizione che indica se questo utente può modificare o cancellare questo\r\npost.\r\n

edit.url
\r\nLa URL per modificare questo post.\r\n

edit.label
\r\nL\'etichetta tradotta per il  link da cui modificare.\r\n

delete.url
\r\nla URL per cancellare questo post.\r\n

delete.label
\r\nL\'etichetta tradotta per il  link da cui cancellare.\r\n

canChangeStatus
\r\nUna condizione che indica se questo utente ha i provilegi per cambiare lo\r\nstatodi questo contributo.\r\n

approve.url
\r\nLa url per approvare questo post.\r\n

approve.label
\r\nL\'etichetta tradotta per il  link da cui approvare\r\n

deny.url
\r\nLa URL per rifiutare questo post.\r\n

deny.label
\r\nL\'etichetta tradotta per il  link da cui rifiutare.\r\n

leave.url
\r\nLa URL per lasciare questo post nello stato in cui si trova.\r\n

leave.label
\r\nL\'etichetta tradotta per il  link da cui lasciare questo post nello stato\r\nin cui si trova .\r\n

canReply
\r\nUna condizione che indica se questo utente può rispondere a questo post.\r\n

reply.url
\r\nLa URL per rispondere a questo post.\r\n

reply.label
\r\nL\'etichetta tradotta per il  link da cui rispondere.\r\n

search.url
\r\nLa URL per attivare il motore di ricerca WebGUI .\r\n

search.label
\r\nL\'etichetta tradotta per il  link al motore di ricerca.\r\n

back.url
\r\nLa URL per riportare l\'utente indietro all\'elenco principale.\r\n

back.label
\r\nL\'etichetta tradotta per il link indietro.\r\n

replies
\r\nUn elenco completo di tutte le risposte a questo post.

\r\n',1046542354,NULL); -INSERT INTO international VALUES (832,'WebGUI',8,'L\'Archivio Collaterale ha diverse macro per i suoi specifici utilizzi.  \r\n

^File();
\r\nQuesta macro costruisce il link a un file. Crea l\'icona per il file e visualizza\r\nil nome del file . Quindi linka entrambi al file per il download .\r\n

^I();
\r\nQuesta macro ritrova una  immagine con i parametri per l\'immagine definiti\r\nnell\'archivio collaterale. Puoi inserire nelle pagine una immagine\r\nprecedentemente caricata così ^I("Nomeimmagine");.

\r\n

^i(); - Gestore Immagini Percorso dell\'Immagine
\r\nQuesta macro ritorna il percorso (URL) di ogni file nell\'archivio collaterale.\r\nSpecifica il nome usando un tag così: ^i("Nome file");.

\r\n

^RandomImage();
\r\nQuesta macro prende una cartella dell\'archivio collaterale come parametro. Se il\r\nnome della cartella non è specificato allora sarà utilizzata la cartella root.\r\nLa macro prenderà a random una immagine dalla cartella e la visualizzerà,\r\nfunzionando allo stesso modo della macro ^I();\r\n

Esempio: ^RandomImage("sito logo");\r\n

^RandomSnippet();
\r\nQuesta macro prende una cartella dell\'archivio collaterale come parametro. Se il\r\nnome della cartella non è specificato allora sarà utilizzata la cartella root.\r\nLa macro prenderà a random uno  snippet(frammento ) dalla cartella e la\r\nvisualizzerà, funzionando allo stesso modo della macro ^Snippet(); \r\n

Esempio: ^RandomSnippet("text");\r\n

^SI();
\r\nLa macro Scaled Image consente di recuperare immagini nell\'archivio collaterale\r\ne ridimensionarle (dal lato server), mantenendo le proporzioni originali o dando\r\ndelle nuove proporzioni.\r\n

Utilizza quattro parametri. Il primo è il nome dell\'immagine oppure l\'id\r\ndell\'archivio collaterale.Il secondo è la larghezza. Imposta la larghezza\r\nsu  "0" per mantenere le proporzioni per altezza. Il terzo è\r\nl\'altezza. Imposta altezza su  "0" per mantenere le proporzioni\r\nper larghezza. Il quarto parametro ti permette di specificare parametri\r\naggiuntivi all\'immagine.\r\n

Esempi:
\r\nRecupera una immagine per nome (no ridimensionamento)
\r\n^SI(miaimmagine);\r\n

Recupera una immagine per collateralId (no ridimensionamento)
\r\n^SI(66);\r\n

Ridimensiona per larghezza, mantenendo le proporzioni
\r\n^SI(66,25);\r\n

Ridimensiona per altezza, mantenendo le proporzioni
\r\n^SI(66,0,25);\r\n

Manipolando le proporzioni
\r\n^SI(66,148,25);\r\n

Utilizzando altri parametri
\r\n^SI(66,0,0,\'border="0"\');

\r\n

^Snippet();
\r\nQuesta macro ritrova il contenuto di un frammento(snippet)  nell\'archivio\r\ncollaterale e lo inserisce nella  pagina.\r\n

Esempio: ^Snippet("flash code");\r\n

^Thumbnail();
\r\nRitorna la URL di un thumbnail per una immagine nell\'archivio collaterale.\r\nSpecifica il nome dell\'immagine così: ^Thumbnail("Nomeimmagine");.

\r\n

^ThumbnailLinker();
\r\nQuesto è un buon modo di creare velocemente una pagina di screenshots o una\r\nsemplice galleria di foto. Specifica semplicemente il nome di una immagine\r\nnell\'archivio collaterale, in questo modo: ^ThumbnailLinker("Logo"); e\r\nla macro creerà un thumbnail con un titolo che sarà collegato alla immagine a\r\ngrandezza piena.

\r\n',1054485214,NULL); -INSERT INTO international VALUES (842,'WebGUI',8,'Queste macro sono utilizzate nella gestione della navigazione del sito.\r\n

^C; or ^C(); - Crumb Trail
\r\nUn crumb trail (pista di briciole) generato dinamicamente che conduce alla\r\npagina corrente. Come opzione puoi specificare un tuo delimitatore tra i nomi\r\ndelle pagine usando ^C(::);. Il delimitatore predrfinito é >.\r\n

NOTA: la classe .crumbTrail dello style sheet è associata a questa macro.\r\n

^FlexMenu;
\r\nQuesta macro di menu crea un menu di primo livello che si espande a seconda di\r\nquale elemento del menù é selezionato.\r\n

^H; or ^H(); - Link a Home
\r\nUn link alla home page di questo sito. In più poi cambiare il testo del link\r\ncreando una macro così ^H("Torna alla pagina principale");.\r\n

Nota: Puoi anche usare il carattere speciale ^H(linkonly); per avere\r\nsolo la URL della home page e niente altro.\r\n

^M; or ^M(); - Menu corrente (Verticale)
\r\nUn menu verticale contenente le sotto pagine del livello corrente. In più, puoi\r\nconfigurare questa macro specificando quanti livelli deve scendere in profondità.\r\nPer default visualizzerà solo il primo livello. Per andare giù di tre livelli,\r\ncrea una macro così: ^M(3);. Se metti la macro a "0" Seguirà\r\ntutto l\'albero del sito.\r\n

^m; - Menu corrente (Orizzontale)
\r\nUn menu orizzontale contenente le sotto-pagine del livello corrente. Puoi come\r\nopzione specificare un delimitatore da usare tra i nomi delle pagine usando\r\n^m(:--:);. Il delimitatore predefinito é ·.\r\n

^PreviousDropMenu;
\r\nCrea un drop down menu (menù a tendina) contenente le sotto-pagine del livello\r\nprecedente nell\'albero di navigazione.\r\n

Esempio: ^PreviousDropMenu;

\r\n

^P; or ^P(); - Menu precedente (Verticale)
\r\nUn menu verticale contenente le sotto-pagine del livello precedente. In più,\r\npuoi configurare questa macro specificando quanti livelli di profondità il menu\r\ndeve scendere. Per default visualizzerà solo il primo livello. Per andare giù\r\ndi tre livelli, crea una macro così: ^P(3);. Se metti la macro a\r\n"0" Seguirà tutto l\'albero del sito.\r\n

^p; - Menu precedente (Orizzontale)
\r\nun menu orizzontale contenente le sotto-pagine del livello precedente. Come\r\nopzione, puoi specificare un delimitatore tra i nomi delle pagine usando\r\n^p(:--:);. Il delimitatore predefinito é ·.

\r\n

^rootmenu; o ^rootmenu(); (orizzontale)
\r\nCrea un menù orizzontale delle varie root del sistema (eccetto per quelle del\r\nC.m.s. come cestino etc). Puoi specificare un delimitatore così ^rootmenu(|);.\r\n

^RootTab;
\r\nCrea un sistema di navigazione dalle roots del tuo sito (eccetto le root di\r\nsistema di WebGUI) simile al tab forms dell\'interfaccia amministrativa (modifica\r\nwobjects o pagine).\r\n

NOTA: Ha  due speciali style sheet classes: .RootTabOn{} and .RootTabOff{}.\r\n

Esempi:
\r\n<style> .rootTabOn { line-height: 17px; font-size: 16px; spacing: 3px;\r\nborder: 1px solid black; border-bottom-width: 0px; background-color: #333333;\r\nz-index: 10000; padding: 3px 9px 5px 9px; color: white; } .rootTabOn A, .rootTabOn\r\nA:visited { color: white; font-weight: bold; text-decoration: none; } .rootTabOff\r\n{ line-height: 15px; font-size: 14px; border: 1px solid black;\r\nborder-bottom-width: 0px; background-color: #c8c8c8; z-index: 1000; padding: 2px\r\n9px 2px 9px; } .rootTabOff A, .rootTabOff A:visited { color: black;\r\ntext-decoration: underline; } .rootTabOff A:hover { font-weight: bold; }\r\n</style> \r\n

^RootTab;

\r\n

^SpecificDropMenu();
\r\nCrea un drop down menu partendo da un punto specifico del tuo albero di\r\nnavigazione. Presenta due parametri. Il primo è la url della pagina da cui far\r\niniziare il menù e il secondo  (opzionale) è la profondità dei livelli\r\nin cui il menù deve scendere.\r\n

Esempio: ^SpecificDropMenu("home",3);

\r\n

^S(); - SottoMenu specifico (Verticale)
\r\nQuesta macro ti consente di avere il sottomenu di qualsiasi pagina, a partire\r\ndalla pagina che hai specificato. Per esempio, puoi avere il sottomenu della\r\nhome page scrivendo ^S("home",0);. Il primo valore é il titolo\r\n"urlizzato" della pagina e il secondo é la profondità dei livelli\r\ndel menu. Per default visualizza solo il primo livello. Per andare giù di tre\r\nlivelli, crea una macro così: ^S("home",3);.\r\n

^s(); - SottoMenu specifico (Orizzontale)
\r\nQuesta macro ti consente di avere il sottomenu di qualsiasi pagina, a partire\r\ndalla pagina che hai specificato. Per esempio, puoi avere il sottomenu della\r\nhome page scrivendo ^s("home");. Il valore é il titolo "urlizzato"\r\ndella pagina. Come opzione, puoi specificare un delimitatore tra i nomi delle\r\npagine usando ^s("home",":--:");. Il delimitatore\r\npredefinito é ·.\r\n

^Synopsis; or ^Synopsis(); Menu
\r\nQuesta ti permette di avere il sottomenu di una pagina insieme alla descrizione\r\ndi ogni link. Puoi specificare un numero intero per dire alla macro quanti\r\nlivelli in profondità deve andare.\r\n

^TopDropMenu;
\r\nCrea un drop down menu del livello principale della navigazione.\r\n

Esempio: ^TopDropMenu;

\r\n

^T; or ^T(); - Menu di primo livello (Verticale)
\r\nUn menu verticale contenente le pagine principali del sito (ovvero le\r\nsottopagine della home page). In più, puoi configurare questa macro\r\nspecificando quanti livelli deve scendere in profondità. Per default\r\nvisualizzerà solo il primo livello. Per andare giù di tre livelli, crea una\r\nmacro così:^T(3);. Se metti la macro a "0" Seguirà tutto\r\nl\'albero del sito.\r\n

^t; - Menu di primo livello (Orizzontale)
\r\n. Un menu orizzontale contenente le pagine principali del sito (ovvero le\r\nsottopagine della home page). Come opzione, puoi specificare un delimitatore tra\r\ni nomi delle pagine usando ^t(:--:);. Il delimitatore predefinito é ·.

\r\n

^/; - URL del sistema
\r\nLa URL al gateway script (incluso il dominio per questo sito).

^\\; - URL della pagina
\r\nLa URL della pagina corrente.

\r\n',1054488121,NULL); -INSERT INTO international VALUES (844,'WebGUI',8,'Queste macro sono utilizzate nella gestione degli utenti e dei login.\r\n

^a; or ^a(); - Link mio account
\r\nUn link alla pagina con le informazioni sul tuo account. In più puoi cambiare\r\nil testo del link creando una macro come questa: ^a("Informazioni\r\naccount");.\r\n

Nota: puoi anche usare il carattere speciale  ^a(linkonly); per\r\navere solo la URL della pagina account page e niente altro. \r\n

^AdminText();
\r\nVisualizza un breve messaggio all\'utente in modalita admin. Esempio: ^AdminText("sei\r\nin modalità admin!");\r\n

^AdminToggle; o ^AdminToggle();
\r\nMette un link nella pagina che è visibile solo ai content manager e agli\r\namministratori. Il link attiva e disattiva la modalità amministrativa. Puoi\r\nanche specificare altri messaggi da visualizzare come questo: ^AdminToggle("Attiva","Spegni");\r\n

^CanEditText();
\r\nMostra un  messaggio all\'utente che può modificare la pagina corrente.\r\n

Esempio: ^CanEditText(^AdminToggle;);\r\n

^EditableToggle; or ^EditableToggle();
\r\nEsattamente come l\' AdminToggle,  ma il messaggio è mostrato solo se\r\nl\'utente ha i privilegi per modificare la pagina corrente.\r\n

^GroupAdd();
\r\nCon questa macro puoi consentire agli utenti di aggiungersi da soli ad un gruppo.\r\nIl primo parametro è il nome del gruppo al quale l\'utente può aggiungersi. Il\r\nsecondo è una stringa di testo con un link che l\'utente clicca per aggiungersi\r\nal gruppo.\r\n

NOTA: Se l\'utente non è loggato, o appartiene già al gruppo, o il\r\ngruppo non è impostato per consentire auto iscrizioni, allora nessun link\r\nsarà  mostrato.\r\n

^GroupDelete();
\r\nCon questa macro puoi consentire agli utenti di cancellarsi da soli ad un gruppo.\r\nIl primo parametro è il nome del gruppo dal quale l\'utente può cancellarsi. Il\r\nsecondo è una stringa di testo con un link che l\'utente clicca per cancellarsi\r\ndal gruppo.\r\n

NOTA: Se l\'utente non è loggato, o  non appartiene già al\r\ngruppo, o il gruppo non è impostato per consentire auto cancellazioni, allora\r\nnessun link sarà  mostrato.

\r\n

^GroupText();
\r\nVisualizza un breve messaggio all\'utente che appartiene ad un determinato\r\ngruppo. Esempio: ^GroupText"Visitatore","Hai bisogno di un\r\naccount per fare molte cose su questo sito!");\r\n

^L; or ^L(); - Login
\r\nUn piccolo form di login. Puoi configurare anche questa macro. Puoi decidere la\r\nlarghezza del form di login così: ^L(20);. Puoi anche decidere il messaggio\r\nvisualizzato dopo che l\'utente si é loggato così: ^L(20,Ciao ^a(^@;);. Clicca\r\n%qui% se vuoi uscire!)\r\n

^LoginToggle; o ^LoginToggle();
\r\nVisualizza un messaggio "Login" o "Logout" a seconda che\r\nl\'utente sia logato o meno. Puoi specificare come opzione dei messaggi diversi\r\ncosì: ^LoginToggle("Clicca qui per entrare.","Clicca qui per\r\nuscire.");\r\n

^@; - Nome Utente
\r\n
Il nome utente dell\'utente attualmente loggato.\r\n

^#; - ID Utente
\r\nLo user id dell\'utente attualmente loggato.

\r\n',1054490332,NULL); -INSERT INTO international VALUES (846,'WebGUI',8,'Queste macro sono utilizzate nella gestione degli stili grafici in WebGUI.\r\n

^AdminBar;
\r\nPosiziona la barra degli strumenti amministrativi nella pagina. Questa è una\r\nmacro obbligatoria nel segmento "body" del gestore degli stili.\r\n

^c; - Nome Azienda
\r\nIl nome dell\'azienda specificato nei settaggi daal tuo amministratore.\r\n

^e; - Indirizzo email dell\'azienda
\r\nL\'indirizzo di email della tua azienda come specificato nei settaggi\r\ndall\'amministratore.\r\n

^Extras;
\r\nRitorna il percorso degli extra del C.M.S., che contiene cose come le icone, le\r\nimmagini, etc...\r\n

^LastModified; o ^LastModified();
\r\nVisualizza la data in cui questa pagina è stata modificata in base ai wobject\r\nnella pagina. La data (di default) è visualizzata in base alle preferenze\r\ndell\'utente sulla data. Opzionalmente, può utilizzare due parametri. Il primo\r\nè il testo da mostrare prima della data. Il secondo è il formato della data,\r\nguarda la macro D (data) macro per dettagli.\r\n

Esempio: ^LastModified("aggiornato: ","%c %D, %y");

\r\n

^PageTitle;
\r\nVisualizza il titolo della pagina corrente.\r\n

NOTA:
\r\nSe cominci ad usare la modalità amministrativa o le funzioni dei wobject, il titolo della pagina diventerà un link che ti riporta velocemente indietro a quella pagina.\r\n

^r; or ^r(); - Rendi la pagina stampabile
\r\nCrea un link per rimuovere lo stile da una pagina per renderla stampabile. In più,\r\npuoi cambiare il testo del link usando una macro come questa ^r("Stampa\r\nquesta pagina!");.\r\n

Per default, quando questo link viene cliccato, lo stile corrente della\r\npagina è sostituito con lo stile "Versione Stampabile" del gestore\r\ndegli stili. Comunque questo comportamento può essere cambiato specificando il\r\nnome di un altro stile del gestore stili come secondo parametro, in questo modo:\r\n^r("Stampa!","miostile");\r\n

Note: Puoi usare anche la macro speciale ^r(linkonly); per avere\r\nsolamelnte la URL della pagina stampabile e nient\'altro. Inoltre, la calasse .makePrintableLink\r\nè collegata a questa macro.

\r\n

^RootTitle;
\r\nRitorna il titolo dalla root della pagina corrente. Per esempio, la root\r\nprincipale nel C.M.S. è la root "Home". Molti siti avanzati hanno più\r\ndi una root e quindi hanno bisogno di un modo per visualizzare la root in cui si\r\ntrova in quel momento l\'utente.\r\n

^u; - URL dell\'azienda
\r\nLa URL per la tua azienda specificata nei settaggi dall\'amministratore.\r\n

^?; - Cerca
\r\nAggiunge una box di ricerca.

\r\n

^Spacer();
\r\nCrea un spacer nel tuo layout. Molto utile per creare grafica utilizzando divs e\r\ntabelle. Utilizza due parametri, larghezza e altezza.\r\n

Esempio: ^Spacer("100","50");

\r\n

^-;
\r\nQuesta è conosciuta come separator macro. Deve apparire esclusivamente una sola\r\nvolta in ogni stile grafico. Ovunque sarà inserita sarà la zona dove verranno\r\nvisualizzati i contenuti della pagina in oggetto.

\r\n\r\n',1054488755,NULL); +INSERT INTO international VALUES (89,'DataForm',8,'Queste sono le variabili disponibili per il template List del Modulo Dati:\n

back.url
\nLa URL per tornare alla pagina di inserimento dati del Modulo.\n

back.label
\nL\'eticetta di default per il back.url.\n

field_loop
\nUn loop contenente le informazioni sui campi di questo Modulo.\n

field.name
\nIl "web safe name" di questo campo.\n

field.label
\nL\'etichetta "human readable" per questo campo.\n

field.id
\nUn identificatore univoco che rappresenta questo campo nel database.\n

field.isMailField
\nUna condizione che indica se questo campo esiste per il "sistema mail"\ndel modulo dati.\n

field.type
\nIl tipo di dato associato a questo campo.\n

 \n

\n
\nrecord_loop
\nUn loop contenente i record inseriti in questo modulo dati.\n

 \n

\n record.entryId
\n Un identificatore univoco per questo inserimento.\n

record.ipAddress
\n L\' IP Address che ha inviato questo inserimento.\n

record.edit.url
\n La URL per modificare questo record.\n

record.username
\n La username della persona che ha inviato questo inserimento.\n

record.userId
\n La user id della persona che ha inviato questo inserimento.\n

record.submissionDate.epoch
\n La epoch datestamp per questo inserimento.\n

record.submissionDate.human
\n La "human readable date stamp", basata sulle preferenze dell\'utente,\n per questo inserimento.\n

record.data_loop
\n Un loop contenente i dati inviati dall\'utente per ogni campo di questo modulo\n dati.\n

 \n

\n record.data.value
\n Il valore inviato dall\'utente per questo campo in questo inserimento.\n

record.data.name
\n Il "web safe name" di questo campo.\n

record.data.label
\n L\'etichetta "human readable" per questo campo.\n

record.data.isMailField
\n Una condizione che indica se questo campo esiste per il "sistema\n mail" del modulo dati.\n

\n
\n',1054387767,NULL); +INSERT INTO international VALUES (17,'PhotoGallery',8,'Testo',1034022485,NULL); +INSERT INTO international VALUES (3,'IndexedSearch',2,'Fütere Informationen schauen Sie sich bitte die Dokumentation an.',1066926030,NULL); +INSERT INTO international VALUES (5,'IndexedSearch',2,'verwendeter Index',1066925936,NULL); +INSERT INTO international VALUES (6,'IndexedSearch',2,'Durchsuchen von',1066925874,NULL); +INSERT INTO international VALUES (9,'IndexedSearch',2,'Nur Ergebnisse in der Sprache',1066925743,NULL); +INSERT INTO international VALUES (7,'IndexedSearch',2,'Nur Ergebnisse erstellt von',1066925809,NULL); +INSERT INTO international VALUES (73,'FileManager',8,'Titolo del file
\nIl titolo che sarà mostrato per questo file. Se lasciato vuoto sarà visualizzato il nome del file \n

\n\nFile
\nScegli dal tuo computer il file che vuoi caricare.\n

\n\nVersione Alternativa #1
\nUna versione alternativa del file ad esempio se il 1° file era una immagine jpg la versione alternativa potrebbe essere un file tiff oppure un file bmp.\n

\n\nVersione Alternativa #2
\nUna versione alternativa del file ad esempio se il 1° file era una immagine jpg la versione alternativa potrebbe essere un file tiff oppure un file bmp.\n

\n\nBreve descrizione
\nUna breve descrizione del file. Assicurati di includere delle Keyword adatte, i visitatori potrebbero tentare una ricerca.\n

\n\nGruppo di Download
\nScegli il gruppo che può scaricare il file.\n

\n\nProssima Azione?
\nSe hai un altro file da aggiungere allora seleziona \"Aggiungi un nuovo file\", diversamente seleziona \"Torna alla pagina\".',1046546766,NULL); +INSERT INTO international VALUES (71,'FileManager',8,'Il File Manager é pensato per aiutarti a gestire la distribuzione di file sul tuo sito. Ti consente di specificare chi può\nvisualizzare/scaricare i files dal tuo sito.

\nTemplate
\nScegli un layout per il file manager.\n

\n\nCambio pagina dopo
\nQuanti file devono essere visualizzati prima di separare i risultati in pagine separate? In altre parole, quanti file vuoi che siano visualizzati per pagina?\n

\n\nContinua aggiungendo un file?
\nSe vuoi cominciare ad aggiungere files per il download subito dopo aver creato il Download Manager, lascialo selezionato.\n

',1046546498,NULL); +INSERT INTO international VALUES (77,'USS',8,'Le seguenti sono le variabili di template utilizzate nel template del sistema di\r\ncontributi degli utenti. Sono usati per visualizzare il singolo contributo\r\ndell\'utente.\r\n

title
\r\nIl titolo di questo contributo.\r\n

content
\r\nTutto il testo di questo contributo.\r\n

user.label
\r\nL\'etichetta tradotta che indica quale utente ha inviato questo contributo.\r\n

user.profile
\r\nLa URL al profilo dell\' utente che ha inviato questo contributo.\r\n

user.username
\r\nIl Nome Utente dell\' utente che ha inviato questo contributo.\r\n

user.id
\r\nL\'identificatore univoco dell\' utente che ha inviato questo contributo.\r\n

date.label
\r\nL\'etichetta tradotta che indica in che data è stato postato questo contributo.\r\n

date.epoch
\r\nIl numero di secondi dal 1° gennaio 1970 in cui questo contributo è stato\r\ninviato.\r\n

date.human
\r\nUna data leggibile che visualizza la data e il tempo in cui questo contributo è\r\nstato inviato.\r\n

date.updated.label
\r\nL\'etichetta tradotta che indica  l\'ultima data in cui questo contributo è\r\nstato modificato.\r\n

date.updated.epoch
\r\nIl numero di secondi dal 1°  Gennaio  1970 in questo contributo è\r\nstato modificato.\r\n

date.updated.human
\r\nUna data leggibile che indica  la data e l\'ora in cui questo contributo è\r\nstato modificato.

\r\n

status.label
\r\nL\'etichetta tradotta che indica lo stato di questo contributo.\r\n

status.status
\r\nLo stato attuale di questo contributo (pendente, approvato, rifiutato).\r\n

views.label
\r\nL\'etichetta tradotta che indica quante volte questo contributo è stato visto.\r\n

views.count
\r\nIl numero di volte che questo contributo è stato visto.\r\n

canPost
\r\nUna condizione che indica se questo utente può o non può inviare un contributo.\r\n

post.url
\r\nLa  URL per inviare un nuovo contributo.\r\n

post.label
\r\nL\'etichetta tradotta per il  link da cui inviare.\r\n

previous.more
\r\nUna condizione che indica se ci sono post precedenti a questo disponibili per\r\nessere visualizzati.\r\n

previous.url
\r\nla URL al post precedente a questo.\r\n

previous.label
\r\nL\'etichetta tradotta per il  link precedente.\r\n

next.more
\r\nUna condizione che indica se ci sono post successivii a questo disponibili per\r\nessere visualizzati.\r\n

next.url
\r\nla URL al post successivo a questo.\r\n

next.label
\r\nL\'etichetta tradotta per il  link successivo.\r\n

canEdit
\r\nUna condizione che indica se questo utente può modificare o cancellare questo\r\npost.\r\n

edit.url
\r\nLa URL per modificare questo post.\r\n

edit.label
\r\nL\'etichetta tradotta per il  link da cui modificare.\r\n

delete.url
\r\nla URL per cancellare questo post.\r\n

delete.label
\r\nL\'etichetta tradotta per il  link da cui cancellare.\r\n

canChangeStatus
\r\nUna condizione che indica se questo utente ha i provilegi per cambiare lo\r\nstatodi questo contributo.\r\n

approve.url
\r\nLa url per approvare questo post.\r\n

approve.label
\r\nL\'etichetta tradotta per il  link da cui approvare\r\n

deny.url
\r\nLa URL per rifiutare questo post.\r\n

deny.label
\r\nL\'etichetta tradotta per il  link da cui rifiutare.\r\n

leave.url
\r\nLa URL per lasciare questo post nello stato in cui si trova.\r\n

leave.label
\r\nL\'etichetta tradotta per il  link da cui lasciare questo post nello stato\r\nin cui si trova .\r\n

canReply
\r\nUna condizione che indica se questo utente può rispondere a questo post.\r\n

reply.url
\r\nLa URL per rispondere a questo post.\r\n

reply.label
\r\nL\'etichetta tradotta per il  link da cui rispondere.\r\n

search.url
\r\nLa URL per attivare il motore di ricerca WebGUI .\r\n

search.label
\r\nL\'etichetta tradotta per il  link al motore di ricerca.\r\n

back.url
\r\nLa URL per riportare l\'utente indietro all\'elenco principale.\r\n

back.label
\r\nL\'etichetta tradotta per il link indietro.\r\n

replies
\r\nUn elenco completo di tutte le risposte a questo post.

\r\n',1071926108,NULL); +INSERT INTO international VALUES (832,'WebGUI',8,'L\'Archivio Collaterale ha diverse macro per i suoi specifici utilizzi.  \n

^File();
\nQuesta macro costruisce il link a un file. Crea l\'icona per il file e visualizza\nil nome del file . Quindi linka entrambi al file per il download .\n

^I();
\nQuesta macro ritrova una  immagine con i parametri per l\'immagine definiti\nnell\'archivio collaterale. Puoi inserire nelle pagine una immagine\nprecedentemente caricata così ^I("Nomeimmagine");.

\n

^i(); - Gestore Immagini Percorso dell\'Immagine
\nQuesta macro ritorna il percorso (URL) di ogni file nell\'archivio collaterale.\nSpecifica il nome usando un tag così: ^i("Nome file");.

\n

^RandomImage();
\nQuesta macro prende una cartella dell\'archivio collaterale come parametro. Se il\nnome della cartella non è specificato allora sarà utilizzata la cartella root.\nLa macro prenderà a random una immagine dalla cartella e la visualizzerà,\nfunzionando allo stesso modo della macro ^I();\n

Esempio: ^RandomImage("sito logo");\n

^RandomSnippet();
\nQuesta macro prende una cartella dell\'archivio collaterale come parametro. Se il\nnome della cartella non è specificato allora sarà utilizzata la cartella root.\nLa macro prenderà a random uno  snippet(frammento ) dalla cartella e la\nvisualizzerà, funzionando allo stesso modo della macro ^Snippet(); \n

Esempio: ^RandomSnippet("text");\n

^SI();
\nLa macro Scaled Image consente di recuperare immagini nell\'archivio collaterale\ne ridimensionarle (dal lato server), mantenendo le proporzioni originali o dando\ndelle nuove proporzioni.\n

Utilizza quattro parametri. Il primo è il nome dell\'immagine oppure l\'id\ndell\'archivio collaterale.Il secondo è la larghezza. Imposta la larghezza\nsu  "0" per mantenere le proporzioni per altezza. Il terzo è\nl\'altezza. Imposta altezza su  "0" per mantenere le proporzioni\nper larghezza. Il quarto parametro ti permette di specificare parametri\naggiuntivi all\'immagine.\n

Esempi:
\nRecupera una immagine per nome (no ridimensionamento)
\n^SI(miaimmagine);\n

Recupera una immagine per collateralId (no ridimensionamento)
\n^SI(66);\n

Ridimensiona per larghezza, mantenendo le proporzioni
\n^SI(66,25);\n

Ridimensiona per altezza, mantenendo le proporzioni
\n^SI(66,0,25);\n

Manipolando le proporzioni
\n^SI(66,148,25);\n

Utilizzando altri parametri
\n^SI(66,0,0,\'border="0"\');

\n

^Snippet();
\nQuesta macro ritrova il contenuto di un frammento(snippet)  nell\'archivio\ncollaterale e lo inserisce nella  pagina.\n

Esempio: ^Snippet("flash code");\n

^Thumbnail();
\nRitorna la URL di un thumbnail per una immagine nell\'archivio collaterale.\nSpecifica il nome dell\'immagine così: ^Thumbnail("Nomeimmagine");.

\n

^ThumbnailLinker();
\nQuesto è un buon modo di creare velocemente una pagina di screenshots o una\nsemplice galleria di foto. Specifica semplicemente il nome di una immagine\nnell\'archivio collaterale, in questo modo: ^ThumbnailLinker("Logo"); e\nla macro creerà un thumbnail con un titolo che sarà collegato alla immagine a\ngrandezza piena.

\n',1054485214,NULL); +INSERT INTO international VALUES (842,'WebGUI',8,'Queste macro sono utilizzate nella gestione della navigazione del sito.\n

^C; or ^C(); - Crumb Trail
\nUn crumb trail (pista di briciole) generato dinamicamente che conduce alla\npagina corrente. Come opzione puoi specificare un tuo delimitatore tra i nomi\ndelle pagine usando ^C(::);. Il delimitatore predrfinito é >.\n

NOTA: la classe .crumbTrail dello style sheet è associata a questa macro.\n

^FlexMenu;
\nQuesta macro di menu crea un menu di primo livello che si espande a seconda di\nquale elemento del menù é selezionato.\n

^H; or ^H(); - Link a Home
\nUn link alla home page di questo sito. In più poi cambiare il testo del link\ncreando una macro così ^H("Torna alla pagina principale");.\n

Nota: Puoi anche usare il carattere speciale ^H(linkonly); per avere\nsolo la URL della home page e niente altro.\n

^M; or ^M(); - Menu corrente (Verticale)
\nUn menu verticale contenente le sotto pagine del livello corrente. In più, puoi\nconfigurare questa macro specificando quanti livelli deve scendere in profondità.\nPer default visualizzerà solo il primo livello. Per andare giù di tre livelli,\ncrea una macro così: ^M(3);. Se metti la macro a "0" Seguirà\ntutto l\'albero del sito.\n

^m; - Menu corrente (Orizzontale)
\nUn menu orizzontale contenente le sotto-pagine del livello corrente. Puoi come\nopzione specificare un delimitatore da usare tra i nomi delle pagine usando\n^m(:--:);. Il delimitatore predefinito é ·.\n

^PreviousDropMenu;
\nCrea un drop down menu (menù a tendina) contenente le sotto-pagine del livello\nprecedente nell\'albero di navigazione.\n

Esempio: ^PreviousDropMenu;

\n

^P; or ^P(); - Menu precedente (Verticale)
\nUn menu verticale contenente le sotto-pagine del livello precedente. In più,\npuoi configurare questa macro specificando quanti livelli di profondità il menu\ndeve scendere. Per default visualizzerà solo il primo livello. Per andare giù\ndi tre livelli, crea una macro così: ^P(3);. Se metti la macro a\n"0" Seguirà tutto l\'albero del sito.\n

^p; - Menu precedente (Orizzontale)
\nun menu orizzontale contenente le sotto-pagine del livello precedente. Come\nopzione, puoi specificare un delimitatore tra i nomi delle pagine usando\n^p(:--:);. Il delimitatore predefinito é ·.

\n

^rootmenu; o ^rootmenu(); (orizzontale)
\nCrea un menù orizzontale delle varie root del sistema (eccetto per quelle del\nC.m.s. come cestino etc). Puoi specificare un delimitatore così ^rootmenu(|);.\n

^RootTab;
\nCrea un sistema di navigazione dalle roots del tuo sito (eccetto le root di\nsistema di WebGUI) simile al tab forms dell\'interfaccia amministrativa (modifica\nwobjects o pagine).\n

NOTA: Ha  due speciali style sheet classes: .RootTabOn{} and .RootTabOff{}.\n

Esempi:
\n<style> .rootTabOn { line-height: 17px; font-size: 16px; spacing: 3px;\nborder: 1px solid black; border-bottom-width: 0px; background-color: #333333;\nz-index: 10000; padding: 3px 9px 5px 9px; color: white; } .rootTabOn A, .rootTabOn\nA:visited { color: white; font-weight: bold; text-decoration: none; } .rootTabOff\n{ line-height: 15px; font-size: 14px; border: 1px solid black;\nborder-bottom-width: 0px; background-color: #c8c8c8; z-index: 1000; padding: 2px\n9px 2px 9px; } .rootTabOff A, .rootTabOff A:visited { color: black;\ntext-decoration: underline; } .rootTabOff A:hover { font-weight: bold; }\n</style> \n

^RootTab;

\n

^SpecificDropMenu();
\nCrea un drop down menu partendo da un punto specifico del tuo albero di\nnavigazione. Presenta due parametri. Il primo è la url della pagina da cui far\niniziare il menù e il secondo  (opzionale) è la profondità dei livelli\nin cui il menù deve scendere.\n

Esempio: ^SpecificDropMenu("home",3);

\n

^S(); - SottoMenu specifico (Verticale)
\nQuesta macro ti consente di avere il sottomenu di qualsiasi pagina, a partire\ndalla pagina che hai specificato. Per esempio, puoi avere il sottomenu della\nhome page scrivendo ^S("home",0);. Il primo valore é il titolo\n"urlizzato" della pagina e il secondo é la profondità dei livelli\ndel menu. Per default visualizza solo il primo livello. Per andare giù di tre\nlivelli, crea una macro così: ^S("home",3);.\n

^s(); - SottoMenu specifico (Orizzontale)
\nQuesta macro ti consente di avere il sottomenu di qualsiasi pagina, a partire\ndalla pagina che hai specificato. Per esempio, puoi avere il sottomenu della\nhome page scrivendo ^s("home");. Il valore é il titolo "urlizzato"\ndella pagina. Come opzione, puoi specificare un delimitatore tra i nomi delle\npagine usando ^s("home",":--:");. Il delimitatore\npredefinito é ·.\n

^Synopsis; or ^Synopsis(); Menu
\nQuesta ti permette di avere il sottomenu di una pagina insieme alla descrizione\ndi ogni link. Puoi specificare un numero intero per dire alla macro quanti\nlivelli in profondità deve andare.\n

^TopDropMenu;
\nCrea un drop down menu del livello principale della navigazione.\n

Esempio: ^TopDropMenu;

\n

^T; or ^T(); - Menu di primo livello (Verticale)
\nUn menu verticale contenente le pagine principali del sito (ovvero le\nsottopagine della home page). In più, puoi configurare questa macro\nspecificando quanti livelli deve scendere in profondità. Per default\nvisualizzerà solo il primo livello. Per andare giù di tre livelli, crea una\nmacro così:^T(3);. Se metti la macro a "0" Seguirà tutto\nl\'albero del sito.\n

^t; - Menu di primo livello (Orizzontale)
\n. Un menu orizzontale contenente le pagine principali del sito (ovvero le\nsottopagine della home page). Come opzione, puoi specificare un delimitatore tra\ni nomi delle pagine usando ^t(:--:);. Il delimitatore predefinito é ·.

\n

^/; - URL del sistema
\nLa URL al gateway script (incluso il dominio per questo sito).

^\\; - URL della pagina
\nLa URL della pagina corrente.

\n',1054488121,NULL); +INSERT INTO international VALUES (9,'PhotoGallery',8,'Aggiungi una immagine',1034022249,NULL); +INSERT INTO international VALUES (844,'WebGUI',8,'Queste macro sono utilizzate nella gestione degli utenti e dei login.\n

^a; or ^a(); - Link mio account
\nUn link alla pagina con le informazioni sul tuo account. In più puoi cambiare\nil testo del link creando una macro come questa: ^a("Informazioni\naccount");.\n

Nota: puoi anche usare il carattere speciale  ^a(linkonly); per\navere solo la URL della pagina account page e niente altro. \n

^AdminText();
\nVisualizza un breve messaggio all\'utente in modalita admin. Esempio: ^AdminText("sei\nin modalità admin!");\n

^AdminToggle; o ^AdminToggle();
\nMette un link nella pagina che è visibile solo ai content manager e agli\namministratori. Il link attiva e disattiva la modalità amministrativa. Puoi\nanche specificare altri messaggi da visualizzare come questo: ^AdminToggle("Attiva","Spegni");\n

^CanEditText();
\nMostra un  messaggio all\'utente che può modificare la pagina corrente.\n

Esempio: ^CanEditText(^AdminToggle;);\n

^EditableToggle; or ^EditableToggle();
\nEsattamente come l\' AdminToggle,  ma il messaggio è mostrato solo se\nl\'utente ha i privilegi per modificare la pagina corrente.\n

^GroupAdd();
\nCon questa macro puoi consentire agli utenti di aggiungersi da soli ad un gruppo.\nIl primo parametro è il nome del gruppo al quale l\'utente può aggiungersi. Il\nsecondo è una stringa di testo con un link che l\'utente clicca per aggiungersi\nal gruppo.\n

NOTA: Se l\'utente non è loggato, o appartiene già al gruppo, o il\ngruppo non è impostato per consentire auto iscrizioni, allora nessun link\nsarà  mostrato.\n

^GroupDelete();
\nCon questa macro puoi consentire agli utenti di cancellarsi da soli ad un gruppo.\nIl primo parametro è il nome del gruppo dal quale l\'utente può cancellarsi. Il\nsecondo è una stringa di testo con un link che l\'utente clicca per cancellarsi\ndal gruppo.\n

NOTA: Se l\'utente non è loggato, o  non appartiene già al\ngruppo, o il gruppo non è impostato per consentire auto cancellazioni, allora\nnessun link sarà  mostrato.

\n

^GroupText();
\nVisualizza un breve messaggio all\'utente che appartiene ad un determinato\ngruppo. Esempio: ^GroupText"Visitatore","Hai bisogno di un\naccount per fare molte cose su questo sito!");\n

^L; or ^L(); - Login
\nUn piccolo form di login. Puoi configurare anche questa macro. Puoi decidere la\nlarghezza del form di login così: ^L(20);. Puoi anche decidere il messaggio\nvisualizzato dopo che l\'utente si é loggato così: ^L(20,Ciao ^a(^@;);. Clicca\n%qui% se vuoi uscire!)\n

^LoginToggle; o ^LoginToggle();
\nVisualizza un messaggio "Login" o "Logout" a seconda che\nl\'utente sia logato o meno. Puoi specificare come opzione dei messaggi diversi\ncosì: ^LoginToggle("Clicca qui per entrare.","Clicca qui per\nuscire.");\n

^@; - Nome Utente
\n
Il nome utente dell\'utente attualmente loggato.\n

^#; - ID Utente
\nLo user id dell\'utente attualmente loggato.

\n',1054490332,NULL); +INSERT INTO international VALUES (8,'PhotoGallery',8,'Gruppo abilitato a caricare immagini',1034022219,NULL); +INSERT INTO international VALUES (846,'WebGUI',8,'Queste macro sono utilizzate nella gestione degli stili grafici in WebGUI.\n

^AdminBar;
\nPosiziona la barra degli strumenti amministrativi nella pagina. Questa è una\nmacro obbligatoria nel segmento "body" del gestore degli stili.\n

^c; - Nome Azienda
\nIl nome dell\'azienda specificato nei settaggi daal tuo amministratore.\n

^e; - Indirizzo email dell\'azienda
\nL\'indirizzo di email della tua azienda come specificato nei settaggi\ndall\'amministratore.\n

^Extras;
\nRitorna il percorso degli extra del C.M.S., che contiene cose come le icone, le\nimmagini, etc...\n

^LastModified; o ^LastModified();
\nVisualizza la data in cui questa pagina è stata modificata in base ai wobject\nnella pagina. La data (di default) è visualizzata in base alle preferenze\ndell\'utente sulla data. Opzionalmente, può utilizzare due parametri. Il primo\nè il testo da mostrare prima della data. Il secondo è il formato della data,\nguarda la macro D (data) macro per dettagli.\n

Esempio: ^LastModified("aggiornato: ","%c %D, %y");

\n

^PageTitle;
\nVisualizza il titolo della pagina corrente.\n

NOTA:
\nSe cominci ad usare la modalità amministrativa o le funzioni dei wobject, il titolo della pagina diventerà un link che ti riporta velocemente indietro a quella pagina.\n

^r; or ^r(); - Rendi la pagina stampabile
\nCrea un link per rimuovere lo stile da una pagina per renderla stampabile. In più,\npuoi cambiare il testo del link usando una macro come questa ^r("Stampa\nquesta pagina!");.\n

Per default, quando questo link viene cliccato, lo stile corrente della\npagina è sostituito con lo stile "Versione Stampabile" del gestore\ndegli stili. Comunque questo comportamento può essere cambiato specificando il\nnome di un altro stile del gestore stili come secondo parametro, in questo modo:\n^r("Stampa!","miostile");\n

Note: Puoi usare anche la macro speciale ^r(linkonly); per avere\nsolamelnte la URL della pagina stampabile e nient\'altro. Inoltre, la calasse .makePrintableLink\nè collegata a questa macro.

\n

^RootTitle;
\nRitorna il titolo dalla root della pagina corrente. Per esempio, la root\nprincipale nel C.M.S. è la root "Home". Molti siti avanzati hanno più\ndi una root e quindi hanno bisogno di un modo per visualizzare la root in cui si\ntrova in quel momento l\'utente.\n

^u; - URL dell\'azienda
\nLa URL per la tua azienda specificata nei settaggi dall\'amministratore.\n

^?; - Cerca
\nAggiunge una box di ricerca.

\n

^Spacer();
\nCrea un spacer nel tuo layout. Molto utile per creare grafica utilizzando divs e\ntabelle. Utilizza due parametri, larghezza e altezza.\n

Esempio: ^Spacer("100","50");

\n

^-;
\nQuesta è conosciuta come separator macro. Deve apparire esclusivamente una sola\nvolta in ogni stile grafico. Ovunque sarà inserita sarà la zona dove verranno\nvisualizzati i contenuti della pagina in oggetto.

\n\n',1054488755,NULL); INSERT INTO international VALUES (748,'WebGUI',8,'Conteggio Utenti',1046525295,NULL); INSERT INTO international VALUES (863,'WebGUI',8,'Offset cancellazione',1046525223,NULL); INSERT INTO international VALUES (864,'WebGUI',8,'Offset della notifica di scadenza',1046525203,NULL); -INSERT INTO international VALUES (826,'WebGUI',8,'WebGUI ha un potente linguaggio per i template che fornisce il massimo controllo sul layout dei contenuti. La seguente è una lista della sintassi di questo linguaggio.
\r\n
\r\nNOTA: le parole foo e bar sono usate in questi esempi come sostituti di nomi di variabili veri e propri che si vorranno veramente usare. Non fanno parte del linguaggio per i template.
\r\n
\r\nVariabili
\r\nLe variabili sono il più basilare dei comandi per i template. Sono usate per posizionare pezzi di contenuto.
\r\nSintassi: <tmpl_var foo> o <tmpl_var name=\"foo\">
\r\nEsempio: <tmpl_var name>
\r\n
\r\nCondizioni
\r\nPer i programmatori le condizioni non sono nulla di nuovo, ma per i designers spesso possono generare confusione, all\'inizio. Le condizioni sono in effetti domande con risposta vera o falsa, e se le si pensa in questo modo, non ci saranno problemi.
\r\n
\r\nSintassi: <tmpl_if foo> <tmpl_else> </tmpl_if>
\r\nSintassi: <tmpl_unless foo> <tmpl_else> </tmpl_unless>
\r\nEsempio: <tmpl_if isTrue> Era vero!<tmpl_else> Era falso! </tmpl_if>
\r\n
\r\nCicli
\r\nI cicli operano su una lista di output di dati per ogni passo nel ciclo. I cicli sono leggermente più complicati da usare delle variabili, ma sono molto più potenti.
\r\n
\r\nSintassi: <tmpl_loop foo> </tmpl_loop>
\r\nEsempio:
\r\n<tmpl_loop users>
\r\nNome: <tmpl_var first_name><br/>
\r\n</tmpl_loop>
\r\n
\r\nCicli condizionali

\r\nI cicli hanno speciali variabili condizionali che sono loro proprie. Sono
\r\n__FIRST__, __ODD__, __INNER__, and __LAST__.
\r\nEsempi:
\r\n<TMPL_LOOP FOO>
\r\n <TMPL_IF __FIRST__>
\r\n Questo produce output solo per il primo passo.
\r\n </TMPL_IF>
\r\n
\r\n <TMPL_IF __ODD__>
\r\n Questo produce output per tutti gli altri passi, nei passi dispari.
\r\n </TMPL_IF>
\r\n
\r\n <TMPL_UNLESS __ODD__>
\r\n Questo produce output per tutti gli altri passi, nei passi pari.
\r\n </TMPL_UNLESS>
\r\n
\r\n <TMPL_IF __INNER__>
\r\n Questo produce output per tutti i passi che non sono nè il primo nè l\'ultimo.
\r\n </TMPL_IF>
\r\n
\r\n <TMPL_IF __LAST__>
\r\n Questo produce output solo per l\'ultimo passo.
\r\n <TMPL_IF>
\r\n</TMPL_LOOP>
\r\n
\r\nNOTA: Sia il linguaggio che le variabili per i template sono case-insensitive (non c\'è differenza tra lettere maiuscole e minuscole).
\r\n

\r\n',1046345268,NULL); +INSERT INTO international VALUES (826,'WebGUI',8,'WebGUI ha un potente linguaggio per i template che fornisce il massimo controllo sul layout dei contenuti. La seguente è una lista della sintassi di questo linguaggio.
\n
\nNOTA: le parole foo e bar sono usate in questi esempi come sostituti di nomi di variabili veri e propri che si vorranno veramente usare. Non fanno parte del linguaggio per i template.
\n
\nVariabili
\nLe variabili sono il più basilare dei comandi per i template. Sono usate per posizionare pezzi di contenuto.
\nSintassi: <tmpl_var foo> o <tmpl_var name=\"foo\">
\nEsempio: <tmpl_var name>
\n
\nCondizioni
\nPer i programmatori le condizioni non sono nulla di nuovo, ma per i designers spesso possono generare confusione, all\'inizio. Le condizioni sono in effetti domande con risposta vera o falsa, e se le si pensa in questo modo, non ci saranno problemi.
\n
\nSintassi: <tmpl_if foo> <tmpl_else> </tmpl_if>
\nSintassi: <tmpl_unless foo> <tmpl_else> </tmpl_unless>
\nEsempio: <tmpl_if isTrue> Era vero!<tmpl_else> Era falso! </tmpl_if>
\n
\nCicli
\nI cicli operano su una lista di output di dati per ogni passo nel ciclo. I cicli sono leggermente più complicati da usare delle variabili, ma sono molto più potenti.
\n
\nSintassi: <tmpl_loop foo> </tmpl_loop>
\nEsempio:
\n<tmpl_loop users>
\nNome: <tmpl_var first_name><br/>
\n</tmpl_loop>
\n
\nCicli condizionali

\nI cicli hanno speciali variabili condizionali che sono loro proprie. Sono
\n__FIRST__, __ODD__, __INNER__, and __LAST__.
\nEsempi:
\n<TMPL_LOOP FOO>
\n <TMPL_IF __FIRST__>
\n Questo produce output solo per il primo passo.
\n </TMPL_IF>
\n
\n <TMPL_IF __ODD__>
\n Questo produce output per tutti gli altri passi, nei passi dispari.
\n </TMPL_IF>
\n
\n <TMPL_UNLESS __ODD__>
\n Questo produce output per tutti gli altri passi, nei passi pari.
\n </TMPL_UNLESS>
\n
\n <TMPL_IF __INNER__>
\n Questo produce output per tutti i passi che non sono nè il primo nè l\'ultimo.
\n </TMPL_IF>
\n
\n <TMPL_IF __LAST__>
\n Questo produce output solo per l\'ultimo passo.
\n <TMPL_IF>
\n</TMPL_LOOP>
\n
\nNOTA: Sia il linguaggio che le variabili per i template sono case-insensitive (non c\'è differenza tra lettere maiuscole e minuscole).
\n

\n',1046345268,NULL); +INSERT INTO international VALUES (877,'WebGUI',8,'Iscrizioni ai thread',1045776501,NULL); INSERT INTO international VALUES (866,'WebGUI',8,'Messaggio di notifica scadenza',1046302185,NULL); INSERT INTO international VALUES (819,'WebGUI',8,'Auto Disattivato',1046301928,NULL); -INSERT INTO international VALUES (73,'SiteMap',8,'La seguente è la lista delle variabili disponibili nel template per la Mappa\r\ndel Sito.\r\n

page_loop
\r\nQuesto ciclo contiene tutto delle pagine della mappa del sito.\r\n

\r\n page.indent
\r\n Lo spazio di rientro per questa pagina che indica la profondità della pagina\r\n nell\'albero di navigazione.\r\n

page.url
\r\n La URL alla pagina.\r\n

page.id
\r\n L\'identificatore unico che WebGUI usa internamente, per questa pagina.\r\n

page.title
\r\n Il titolo di questa pagina.\r\n

page.menutitle
\r\n Il titolo di questa pagina che appare nel menù.\r\n

page.synopsis
\r\n La descrizione del contenuto di questa pagina (se esiste).\r\n

page.isRoot
\r\n Una condizione che indica se questa pagina è o non è una root.\r\n\r\n

page.isTop
\r\nUna condizione che indica se questa pagina è o meno alla sommità dell\'albero di navigazione.',1048096405,NULL); -INSERT INTO international VALUES (76,'LinkList',8,'La seguente è la lista delle variabili disponibili nel template Lista di Link.\r\n

addlink.url
\r\nLa URL per aggiungere un link  a questa Lista di Link.\r\n

addlink.label
\r\nL\'etichetta tradotta per la URL aggiungi link.\r\n

canEdit
\r\nUna condizione che indica se l\'utente può modificare il link.

link_loop
\r\nQuesto loop contiene tutte le informazioni su ogni link.\r\n

\r\n link.url
\r\n La URL per questo link.\r\n

link.name
\r\n Il testo da linkare.\r\n

link.controls
\r\n I controlli di gestione di WebGUI per questo link.\r\n

link.newwindow
\r\n Una condizione che indica se il link deve essere aperto in una nuova finestra.\r\n

link.description
\r\n La description di questo link.\r\n',1054313905,NULL); -INSERT INTO international VALUES (74,'Item',8,'La seguente è la lista delle variabili disponibili nel template Item.\r\n

attachment.name
\r\nIl nome del file per il file allegato a questo item.\r\n

attachment.url
\r\nLa URL per il download del file allegato a questo item.\r\n

attachment.icon
\r\nLa URL alla icona per il file allegato a questo item.

\r\n',1046300640,NULL); -INSERT INTO international VALUES (76,'FileManager',8,'La seguente è la lista delle variabili disponibili nel template File Manager.\r\n

titleColumn.url
\r\nLa URL per ordinare per titolo.\r\n

titleColumn.label
\r\nL\'etichetta tradotta per il titolo.\r\n

descriptionColumn.label
\r\nL\'etichetta tradotta per la descrizione.\r\n

descriptionColumn.url
\r\nLa URL per ordinare per descrizione.\r\n

dateColumn.label
\r\nL\'etichetta tradotta per la data di upload.\r\n

dateColumn.url
\r\nLa URL per ordinare per data upload.\r\n

search.form
\r\nForm di ricerca di WebGUI.\r\n

search.url
\r\nLa URL per attivare o disattivare la ricerca.\r\n

search.label
\r\nL\'etichetta tradotta per il link al motore di ricerca.\r\n

addfile.url
\r\nLa URL per aggiungere un file al file manager.\r\n

addfile.label
\r\nL\'etichetta tradotta per il link aggiungi file.\r\n

file_loop
\r\nUn ciclo contenente le informazioni su ogni file caricato in questo file\r\nmanager.\r\n

\r\n file.canView
\r\n Una condizione per definire se l\'utente attuale ha i privilegi per vedere\r\n questo file.\r\n

file.controls
\r\n I controlli di gestione di  WebGUI per questo file.\r\n

file.title
\r\n Il titolo per questo file.\r\n

file.version1.name
\r\n Il nome del file per la prima versione di questo file.\r\n

file.version1.url
\r\n IL download URL per la prima versione di questo file.\r\n

file.version1.icon
\r\n La URL all\'icona per il tipo di file della prima versione di questo file.\r\n

file.version1.size
\r\n La dimensione di archiviazione per la prima versione di questo file.\r\n

file.version1.type
\r\n Il tipo (o estensione del file )  per la prima versione di questo file.\r\n

file.version1.thumbnail
\r\n La URL al thumbnail per la prima versione di questo file.\r\n

file.version1.isImage
\r\n Una condizione che indica se la prima versione di questo file è una immagine\r\n o no.\r\n

file.version2.name
\r\n Il nome del file per la seconda versione di questo file.\r\n

file.version2.url
\r\n IL download URL per la seconda versione di questo file.\r\n

file.version2.icon
\r\n La URL all\'icona per il tipo di file della  seconda versione di questo\r\n file.\r\n

file.version2.size
\r\n La dimensione di archiviazione per la seconda versione di questo file.\r\n

file.version2.type
\r\n Il tipo (o estensione del file ) per la seconda versione di questo file.\r\n

file.version2.thumbnail
\r\n La URL all\'icona per il tipo di file della seconda versione di questo file.\r\n

file.version2.isImage
\r\n Una condizione che indica se la seconda versione di questo file è una\r\n immagine o no.\r\n

file.version3.name
\r\n Il nome del file per la terza versione di questo file.\r\n

file.version3.url
\r\n IL download URL per la terza versione di questo file.\r\n

file.version3.icon
\r\n La URL all\'icona per il tipo di file della terza versione di questo file.\r\n

file.version3.size
\r\n La dimensione di archiviazione per la terza versione di questo file.\r\n

file.version3.type
\r\n Il tipo (o estensione del file ) della terza versione di questo file.\r\n

file.version3.thumbnail
\r\n La URL al thumbnail per la terza versione di questo file.\r\n

file.version3.isImage
\r\n Una condizione che indica se la terza versione di questo file è una immagine\r\n o no.\r\n

file.description
\r\n La descrizione di questo file.\r\n

file.date
\r\n La data in cui questo file è stato caricato.\r\n

file.time
\r\n Il tempo in cui questo file è stato caricato.\r\n

 

\r\n
\r\n

noresults.message
\r\nUn messaggio che attesta che questo file manager non ha files da far\r\nvisualizzare a questo utente.\r\n

noresults
\r\nUna condizione che indica se ci sono file da visualizzare per questo utente.\r\n

firstPage
\r\nUn Link alla prima pagina dell\'impaginazione.\r\n

lastPage
\r\nUn Link all\'ultima pagina dell\'impaginazione.\r\n

nextPage
\r\nUn Link alla prossima pagina dell\'impaginazione.\r\n

previousPage
\r\nUn Link alla prossima pagina dell\'impaginazione.\r\n

pageList
\r\nUna lista di link a tutte le pagine dell\'impaginazione del calendario.\r\n

multiplePages
\r\nUna variabile che indica dove esiste più di una pagina nell\'impaginazione.

\r\n',1046300470,NULL); -INSERT INTO international VALUES (97,'EventsCalendar',8,'La seguente è la lista delle variabili disponibili nel template eventi.\r\n

title
\r\nIl titolo di questo evento.\r\n

start.label
\r\nL\'etichetta tradotta per la data di inizio.\r\n

start.date
\r\nLa data di inizio dell\'evento.\r\n

end.date
\r\nLa data di fine dell\'evento..\r\n

end.label
\r\nL\'etichetta tradotta per la data di fine.\r\n

canEdit
\r\nUna condizione che indica se l\'attuale utente può modificare un evento.\r\n

edit.url
\r\nLa URL per modificare questo evento.\r\n

edit.label
\r\nL\'etichetta tradotta per l\'URL di modifica.\r\n

delete.url
\r\nLa URL per cancellare questo evento.\r\n

delete.label
\r\nL\'etichetta tradotta per cancellare la URL.\r\n

previous.url
\r\nLa URL per visualizzare l\'evento prima di questo.\r\n

previous.label
\r\nL\'etichetta tradotta per la URL precedente.\r\n

next.label
\r\nL\'etichetta tradotta per la prossima URL.\r\n

next.url
\r\nLa URL per visualizzare l\'evento dopo di questo.\r\n

description
\r\nLa descrizione di questo evento.

\r\n',1046297494,NULL); -INSERT INTO international VALUES (619,'WebGUI',8,'Questa funzione cancella permanentemente il wobject selezionato da una pagina. Se non sei sicuro di voler cancellare questo contenuto faresti meglio a tagliare (cut) il contenuto negli appunti finché non sarai sicuro di volerlo veramente cancellare.\r\n

\r\n\r\nCome con ogni operazione di cancellazione, sei chiamato a rispondere ad una conferma per procedere con la cancellazione. Se rispondi di sì, la cancellazione procederà e non ci sarà possibilità di recuperare i dati. Se rispondi di no sarai riportato alla schermata precedente.',1046126787,NULL); -INSERT INTO international VALUES (636,'WebGUI',8,'Per creare un package segui questi passi:\r\n

    \r\n
  1. Dal menu amministrativo scegli \"Visualizza Packages.\"\r\n
  2. Aggiungi una pagina e dagli un nome. Il nome della pagina sarà il nome del package.\r\n
  3. Vai alla nuova pagina e aggiungi pagine e widgets. Ogni pagina e widget che aggiungi sarà creata ogni volta che il package sarà sviluppato. \r\n
\r\nNote:
\r\nPer aggiungere, modificare e cancellare i packages devi essere nel gruppo Package Mangers o nel gruppo Admins.\r\n

\r\nSe aggiungi contenuti a qualcuno dei widgets, quel contenuto sarà automaticamente copiato anche quando il package viene sviluppato.\r\n

\r\nI privilegi e gli stili assegnati alle pagine nel package non saranno copiati nello sviluppo del package. Le pagine prenderanno i privilegi e gli stili dell\'area in cui sono sviluppati.',1046126725,NULL); -INSERT INTO international VALUES (614,'WebGUI',8,'Gli stili sono usati per gestire l\'aspetto grafico delle pagine. Puoi avere un numero illimitato di stili, cosicché il tuo sito possa cambiare stile a tuo piacimento. Puoi avere pagine che rispecchiano lo stile delle brochure della tua azienda, e altre che assomigliano a Yahoo!®. Puoi addirittura avere pagine che sembrano pagine stampate di un libro. Usando la gestione degli stili, hai un potente controllo su tutti i tuoi design.\r\n

\r\n\r\nCi sono vari stili predefiniti. Tra questi, alcuni non dovrebbero essere modificati o cancellati. Alcuni sono semplicemente esempi e possono essere modificati e cancellati a piacere.\r\n

\r\n\r\nFail Safe
\r\nQuando cancelli uno stile che é ancora in uso da alcune pagine, lo stile Fail safe viene applicato a quelle pagine. Questo stile ha uno sfondo bianco e una navigazione molto semplice.\r\n

\r\n\r\nMake Page Printable
\r\nQuesto stile é usato quando metti una macro ^r; e l\'utente ci clicca sopra. Questo stile consente di mettere un semplice logo e un messaggio di copyright nelle tue pagine stampabili.\r\n

\r\n\r\nPackages
\r\nQuesto stile é usato nel sistema di gestione dei package.\r\n

\r\n\r\nTrash
\r\nQuesto stile é usato dal sistema trash (cestino).

\r\n\r\n',1054314017,NULL); -INSERT INTO international VALUES (609,'WebGUI',8,'Quando cancelli uno stile tutte le pagine che usano quello stile verranno riconvertite usando lo stile fail safe (default). Per assicurare una visualizzazione coerente, dovresti essere sicuro che nessuna pagina stia usando lo stile prima di cancellarlo.\r\n

\r\n\r\nCome con ogni operazione di cancellazione, sei chiamato a rispondere ad una conferma per procedere con la cancellazione. Se rispondi di sì, la cancellazione procederà e non ci sarà possibilità di recuperare i dati. Se rispondi di no sarai riportato alla schermata precedente.',1046126578,NULL); -INSERT INTO international VALUES (626,'WebGUI',8,'I Wobjects (prima conosciuti come Widgets) sono la vera potenza del C.M.S.. I Wobjects sono piccole applicazioni costruite per essere eseguite dal C.M.S.. I forum e i sondaggi sono esempi di widget.\r\n

\r\nPer aggiungere un Wobjects ad una pagina, per prima cosa vai a quella pagina e poi seleziona Aggiungi contenuto... dall\'angolo in alto a sinistra del tuo schermo. Ogni widget ha il suo help quindi assicurati di leggerlo, se non sei sicuro di come usarlo.\r\n

Style Sheets: Tutti i wobjects hanno una style-sheet class un id\r\nassociati.\r\n

La style-sheet class è la parola "wobject" più il tipo di wobject\r\ndi cui si tratta. Quindi per un sondaggio la class sarà "wobjectPoll".\r\nLa class è associarta con tutti i wobjects di quel tipo sul sistema\r\n

La style-sheet id è la parola "wobjectId" più il Wobject Id per\r\nl\'istanza di quel wobject. Quindi se hai un articolo con una Wobject Id di 94, tla\r\nsua id sarà "wobjectId94".

\r\n',1048071463,NULL); +INSERT INTO international VALUES (73,'SiteMap',8,'La seguente è la lista delle variabili disponibili nel template per la Mappa\ndel Sito.\n

page_loop
\nQuesto ciclo contiene tutto delle pagine della mappa del sito.\n

\n page.indent
\n Lo spazio di rientro per questa pagina che indica la profondità della pagina\n nell\'albero di navigazione.\n

page.url
\n La URL alla pagina.\n

page.id
\n L\'identificatore unico che WebGUI usa internamente, per questa pagina.\n

page.title
\n Il titolo di questa pagina.\n

page.menutitle
\n Il titolo di questa pagina che appare nel menù.\n

page.synopsis
\n La descrizione del contenuto di questa pagina (se esiste).\n

page.isRoot
\n Una condizione che indica se questa pagina è o non è una root.\n\n

page.isTop
\nUna condizione che indica se questa pagina è o meno alla sommità dell\'albero di navigazione.',1048096405,NULL); +INSERT INTO international VALUES (4,'IndexedSearch',2,'Diese Seite',1066925977,NULL); +INSERT INTO international VALUES (25,'IndexedSearch',2,'Beliebiger Benutzer',1066944998,NULL); +INSERT INTO international VALUES (24,'IndexedSearch',2,'Beliebige Sprache',1066944983,NULL); +INSERT INTO international VALUES (26,'IndexedSearch',1,'Search, Add/Edit',1067346336,''); +INSERT INTO international VALUES (23,'IndexedSearch',2,'Jeder Inhaltstyp',1066926216,NULL); +INSERT INTO international VALUES (12,'IndexedSearch',2,'Vorschauläe des Suchergebnisses',1066926202,NULL); +INSERT INTO international VALUES (8,'IndexedSearch',2,'Nur Ergebnisse aus den Bereichen',1066926233,NULL); +INSERT INTO international VALUES (18,'IndexedSearch',2,'Beliebige Bereiche',1066926181,NULL); +INSERT INTO international VALUES (19,'IndexedSearch',2,'Wobject',1066926116,NULL); +INSERT INTO international VALUES (20,'IndexedSearch',2,'Wobject Details',1066926104,NULL); +INSERT INTO international VALUES (21,'IndexedSearch',2,'Standardinhalte',1066950450,NULL); +INSERT INTO international VALUES (22,'IndexedSearch',2,'Profil',1066926050,NULL); +INSERT INTO international VALUES (76,'FileManager',8,'La seguente è la lista delle variabili disponibili nel template File Manager.\n

titleColumn.url
\nLa URL per ordinare per titolo.\n

titleColumn.label
\nL\'etichetta tradotta per il titolo.\n

descriptionColumn.label
\nL\'etichetta tradotta per la descrizione.\n

descriptionColumn.url
\nLa URL per ordinare per descrizione.\n

dateColumn.label
\nL\'etichetta tradotta per la data di upload.\n

dateColumn.url
\nLa URL per ordinare per data upload.\n

search.form
\nForm di ricerca di WebGUI.\n

search.url
\nLa URL per attivare o disattivare la ricerca.\n

search.label
\nL\'etichetta tradotta per il link al motore di ricerca.\n

addfile.url
\nLa URL per aggiungere un file al file manager.\n

addfile.label
\nL\'etichetta tradotta per il link aggiungi file.\n

file_loop
\nUn ciclo contenente le informazioni su ogni file caricato in questo file\nmanager.\n

\n file.canView
\n Una condizione per definire se l\'utente attuale ha i privilegi per vedere\n questo file.\n

file.controls
\n I controlli di gestione di  WebGUI per questo file.\n

file.title
\n Il titolo per questo file.\n

file.version1.name
\n Il nome del file per la prima versione di questo file.\n

file.version1.url
\n IL download URL per la prima versione di questo file.\n

file.version1.icon
\n La URL all\'icona per il tipo di file della prima versione di questo file.\n

file.version1.size
\n La dimensione di archiviazione per la prima versione di questo file.\n

file.version1.type
\n Il tipo (o estensione del file )  per la prima versione di questo file.\n

file.version1.thumbnail
\n La URL al thumbnail per la prima versione di questo file.\n

file.version1.isImage
\n Una condizione che indica se la prima versione di questo file è una immagine\n o no.\n

file.version2.name
\n Il nome del file per la seconda versione di questo file.\n

file.version2.url
\n IL download URL per la seconda versione di questo file.\n

file.version2.icon
\n La URL all\'icona per il tipo di file della  seconda versione di questo\n file.\n

file.version2.size
\n La dimensione di archiviazione per la seconda versione di questo file.\n

file.version2.type
\n Il tipo (o estensione del file ) per la seconda versione di questo file.\n

file.version2.thumbnail
\n La URL all\'icona per il tipo di file della seconda versione di questo file.\n

file.version2.isImage
\n Una condizione che indica se la seconda versione di questo file è una\n immagine o no.\n

file.version3.name
\n Il nome del file per la terza versione di questo file.\n

file.version3.url
\n IL download URL per la terza versione di questo file.\n

file.version3.icon
\n La URL all\'icona per il tipo di file della terza versione di questo file.\n

file.version3.size
\n La dimensione di archiviazione per la terza versione di questo file.\n

file.version3.type
\n Il tipo (o estensione del file ) della terza versione di questo file.\n

file.version3.thumbnail
\n La URL al thumbnail per la terza versione di questo file.\n

file.version3.isImage
\n Una condizione che indica se la terza versione di questo file è una immagine\n o no.\n

file.description
\n La descrizione di questo file.\n

file.date
\n La data in cui questo file è stato caricato.\n

file.time
\n Il tempo in cui questo file è stato caricato.\n

 

\n
\n

noresults.message
\nUn messaggio che attesta che questo file manager non ha files da far\nvisualizzare a questo utente.\n

noresults
\nUna condizione che indica se ci sono file da visualizzare per questo utente.\n

firstPage
\nUn Link alla prima pagina dell\'impaginazione.\n

lastPage
\nUn Link all\'ultima pagina dell\'impaginazione.\n

nextPage
\nUn Link alla prossima pagina dell\'impaginazione.\n

previousPage
\nUn Link alla prossima pagina dell\'impaginazione.\n

pageList
\nUna lista di link a tutte le pagine dell\'impaginazione del calendario.\n

multiplePages
\nUna variabile che indica dove esiste più di una pagina nell\'impaginazione.

\n',1046300470,NULL); +INSERT INTO international VALUES (878,'WebGUI',8,'Non hai iscrizioni a nessun thread.',1045776538,NULL); +INSERT INTO international VALUES (97,'EventsCalendar',8,'La seguente è la lista delle variabili disponibili nel template eventi.\n

title
\nIl titolo di questo evento.\n

start.label
\nL\'etichetta tradotta per la data di inizio.\n

start.date
\nLa data di inizio dell\'evento.\n

end.date
\nLa data di fine dell\'evento..\n

end.label
\nL\'etichetta tradotta per la data di fine.\n

canEdit
\nUna condizione che indica se l\'attuale utente può modificare un evento.\n

edit.url
\nLa URL per modificare questo evento.\n

edit.label
\nL\'etichetta tradotta per l\'URL di modifica.\n

delete.url
\nLa URL per cancellare questo evento.\n

delete.label
\nL\'etichetta tradotta per cancellare la URL.\n

previous.url
\nLa URL per visualizzare l\'evento prima di questo.\n

previous.label
\nL\'etichetta tradotta per la URL precedente.\n

next.label
\nL\'etichetta tradotta per la prossima URL.\n

next.url
\nLa URL per visualizzare l\'evento dopo di questo.\n

description
\nLa descrizione di questo evento.

\n',1046297494,NULL); +INSERT INTO international VALUES (619,'WebGUI',8,'Questa funzione cancella permanentemente il wobject selezionato da una pagina. Se non sei sicuro di voler cancellare questo contenuto faresti meglio a tagliare (cut) il contenuto negli appunti finché non sarai sicuro di volerlo veramente cancellare.\n

\n\nCome con ogni operazione di cancellazione, sei chiamato a rispondere ad una conferma per procedere con la cancellazione. Se rispondi di sì, la cancellazione procederà e non ci sarà possibilità di recuperare i dati. Se rispondi di no sarai riportato alla schermata precedente.',1046126787,NULL); +INSERT INTO international VALUES (636,'WebGUI',8,'Per creare un package segui questi passi:\n

    \n
  1. Dal menu amministrativo scegli \"Visualizza Packages.\"\n
  2. Aggiungi una pagina e dagli un nome. Il nome della pagina sarà il nome del package.\n
  3. Vai alla nuova pagina e aggiungi pagine e widgets. Ogni pagina e widget che aggiungi sarà creata ogni volta che il package sarà sviluppato. \n
\nNote:
\nPer aggiungere, modificare e cancellare i packages devi essere nel gruppo Package Mangers o nel gruppo Admins.\n

\nSe aggiungi contenuti a qualcuno dei widgets, quel contenuto sarà automaticamente copiato anche quando il package viene sviluppato.\n

\nI privilegi e gli stili assegnati alle pagine nel package non saranno copiati nello sviluppo del package. Le pagine prenderanno i privilegi e gli stili dell\'area in cui sono sviluppati.',1046126725,NULL); +INSERT INTO international VALUES (626,'WebGUI',8,'I Wobjects (prima conosciuti come Widgets) sono la vera potenza del C.M.S.. I Wobjects sono piccole applicazioni costruite per essere eseguite dal C.M.S.. I forum e i sondaggi sono esempi di widget.\n

\nPer aggiungere un Wobjects ad una pagina, per prima cosa vai a quella pagina e poi seleziona Aggiungi contenuto... dall\'angolo in alto a sinistra del tuo schermo. Ogni widget ha il suo help quindi assicurati di leggerlo, se non sei sicuro di come usarlo.\n

Style Sheets: Tutti i wobjects hanno una style-sheet class un id\nassociati.\n

La style-sheet class è la parola "wobject" più il tipo di wobject\ndi cui si tratta. Quindi per un sondaggio la class sarà "wobjectPoll".\nLa class è associarta con tutti i wobjects di quel tipo sul sistema\n

La style-sheet id è la parola "wobjectId" più il Wobject Id per\nl\'istanza di quel wobject. Quindi se hai un articolo con una Wobject Id di 94, tla\nsua id sarà "wobjectId94".

\n',1048071463,NULL); INSERT INTO international VALUES (638,'WebGUI',8,'I Templates sono usati per determinare come devono essere visualizzate le pagine. Attualmente i siti presentano molto di più di un semplice menù e di una grande area col contenuto. Molti di essi hanno tre o quattro colonne con magari una testata con banner etc. Si possono creare questi layout complessi utlizzando appunto i Templates. Ci sono diversi template predefiniti per semplificare il tuo lavoro, ma comunque puoi crearne quanti ne vuoi in modo che il tuo sito appaia esattamente come lo desideri.',1054314102,NULL); -INSERT INTO international VALUES (611,'WebGUI',8,'Nome dell\'azienda
\r\nTIl nome della tua azienda. Apparirà in\r\n tutte le email e ovunque hai usato la macro nome azienda.\r\n

\r\nInd\r\nirizzo email dell\'azienda
\r\nUn indirizzo email generale per la tua azi\r\nenda. Questo é l\'indirizzo dal quale tutti i messaggi automatici proverranno. P\r\nuò essere usato anche dal sistema di macro del C.M.S..\r\n

\r\nURL dell\r\n\'Azienda
\r\nLo URL primario della tua Azienda. Questo apparirà in tutte\r\n le email automatiche mandate dal sistema. Può essere usato anche dal sistema di\r\n macro del C.M.S..\r\n',1046125845,NULL); -INSERT INTO international VALUES (625,'WebGUI',8,'Carica tutte le immagini che potresti voler utilizzare in più di una posizione sul sito.\r\n

\r\nNome
\r\nL\'etichetta con la quale questa immagine verrà chiamata per l\'inclusione nelle pagine.\r\n

\r\n\r\nOrganizza in Cartelle
\r\nLa cartella Dell\'Archivio Collaterale nella quale deve essere inserita questa immagine.\r\n

\r\n\r\nFile
\r\nSeleziona un file dal tuo disco rigido da uploadare sul server.\r\n

\r\n\r\nParametri
\r\nAggiungi qualsiasi parametro HTML <img&rt; che vuoi come default per questa immagine.\r\n

\r\nEsempio:
\r\nalign=\"right\"\r\nalt=\"Questa é una immagine\"\r\n\r\nDimensione Thumbnail
\r\nQuanti pixel deve misurare il thumbnail di questa immagine.\r\n

\r\n',1046124685,NULL); -INSERT INTO international VALUES (635,'WebGUI',8,'I Package sono gruppi di pagine e widgets che sono predefinite per essere sviluppate insieme. Un package manager può sentire l\'esigenza di creare varie pagine con un forum, una FAQ, un sondaggio perché questa operazione viene eseguita spesso. I Packages sono definiti per diminuire il disturbo di azioni ripetitive.\r\n

\r\nUn package che la gente spesso crea é un package pagina/articolo. Spesso quando aggiungi una pagina vuoi anche aggiungere un articolo ad essa. Invece di fare queste operazioni una alla volta, creare la pagina, andare a quella pagina, e aggiungere l\'articolo alla pagina, troverai più veloce creare un package che faccia tutte queste cose in un colpo solo.',1046124350,NULL); -INSERT INTO international VALUES (629,'WebGUI',8,'Usa Appunti Condivisi?
\r\nUtilizza un unico sistema di appunti condiviso da tutti gli utenti. Di default\r\ngli appunti sono separati per ogni utente.\r\n

Usa Cestino Condiviso?
\r\nUtilizza un unico cestino condiviso da tutti gli utenti. Di default il cestino\r\nè separato per ogni utente.

\r\n

Se è \"proxied\", usa il client IP address reale?
\r\nSe è abilitato e se la variabile  HTTP_X_FORWARDED_FOR è presente, il suo\r\nvalore sarà utilizzato al posto del REMOTE_ADDRESS nell\'IP address del Browser\r\nclient. Questo è richiesto per i gruppi basati su IP per funzionare\r\ncorrettamente nelle architetture di sistema reverse-proxied e load-balanced. In\r\nquesti ambienti tutte le richieste appariranno come se arrivassero dallo stesso\r\nhost, cioè il proxy server. Se non sei sicuro di aver bisogno di  questo\r\nsettaggio, probabilmente dovresti lasciarlo disabilitato.\r\n

Prevent Proxy Caching
\r\nAlcune Aziende hanno proxy ser\r\nvers che causano problemi al C.M.S. . Se hai riscontrato dei problemi, e hai un proxy server, potresti impostare il parametro su . Ricorda che una\r\nvolta attivata questa opzione gli URL del C.M.S. non saranno più user friendly.\r\n

Mostra debugging?
\r\nMostra le informazioni di debugging  negli output di WebGUI. Questa\r\nfunzione è molto utile per gli sviluppatori, ma può essere interessante anche\r\nper gli admin per risolvere eventuali problemi.\r\n

Traccia le statistiche delle pagine?
\r\nWebGUI può tracciare alcune informazioni statistiche per il tuo sito. Comunque\r\nquesta caratteristica aggiungerà un pò di lavoro extra al processore del\r\nserver e farà crescere le dimensioni del database più velocemente. Abilitò\r\nquesta funzione solo se non hai un programma statistico per il web esterno.

',1054481049,NULL); +INSERT INTO international VALUES (611,'WebGUI',8,'Nome dell\'azienda
\nTIl nome della tua azienda. Apparirà in\n tutte le email e ovunque hai usato la macro nome azienda.\n

\nInd\nirizzo email dell\'azienda
\nUn indirizzo email generale per la tua azi\nenda. Questo é l\'indirizzo dal quale tutti i messaggi automatici proverranno. P\nuò essere usato anche dal sistema di macro del C.M.S..\n

\nURL dell\n\'Azienda
\nLo URL primario della tua Azienda. Questo apparirà in tutte\n le email automatiche mandate dal sistema. Può essere usato anche dal sistema di\n macro del C.M.S..\n',1046125845,NULL); +INSERT INTO international VALUES (625,'WebGUI',8,'Carica tutte le immagini che potresti voler utilizzare in più di una posizione sul sito.\n

\nNome
\nL\'etichetta con la quale questa immagine verrà chiamata per l\'inclusione nelle pagine.\n

\n\nOrganizza in Cartelle
\nLa cartella Dell\'Archivio Collaterale nella quale deve essere inserita questa immagine.\n

\n\nFile
\nSeleziona un file dal tuo disco rigido da uploadare sul server.\n

\n\nParametri
\nAggiungi qualsiasi parametro HTML <img&rt; che vuoi come default per questa immagine.\n

\nEsempio:
\nalign=\"right\"\nalt=\"Questa é una immagine\"\n\nDimensione Thumbnail
\nQuanti pixel deve misurare il thumbnail di questa immagine.\n

\n',1046124685,NULL); +INSERT INTO international VALUES (635,'WebGUI',8,'I Package sono gruppi di pagine e widgets che sono predefinite per essere sviluppate insieme. Un package manager può sentire l\'esigenza di creare varie pagine con un forum, una FAQ, un sondaggio perché questa operazione viene eseguita spesso. I Packages sono definiti per diminuire il disturbo di azioni ripetitive.\n

\nUn package che la gente spesso crea é un package pagina/articolo. Spesso quando aggiungi una pagina vuoi anche aggiungere un articolo ad essa. Invece di fare queste operazioni una alla volta, creare la pagina, andare a quella pagina, e aggiungere l\'articolo alla pagina, troverai più veloce creare un package che faccia tutte queste cose in un colpo solo.',1046124350,NULL); +INSERT INTO international VALUES (629,'WebGUI',8,'Usa Appunti Condivisi?
\r\nUtilizza un unico sistema di appunti condiviso da tutti gli utenti. Di default\r\ngli appunti sono separati per ogni utente.\r\n

Usa Cestino Condiviso?
\r\nUtilizza un unico cestino condiviso da tutti gli utenti. Di default il cestino\r\nè separato per ogni utente.

\r\n

Se è \"proxied\", usa il client IP address reale?
\r\nSe è abilitato e se la variabile  HTTP_X_FORWARDED_FOR è presente, il suo\r\nvalore sarà utilizzato al posto del REMOTE_ADDRESS nell\'IP address del Browser\r\nclient. Questo è richiesto per i gruppi basati su IP per funzionare\r\ncorrettamente nelle architetture di sistema reverse-proxied e load-balanced. In\r\nquesti ambienti tutte le richieste appariranno come se arrivassero dallo stesso\r\nhost, cioè il proxy server. Se non sei sicuro di aver bisogno di  questo\r\nsettaggio, probabilmente dovresti lasciarlo disabilitato.\r\n

Prevent Proxy Caching
\r\nAlcune Aziende hanno proxy ser\r\nvers che causano problemi al C.M.S. . Se hai riscontrato dei problemi, e hai un proxy server, potresti impostare il parametro su . Ricorda che una\r\nvolta attivata questa opzione gli URL del C.M.S. non saranno più user friendly.\r\n

Mostra debugging?
\r\nMostra le informazioni di debugging  negli output di WebGUI. Questa\r\nfunzione è molto utile per gli sviluppatori, ma può essere interessante anche\r\nper gli admin per risolvere eventuali problemi.\r\n

Traccia le statistiche delle pagine?
\r\nWebGUI può tracciare alcune informazioni statistiche per il tuo sito. Comunque\r\nquesta caratteristica aggiungerà un pò di lavoro extra al processore del\r\nserver e farà crescere le dimensioni del database più velocemente. Abilitò\r\nquesta funzione solo se non hai un programma statistico per il web esterno.

\r\n\r\n

Host da usare
\r\nSeleziona quale host usare di default per generare URLs. Config Sitename utilizzera la varabile \"sitename\" dal tuo config file. Add Env HTTP Host utilizzerà la variabile \"HTTP_HOST\" fornita dal web server.

\r\n',1068899557,NULL); INSERT INTO international VALUES (633,'WebGUI',8,'I roots sono le pagine principali su cui si sviluppa il sito. La prima e la più importante root è la \"Home\" page. Molti non hanno necessità di aggiungere una nuova root, ma a qualcuno potrebbe servire. Può essere necessario creare nuove root per diverse ragioni, ad esempio per un sito in due lingue sarà necessario creare due root: italiano e inglese.',1046123933,NULL); -INSERT INTO international VALUES (634,'WebGUI',8,'Home Page di Default
\r\nMolti piccoli siti non hanno una vera home page, preferiscono invece usare una pagina interna come \"Chi Siamo\" or \"Azienda\" come home page. Per questo motivo, puoi settare come pagina di default del tuo sito site qualsiasi pagina del sito stesso. Sarà la pagina che visualizzeranno i navigatori che digiteranno semplicemente l\' URL: http://www.tuosito.it, o se clicceranno sul link generato dalla ^H; macro.\r\n

\r\n\r\nPagina Non Trovata
\r\nSe la pagina richiesta non viene trovata sul sistema, il visitatore sarà reindirizzato alla home page o ad una pagina di errore dove verrà presentata anche la mappa del sito per aiutarlo a trovare cio che stava cercando. Deciderai tu cosa è meglio far visualizzare ai tuoi utenti.\r\n

\r\n\r\nDocument Type Declaration
\r\nAttualmente molti Browser differenti accedono alle tue pagine, compresi browsers automatizzati come gli spiders dei motori di ricerca. Molti di questi browsers vogliono sapere che tipo di contenuti il tuo sito distribuisce. Il doctype tag ti consente di specificarlo. Di default il C.M.S. genera contenuti compatibili cn HTML 4.0 .\r\n

Favicon
\r\n
Una icona che appare su Internet Explorer nei \"Preferiti\". Per\r\nsapere di più sulla Favicon clicca\r\nqui.\r\n

Site Icon
\r\nUna icona che appare nella barra URL nella maggior parte dei moderni\r\nbrowsers. Può anche comparire nei bookmarks del browser. L\'immagine deve essere\r\ndi 16x16 pixels.

\r\n

\r\n\r\nAggiungi nota di modifica sui messaggi?
\r\nDi solito se un utente modifica un messaggio sul forum, una nota viene aggiunta al messaggio per identificare chi ha fatto la modifica, e quando. In alcuni siti questa informazione potrebbe non essere necessaria, per questo puoi decidere di disattivare la funzione.\r\n

\r\n\r\nFiltra i contributi in HTML
\r\nSoprattutto in un sito pubblico dove chiunque può postare sul forum o nel sistema di contribuzione degli utenti, è una buona idea filtrare i messaggi dal codice potenzialmente non compatibile, che potrebbe impedire una visualizzazione corretta del sito ai tuoi visitatori; e in alcuni casi, creare problemi di sicurezza. Usa questo settaggio per definire il livello di filtraggio che desideri applicare.\r\n\r\n

Massima Dimensione dell\'allegato
\r\nLa dimensione (in kilobytes) massima consentita agli allegati per essere\r\ncaricati sul sistema.\r\n

Massima Dimensione Immagine
\r\nSe delle immagini più grandi della massima dimensione consentita sono caricate\r\nsul tuo sistema, esse saranno ridimensionate alle dimensioni massime consentite\r\n. La massima dimensione è misurata in pixels ed usa la dimensione del lato più\r\nlungo dell\'immagine per determinare se il limite è stato raggiunto.\r\n

Massima Dimensione Immagine
\r\nSe le immagini caricate sul sistema eccedono la massima dimensione dell\'immagine, saranno riscalate alla dimensione massima. La dimensione massima dell\'immagine è misurata in pixel e usa la dimensione del lato più lungo dell\'immagine per determinare se il limite è stato raggiunto.\r\n

Dimensione Thumbnail
\r\nQuando le immagini sono caricate, automaticamente il sistema genera un\r\nthumbnails della dimensione qui specificata. Thumbnail è misurato in pixels.\r\n

Lunghezza della Preview del Frammento
\r\nQuanti caratteri del frammento devono essere visualizzati nell\'index principale\r\ndell\'Archivio Collaterale.

\r\n\r\nRighe della Text Area
\r\nQualcuno può avere esigenza di controllare le dimensioni dei forms che il C.M.S. genera. Con questo settaggio puoi specificare quante righe saranno visualizzate nelle textarea del sito.\r\n

\r\n\r\nColonne della Text Area
\r\nQualcuno può avere esigenza di controllare le dimensioni dei forms che il C.M.S. genera. Con questo settaggio puoi specificare quante colonne saranno visualizzate nelle textarea del sito.\r\n

\r\n\r\nDimensioni del Text Box
\r\nCon questo settaggio puoi definire quanti caratteri possono essere visualizzati nei text boxes del sito.\r\n

\r\n\r\nPrivilegi del Wobject
\r\nSeleziona \'SI\' per abilitare i privilegi a livello Wobject. Di default, i Wobjects sono settati per ereditare i privilegi del livello pagina.\r\n',1056807762,NULL); +INSERT INTO international VALUES (634,'WebGUI',8,'Home Page di Default
\nMolti piccoli siti non hanno una vera home page, preferiscono invece usare una pagina interna come \"Chi Siamo\" or \"Azienda\" come home page. Per questo motivo, puoi settare come pagina di default del tuo sito site qualsiasi pagina del sito stesso. Sarà la pagina che visualizzeranno i navigatori che digiteranno semplicemente l\' URL: http://www.tuosito.it, o se clicceranno sul link generato dalla ^H; macro.\n

\n\nPagina Non Trovata
\nSe la pagina richiesta non viene trovata sul sistema, il visitatore sarà reindirizzato alla home page o ad una pagina di errore dove verrà presentata anche la mappa del sito per aiutarlo a trovare cio che stava cercando. Deciderai tu cosa è meglio far visualizzare ai tuoi utenti.\n

\n\nDocument Type Declaration
\nAttualmente molti Browser differenti accedono alle tue pagine, compresi browsers automatizzati come gli spiders dei motori di ricerca. Molti di questi browsers vogliono sapere che tipo di contenuti il tuo sito distribuisce. Il doctype tag ti consente di specificarlo. Di default il C.M.S. genera contenuti compatibili cn HTML 4.0 .\n

Favicon
\n
Una icona che appare su Internet Explorer nei \"Preferiti\". Per\nsapere di più sulla Favicon clicca\nqui.\n

Site Icon
\nUna icona che appare nella barra URL nella maggior parte dei moderni\nbrowsers. Può anche comparire nei bookmarks del browser. L\'immagine deve essere\ndi 16x16 pixels.

\n

\n\nAggiungi nota di modifica sui messaggi?
\nDi solito se un utente modifica un messaggio sul forum, una nota viene aggiunta al messaggio per identificare chi ha fatto la modifica, e quando. In alcuni siti questa informazione potrebbe non essere necessaria, per questo puoi decidere di disattivare la funzione.\n

\n\nFiltra i contributi in HTML
\nSoprattutto in un sito pubblico dove chiunque può postare sul forum o nel sistema di contribuzione degli utenti, è una buona idea filtrare i messaggi dal codice potenzialmente non compatibile, che potrebbe impedire una visualizzazione corretta del sito ai tuoi visitatori; e in alcuni casi, creare problemi di sicurezza. Usa questo settaggio per definire il livello di filtraggio che desideri applicare.\n\n

Massima Dimensione dell\'allegato
\nLa dimensione (in kilobytes) massima consentita agli allegati per essere\ncaricati sul sistema.\n

Massima Dimensione Immagine
\nSe delle immagini più grandi della massima dimensione consentita sono caricate\nsul tuo sistema, esse saranno ridimensionate alle dimensioni massime consentite\n. La massima dimensione è misurata in pixels ed usa la dimensione del lato più\nlungo dell\'immagine per determinare se il limite è stato raggiunto.\n

Massima Dimensione Immagine
\nSe le immagini caricate sul sistema eccedono la massima dimensione dell\'immagine, saranno riscalate alla dimensione massima. La dimensione massima dell\'immagine è misurata in pixel e usa la dimensione del lato più lungo dell\'immagine per determinare se il limite è stato raggiunto.\n

Dimensione Thumbnail
\nQuando le immagini sono caricate, automaticamente il sistema genera un\nthumbnails della dimensione qui specificata. Thumbnail è misurato in pixels.\n

Lunghezza della Preview del Frammento
\nQuanti caratteri del frammento devono essere visualizzati nell\'index principale\ndell\'Archivio Collaterale.

\n\nRighe della Text Area
\nQualcuno può avere esigenza di controllare le dimensioni dei forms che il C.M.S. genera. Con questo settaggio puoi specificare quante righe saranno visualizzate nelle textarea del sito.\n

\n\nColonne della Text Area
\nQualcuno può avere esigenza di controllare le dimensioni dei forms che il C.M.S. genera. Con questo settaggio puoi specificare quante colonne saranno visualizzate nelle textarea del sito.\n

\n\nDimensioni del Text Box
\nCon questo settaggio puoi definire quanti caratteri possono essere visualizzati nei text boxes del sito.\n

\n\nPrivilegi del Wobject
\nSeleziona \'SI\' per abilitare i privilegi a livello Wobject. Di default, i Wobjects sono settati per ereditare i privilegi del livello pagina.\n',1056807762,NULL); +INSERT INTO international VALUES (6,'PhotoGallery',8,'Modifica',1034022168,NULL); INSERT INTO international VALUES (630,'WebGUI',8,'Per usare il motore di ricerca interno devi inserire la macro ^?; , o aggiungendo ?op=search alla fine di ogni URL.',1046123142,NULL); -INSERT INTO international VALUES (75,'LinkList',8,'Template Lista di Link',1046122994,NULL); INSERT INTO international VALUES (18,'Product',8,'Aggiungi un altro Accessorio?',1046122891,NULL); INSERT INTO international VALUES (2,'Product',8,'Sei sicuro di voler cancellare le relazioni a questo accessorio?',1046122265,NULL); INSERT INTO international VALUES (19,'Product',8,'Aggiungi Prodotto Correlato',1046121669,NULL); @@ -10533,7 +10215,7 @@ INSERT INTO international VALUES (11,'Product',8,'Codice Prodotto',1046121593,NU INSERT INTO international VALUES (10,'Product',8,'Prezzo',1046121564,NULL); INSERT INTO international VALUES (1,'Product',8,'Prodotto',1046121554,NULL); INSERT INTO international VALUES (61,'Poll',8,'Sondaggio, Aggiungi/Modifica',1054311224,NULL); -INSERT INTO international VALUES (61,'MessageBoard',8,'Forum, Aggiungi/Modifica',1048067354,NULL); +INSERT INTO international VALUES (61,'MessageBoard',8,'Forum, Aggiungi/Modifica',1068899065,NULL); INSERT INTO international VALUES (7,'DataForm',8,'Modifica Modulo Dati',1054297865,NULL); INSERT INTO international VALUES (8,'DataForm',8,'Larghezza',1045927076,NULL); INSERT INTO international VALUES (62,'DataForm',8,'Campi del Modulo Dati, Aggiungi/Modifica',1054297853,NULL); @@ -10567,13 +10249,13 @@ INSERT INTO international VALUES (8,'Product',8,'Immagine Prodotto 2',1045783338 INSERT INTO international VALUES (7,'Product',8,'Immagine Prodotto 1',1045783332,NULL); INSERT INTO international VALUES (62,'Product',8,'Template Prodotto, Aggiungi/Modifica',1045783277,NULL); INSERT INTO international VALUES (6,'Product',8,'Modifica Prodotto',1045783271,NULL); -INSERT INTO international VALUES (47,'Product',8,'I Prodotti Correlati sono complementari o equivalenti di altri prodotti.

\r\n\r\nProdotti Correlati
\r\n
\r\nScegli dalla lista dei prodotti già inseriti.

\r\n\r\nAggiungi un altro prodotto correlato?
\r\n
\r\nSeleziona \"Si\" se hai un altro prodotto correlato da aggiungere.',1045783266,NULL); +INSERT INTO international VALUES (47,'Product',8,'I Prodotti Correlati sono complementari o equivalenti di altri prodotti.

\n\nProdotti Correlati
\n
\nScegli dalla lista dei prodotti già inseriti.

\n\nAggiungi un altro prodotto correlato?
\n
\nSeleziona \"Si\" se hai un altro prodotto correlato da aggiungere.',1045783266,NULL); INSERT INTO international VALUES (5,'Product',8,'Sei sicuro di voler cancellare questa specifica?',1045783250,NULL); INSERT INTO international VALUES (46,'Product',8,'Prodotto Correlato, Aggiungi/Modifica',1045783237,NULL); -INSERT INTO international VALUES (45,'Product',8,'Accessori dei prodotto.

\r\n\r\nAccessorio
\r\n
\r\nScegli dalla lista dei prodotti già inseriti.

\r\n\r\nAggiungi un nuovo accessorio?
\r\n
\r\nSe vuoi aggiungere una ulteriore accessorio, seleziona \"Si\".',1045783219,NULL); +INSERT INTO international VALUES (45,'Product',8,'Accessori dei prodotto.

\n\nAccessorio
\n
\nScegli dalla lista dei prodotti già inseriti.

\n\nAggiungi un nuovo accessorio?
\n
\nSe vuoi aggiungere una ulteriore accessorio, seleziona \"Si\".',1045783219,NULL); INSERT INTO international VALUES (44,'Product',8,'Accessorio, Aggiungi/Modifica',1045783208,NULL); INSERT INTO international VALUES (42,'Product',8,'Specifica, Aggiungi/Modifica',1045783202,NULL); -INSERT INTO international VALUES (41,'Product',8,'Le caratteristiche sono intese come vantaggi del prodotto. Per esempio: Perchè acquistare questo prodotto?

\r\n\r\nCaratteristica
\r\n
\r\nPuoi inserire una nuova caratteristica, o selezionarne una già inserita nel sistema per un altro prodotto.

\r\n\r\nAggiungi una nuova caratteristica?
\r\n
\r\nSe vuoi aggiungere una ulteriore caratteristica, seleziona \"Si\".',1045783197,NULL); +INSERT INTO international VALUES (41,'Product',8,'Le caratteristiche sono intese come vantaggi del prodotto. Per esempio: Perchè acquistare questo prodotto?

\n\nCaratteristica
\n
\nPuoi inserire una nuova caratteristica, o selezionarne una già inserita nel sistema per un altro prodotto.

\n\nAggiungi una nuova caratteristica?
\n
\nSe vuoi aggiungere una ulteriore caratteristica, seleziona \"Si\".',1045783197,NULL); INSERT INTO international VALUES (40,'Product',8,'Caratteristica, Aggiungi/Modifica',1045783183,NULL); INSERT INTO international VALUES (4,'Product',8,'Sei sicuro di voler cancellare le relazioni con questo Prodotto Correlato?',1045783177,NULL); INSERT INTO international VALUES (38,'Product',8,'Prodotto, Aggiungi/Modifica',1045783149,NULL); @@ -10600,18 +10282,15 @@ INSERT INTO international VALUES (642,'WebGUI',8,'Pagina, Aggiungi/Modifica',105 INSERT INTO international VALUES (651,'WebGUI',8,'Se scegli di svuotare il cestino, ogni elemento in esso contenuto verrà perso per sempre. Se non sei sicuro di qualche elemento, forse é meglio tagliarlo negli appunti prima di vuotare il cestino.',1045782077,NULL); INSERT INTO international VALUES (652,'WebGUI',8,'Settaggi Utente, Modifica',1045782052,NULL); INSERT INTO international VALUES (653,'WebGUI',8,'Pagina, Cancella',1045782034,NULL); -INSERT INTO international VALUES (654,'WebGUI',8,'Stile, Cancella',1045782026,NULL); INSERT INTO international VALUES (655,'WebGUI',8,'Utente, Aggiungi/Modifica',1045782015,NULL); INSERT INTO international VALUES (656,'WebGUI',8,'Informazioni Azienda, Modifica',1045781998,NULL); INSERT INTO international VALUES (657,'WebGUI',8,'Utente, Cancella',1045781987,NULL); INSERT INTO international VALUES (658,'WebGUI',8,'Utenti, Gestisci',1045781973,NULL); -INSERT INTO international VALUES (659,'WebGUI',8,'Stile, Gestisci',1054314054,NULL); INSERT INTO international VALUES (660,'WebGUI',8,'Gruppi, Gestisci',1045781938,NULL); INSERT INTO international VALUES (661,'WebGUI',8,'Settaggi dei File, Modifica',1045781919,NULL); INSERT INTO international VALUES (662,'WebGUI',8,'Settaggi, Gestisci',1045781907,NULL); INSERT INTO international VALUES (663,'WebGUI',8,'Settaggi messaggistica, Modifica',1045781899,NULL); INSERT INTO international VALUES (665,'WebGUI',8,'Gruppo, Cancella',1045781859,NULL); -INSERT INTO international VALUES (666,'WebGUI',8,'Stile, Aggiungi/Modifica',1045781846,NULL); INSERT INTO international VALUES (667,'WebGUI',8,'Gruppo, Aggiungi/Modifica',1045781837,NULL); INSERT INTO international VALUES (668,'WebGUI',8,'Style Sheets, Usare',1048067507,NULL); INSERT INTO international VALUES (669,'WebGUI',8,'Macro, Usare',1048067520,NULL); @@ -10629,16 +10308,16 @@ INSERT INTO international VALUES (684,'WebGUI',8,'Template, Aggiungi/Modifica',1 INSERT INTO international VALUES (685,'WebGUI',8,'Template, Cancella',1045781556,NULL); INSERT INTO international VALUES (696,'WebGUI',8,'Cestino, Vuota',1045781534,NULL); INSERT INTO international VALUES (697,'WebGUI',8,'Karma, Usare',1045781525,NULL); -INSERT INTO international VALUES (698,'WebGUI',8,'Karma è un sistema di tracciamento della attivita di tuoi visitatori, potenzialmente hai la possibilità di premiarli o di punirli in base al loro livello di attività sul sito. Nel momento in cui il karma è abilitato, noterai i menù di molte cose nel sistema cambiare per rispecchiare il karma.

\r\n\r\nPuoi tracciare se gli utenti sono loggati al sito e quanto hanno ontribuito al tuo sito e puoi consentire loro di accedere a particolari aree o sezioni addizionali in base al livello dei loro Karma.\r\n',1045781512,NULL); +INSERT INTO international VALUES (698,'WebGUI',8,'Karma è un sistema di tracciamento della attivita di tuoi visitatori, potenzialmente hai la possibilità di premiarli o di punirli in base al loro livello di attività sul sito. Nel momento in cui il karma è abilitato, noterai i menù di molte cose nel sistema cambiare per rispecchiare il karma.

\n\nPuoi tracciare se gli utenti sono loggati al sito e quanto hanno ontribuito al tuo sito e puoi consentire loro di accedere a particolari aree o sezioni addizionali in base al livello dei loro Karma.\n',1045781512,NULL); INSERT INTO international VALUES (718,'WebGUI',8,'Esporta traduzione.',1045781425,NULL); INSERT INTO international VALUES (728,'WebGUI',8,'Sei sicuro di voler cancellare questo file?',1045781399,NULL); -INSERT INTO international VALUES (6,'WobjectProxy',8,'Con il Contenuto Proxy puoi fare un \"mirror\" di qualsiasi contenuto (articolo, f.a.q etc.) da una pagina verso una altra qualsiasi pagina. Questo è molto utile se vuoi usare (senza doverlo copiare) lo stesso contenuto in diverse sezioni del tuo sito.

\r\n\r\nContenuto Proxy
\r\n
\r\nseleziona dal sistema il contenuto a cui vuoi fare il proxy. Il box selezionato prende il formato di \"titolo pagina\" / Nome Wobject \r\n(Wobject Id) in questo modo puoi velocemente e con precisione trovare il contenuto che stavi cercando.',1045781112,NULL); +INSERT INTO international VALUES (6,'WobjectProxy',8,'Con il Contenuto Proxy puoi fare un \"mirror\" di qualsiasi contenuto (articolo, f.a.q etc.) da una pagina verso una altra qualsiasi pagina. Questo è molto utile se vuoi usare (senza doverlo copiare) lo stesso contenuto in diverse sezioni del tuo sito.

\r\n\r\nContenuto Proxy
\r\n
\r\nseleziona dal sistema il contenuto a cui vuoi fare il proxy. Il box selezionato prende il formato di \"titolo pagina\" / Nome Wobject \r\n(Wobject Id) in questo modo puoi velocemente e con precisione trovare il contenuto che stavi cercando.\r\n\r\n

NOTA: Il wobject proxy non è disponibile da  menu Aggiungi\r\nContenuto, ma attraverso l\'icona shortcut presente nella  wobject \r\ntoolbar.\r\n

Wobject da proxare
\r\nRestituisce un link al wobject originale che è stato proxato.\r\n

Sovrascrivi titolo?
\r\nSetta su SI per usare il titolo del wobject proxy invece del titolo originale\r\ndel wobject.\r\n

Sovrascrivi Descrizione?
\r\nSetta su SI per usare la descrizione del wobject proxy invece della descrizione\r\noriginale del wobject.\r\n

Sovrascrivi visualizzazione titolo?
\r\nSetta su SI per usare i settaggi del wobject proxy invece dei settaggi originali\r\ndel wobject.\r\n

Sovrascrivi template?
\r\nSetta su SI per usare il template del wobject proxy invece del template\r\noriginale del wobject.

\r\n\r\n',1068907502,NULL); INSERT INTO international VALUES (5,'WobjectProxy',8,'Wobject Proxy, Aggiungi/Modifica',1045781095,NULL); INSERT INTO international VALUES (4,'WobjectProxy',8,'Proxy del Wobject fallito. Forse l\'oggetto su cui fare il proxy è stato cancellato.',1045781084,NULL); INSERT INTO international VALUES (3,'WobjectProxy',8,'Wobject Proxy',1045781068,NULL); INSERT INTO international VALUES (2,'WobjectProxy',8,'Modifica Wobject Proxy',1045780988,NULL); INSERT INTO international VALUES (1,'WobjectProxy',8,'Wobject su cui fare il Proxy',1045780980,NULL); -INSERT INTO international VALUES (610,'WebGUI',8,'Vedi Gestisci utenti per ulteriori dettagli.\r\n

\r\n\r\nNome utente
\r\nIl nome utente è un identificatore unico per ogni utente. E\' anche il nome con cui l\'utente è conosciuto sul sito. (Nota: Gli amministratori hanno un potere illimitato nel sistema. Questo significa che essi sono in grado di distruggere il sistema. Se rinomini o crei un utente, stai attento a non usare un nome utente già esistente.)\r\n

\r\n\r\nPassword
\r\nLa password è utilizzata per assicurarsi che l\'utente sia realmente chi dice di essere.\r\n

\r\n\r\nMetodo di autenticazione
\r\nVedi Modifica i settaggi per maggiori dettagli.\r\n

\r\n\r\nURL LDAP
\r\nVedi Modifica i settaggi per maggiori dettagli.\r\n

\r\n\r\nConnect DN
\r\nIl Connect DN è il nome comune di un dato utente nel tuo database LDAP. Dovrebbe essere specificato come cn=Mario Rossi. Questo è, in effetti il nome utente che verrà usato per autenticare l\'utentesul tuo LDAP server.\r\n

\r\n\r\nIndirizzo Email
\r\nL\'indirizzo email dell\'utente. Questo deve essere specificato se l\'utente è coinvolto in funzioni che richiedono l\'email.\r\n

\r\n\r\nGruppi
\r\nGruppi visualizza i gruppi ai quali l\'utente appartiene. I gruppi evidenziati sono i gruppi dei quali l\'utente fa parte. Quelli non evidenziati sono altri gruppi che possono essere assegnati. Nota che devi premere il tasto CTRL per selezionare gruppi multipli.\r\n

\r\n\r\nLingua
\r\nChe linguaggio deve essere usato per visualizzare i messaggi di sistema.\r\n

\r\n\r\nICQ UIN
\r\nLo UIN ICQ è lo \"User ID Number\" nella rete ICQ. ICQ è una piattaforma molto popolare di instant messaging.\r\n\r\n',1045780870,NULL); +INSERT INTO international VALUES (610,'WebGUI',8,'Vedi Gestisci utenti per ulteriori dettagli.\n

\n\nNome utente
\nIl nome utente è un identificatore unico per ogni utente. E\' anche il nome con cui l\'utente è conosciuto sul sito. (Nota: Gli amministratori hanno un potere illimitato nel sistema. Questo significa che essi sono in grado di distruggere il sistema. Se rinomini o crei un utente, stai attento a non usare un nome utente già esistente.)\n

\n\nPassword
\nLa password è utilizzata per assicurarsi che l\'utente sia realmente chi dice di essere.\n

\n\nMetodo di autenticazione
\nVedi Modifica i settaggi per maggiori dettagli.\n

\n\nURL LDAP
\nVedi Modifica i settaggi per maggiori dettagli.\n

\n\nConnect DN
\nIl Connect DN è il nome comune di un dato utente nel tuo database LDAP. Dovrebbe essere specificato come cn=Mario Rossi. Questo è, in effetti il nome utente che verrà usato per autenticare l\'utentesul tuo LDAP server.\n

\n\nIndirizzo Email
\nL\'indirizzo email dell\'utente. Questo deve essere specificato se l\'utente è coinvolto in funzioni che richiedono l\'email.\n

\n\nGruppi
\nGruppi visualizza i gruppi ai quali l\'utente appartiene. I gruppi evidenziati sono i gruppi dei quali l\'utente fa parte. Quelli non evidenziati sono altri gruppi che possono essere assegnati. Nota che devi premere il tasto CTRL per selezionare gruppi multipli.\n

\n\nLingua
\nChe linguaggio deve essere usato per visualizzare i messaggi di sistema.\n

\n\nICQ UIN
\nLo UIN ICQ è lo \"User ID Number\" nella rete ICQ. ICQ è una piattaforma molto popolare di instant messaging.\n\n',1045780870,NULL); INSERT INTO international VALUES (601,'WebGUI',8,'International ID',1045780778,NULL); INSERT INTO international VALUES (598,'WebGUI',8,'Modifica Lingua',1045780760,NULL); INSERT INTO international VALUES (597,'WebGUI',8,'Modifica Messaggio Internazionale',1045780747,NULL); @@ -10675,7 +10354,7 @@ INSERT INTO international VALUES (562,'WebGUI',8,'Pendente',1045780464,NULL); INSERT INTO international VALUES (561,'WebGUI',8,'Respinto',1045780458,NULL); INSERT INTO international VALUES (560,'WebGUI',8,'Approvato',1045780454,NULL); INSERT INTO international VALUES (559,'WebGUI',8,'Esegui su Registrazione',1045780445,NULL); -INSERT INTO international VALUES (627,'WebGUI',8,'I profili sono usati per estendere le informazioni di un particolare utente. In alcuni casi i profili sono importanti per un sito, in altri casi non lo sono. Il sistema dei profili è completamente personalizzabile. Si possono aggiungere tutte le informazioni che si desidera.\r\n',1045780017,NULL); +INSERT INTO international VALUES (627,'WebGUI',8,'I profili sono usati per estendere le informazioni di un particolare utente. In alcuni casi i profili sono importanti per un sito, in altri casi non lo sono. Il sistema dei profili è completamente personalizzabile. Si possono aggiungere tutte le informazioni che si desidera.\n',1045780017,NULL); INSERT INTO international VALUES (738,'WebGUI',8,'9 Guru',1045779568,NULL); INSERT INTO international VALUES (737,'WebGUI',8,'8 Maestro',1045779559,NULL); INSERT INTO international VALUES (736,'WebGUI',8,'7 Esperto',1045779547,NULL); @@ -10685,21 +10364,13 @@ INSERT INTO international VALUES (58,'USS',8,'Contributo Precedente',1045779377, INSERT INTO international VALUES (59,'USS',8,'Prossimo Contributo',1045779366,NULL); INSERT INTO international VALUES (61,'USS',8,'Sistema contributi degli Utenti, Aggiungi/Modifica',1048030816,NULL); INSERT INTO international VALUES (3,'Product',8,'Sei sicuro di voler cancellare questa caratteristica?',1045779180,NULL); -INSERT INTO international VALUES (71,'SyndicatedContent',8,'Il contenuto da altri siti è contenuto che viene preso da altri siti usando le specifiche RDF/RSS. Questa tecnologia è spesso usata per estrarre titoli e sommari da vari siti di notizie, come CNN e Slashdot. Può essere usata anche per altre cose come punteggi sportivi, informazioni finanziarie, etc.

URL del file RSS
Metti qui lo URL esatto (incluso http://) del contenuto RDF o RSS. Il contenuto verrà scaricato ogni ora da questo URL.

Puoi trovare liste di contenuti disponibili in questo formato ai seguenti indirizzi:

\r\n

Template
\r\nScegli un template per questo contenuto.',1048067734,NULL); -INSERT INTO international VALUES (72,'LinkList',8,'Link, Aggiungi/Modifica',1045779092,NULL); -INSERT INTO international VALUES (61,'LinkList',8,'Lista di Link, Aggiungi/Modifica',1045779069,NULL); -INSERT INTO international VALUES (61,'Item',8,'Item, Aggiungi/Modifica',1045778968,NULL); -INSERT INTO international VALUES (6,'Item',8,'Modifica Item',1045778960,NULL); +INSERT INTO international VALUES (71,'SyndicatedContent',8,'Il contenuto da altri siti è contenuto che viene preso da altri siti usando le specifiche RDF/RSS. Questa tecnologia è spesso usata per estrarre titoli e sommari da vari siti di notizie, come CNN e Slashdot. Può essere usata anche per altre cose come punteggi sportivi, informazioni finanziarie, etc.

URL del file RSS
Metti qui lo URL esatto (incluso http://) del contenuto RDF o RSS. Il contenuto verrà scaricato ogni ora da questo URL.

Puoi trovare liste di contenuti disponibili in questo formato ai seguenti indirizzi:

\n

Template
\nScegli un template per questo contenuto.',1048067734,NULL); INSERT INTO international VALUES (72,'FileManager',8,'File, Aggiungi/Modifica',1045778886,NULL); INSERT INTO international VALUES (61,'FileManager',8,'File Manager, Aggiungi/Modifica',1045778861,NULL); -INSERT INTO international VALUES (73,'FAQ',8,'Domanda
\r\nAggiungi la domanda che vuoi che appaia nella FAQ.

\r\nRisposta
\r\nAggiungi la risposta che vuoi che appaia per la domanda inserita sopra.\r\n

\r\nProcedi aggiungendo una domanda?
Se vuoi aggiungere subito una nuova domanda, lascia la selezione attuale\r\n',1045778765,NULL); -INSERT INTO international VALUES (72,'FAQ',8,'Domanda, Aggiungi/Modifica',1045778697,NULL); -INSERT INTO international VALUES (61,'FAQ',8,'FAQ, Aggiungi/Modifica',1045778556,NULL); -INSERT INTO international VALUES (61,'ExtraColumn',8,'Colonna Extra, Aggiungi/Modifica',1045778463,NULL); INSERT INTO international VALUES (72,'EventsCalendar',8,'Evento, Aggiungi/Modifica',1045778391,NULL); -INSERT INTO international VALUES (73,'EventsCalendar',8,'Titolo
\r\nIl titolo di questo evento.\r\n

\r\n\r\nDescrizione
\r\nDescrive l\'evento o informazioni su dove si terrà etc.\r\n\r\n

\r\n\r\nData di inizio
\r\nIn che data inizia l\'evento?\r\n

\r\n\r\nData di conclusione
\r\nIn che data si conclude l\'evento?\r\n

\r\n\r\nRicorre ogni...
\r\nOpzioni multiple per eventi ricorrenti.\r\n

\r\n\r\nProcedi aggiungendo un evento?
\r\nSe vuoi aggiungere un altro evento seleziona \"Si\".\r\n',1045778382,NULL); -INSERT INTO international VALUES (61,'EventsCalendar',8,'Calendario Eventi, Aggiungi/Modifica',1045778206,NULL); -INSERT INTO international VALUES (61,'Article',8,'Articolo, Aggiungi/Modifica',1048030788,NULL); +INSERT INTO international VALUES (73,'EventsCalendar',8,'Titolo
\nIl titolo di questo evento.\n

\n\nDescrizione
\nDescrive l\'evento o informazioni su dove si terrà etc.\n\n

\n\nData di inizio
\nIn che data inizia l\'evento?\n

\n\nData di conclusione
\nIn che data si conclude l\'evento?\n

\n\nRicorre ogni...
\nOpzioni multiple per eventi ricorrenti.\n

\n\nProcedi aggiungendo un evento?
\nSe vuoi aggiungere un altro evento seleziona \"Si\".\n',1045778382,NULL); +INSERT INTO international VALUES (61,'EventsCalendar',8,'Calendario Eventi, Aggiungi/Modifica',1068899046,NULL); +INSERT INTO international VALUES (61,'Article',8,'Articolo, Aggiungi/Modifica',1068899218,NULL); INSERT INTO international VALUES (886,'WebGUI',8,'Nascondi dalla navigazione?',1045777723,NULL); INSERT INTO international VALUES (888,'WebGUI',8,'Anteprima lunghezza Frammento',1045777692,NULL); INSERT INTO international VALUES (884,'WebGUI',8,'Pop Up',1045777629,NULL); @@ -10710,9 +10381,9 @@ INSERT INTO international VALUES (882,'WebGUI',8,'Modalit INSERT INTO international VALUES (881,'WebGUI',8,'Nessuno',1045776653,NULL); INSERT INTO international VALUES (880,'WebGUI',8,'Ultimo Editor Selezionato',1045776639,NULL); INSERT INTO international VALUES (879,'WebGUI',8,'Editor Classico (Internet Explorer 5+)',1045776574,NULL); -INSERT INTO international VALUES (875,'WebGUI',8,'Un nuovo messaggio è stato spedito ad uno dei thread a cui sei iscritto.',1045776452,NULL); -INSERT INTO international VALUES (874,'WebGUI',8,'Cancellati dal thread',1045776376,NULL); -INSERT INTO international VALUES (873,'WebGUI',8,'Sottoscrivi il thread',1045776352,NULL); +INSERT INTO international VALUES (875,'WebGUI',8,'Un nuovo messaggio è stato spedito ad uno dei thread a cui sei iscritto.',1068899206,NULL); +INSERT INTO international VALUES (874,'WebGUI',8,'Cancellati dal thread',1068899239,NULL); +INSERT INTO international VALUES (873,'WebGUI',8,'Sottoscrivi il thread',1068899185,NULL); INSERT INTO international VALUES (872,'WebGUI',8,'Chi puo visualizzare?',1045776317,NULL); INSERT INTO international VALUES (871,'WebGUI',8,'Chi può modificare?',1045776300,NULL); INSERT INTO international VALUES (870,'WebGUI',8,'Benvenuto',1045776278,NULL); @@ -10738,14 +10409,14 @@ INSERT INTO international VALUES (845,'WebGUI',8,'Macro Stili',1048030933,NULL); INSERT INTO international VALUES (843,'WebGUI',8,'Macro utente',1048067601,NULL); INSERT INTO international VALUES (839,'WebGUI',8,'Macro di programmazione',1048067575,NULL); INSERT INTO international VALUES (841,'WebGUI',8,'Macro di navigazione',1048070874,NULL); -INSERT INTO international VALUES (838,'WebGUI',8,'Le Cartelle sono usate per organizzare i contenuti dell\'Archivio Collaterale,\r\nnello stesso modo in cui organizzi i file sul tuo hard disk.\r\n

Organizza in Cartelle
\r\nLe cartelle possono stare all\'interno di altre cartelle.\r\nIn quale cartella vuoi inserire questa cartella?\r\n

Name
\r\nDai un nome a questa cartella così puoi riconoscere cosa contiene.\r\n

Descrizione
\r\nDescrivi la cartella in modo da ricordare perché è stata creata e che cosa\r\ndovrebbe contenere.

',1045775049,NULL); +INSERT INTO international VALUES (838,'WebGUI',8,'Le Cartelle sono usate per organizzare i contenuti dell\'Archivio Collaterale,\nnello stesso modo in cui organizzi i file sul tuo hard disk.\n

Organizza in Cartelle
\nLe cartelle possono stare all\'interno di altre cartelle.\nIn quale cartella vuoi inserire questa cartella?\n

Name
\nDai un nome a questa cartella così puoi riconoscere cosa contiene.\n

Descrizione
\nDescrivi la cartella in modo da ricordare perché è stata creata e che cosa\ndovrebbe contenere.

',1045775049,NULL); INSERT INTO international VALUES (837,'WebGUI',8,'Cartella, Aggiungi/Modifica',1045770428,NULL); -INSERT INTO international VALUES (836,'WebGUI',8,'I Frammenti sono parti di testo o altri elementi che possono essere usati\r\nripetutamente sul tuo sito. Pensa a  java scripts, style sheets, filmati\r\nflash , o anche slogan o pay-off questi sono esempi di Frammenti. Il Bello è\r\nche se hai bisogno di cambiare il testo etc, puoi cambiarlo una volta sola!\r\n

Nome
\r\nDai a questo frammento un nome univoco da utilizzare in seguito per poterlo\r\nrichiamare.\r\n

Organizza in Cartelle
\r\nIn quale Cartella dell\'archivio collaterale deve essere inserito questo\r\nFrammento?\r\n

Frammento
\r\nComincia a scrivere! O meglio ancora, copia il frammento da qualche altro\r\ndocumento elettronico e incollalo qui.

',1045770409,NULL); +INSERT INTO international VALUES (836,'WebGUI',8,'I Frammenti sono parti di testo o altri elementi che possono essere usati\nripetutamente sul tuo sito. Pensa a  java scripts, style sheets, filmati\nflash , o anche slogan o pay-off questi sono esempi di Frammenti. Il Bello è\nche se hai bisogno di cambiare il testo etc, puoi cambiarlo una volta sola!\n

Nome
\nDai a questo frammento un nome univoco da utilizzare in seguito per poterlo\nrichiamare.\n

Organizza in Cartelle
\nIn quale Cartella dell\'archivio collaterale deve essere inserito questo\nFrammento?\n

Frammento
\nComincia a scrivere! O meglio ancora, copia il frammento da qualche altro\ndocumento elettronico e incollalo qui.

',1045770409,NULL); INSERT INTO international VALUES (835,'WebGUI',8,'Frammento, Aggiungi/Modifica',1045769897,NULL); -INSERT INTO international VALUES (834,'WebGUI',8,'Puoi caricare qualsiasi tipo di file nell\'archivio in modo da poterlo usare in\r\nseguito.\r\n

Nome
\r\nDai a questo file un nome univoco da utilizzare in seguito per poterlo\r\nrichiamare.\r\n

Organizza in Cartelle
\r\nIn quale Cartella dell\'archivio collaterale deve essere inserito questo file?\r\n

File
\r\nSeleziona un file da caricare dal tuo hard disk.

\r\n',1045769858,NULL); +INSERT INTO international VALUES (834,'WebGUI',8,'Puoi caricare qualsiasi tipo di file nell\'archivio in modo da poterlo usare in\nseguito.\n

Nome
\nDai a questo file un nome univoco da utilizzare in seguito per poterlo\nrichiamare.\n

Organizza in Cartelle
\nIn quale Cartella dell\'archivio collaterale deve essere inserito questo file?\n

File
\nSeleziona un file da caricare dal tuo hard disk.

\n',1045769858,NULL); INSERT INTO international VALUES (833,'WebGUI',8,'File, Aggiungi/Modifica',1045769537,NULL); INSERT INTO international VALUES (831,'WebGUI',8,'Macro dell\'archivio collaterale',1054312030,NULL); -INSERT INTO international VALUES (830,'WebGUI',8,'I template delle pagine sono utilizzati per posizionare i wobject nelle pagine. Puoi avere qualsiasi numero di posizione nel template della pagina, ma devi avere sempre la posizione 1. Le variabili del posizionamento nel template della pagina appaiono in questo modo:\r\n

\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n

\r\nGli elementi di posizionamento possono salire da 1 a un miliardo, dovrebbe essere più che sufficiente per un sito medio.',1045769428,NULL); +INSERT INTO international VALUES (830,'WebGUI',8,'I template delle pagine sono utilizzati per posizionare i wobject nelle pagine. Puoi avere qualsiasi numero di posizione nel template della pagina, ma devi avere sempre la posizione 1. Le variabili del posizionamento nel template della pagina appaiono in questo modo:\n

\n\n\n\n\n\n\n\n\n

\nGli elementi di posizionamento possono salire da 1 a un miliardo, dovrebbe essere più che sufficiente per un sito medio.',1045769428,NULL); INSERT INTO international VALUES (829,'WebGUI',8,'Template Pagina',1045769044,NULL); INSERT INTO international VALUES (827,'WebGUI',8,'Template Wobject',1054314200,NULL); INSERT INTO international VALUES (824,'WebGUI',8,'Email intestazione a piè di pagina',1045768975,NULL); @@ -10758,7 +10429,6 @@ INSERT INTO international VALUES (731,'WebGUI',8,'2 Addestrato',1045768747,NULL) INSERT INTO international VALUES (818,'WebGUI',8,'Disattivato',1045754015,NULL); INSERT INTO international VALUES (817,'WebGUI',8,'Attivo',1045753995,NULL); INSERT INTO international VALUES (815,'WebGUI',8,'Il file che stai tendando di caricare è troppo grande.',1045753965,NULL); -INSERT INTO international VALUES (814,'WebGUI',8,'Torna agli stili.',1045753926,NULL); INSERT INTO international VALUES (813,'WebGUI',8,'Gruppi in questo gruppo',1045753904,NULL); INSERT INTO international VALUES (812,'WebGUI',8,'Il messaggio è stato inviato.',1045753885,NULL); INSERT INTO international VALUES (811,'WebGUI',8,'Da',1045753867,NULL); @@ -10767,9 +10437,6 @@ INSERT INTO international VALUES (809,'WebGUI',8,'Email al Gruppo',1045753846,NU INSERT INTO international VALUES (808,'WebGUI',8,'Email a questo gruppo.',1045753818,NULL); INSERT INTO international VALUES (807,'WebGUI',8,'Gestisci i gruppi in questo gruppo.',1045753792,NULL); INSERT INTO international VALUES (806,'WebGUI',8,'Cancella questo gruppo.',1045753771,NULL); -INSERT INTO international VALUES (805,'WebGUI',8,'Cancella questo stile.',1045753756,NULL); -INSERT INTO international VALUES (804,'WebGUI',8,'Copia questo stile.',1045753737,NULL); -INSERT INTO international VALUES (803,'WebGUI',8,'Modifica questo stile.',1045753721,NULL); INSERT INTO international VALUES (802,'WebGUI',8,'Il sistema attualmente non sta tracciando le statistiche. Puoi abilitare la funzione da \"Gestisci Settaggi\".',1045753698,NULL); INSERT INTO international VALUES (801,'WebGUI',8,'interazione con i Wobject',1045753627,NULL); INSERT INTO international VALUES (800,'WebGUI',8,'Visitatori Unici',1045753606,NULL); @@ -10826,8 +10493,6 @@ INSERT INTO international VALUES (746,'WebGUI',8,'Set Icone Pulsanti di comando' INSERT INTO international VALUES (745,'WebGUI',8,'Torna alla pagina.',1045751953,NULL); INSERT INTO international VALUES (744,'WebGUI',8,'Prossima Azione?',1045751935,NULL); INSERT INTO international VALUES (743,'WebGUI',8,'Devi inserire un indirizzo email valido per recuperare la tua password.',1045751910,NULL); -INSERT INTO international VALUES (742,'WebGUI',8,'Gestisci Template',1045751861,NULL); -INSERT INTO international VALUES (741,'WebGUI',8,'Modifica questo template',1045751829,NULL); INSERT INTO international VALUES (739,'WebGUI',8,'LIvello Interfaccia Utente',1045751324,NULL); INSERT INTO international VALUES (730,'WebGUI',8,'1 Apprendista',1045751118,NULL); INSERT INTO international VALUES (729,'WebGUI',8,'0 Principianti',1045751079,NULL); @@ -10847,7 +10512,6 @@ INSERT INTO international VALUES (73,'Survey',8,'Cancella tutti i responsi',1045 INSERT INTO international VALUES (71,'Survey',8,'Classifica',1045747543,NULL); INSERT INTO international VALUES (70,'Survey',8,'Responsi individuali',1045747529,NULL); INSERT INTO international VALUES (69,'Survey',8,'Cancella i risultati di questo utente.',1045747385,NULL); -INSERT INTO international VALUES (68,'Survey',8,'Visualizza risultati e esportazioni.',1045747357,NULL); INSERT INTO international VALUES (67,'Survey',8,'Utenti',1045747301,NULL); INSERT INTO international VALUES (66,'Survey',8,'Risultati',1045747283,NULL); INSERT INTO international VALUES (65,'Survey',8,'Esporta ricapitolazione composita.',1045747127,NULL); @@ -10913,16 +10577,13 @@ INSERT INTO international VALUES (1,'Survey',8,'Survey (Ricerca di Mercato)',104 INSERT INTO international VALUES (75,'SiteMap',8,'Tutte le Roots',1045744348,NULL); INSERT INTO international VALUES (74,'SiteMap',8,'Questa Pagina',1045744332,NULL); INSERT INTO international VALUES (72,'SiteMap',8,'Template Mappa del Sito',1048067345,NULL); -INSERT INTO international VALUES (73,'MessageBoard',8,'Forum Template',1045680233,NULL); +INSERT INTO international VALUES (73,'MessageBoard',8,'Forum Template',1068899086,NULL); INSERT INTO international VALUES (73,'DataForm',8,'Invia',1045680189,NULL); -INSERT INTO international VALUES (73,'Item',8,'Item Template',1045680117,NULL); INSERT INTO international VALUES (75,'FileManager',8,'File Manager Template',1045680095,NULL); INSERT INTO international VALUES (74,'FileManager',8,'Aggiungi un nuovo file',1045680082,NULL); -INSERT INTO international VALUES (77,'FAQ',8,'Questa è la lista delle variabili disponibili nel FAQ templates.\r\n

addquestion.url
\r\nL\'URL per aggiungere una domanda alle FAQ\r\n

addquestion.label
\r\nL\'etichetta per il link per aggiungere la domanda.\r\n

qa_loop
\r\nIl ciclo contenente le variabili per ogni domanda nelle FAQ. \r\n

\r\n qa.id
\r\n L\'identificatore univoco per questa domanda.\r\n

qa.answer
\r\n La risposta per questa domanda.\r\n

qa.question
\r\n La domanda stessa.\r\n

qa.controls
\r\n I controlli di gestione di WebGUI per questa domanda.\r\n

 

\r\n
\r\n',1045680066,NULL); -INSERT INTO international VALUES (76,'FAQ',8,'FAQ Template',1045679699,NULL); -INSERT INTO international VALUES (75,'FAQ',8,'Aggiungi una domanda',1045679685,NULL); INSERT INTO international VALUES (96,'EventsCalendar',8,'Template Evento',1045679634,NULL); -INSERT INTO international VALUES (95,'EventsCalendar',8,'

Le seguenti variabili dei template sono disponibili per personalizzare il\r\nCalendario Eventi.

\r\n

addevent.url
\r\nL\'URL da inserire in un evento nel calendario.\r\n

addevent.label
\r\nL\'etichetta tradotta per il link aggiungi evento.\r\n

calendar.big
\r\nUn Calendario a piena pagina.\r\n

calendar.small
\r\nUn calendario piccolo che mostra solo le date.\r\n

calendar.firstPage
\r\n
Un Link alla prima pagina dell\'impaginazione del calendario.\r\n

calendar.lastPage
\r\nUn Link all\'ultima pagina dell\'impaginazione del calendario.\r\n

calendar.nextPage
\r\nUn Link alla prossima pagina dell\'impaginazione del calendario.\r\n

calendar.previousPage
\r\nUn Link alla pagina precedente dell\'impaginazione del calendario.\r\n

calendar.pageList
\r\nUna lista di link a tutte le pagine dell\'impaginazione del calendario.\r\n

calendar.multiplePages
\r\nUna variabile che indica dove esiste più di una pagina nell\'impaginazione del\r\ncalendario.\r\n

list_loop
\r\nUn ciclo contenente la visualizzazione a lista di un Calendario Eventi.\r\n

\r\n list.date
\r\n La data di questo evento.\r\n

list.title
\r\n Il titolo di questo evento.\r\n

list.description
\r\n La descrizione di questo evento.\r\n

list.sameAsPrevious
\r\n Una variabile che indica se questo evento ha la stessa data dell\'ultimo\r\n evento.\r\n

list.url
\r\n L\'URL della pagina piena di questo evento.\r\n

list.controls
\r\n I controlli di WebGUI per la gestione di questo evento.\r\n

 

\r\n
\r\n

list.firstPage
\r\nUn Link alla prima pagina dell\'impaginazione.\r\n

list.lastPage
\r\nUn Link all\'ultima pagina dell\'impaginazione.\r\n

list.nextPage
\r\nUn Link alla prossima pagina dell\'impaginazione.\r\n

list.previousPage
\r\nUn Link alla precedente pagina dell\'impaginazione del calendario.\r\n

list.pageList
\r\nUna lista di link a tutte le pagine dell\'impaginazione.\r\n

list.multiplePages
\r\nUna variabile che indica dove esiste più di una pagina nell\'impaginazione.

\r\n\r\n',1054313654,NULL); +INSERT INTO international VALUES (95,'EventsCalendar',8,'

Le seguenti variabili dei template sono disponibili per personalizzare il\nCalendario Eventi.

\n

addevent.url
\nL\'URL da inserire in un evento nel calendario.\n

addevent.label
\nL\'etichetta tradotta per il link aggiungi evento.\n

calendar.big
\nUn Calendario a piena pagina.\n

calendar.small
\nUn calendario piccolo che mostra solo le date.\n

calendar.firstPage
\n
Un Link alla prima pagina dell\'impaginazione del calendario.\n

calendar.lastPage
\nUn Link all\'ultima pagina dell\'impaginazione del calendario.\n

calendar.nextPage
\nUn Link alla prossima pagina dell\'impaginazione del calendario.\n

calendar.previousPage
\nUn Link alla pagina precedente dell\'impaginazione del calendario.\n

calendar.pageList
\nUna lista di link a tutte le pagine dell\'impaginazione del calendario.\n

calendar.multiplePages
\nUna variabile che indica dove esiste più di una pagina nell\'impaginazione del\ncalendario.\n

list_loop
\nUn ciclo contenente la visualizzazione a lista di un Calendario Eventi.\n

\n list.date
\n La data di questo evento.\n

list.title
\n Il titolo di questo evento.\n

list.description
\n La descrizione di questo evento.\n

list.sameAsPrevious
\n Una variabile che indica se questo evento ha la stessa data dell\'ultimo\n evento.\n

list.url
\n L\'URL della pagina piena di questo evento.\n

list.controls
\n I controlli di WebGUI per la gestione di questo evento.\n

 

\n
\n

list.firstPage
\nUn Link alla prima pagina dell\'impaginazione.\n

list.lastPage
\nUn Link all\'ultima pagina dell\'impaginazione.\n

list.nextPage
\nUn Link alla prossima pagina dell\'impaginazione.\n

list.previousPage
\nUn Link alla precedente pagina dell\'impaginazione del calendario.\n

list.pageList
\nUna lista di link a tutte le pagine dell\'impaginazione.\n

list.multiplePages
\nUna variabile che indica dove esiste più di una pagina nell\'impaginazione.

\n\n',1054313654,NULL); +INSERT INTO international VALUES (24,'PhotoGallery',8,'Caricamento immagine',1034023843,NULL); INSERT INTO international VALUES (94,'EventsCalendar',8,'Template Calendario Eventi',1045677272,NULL); INSERT INTO international VALUES (93,'EventsCalendar',8,'Prossimo Evento',1045677244,NULL); INSERT INTO international VALUES (92,'EventsCalendar',8,'Evento Precedente',1045677224,NULL); @@ -10944,8 +10605,8 @@ INSERT INTO international VALUES (8,'Auth/SMB',8,'NT Login',1045676845,NULL); INSERT INTO international VALUES (7,'Auth/SMB',8,'NT Domain',1045676835,NULL); INSERT INTO international VALUES (6,'Auth/SMB',8,'BDC',1045676827,NULL); INSERT INTO international VALUES (5,'Auth/SMB',8,'PDC',1045676601,NULL); -INSERT INTO international VALUES (4,'Auth/SMB',8,'SMB Logon Errore (3)\r\nHai fornito una combinazione nome utente/password non valida. Prova ancora.',1045599392,NULL); -INSERT INTO international VALUES (3,'Auth/SMB',8,'SMB Protocol Errore (2)
\r\nContatta l\'amministratore di sistema.',1045599308,NULL); +INSERT INTO international VALUES (4,'Auth/SMB',8,'SMB Logon Errore (3)\nHai fornito una combinazione nome utente/password non valida. Prova ancora.',1045599392,NULL); +INSERT INTO international VALUES (3,'Auth/SMB',8,'SMB Protocol Errore (2)
\nContatta l\'amministratore di sistema.',1045599308,NULL); INSERT INTO international VALUES (2,'Auth/SMB',8,'SMB Server Error (1)
Something went wrong accessing the domain controller. Perhaps the connection timed out. Please try again or contact your sysadmin.',1045599050,NULL); INSERT INTO international VALUES (1,'Auth/SMB',8,'Opzioni Autenticazione SMB',1045598968,NULL); INSERT INTO international VALUES (1,'Auth/LDAP',8,'Opzioni Autenticazione LDAP ',1045598946,NULL); @@ -11011,9 +10672,7 @@ INSERT INTO international VALUES (748,'WebGUI',10,'Bruger antal',1047941411,NULL INSERT INTO international VALUES (747,'WebGUI',10,'Brugernavn må kun indeholde alfanumeriske tegn.',1047941398,NULL); INSERT INTO international VALUES (746,'WebGUI',10,'Ikon sæt for toolbar',1047941373,NULL); INSERT INTO international VALUES (745,'WebGUI',10,'Gå tilbage til siden.',1047941356,NULL); -INSERT INTO international VALUES (742,'WebGUI',10,'Administrer skabeloner.',1047941342,NULL); INSERT INTO international VALUES (728,'WebGUI',10,'Er du sikker på du vil slette denne fil?',1047941323,NULL); -INSERT INTO international VALUES (659,'WebGUI',10,'Stilarter, Administrer',1047941289,NULL); INSERT INTO international VALUES (76,'USS',10,'Indlæg skabelon',1047941144,NULL); INSERT INTO international VALUES (74,'USS',10,'Brugerindlægs System skabelon',1047941126,NULL); INSERT INTO international VALUES (73,'USS',10,'Skabelon for indlæg',1047941108,NULL); @@ -11030,7 +10689,6 @@ INSERT INTO international VALUES (46,'USS',10,'L INSERT INTO international VALUES (1034,'WebGUI',1,'Post Form Template',1066034620,'Tell the admin to select a template for post forms in this forum.'); INSERT INTO international VALUES (41,'USS',10,'Dato',1047940918,NULL); INSERT INTO international VALUES (39,'USS',10,'Skriv et svar',1047940909,NULL); -INSERT INTO international VALUES (38,'USS',10,'Vælg \"nej\" hvis du skriver et HTML indlæg',1047940891,NULL); INSERT INTO international VALUES (30,'USS',10,'Karma pr. indlæg',1047940857,NULL); INSERT INTO international VALUES (28,'DataForm',10,'Option for tekstområde',1047940563,NULL); INSERT INTO international VALUES (27,'DataForm',10,'Højde',1047940544,NULL); @@ -11047,8 +10705,6 @@ INSERT INTO international VALUES (61,'FileManager',10,'Fil manager, TIlf INSERT INTO international VALUES (1030,'WebGUI',10,'af',1047940324,NULL); INSERT INTO international VALUES (1029,'WebGUI',10,'Redigeret kl.',1047940318,NULL); INSERT INTO international VALUES (1024,'WebGUI',10,'Filtrer post',1047940296,NULL); -INSERT INTO international VALUES (76,'FAQ',6,'FAQ-mall',1050402997,NULL); -INSERT INTO international VALUES (75,'FAQ',6,'Lägg till fråga.',1047901205,NULL); INSERT INTO international VALUES (73,'DataForm',6,'Skicka',1047901148,NULL); INSERT INTO international VALUES (73,'MessageBoard',6,'Mall för meddelandeforum',1050403030,NULL); INSERT INTO international VALUES (2,'Auth/SMB',6,'SMB Server Error(1)\r\n
\r\nNågot gick fel när domänkontrollanten skulle kontaktas. Kanske tog kontakten för lång tid. Var god försök igen eller kontakta din systemadministratör.',1047901072,NULL); @@ -11101,7 +10757,7 @@ INSERT INTO international VALUES (71,'Survey',6,'Betyg',1047897774,NULL); INSERT INTO international VALUES (70,'Survey',6,'Individuella Svar',1047897757,NULL); INSERT INTO international VALUES (7,'Survey',6,'Svarsstyrd',1047897735,NULL); INSERT INTO international VALUES (69,'Survey',6,'Ta bort denna användares svar.',1047897689,NULL); -INSERT INTO international VALUES (68,'Survey',6,'Visa rapporter och exporteringar.',1047897654,NULL); +INSERT INTO international VALUES (22,'WSClient',1,'Parse error on SOAP parameters.',1055348597,NULL); INSERT INTO international VALUES (67,'Survey',6,'Användare',1047897588,NULL); INSERT INTO international VALUES (66,'Survey',6,'Användarsvar',1047897572,NULL); INSERT INTO international VALUES (65,'Survey',6,'Exportera sammansatt summering.',1047897550,NULL); @@ -11159,7 +10815,6 @@ INSERT INTO international VALUES (1029,'WebGUI',2,'Bearbeitet am',1048241921,NUL INSERT INTO international VALUES (1024,'WebGUI',2,'Beiträge filtern',1048241910,NULL); INSERT INTO international VALUES (887,'WebGUI',2,'Midas (Mozilla 1.3+)',1048175062,NULL); INSERT INTO international VALUES (623,'WebGUI',2,'Cascading Style Sheets (CSS) sind \r\neine gute Möglichkeit, um das "Look and Feel", also das Aussehen einer \r\nSeite zu bestimmen. Sie werden sehr weitreichend in WebGUI benutzt.

Sollten \r\nSie mit der Benutzung von CSS nicht vertraut sein: Plain Black Software bietet \r\nSchulungsbereiche in XHTML und CSS an. Alternativ können Sie sich den exellenten \r\nCSS Editor von Bradsoft, Top Style \r\nanschauen.

Nachfolgend eine Liste von Style Klassen, die das Aussehen von \r\nWebGUI bestimmen: WebGUI: \r\n

A
Die Links.

BODY
Das Standard-Setup aller Seiten innerhalb \r\neines Styles. \r\n

H1
Die Überschriften einer jeden Seite. \r\n

.accountOptions
DieLink, die unter den Login und Zugangsdaten \r\nFormularen angezeigt werden. \r\n

.adminBar
Die Leiste, die im Kopf der Seite erscheint, wenn Sie \r\nim Editiermodus sind (Administrationsmenü)

.content
Der Haupt Inhaltsbereich \r\nauf allen Seiten dieses Styles \r\n

.formDescription
Die Zeichen der Formelemente (z. B. im Mailformular \r\nder Text "Von: ")

.formSubtext
Die Zeichen unterhalb \r\nvon Form-Elementen

.highlight
Bedeutet ein hervorgehobenes Element, \r\n so zum Beispiel können Sie hiermit den Beitrag, der gerade gelesen wird, hervorheben.

.horizontalMenu
Das \r\nhorizontale Menu (sofern Sie eins verwenden)

.pagination
Die "Vorher" \r\n/ "Weiter" Links auf Seiten, die sich über mehrere Seiten erstrecken.

.selectedMenuItem
Hiermit \r\nkönnen Sie in einigen der Menu-Makros die aktuelle Seite hervorheben.

.tableData
Die \r\nDatenreihen u.a.im Diskussionsforum und im Benutzerbeitragssystem.

.tableHeader
Die \r\nSpaltenköpfe u.a .im Diskussionsforum und im Benutzerbeitragssystem.

.tableMenu
Das \r\nMenu  u.a .im Diskussionsforum und im Benutzerbeitragssystem.

.verticalMenu
Das \r\nvertikale Menü (sofern Sie eines verwenden)

Beachte: Einige \r\nWobjects und Makros haben noch ihre eigenen zusätzlichen Stylesheet Klassen, \r\ndie in den jeweiligen Hilfebereichen näher erläutert sind.

',1048589344,NULL); -INSERT INTO international VALUES (621,'WebGUI',2,'In den Styles werden WebGUI Makros unterstützt. Sehen Sie unter Makros verwenden nach, \r\num weitere Informationen erhalten.

Style Name
Ein eindeutiger Name, \r\num zu beschreiben, wie der Style im Überblick aussieht. \r\n

Body
Damit ist der HTML Body Bereich Ihrer Seite gemeint. Hier \r\nwird u. a. festgelegt, wo die Seitennavigation liegen soll, oder auch viele \r\nandere Dinge, wie Logo, Copyright, etc. Ein Body muss mindestens einige Dinge \r\nenthalten, wie das \r\n^AdminBar; Makro und das ^-; (Seperator) Makro. Das ^AdminBar; Makro legt fest, \r\nwo WebGUI die Administrationsfunktionen anzeigen soll, das ^-; Makro legt fest, \r\nwo WebGUI den eigentlichen Inhalt der Seite platzieren soll. \r\n

Sollten Sie Unterstützung beim Entwerfen eines Styles/Layouts Ihrer Seite \r\nbenötigen: Plain \r\nBlack Software bietet kostengünstige Unterstützung an. \r\n

Viele WebGUI Nutzer fügen Makros in den Body-Bereich ein, um die Navigationselemente \r\neinzubinden oder viele weitere WebGUI Features. \r\n

Style Sheet
Geben Sie hier die Stylesheet Einträge an. Stylesheets \r\nwerden u. a. zum Festlegen der Darstellung von Farben, Schriftarten, Schriftgrössen \r\nund anderen Eigenschaften  benutzt. Sehen Sie unter Style Sheets verwenden nach, \r\num weitere Informationen zu erhalten. \r\n

Erfahrene Benutzer: für eine grössere Performance können Sie auch \r\neine Stylesheet-Datei erstellen, die Sie z. B. webgui.css nennen können und \r\nfügen Sie einen Eintrag wie diesen hier ein:

\r\n',1048591989,NULL); INSERT INTO international VALUES (632,'WebGUI',2,'

Wobjects können Sie hinzufügen, indem Sie aus dem Menü "Inhalt hinzufügen ...", das sich in der Regel oben rechts befindet, ein beliebiges Wobject auswählen. Sie können es bearbeiten, wenn Sie den Bearbeiten-Button anklicken, der immer über einem Wobject steht, das Sie in die Seite eingebunden haben.

\r\n\r\n

Einige Eigenschaften finden Sie bei fast allen Wobjects. Diese wären:

\r\n\r\n

Wobject ID
\r\nDies ist das eindeutige Kennzeichen das WebGUI benutzt, um diese Wobject Instanz zu identifizieren. Normale Benutzer sollten eigentlich niemals mit dieser Wobject ID konfrontiert werden, aber einige erfahrene Benutzer sollten sie schon kennen, da sie z.B. hilfreich in den SQL Reports sind.

\r\n\r\n

Titel
\r\nDer Titel des Wobjects. Typischerweise wird dieser im Kopfbereich eines jeden Wobjects angezeigt.

\r\n\r\n

Beachte: Sie sollten immer einen Titel vergeben, es sei denn, sie schalten die Anzeige des Titels ab (siehe nächste Einstellung). Und zwar sollten Sie das u. a. deswegen tun, da dieser Titel auch im Mülleimer oder in der Zwischenablage angezeigt wird. So können Sie immer auf Anhieb sehen, um welches Wobject es sich eigentlich handelt.

\r\n\r\n

Titel anzeigen?
\r\nMöchten Sie, dass der Titel angezeigt wird?

\r\n\r\n

Makros ausführen?
\r\nMöchten Sie, dass Makros, die Sie im Inhaltsbereich schreiben, auch ausgeführt werden? Manchmal möchten Sie dies zulassen, aber oft besteht keine Notwendigkeit dafür. Wenn Sie das Ausführen von Makros ausschalten, werden Ihre Seiten auch ein wenig schneller aufgebaut.

\r\n\r\n

Position des Templates
\r\nTemplate Positionen gehen von 0 (Null) bis zu beliebigen Nummern. Wie viele hier möglich sind, ist abhängig von dem Template, dass dieser Seite zugeordnet ist. Das StandardTemplate bietet nur eine Template Position, andere können mehr anbieten. Wenn Sie also eine Template Position auswählen, bestimmen Sie, wo das Wobject innerhalb der Seite erscheinen soll.

\r\n\r\n

Anfangsdatum
\r\nAb welchem Datum soll das Wobject auf der Seite erscheinen? Vor diesem Zeitpunkt ist es dann nur für Content Manager sichtbar.

\r\n\r\n

Ende Datum
\r\nBis zu welchem Datum soll das Wobject angezeigt werden? Nach diesem Zeitpunkt ist es dann nur für Content Manager sichtbar.

\r\n\r\n

Besitzer
\r\nDer Besitzer eines Wobjects ist gewöhnlich die Person, die das Wobject erstellt hat. Dieser Benutzer hat die vollen Bearbeitungs- und Anschaurechte, es sei denn, die Berechtigungen der Seite, auf der das Wobject sich befindet, gewähren diesem Benutzer keine Rechte.

\r\n\r\n

Beachte: Der Besitzer kann nur von einem Administrator geändert werden.

\r\n\r\n

Wer kann anschauen?
\r\nWählen Sie die Gruppe aus, die dieses Wobject anschauen darf. Wenn Sie möchten, dass sowohl Besucher als auch registrierte Benutzer dies dürfen, wählen Sie "Jeder" aus.

\r\n\r\n

Wer kann bearbeiten?
\r\nWählen Sie die Gruppe aus, die dieses Wobject bearbeiten darf. Diese Gruppe hat dann auch die Berechtigung, das Wobject anzuschauen.

\r\n\r\n

Inhalt/Beschreibung
\r\nEin Inhaltsbereich, in den Sie soviel Text schreiben können, wie Sie möchten. Wenn Sie z. B. eine FAQ hinzufügen, können Sie hier eine Zusammenfassung hineinschreiben, um zu definieren, um welche FAQ es sich handelt. Wenn Sie das Wobject "Artikel" einfügen, schreiben Sie hier den eigentlichen Text des Artikels, also den Inhalt, hinein.

',1067289682,NULL); INSERT INTO international VALUES (79,'MessageBoard',2,'

Ein Diskussionsforum kann eins oder mehrere Foren enthalten. Nachfolgend \r\neine Liste der Eigenschaften jedes Forums \r\n

\r\n

Titel
Der Name des ForumsThe title of the forum. \r\n

\r\n

Beschreibung
Die Beschreibung zu diesem Forum.

',1067288591,NULL); INSERT INTO international VALUES (864,'WebGUI',2,'Zeitabstand zur Ablaufankündigung',1045494167,NULL); @@ -11271,13 +10926,11 @@ INSERT INTO international VALUES (629,'WebGUI',12,'Bruk Delt UtklippsTav INSERT INTO international VALUES (625,'WebGUI',12,'Upload any images that you\'ll possibly use in more than one location on your \r\nsite. \r\n

Name
The label that this image will be referenced by to include it \r\ninto pages. \r\n

Organize In Folder
Which collateral folder should this image be \r\nplaced in. \r\n

File
Select a file from your local drive to upload to the server. \r\n

Parameters
Add any HTML <img&rt; parameters that you wish to \r\nact as the defaults for this image. \r\n

Example:
align=\"right\"
alt=\"This is an image\"
\r\n

Thumbnail Size
How big (in pixels) should the thumbnail for this \r\nimage be?

',1046114987,NULL); INSERT INTO international VALUES (623,'WebGUI',12,'

\r\n\r\n\r\n\r\n
Cascading Style Sheets (CSS) are a great way to manage \r\nthe look and feel of any web site. They are used extensively in WebGUI. \r\n

If you are unfamiliar with how to use CSS, Plain Black \r\nSoftware provides training classes on XHTML and CSS. Alternatively, \r\nBradsoft makes an excellent CSS editor called Top \r\nStyle. \r\n

The following is a list of classes used to control the look of WebGUI: \r\n

A
The links throughout the style. \r\n

BODY
The default setup of all pages within a style. \r\n

H1
The headers on every page. \r\n

.accountOptions
The links that appear under the login and account \r\nupdate forms. \r\n

.adminBar
The bar that appears at the top of the page when you\'re \r\nin admin mode. \r\n

.content
The main content area on all pages of the style. \r\n

.formDescription
The tags on all forms next to the form elements. \r\n

.formSubtext
The tags below some form elements. \r\n

.highlight
Denotes a highlighted item, such as which message you \r\nare viewing within a list. \r\n

.horizontalMenu
The horizontal menu (if you use a horizontal menu \r\nmacro). \r\n

.pagination
The Previous and Next links on pages with pagination. \r\n

.selectedMenuItem
Use this class to highlight the current page in \r\nany of the menu macros. \r\n

.tableData
The data rows on things like message boards and user \r\ncontributions. \r\n

.tableHeader
The headings of columns on things like message boards \r\nand user contributions. \r\n

.tableMenu
The menu on things like message boards and user \r\nsubmissions. \r\n

.verticalMenu
The vertical menu (if you use a vertical menu \r\nmacro). \r\n

Note: Some wobjects and macros have their own unique styles \r\nsheet classes, which are documented in their individual help files. \r\n

',1046114857,NULL); INSERT INTO international VALUES (622,'WebGUI',12,'See Manage Group for a description of grouping functions and the default \r\ngroups. \r\n

Group Name
A name for the group. It is best if the name is \r\ndescriptive so you know what it is at a glance. \r\n

Description
A longer description of the group so that other admins \r\nand content managers (or you if you forget) will know what the purpose of this \r\ngroup is. \r\n

Expire Offset
The amount of time that a user will belong to this \r\ngroup before s/he is expired (or removed) from it. This is very useful for \r\nmembership sites where users have certain privileges for a specific period of \r\ntime. \r\n

NOTE: This can be overridden on a per-user basis. \r\n

Notify user about expiration?
Set this value to yes if you want \r\nWebGUI to contact the user when they are about to be expired from the group. \r\n

Expire Notification Offset
The difference in the number of days \r\nfrom the expiration to the notification. You may set this to any valid integer. \r\nFor instance, set this to \"0\" if you wish the notification to be sent on the \r\nsame day that the grouping expires. Set it to \"-7\" if you want the notification \r\nto go out 7 days before the grouping expires. Set it to \"7\" if you wish \r\nthe notification to be sent 7 days after the expiration. \r\n

Expire Notification Message
Type the message you wish to be sent to \r\nthe user telling them about the expiration. \r\n

Delete Offset
The difference in the number of days from the \r\nexpiration to the grouping being deleted from the system. You may set this to \r\nany valid integer. For instance, set this to \"0\" if you wish the grouping to be \r\ndeleted on the same day that the grouping expires. Set it to \"-7\" if you want \r\nthe grouping to be deleted 7 days before the grouping expires. Set it to \r\n\"7\" if you wish the grouping to be deleted 7 days after the expiration. \r\n

Scratch Filter
A user can be dynamically bound to a group by a \r\nscratch variable in their session. Scratch variables can be set programatically, \r\nor via the web. To set a scratch variable via the web, tack the following on to \r\nthe end of any URL: \r\n

?op=setScratch&scratchName=somename&scratchValue=somevalue \r\n

Having done that, when a user clicks on that link they will have a scratch \r\nvariable added to their session with a name of \"www_somename\" and a value of \r\n\"somevalue\". The \"www_\" is prepended to prevent web requests from overwriting \r\nscratch variables that were set programatically. \r\n

To set a scratch filter simply add a line to the scratch filter field that \r\nlooks like: \r\n

www_somename=somevalue \r\n

IP Address
Specify an IP address or an IP mask to match. If the \r\nuser\'s IP address matches, they\'ll automatically be included in this group. An \r\nIP mask is simply the IP address minus an octet or two. You may also specify \r\nmultiple IP masks separated by semicolons. \r\n

IP Mask Example: 10.;192.168.;101.42.200.142 \r\n

Karma Threshold
If you\'ve enabled Karma, then you\'ll be able to set \r\nthis value. Karma Threshold is the amount of karma a user must have to be \r\nconsidered part of this group. \r\n

Users can add themselves?
Do you wish to let users add themselves \r\nto this group? See the GroupAdd macro for more info. \r\n

Users can remove themselves?
Do you wish to let users remove \r\nthemselves from this group? See the GroupDelete macro for more info. \r\n

The following options are recommended only for advanced WebGUI \r\nadministrators. \r\n

Database Link
If you\'d like to have this group validate users using \r\nan external database, choose the database link to use. \r\n

SQL Query
Many organizations have external databases that map users \r\nto groups; for example an HR database might map Employee ID to Health Care Plan. \r\nTo validate users against an external database, you need to construct a SQL \r\nstatement that will return 1 if a user is in the group. Make sure to begin your \r\nstatement with \"select 1\". You may use macros in this query to access data in a \r\nuser\'s profile, such as Employee ID. Here is an example that checks a user \r\nagainst a fictional HR database. This assumes you have created an additional \r\nprofile field called employeeId.

select 1 from employees, health_plans, \r\nempl_plan_map
where employees.employee_id = ^User(\"employeeId\");
and \r\nhealth_plans.plan_name = \'HMO 1\'
and employees.employee_id = \r\nempl_plan_map.employee_id
and health_plans.health_plan_id = \r\nempl_plan_mp.health_plan_id

This group could then be named \"Employees in \r\nHMO 1\", and would allow you to restrict any page or wobject to only those users \r\nwho are part of this health plan in the external database. \r\n

Cache external groups for how long?
Large sites using external \r\ngroup data will be making many calls to the external database. To help reduce \r\nthe load, you may select how long you\'d like to cache the results of the \r\nexternal database query within the WebGUI database. More advanced background \r\ncaching may be included in a future version of WebGUI.

',1068759148,NULL); -INSERT INTO international VALUES (621,'WebGUI',12,'

Styles are WebGUI macro enabled. See Using Macros for more information. \r\n

Style Name
A unique name to describe what this style \r\nlooks like at a glance. The name has no effect on the actual look of the style. \r\n

\r\n

Body
The body is quite literally the HTML body of your \r\nsite. It defines how the page navigation will be laid out and many other things \r\nlike logo, copyright, etc. At bare minimum a body must consist of a few things, \r\nthe ^AdminBar; macro and the ^-; (seperator) macro. The ^AdminBar; macro tells \r\nWebGUI where to display admin functions. The ^-; (splitter) macro tells WebGUI \r\nwhere to put the content of your page.

\r\n

If you are in need of assistance for creating a look for your site, or if you \r\nneed help cutting apart your design, Plain \r\nBlack Software provides support services for a small fee.

\r\n

Many people will add WebGUI macros to their body for automated navigation, \r\nand other features.

\r\n

Style Sheet
Place your style sheet entries here. Style \r\nsheets are used to control colors, sizes, and other properties of the elements \r\non your site. See Using Style Sheets for more information.

\r\n

Advanced Users: for greater performance create your \r\nstylesheet on the file system (call it something like webgui.css) and add an \r\nentry like this to this area:

',1046114675,NULL); INSERT INTO international VALUES (619,'WebGUI',12,'This function permanently deletes the selected wobject from a page. If you are \r\nunsure whether you wish to delete this content you may be better served to cut \r\nthe content to the clipboard until you are certain you wish to delete it. \r\n

As with any delete operation, you are prompted to be sure you wish to \r\nproceed with the delete. If you answer yes, the delete will proceed and there is \r\nno recovery possible. If you answer no you\'ll be returned to the prior \r\nscreen.
',1046114536,NULL); INSERT INTO international VALUES (618,'WebGUI',12,'

SMTP Server
This is the address of your local mail \r\nserver. It is needed for all features that use the Internet email system (such \r\nas password recovery).

\r\n

Optionally, if you are running a sendmail server on the same machine as \r\nWebGUI, you can also specify a path to your sendmail executable. On most Linux \r\nsystems this can be found at \"/usr/lib/sendmail\".

\r\n

Email Footer
This footer will be processed for macros and \r\nattached to every email sent from this WebGUI instance.

Alert on new \r\nuser?

Should someone be alerted when a new user registers anonymously? \r\n

\r\n

Group To Alert On New User
What group should be alerted when a new \r\nuser registers?

',1046114473,NULL); INSERT INTO international VALUES (617,'WebGUI',12,'

Settings are items that allow you to adjust WebGUI to your particular needs. \r\n

Rediger Firma Informasjon
Information specific about the company or \r\nindividual who controls this installation of WebGUI.

\r\n

Rediger Innholds Instillinger
Settings related to content and content \r\nmanagement.

\r\n

Rediger ePost Instillinger
Settings concerning email and related \r\nfunctions.

\r\n

Rediger Forskjellige Instillinger
Anything we couldn\'t find a place for. \r\n

\r\n

Rediger Profil Instillinger
Define what user profiles look like and what \r\nthe users have the ability to edit.

\r\n

Rediger Bruker Instillinger
Settings relating to users (beyond profile \r\ninformation), like authentication information, and registration options. \r\n

',1046114265,NULL); INSERT INTO international VALUES (616,'WebGUI',12,'

Sti til WebGUI Extras
The web-path to the directory \r\ncontaining WebGUI images and javascript files.

\r\n

Maksimum vedleggs størrelse
The maximum size of files \r\nallowed to be uploaded to this site. This applies to all wobjects that allow \r\nuploaded files and images (like Article and User Contributions). This size is \r\nmeasured in kilobytes.

\r\n

Tittebilde størrelse
The size of the longest side of \r\nthumbnails. The thumbnail generation maintains the aspect ratio of the image. \r\nTherefore, if this value is set to 100, and you have an image that\'s 400 pixels \r\nwide and 200 pixels tall, the thumbnail will be 100 pixels wide and 50 pixels \r\ntall.
Note: Thumbnails are automatically generated as images are uploaded to \r\nthe system.

\r\n

Web vedleggs sti
The web-path of the directory where attachments are to be \r\nstored.

\r\n

Server vedleggs sti
The local path of the directory where attachments are \r\nto be stored. (Perhaps /var/www/public/uploads) Be sure that the web server has \r\nthe rights to write to that directory.

',1046114149,NULL); INSERT INTO international VALUES (615,'WebGUI',12,'

Groups are used to subdivide privileges and responsibilities within the \r\nWebGUI system. For instance, you may be building a site for a classroom \r\nsituation. In that case you might set up a different group for each class that \r\nyou teach. You would then apply those groups to the pages that are designed for \r\neach class.
There are several groups built into WebGUI. They are as follows: \r\n

\r\n

Admins
Admins are users who have unlimited privileges \r\nwithin WebGUI. A user should only be added to the admin group if they oversee \r\nthe system. Usually only one to three people will be added to this group.

\r\n

Content Managers
Content managers are users who have \r\nprivileges to add, edit, and delete content from various areas on the site. The \r\ncontent managers group should not be used to control individual content areas \r\nwithin the site, but to determine whether a user can edit content at all. You \r\nshould set up additional groups to separate content areas on the site.

\r\n

Everyone
Everyone is a magic group in that no one is ever \r\nphysically inserted into it, but yet all members of the site are part of it. If \r\nyou want to open up your site to both visitors and registered users, use this \r\ngroup to do it.

\r\n

Package Managers
Users that have privileges to add, edit, \r\nand delete packages of wobjects and pages to deploy.

\r\n

Registered Users
When users are added to the system they \r\nare put into the registered users group. A user should only be removed from this \r\ngroup if their account is deleted or if you wish to punish a troublemaker.

\r\n

Style Managers
Users that have privileges to edit styles \r\nfor this site. These privileges do not allow the user to assign privileges to a \r\npage, just define them to be used.

\r\n

Template Managers
Users that have privileges to edit \r\ntemplates for this site.

\r\n

Visitors
Visitors are users who are not logged in using \r\nan account on the system. Also, if you wish to punish a registered user you \r\ncould remove him/her from the Registered Users group and insert him/her into the \r\nVisitors group.

',1046114032,NULL); -INSERT INTO international VALUES (614,'WebGUI',12,'

Stiler brukes for å håndtere utseende på dine WebGUI sider. Med WebGUI kan du \r\nopprette et ubegrenset antall Stiler, slik at ditt nettsted kan ha så mange \r\nutseender som du ønsker. Du kan ha noen sider som ligner din firmabrosjyre og \r\nnoen sider som ligner Yahoo. Du kan tilogmed ha noen sider som ser ut som sider \r\ni en bok. Ved hjelp av \"Håndtere Stiler\" vil du ha ubegrenset kontroll over \r\ndesignet på nettstedet.

\r\n

Det finnes flere Stiler innebygget i WebGUI. De første av disse benyttes av \r\nWebGUI og bør ikke slettes eller endres.

\r\n

Clipboard
Denne Stilen benyttes av Utklippstavlen.

Fail \r\nSafe

Når du sletter en Stil som fremdeles benyttes på en side eller \r\nflere, vil Fail Safe Stilen benyttes på disse sidene. Denne siden har hvit \r\nbakgrunn og enkel navigasjon.

Make Page Printable

Denne Stilen \r\nbrukes når ^r; makroen brukes på en side og brukeren klikker på den. Dene Stilen \r\nlar deg legge til en enkel logo og opphavsrett beskjed på dine utskriftbare \r\nsider.

\r\n

 

\r\n

Packages
Denne stilen benyttes av pakke håndterings \r\nsystemet.

Trash

Denne stilen benyttes av Søppel \r\nsystemet.

',1066008139,NULL); INSERT INTO international VALUES (612,'WebGUI',12,'There is no need to ever actually delete a user. If you are concerned with \r\nlocking out a user, then simply change their password. If you truely wish to \r\ndelete a user, then please keep in mind that there are consequences. If you \r\ndelete a user any content that they added to the site via wobjects (like message \r\nboards and user contributions) will remain on the site. However, if another user \r\ntries to visit the deleted user\'s profile they will get an error message. Also \r\nif the user ever is welcomed back to the site, there is no way to give him/her \r\naccess to his/her old content items except by re-adding the user to the users \r\ntable manually.

As with any delete operation, you are prompted to be \r\nsure you wish to proceed with the delete. If you answer yes, the delete will \r\nproceed and there is no recovery possible. If you answer no you\'ll be returned \r\nto the prior screen.
',1046113773,NULL); INSERT INTO international VALUES (611,'WebGUI',12,'

Firma Navn
The name of your company. It will appear on \r\nall emails and anywhere you use the Company Name macro.

\r\n

Firma ePost Adresse
A general email address at your \r\ncompany. This is the address that all automated messages will come from. It can \r\nalso be used via the WebGUI macro system.

\r\n

Firma URL
The primary URL of your company. This will \r\nappear on all automated emails sent from the WebGUI system. It is also available \r\nvia the WebGUI macro system.

',1046113726,NULL); INSERT INTO international VALUES (610,'WebGUI',12,'

See Manage Users for additional details. \r\n
Username
Username is a unique identifier for a user. \r\nSometimes called a handle, it is also how the user will be known on the site. \r\n(Note: Administrators have unlimited power in the WebGUI system. This also means \r\nthey are capable of breaking the system. If you rename or create a user, be \r\ncareful not to use a username already in existance.)

\r\n

Password
A password is used to ensure that the user is \r\nwho s/he says s/he is.

\r\n

Authentication Method
See Edit Settings for details.

\r\n

LDAP URL
See Edit Settings for details.

\r\n

Connect DN
The Connect DN is the cn (or common name) of a \r\ngiven user in your LDAP database. It should be specified as cn=John Doe. This \r\nis, in effect, the username that will be used to authenticate this user against \r\nyour LDAP server.

',1046113641,NULL); @@ -11286,7 +10939,6 @@ INSERT INTO international VALUES (607,'WebGUI',12,'

Anonymous Registra INSERT INTO international VALUES (606,'WebGUI',12,'

Tenk på Sider som bokser for innhold. For eksempel. Om du vil \r\nskrive et brev til redaktøren av ditt favoritt magasin, da ville du ta frem \r\ntekstbehandleren og begynne å skrive inn dine tanker. Det samme er riktig for \r\nWebGUI. Lag en side og deretter fyller du den med innhold.
\r\n

Tittel
Tittelen til siden er hva \r\nbrukerene dine vil bruke for å navigere igjennom nettstedet. Den bør være \r\nbeskrivende men ikke for lang.
\r\n

Meny Tittel
En kortere eller endret tittel for bruk i navigasjon. \r\nOm den utelates vil den settes lik Tittel.
\r\n

SIDE URL
Når du oppretter en side vil en URL bli generert \r\nbasert på sidens tittel. Om du ikke liker den URL som blir valgt, kan du endre \r\nden her.

Redirect URL

Når denne siden besøkes vil brukeren \r\nsendes til denne URL\'n.

NOTE:
Når du er i Admin mode vil du ikke \r\nbli sendt videre. Dette er for at det skal være mulig å endre på egenskaper til \r\nsiden.

\r\n

Skjul fra Navigasjon?
Velg \"ja\" om du vil skjule denne siden fra \r\nnavigasjon (Menyer)

\r\n

NOTE: Dette vil ikke skjule siden fra navigasjon i side treet \r\n(administrative funksjoner > Håndtere sideTre) bare fra navigasjons \r\nmakroer.

\r\n

Åpne i nytt vindu?
Velg \"ja\" for å opne denne siden i et nytt \r\nvindu. Dette blir ofte brukt sammen med Redirect URL \r\nparameteren.

Språk
Velg standard språk for denne \r\nsiden. Alle beskjeder generert av WebGUI vil da vises i i dette språket og \r\nkaraktersettet vil endres til det som er spesifisert for språket.

\r\n

Template
Som standard har WebGUI et stort ommråde der innhold \r\nplasseres. Men, om du spesifiserer en template ulik standardvalget, så kan du \r\ndele siden inn i flere seksjoner.

\r\n

Beskrivelse (Synopsis)
En kort beskrivelse av siden. Den brukes som \r\ngrunnlag for standard Meta Tags og som beskrivelse i nettstedets sideTre \r\nkart.

Meta Tags

Meta Tags blir brukt av en del søkemotorer for \r\nå assosiere nøkkelord til spesielle sider. Det finnes et flott nettsted kalt Meta Tag \r\nBuilder  som vil hjelpe deg med å bygge Meta Tags om du ikke har \r\ngjort det før. \r\n

Avanserte bruker: Om du har andre ting (som JavaScript) som du \r\nvanligvis legger inn på siden din, så kan du like gjerne legge de her. \r\n

Bruke standard Meta Tags?
Om du ikke ønsker å spesifisere \r\nMeta Tags selv, kan WebGUI generere meta tags basert på sidens tittel, ditt \r\nfirma navn. Kryss denne boksen om du vil benytte WebGUI genererte meta \r\ntags.


Stil
Når du oppretter en side vil den som standard, \r\narve en del egenskaper fra siden over. En av disse er stil. Velg fra listen over \r\nStiler om du vil endre utseende på siden. Se Legg til Stiler for mer \r\ninformasjon.

Om du velger \"Ja\" under listeboksen for Stiler, så vill alle \r\nsider under denne bli tildelt Stilen du valgte for denne siden.

\r\n

Start Dato
Datoen hvor brukere kan begynne å se denne siden. Før \r\ndenne datoen er det bare innholds administratorer med rettighet til å redigere \r\nden, som kan se siden.

Slutt Dato

Datoen da brukerene \r\nikke vil kunne se siden lenger. Etter denne datoen er det bare innholds \r\nadministratorer med rettighet til å redigere den, som kan se siden.
\r\n

Eier
Eieren av siden er vanligvis den personen som opprettet siden. \r\nDenne brukeren vil alltid ha fulle redigering og visnings rettigheter til \r\nsiden.

NOTE:
Eier kan kun endres av Administrator.

\r\n

Hvem kan se på?
Velg en gruppe som kan se på denne siden. Om du \r\nønsker at både gjester og registrerte brukere skal kunne se denne siden, da bør \r\ndu velge gruppen \"Everybody\" (alle).

\r\n

Hvem kan redigere?
Velg gruppen som kan redigere denne siden. En \r\ngruppe som er tildelt redigeringsrettigheter kan alltid Se på Siden også.
Du \r\nkan også som en oppsjon gi rettigheter til alle sider under denne siden også. \r\n

Hva nå?
Om du lar denne stå på standardvalg vil du gå til den nye \r\nsiden etter at den blir opprettet.

',1066005919,NULL); INSERT INTO international VALUES (422,'WebGUI',12,'

INNLOGGING FEILET

\r\n

Oppgitt informasjon stemmer ikke med kontoinformasjonen.

',1046111325,NULL); INSERT INTO international VALUES (417,'WebGUI',12,'

SIKKERHETS BRUDD

\r\n

Du prøvde å få tilgang til et Wobject som ikke tilhører denne siden. Denne \r\nhendelsen er rapportert.

',1046111279,NULL); -INSERT INTO international VALUES (416,'WebGUI',12,'\r\n

PROBLEM MED FORESPØRSEL

\r\n

Vi har fåtte et problem med forespørselen din. Prøv å bruke Tilbake knappen \r\nog prøv igjen. Om problemet fortsetter, ta gjerne kontakt med oss med hva du \r\nønsket å gjøre samt dato og tidspunkt når problemet oppsto.

',1046111232,NULL); INSERT INTO international VALUES (77,'USS',12,'The following are the template variables used in a submission template. \r\nSubmission templates are used to display the individual submissions in a user \r\nsubmission system. \r\n

title
The title of this submission. \r\n

content
The full text content of this submission. \r\n

user.label
The translated label indicating what user posted this \r\nsubmission. \r\n

user.profile
The URL to the profile of the user that posted this \r\nsubmission. \r\n

user.username
The username of the user that posted this submission. \r\n\r\n

user.id
The unique identifier for the user that posted this \r\nsubmission. \r\n

date.label
The translated label indicating what date this \r\nsubmission was posted. \r\n

date.epoch
The number of seconds since January 1, 1970 that this \r\nsubmission was posted. \r\n

date.human
A human readable date that displays the date and time \r\nthis submission was posted. \r\n

date.updated.label
The translated label indicating what date this \r\nsubmission was last edited. \r\n

date.updated.epoch
The number of seconds since January 1, 1970 that \r\nthis submission was last edited. \r\n

date.updated.human
A human readable date that displays the date and \r\ntime this submission was last edited. \r\n

status.label
A translated label indicating the status of this \r\nsubmission. \r\n

status.status
The actual status of this submission (pending, \r\napproved, denied). \r\n

views.label
A translated label indicating how many times this \r\nsubmission has been viewed. \r\n

views.count
The number of times this submission has been viewed. \r\n

canPost
An condition indicating whether or not this user can post a \r\nnew submission. \r\n

post.url
The URL to post a new submission. \r\n

post.label
A translated label for the post link. \r\n

previous.more
An condition indicating whether there are any posts \r\nprior to this one available for viewing. \r\n

previous.url
A URL to the post that came before this one. \r\n

previous.label
A translated label for the previous link. \r\n

next.more
A condition indicating whether there are any posts after \r\nthis one available for viewing. \r\n

next.url
The URL to the post that came after this one. \r\n

next.label
A translated label for the next link. \r\n

canEdit
A condition indicating whether the current user cane edit \r\nor delete this post. \r\n

edit.url
The URL to edit this post. \r\n

edit.label
A translated label for the edit link. \r\n

delete.url
The URL to delete this post. \r\n

delete.label
A translated label for the delete link. \r\n

canChangeStatus
A condition indicating whether the current user has \r\nthe privileges to change the status of this post. \r\n

approve.url
The URL to approve this post. \r\n

approve.label
A translated label for the approve link. \r\n

deny.url
The URL to deny this post. \r\n

deny.label
A translated label for the deny link. \r\n

leave.url
The URL to leave this post in it\'s current state. \r\n

leave.label
A translated label for the leave link. \r\n

canReply
A condition indicating whether the current user can reply \r\nto this post. \r\n

reply.url
The URL to reply to this post. \r\n

reply.label
A translated label for the reply link. \r\n

search.url
The URL to toggle on the WebGUI power search form. \r\n

search.label
A translated label for the search link. \r\n

back.url
The URL to return the user to the main listing. \r\n

back.label
A translated label for the back link. \r\n

replies
A complete listing of all replies to this post.

',1068759214,NULL); INSERT INTO international VALUES (75,'USS',12,'This is the listing of template variables available in user submission system \r\ntemplates. \r\n

readmore.label
A translated label that indicates that the user \r\nshould click to read more. \r\n

responses.label
A translated label that indicates that the user \r\nshould click to view the responses to this submission. \r\n

canPost
A condition that indicates whether a user can add a new \r\nsubmission. \r\n

post.url
The URL to add a new submission. \r\n

post.label
A translated label for the post link. \r\n

search.label
A translated label for the search link. \r\n

search.url
The URL to toggle on/off WebGUI\'s power search form. \r\n

search.form
WebGUI\'s power search form. \r\n

title.label
A translated label for the title column. \r\n

thumbnail.label
A translated label for the thumbnail column. \r\n

date.label
A translated label for the date column. \r\n

date.updated.label
The translated label indicating what date this \r\nsubmission was last edited. \r\n

by.label
A translated label stating who the submission was \r\nsubmitted by. \r\n

submissions_loop
A loop containing each submission. \r\n

submission.id
A unique identifier for this submission. \r\n

submission.url
The URL to view this submission. \r\n

submission.content
The abbreviated text content of this submission. \r\n\r\n

submission.responses
The number of responses to this submission. \r\n

submission.title
The title for this submission. \r\n

submission.userId
The user id of the user that posted this \r\nsubmission. \r\n

submission.username
The username of the person that posted this \r\nsubmission. \r\n

submission.status
The status of this submission (approved, pending, \r\ndenied). \r\n

submission.thumbnail
The thumbnail of the image uploaded with this \r\nsubmission (if any). \r\n

submission.date
The that this submission was posted. \r\n

submission.date.updated
A human readable date that displays the \r\ndate and time this submission was last edited. \r\n

submission.currentUser
A condition indicating whether the current \r\nuser is the same as the user that posted this submission. \r\n

submission.userProfile
The URL to the profile of the user that \r\nposted this submission. \r\n

submission.secondColumn
A condition indicating whether or not this \r\nsubmission would belong in the second column, in a multi-column layout. \r\n

submission.thirdColumn
A condition indicating whether or not this \r\nsubmission would belong in the third column, in a multi-column layout. \r\n

submission.fourthColumn
A condition indicating whether or not this \r\nsubmission would belong in the fourth column, in a multi-column layout. \r\n

submission.fifthColumn
A condition indicating whether or not this \r\nsubmission would belong in the fifth column, in a multi-column layout. \r\n

\r\n

firstPage
A link to the first page in the paginator. \r\n

lastPage
A link to the last page in the paginator. \r\n

nextPage
A link to the next page forward in the paginator. \r\n

previousPage
A link to the next page backward in the paginator. \r\n

pageList
A list of links to all the pages in the paginator. \r\n

multiplePages
A conditional indicating whether there is more than \r\none page in the paginator

',1068759268,NULL); INSERT INTO international VALUES (4,'Survey',12,'

Undersøkelser setter deg i stand til å samle informasjon fra dine brukere. \r\nMed WebGUI sine undersøkelser kan du også teste kunnskapsnivå.

\r\n

Spørsmåls rekkefølge
Rekkefølgen spørsmål vil bli stilt. \r\nSekvensielt viser spørsmålene i den rekkefølgen de ble laget. Vilkårlig viser \r\nspørsmålene i tilfeldig rekkefølge. Respons styrt viser spørsmålen sortert etter \r\nresponsen fra brukerene.

\r\n

Modus
Som standard er Undersøkelse i Undersøkelse modus. \r\nDette gjør at du kan stille spørsmål til brukerene dine. Om du bytter til Test \r\nmodus kan du lage en selvrettende test av dine brukeres kunnskapsnivå.

\r\n

Anonym respons?
Velg om undersøkelsen ta vare påog vise \r\ninformasjon som kan identifisere en bruker og hans respons. Om standardverdien \r\n\"Nei\" beholdes, vil undersøkelsen ta vare på brukerens IP adresse sammen med \r\nderes WebGUI bruker ID og brukernavn om de er logget inn. Denne infoen vil være \r\ntilgjengelig i rapportene. Om den settes til \"Ja\" vil disse feltene kun \r\ninneholde random data som ikke kan spores til noen spesiell bruker.

\r\n

Hvem kan ta undersøkelsen?
Hvilke brukere kan delta i \r\nundersøkelsen?

\r\n

Hvem kan se rapporter?
Hvem kan se resultatene av en \r\nundersøkelse?

\r\n

Hva nå?
Om du beholder standardinstillingen vil du kunne \r\nlegge in spørsmål direkte etter at Undersøkelsen er lagt til.

',1068760658,NULL); @@ -11303,18 +10955,22 @@ INSERT INTO international VALUES (71,'Poll',12,'

Avstemning kan brukes for INSERT INTO international VALUES (74,'MessageBoard',12,'The following is the list of template variables available in message board \r\ntemplates. \r\n

forum.add.url
A url that will add a forum to this message board. \r\n

forum.add.label
The default label for forum.add.url. \r\n

title.label
The default label for the title columnn. \r\n

views.label
The default label for the views column. \r\n

rating.label
The default label for the ratings column. \r\n

threads.label
The default label for the threads column. \r\n

replies.label
The default label for the replies column. \r\n

lastpost.label
The default label for the last post column. \r\n

forum_loop
A loop containing the data for each of the forums \r\ncontained in this message board. \r\n

\r\n

forum.controls
The editing controls for this forum. \r\n

forum.count
An integer displaying the forum count as it goes \r\nthrough the loop. \r\n

forum.title
The title of this forum. \r\n

forum.description
The description of this forum. \r\n

forum.replies
The number of replies all the threads in this forum \r\nhave received. \r\n

forum.rating
The average rating of all the posts in the forum. \r\n

forum.views
The total number of views of all the posts in the \r\nforum. \r\n

forum.threads
The total number of threads in this forum. \r\n

forum.url
The url to view this forum. \r\n

forum.lastpost.url
The url to view the last post in this forum. \r\n

forum.lastpost.date
The human readable date of the last post in \r\nthis forum. \r\n

forum.lastpost.time
The human readable time of the last post in \r\nthis forum. \r\n

forum.lastpost.epoch
The epoch date of the last post in this forum. \r\n\r\n

forum.lastpost.subject
The subject of the last post in this forum. \r\n

forum.lastpost.user.id
The userid of the last poster. \r\n

forum.lastpost.user.name
The username of the last poster. \r\n

forum.lastpost.user.profile
The url to the last poster\'s profile. \r\n

forum.lastpost.user.isVisitor
A condition indicating where the last \r\nposter was a visitor. \r\n

\r\n

default.listing
A full forum rendered using the forum template. \r\n

default.description
The description of the default forum. \r\n

default.title
The title of the default forum. \r\n

default.controls
The controls for the default forum. \r\n

areMultipleForums
A condition indicating whether there is more than \r\none forum.

',1068759084,NULL); INSERT INTO international VALUES (72,'DataForm',12,'

Du kan legge så mange felter til ditt Data Skjema som du ønsker.

\r\n

Label
Dette er en informativ tekst som lar brukeren vita \r\nhva et felt representerer

\r\n

Felt Navn
Navnet må være unikt blant navnet på felter i \r\ndette skjemaet.

\r\n

Undertekst
En utvidelse av Label, dette er en tekst som \r\nvises under feltet og bør inneholde informasjon om hva som bør legges inn i \r\nfeltet.

\r\n


Status
Skjulte felt vil ikke være synelige for \r\nbrukeren, men vil sendes sammen med ePosten.
Synlige felt vil være synlige, \r\nmen vil ikke kunne redigeres.
Redigerbare felt kan endres av bruker.
Om du \r\nvelger skjult eller synlig, så oppgi en standardverdi(Viktig)

\r\n

Type
Velg skjemaelement for dette feltet. \r\n

Bredde
Sett antall karaktere som dette feltet skal \r\nvise i bredden

\r\n

Høyde
Sett antall karaktere dette feltet skal vise i \r\nhøyden. Brukes bare på textarea og HTMLArea felttyper.

\r\n

Mulige Verdier
Dette feltet er bare brukt i rullegardin \r\nboks typen. Bruk Mulige Verdier feltet for å angi valgene som denne boksen skal \r\nvise. Skriv et valg pr. linje.

Standard Valg \r\n(Valgfritt)
Skriv inn standardverdi (om noen) for dette feltet. For \r\nJa/Nei, Skriv Ja, for å velge \"Ja\" og \"Nei\" for å velge \"Nei\". For \r\navkryssningsboks felter skriv \"Checked\" for å markere boksen.

',1066007532,NULL); INSERT INTO international VALUES (71,'DataForm',12,'

Dette wobject lager et enkelt multifunksjons Data Skjema.

\r\n

Bekreftelse
Denne meldingen vil vises for brukeren når de \r\nhar lagt inn sine data.

\r\n

ePost felter?
Om denne settes til ja, vil noen ekstra \r\nfelter legges til for å håndtere ePost. Disse feltene vil brukes til å send alle \r\ndata lagt inn i Data Skjemaet til en person etter ditt ønske.

\r\n

Legg Merke Til: \"Til (To)\" feltet som legges til vil \r\nakseptere en ePost adresse, et WebGUI brukernavn eller WebGUI gruppenavn.

\r\n

Template
Velg Template etter eget ønske.

\r\n

ePost Template
Velg en Template for data som skal sendes \r\nmed ePost.

\r\n

Bekreftelse Template
Velg en template som brukes for å \r\nvise bekreftelse på innlagte data for brukeren.

\r\n

List Template
Velg en Template som skal brukes for å vise \r\nlagred data i dette Data Skjemaet.

',1066007427,NULL); -INSERT INTO international VALUES (76,'LinkList',12,'

Her følger en liste over template variabler som er tilgjengelige i Link List \r\nTemplates.

\r\n

addlink.url
URL\'n for å legge til en link i listen.

\r\n

addlink.label
Den oversatte etiketten for addlink.url

\r\n

canEdit
En indikator som forteller om en bruker kan \r\nredigere linkene.

\r\n

link_loop
Denne loop\'en inneholder all informasjon om \r\nhver enkelt link.

\r\n
\r\n

link.url
URL\'n for denne linken

\r\n

link.name
Teksten som linkes.

\r\n

link.controls
WebGUI\'s management kontroller for denne \r\nlinken.

\r\n

link.newwindow
bryter for valg av om linken skal åpnes i \r\nnytt vindu eller ikke.

\r\n

link.description
Beskrivelsen av linken.

',1066007892,NULL); -INSERT INTO international VALUES (73,'LinkList',12,'\r\n

Title
Teksten som vil bli linket

\r\n

URL
WEB-siten det linkes til.

\r\n

Åpne i nytt vindu?
Velg ja om du ønsker at denne linken \r\nskal åpnes i et nytt vindu.

\r\n

Beskrivelse
Beskriv siden du linker til. Du kan hoppe \r\nover dette om du ønsker.

\r\n

Hva nå?
La stå som default om du ønsker å legge til enda \r\nen link etter denne.

',1046038466,NULL); -INSERT INTO international VALUES (71,'LinkList',12,'\r\n

Link Lists er akurat det som navnet tilsier, en liste med linker. Mange \r\nweb-sider har link lister, dette wobjectet automatiserer denne prosessen.

\r\n

Template
Velg en layout for dette Wobjectet.

\r\n

Hva nå?
La denne stå til default om du ønsker å legge til \r\nen lik etter at link listen er laget.

',1046038395,NULL); -INSERT INTO international VALUES (74,'Item',12,'\r\n

De følgende er en liste over Template variabler som kan benyttes i en Item \r\nTempate.
attachment.name
The filename for the file attached to this item. \r\n

\r\n

attachment.url
The URL to download the file attached to \r\nthis item.

\r\n

attachment.icon
The URL to the icon for the file attached \r\nto this item.

',1046038340,NULL); -INSERT INTO international VALUES (71,'Item',12,'\r\n

Som med Artikkler, er \r\nItems en allsidig del av WebGUI. De fleste stykker av statisk innhold kan legges \r\ntil ved hjelp av Items, men Items er vanligvis benyttet på mindre innhold enn \r\nartikkler.

\r\n

Link \r\nURL.
Denne URL\'n vil bli linket til tittelen på dette \r\nItem\'et.
Eksempel: http://www.google.com

\r\n

Vedlegg
Om du ønsker å \r\nlegge ved en tekstbehandlerfil, en .zip-fil eller en annen fil som kan lastes \r\nned av brukerene, så velg den fra harddisken din.

\r\n

Template
Velg et utseende \r\nfor dette Item\'et.

',1046038236,NULL); +INSERT INTO international VALUES (24,'Navigation',1,'Identifier',1077080504,''); +INSERT INTO international VALUES (33,'Navigation',1,'Error: This identifier is already in use. Please use an unique value.',1077081255,''); +INSERT INTO international VALUES (20,'Navigation',1,'Delete this Navigation.',1077080098,''); +INSERT INTO international VALUES (31,'Navigation',1,'Show hidden pages',1077080799,''); +INSERT INTO international VALUES (22,'Auth/WebGUI',1,'There are no fields to update.',1076361800,''); +INSERT INTO international VALUES (21,'Auth/WebGUI',1,'Allow User to Change Username?',1076358688,''); +INSERT INTO international VALUES (20,'Auth/WebGUI',1,'Allow User to Change Password?',1076358606,''); +INSERT INTO international VALUES (19,'Auth/WebGUI',1,'Allow Users to Change Username?',1076358029,''); +INSERT INTO international VALUES (18,'Auth/WebGUI',1,'Allow Users to Change Passwords?',1076357595,''); +INSERT INTO international VALUES (29,'Navigation',1,'Revert output',1077080738,''); +INSERT INTO international VALUES (30,'Navigation',1,'Show system pages',1077080766,''); +INSERT INTO international VALUES (23,'Navigation',1,'Navigation properties',1077080317,''); INSERT INTO international VALUES (76,'FileManager',12,'\r\n

Dette er en liste over variabler som er tilgjengelig i FilBehandler \r\nTemplates.
 
titleColumn.url
The URL to sort by \r\nthe title.

\r\n

titleColumn.label
The translated label for the title. \r\n

\r\n

descriptionColumn.label
The translated label for the \r\ndescription.

\r\n

descriptionColumn.url
The URL to sort by the description. \r\n

\r\n

dateColumn.label
The translated label for the upload \r\ndate.

\r\n

dateColumn.url
The URL to sort by the date uploaded.

\r\n

search.form
WebGUI\'s power search form.

\r\n

search.url
The URL to toggle search mode on and off.

\r\n

search.label
The translated label for the search link. \r\n

\r\n

addfile.url
The URL to add a file to the file manager. \r\n

\r\n

addfile.label
The translated label for the add file link. \r\n

\r\n

file_loop
A loop containing the information about each \r\nfile uploaded to this file manager.

\r\n

file.canView
A condition as to whether the current user \r\nhas the privileges to view this file.
file.controls
The WebGUI management \r\ncontrols for this file.

\r\n

file.title
The title for this file.

\r\n

file.version1.name
The filename for the first version of \r\nthis file.

\r\n

file.version1.url
The download URL for the first version \r\nof this file.

\r\n

file.version1.icon
The URL to the icon for the file type \r\nof the first version of this file.

\r\n

file.version1.size
The storage size of the first version \r\nof this file.

\r\n

file.version1.type
The type (or file extension) of the \r\nfirst version of this file.

\r\n

file.version1.thumbnail
The URL to the thumbnail for the \r\nfirst version of this file.

\r\n

file.version1.isImage
A conditional indicating whether \r\nthe first version of this file is an image or not.

\r\n

file.version2.name
The filename for the second version of \r\nthis file.

\r\n

file.version2.url
The download URL for the second version \r\nof this file.

\r\n

file.version2.icon
The URL to the icon for the file type \r\nof the second version of this file.

\r\n

file.version2.size
The storage size of the second version \r\nof this file.

\r\n

file.version2.type
The type (or file extension) of the \r\nsecond version of this file.

\r\n

file.version2.thumbnail
The URL to the thumbnail for the \r\nsecond version of this file.

\r\n

file.version2.isImage
A conditional indicating whether \r\nthe second version of this file is an image or not.

\r\n

file.version3.name
The filename for the third version of \r\nthis file.

\r\n

file.version3.url
The download URL for the third version \r\nof this file.

\r\n

file.version3.icon
The URL to the icon for the file type \r\nof the third version of this file.

\r\n

file.version3.size
The storage size of the third version \r\nof this file.

\r\n

file.version3.type
The type (or file extension) of the \r\nthird version of this file.

\r\n

file.version3.thumbnail
The URL to the thumbnail for the \r\nthird version of this file.

\r\n

file.version3.isImage
A conditional indicating whether \r\nthe third version of this file is an image or not.

\r\n

file.description
The description of this file.

\r\n

file.date
The date that this file was uploaded.

\r\n

file.time
The time that this file was uploaded.

\r\n


noresults.message
A translated message stating that \r\nthis file manager has no files for this user to view.

\r\n

noresults
A conditional indicating whether there are any \r\nfiles for this user to view.

\r\n

firstPage
A link to the first page in the paginator.

\r\n

lastPage
A link to the last page in the paginator.

\r\n

nextPage
A link to the next page forward in the \r\npaginator.

\r\n

previousPage
A link to the next page backward in the \r\npaginator.

\r\n

pageList
A list of links to all the pages in the \r\npaginator.

\r\n

multiplePages
A conditional indicating whether there is \r\nmore than one page in the paginator.

',1046017969,NULL); INSERT INTO international VALUES (73,'FileManager',12,'\r\n

Fil Tittel
Tittelen som vil vises for denne filen. Om den \r\ner blank vil filens navn brukes.

\r\n

File
Velg en fil fra din harddisk som du vil laste \r\nopp.

\r\n

Alternativ Versjon #1
En alternativ versjon av filen. \r\nF.eks. om filen var en .JPEG, så kan alternativet være TIFF eller BMP.

\r\n

Alternativ Versjon #2
En alternativ versjon av filen. \r\nF.eks. om filen var en .JPEG, så kan alternativet være TIFF eller BMP.

\r\n

Kort Beskrivelse
En kort beskrivelse av filen. Prøv å \r\nbenytte nøkkelord som det er naturlig å søke etter.

\r\n

Gruppe som kan Laste Ned
Velg den gruppen som kan laste \r\nned denne filen.

\r\n

Hva nå?
Om du ønsker å legge til en fil til etter denne, \r\nså velg \"Legg til Fil\", ellers velger du \"gå tilbake til side\".

',1046017744,NULL); INSERT INTO international VALUES (71,'FileManager',12,'\r\n

FilBehandleren er designet for å hjelpe deg å administrere filhhåndtering på \r\nWEB-stedet ditt. Den gir deg mulighet til å bestemme hvem som kan se på eller \r\nlaste ned filer fra WEB-stedet.

\r\n

Template
Velg et utseende for FilBehandleren.

\r\n

Sideskift Etter
Hvor mange filer skal vises før listen \r\nsplittes på flere sider. Med andre ord! Hvor mange filer vises pr. side.

\r\n

Fortsett til Legg til Fil?
Om du ønsker å legge til filer \r\nmed en gang, så la den stå merket.

',1046017666,NULL); -INSERT INTO international VALUES (77,'FAQ',12,'\r\n

De følgende er en liste over Template Variabler som er tilgjengelige i FAQ \r\nTemplates.

addquestion.url
The URL to add a question \r\nto the FAQ.

\r\n

addquestion.label
The translated label for the add \r\nquestion link.

\r\n

qa_loop
The loop containing the variables for each \r\nquestion in the FAQ.

\r\n

qa.id
The unique identifier for this question. \r\n

qa.answer
The answer for this question.

\r\n

qa.question
The question itself.

\r\n

qa.controls
The WebGUI management controls for this \r\nquestion

',1046017610,NULL); -INSERT INTO international VALUES (73,'FAQ',12,'\r\n

Spørsmål
Legg til spørsmålet du vil skal dukke opp i \r\nFAQ.

\r\n

Svar
Legg til svaret på spørsmålet du la inn over.

\r\n

Hva nå?
Om du ønsker å legge inn et spørsmål til, da lar \r\ndu denne stå på standardvalget.

',1046016737,NULL); -INSERT INTO international VALUES (71,'FAQ',12,'\r\n

Det virker som om alle WEB steder, intranett eller ekstranett i verden har en \r\negen Frequently Asked Questions seksjon. Dette wobjectet hjelper deg med å lage \r\net.

\r\n

Template
Velg et utseende på denne FAQ.

\r\n

Hva Nå?
Velg \"Legg Til Spørsmål\" om du ønsker å legge til \r\net nytt spørsmål etter dette.

\r\n

VIKTIG: Den følgende style er spesifikk til FAQ i en del av \r\nde innebyggede Templatene.

\r\n

.faqQuestion
Et FAQ spørsmål. For å skille det fra et \r\nsvar.

',1046016671,NULL); -INSERT INTO international VALUES (71,'ExtraColumn',12,'

Ekstra kolonner lar deg endre utseende på KUN en side. Om du ønsker å benytte \r\nflere kolonner på alle sider, bør du kanskje vurdere å endre \"Stil\" som hører \r\ntil sidene dine eller velge en Template i steden for en ekstra kolonne. WebGUI \r\nlegger opp til at denne forsvinner som valg etterhvert.

\r\n

Kolonner er alltid lagt til fra venstre mot høyre. Eksisterende innhold på \r\nsiden vil derfor havne på venstre side av den nye kolonnen.

\r\n

Spacer
Spacer er den ekstra avstanden mellom ditt \r\neksisterende innhold og den nye kolonnen. Den måles i pixels.

\r\n

Bredde
Bredde er den faktiske bredden av kolonnen som \r\nlegges til. Den måles i pixels.

\r\n

StilArk Class
Som standard vil \"content\" stil (som er den \r\nstil som benyttes på alt innhold \"body\" som siten din benytter) bli benyttet til \r\nalle kolonner. Men om du har laget en egen stil spesielt for kolonner, så benytt \r\ngjerne den.

',1066007747,NULL); +INSERT INTO international VALUES (1086,'WebGUI',1,'Many wobjects have pagination features. Though some wobjects define their own pagination variables, most use a common set of pagination variables. These are those:\r\n\r\npagination.firstPage
\r\nA link to the first page in the paginator.\r\n

\r\n\r\npagination.lastPage
\r\nA link to the last page in the paginator.\r\n

\r\n\r\n\r\npagination.nextPage
\r\nA link to the next page in the paginator relative to the current page.\r\n

\r\n\r\npagination.previousPage
\r\nA link to the previous page in the paginator relative to the current page.\r\n

\r\n\r\npagination.pageNumber
\r\nThe current page number.\r\n

\r\n\r\npagination.pageCount
\r\nThe total number of pages.\r\n

\r\n\r\npagination.pageCount.isMultiple
\r\nA boolean indicating whether there is more than one page.\r\n

\r\n\r\npagination.pageList
\r\nA list of links to every page in the paginator.\r\n

\r\n\r\n\r\npagination.pageList.upTo20
\r\nA list of links to the 20 nearest in the paginator relative to the current page. So if you\'re on page 60, you\'ll see links for 50-70.\r\n

\r\n\r\npagination.pageList.upTo10
\r\nA list of links to the 10 nearest in the paginator relative to the current page. So if you\'re on page 20, you\'ll see links for 15-25.\r\n

\r\n\r\n',1078243385,NULL); INSERT INTO international VALUES (97,'EventsCalendar',12,'\r\n

De følgende er en liste over Template variabler som kan benyttes i Event \r\nTemplates.

\r\n

title
The title of this event.

\r\n

start.label
The translated label for the start date.

\r\n

start.date
The date this event starts.

\r\n

end.date
The date this event ends.

\r\n

end.label
The translated label for the end date.

\r\n

canEdit
A condition indicating whether the current user \r\ncan edit an event.

\r\n

edit.url
The URL to edit this event.

\r\n

edit.label
The translated label for the edit URL.

\r\n

delete.url
The URL to delete this event.

\r\n

delete.label
The translated label for the delete URL. \r\n

\r\n

previous.url
The URL to view the event before this one. \r\n

\r\n

previous.label
The translated label for the previous URL. \r\n

\r\n

next.label
The translated label for the next URL.

\r\n

next.url
The URL to view the event after this one.

\r\n

description
The description of this event.

',1046016475,NULL); INSERT INTO international VALUES (95,'EventsCalendar',12,'\r\n

The following template variables are available for you to customize your \r\nevents calendar.

addevent.url
The URL to add an \r\nevent to the calendar.

\r\n

addevent.label
The translated label for the add event \r\nlink.

\r\n

calendar.big
A full page calendar.

\r\n

calendar.small
A small calendar showing only dates.

\r\n

calendar.firstPage
A link to the first page of the \r\ncalendar pagination.

\r\n

calendar.lastPage
A link to the last page of the calendar \r\npagination.

\r\n

calendar.nextPage
A link to the next page forward in the \r\ncalendar pagination.

\r\n

calendar.previousPage
A link to the next page backward in \r\nthe calendar pagination.

\r\n

calendar.pageList
A list of links to all the pages in the \r\ncalendar pagination.

\r\n

calendar.multiplePages
A conditional variable indicating \r\nwhether there is more than one page in the calendar pagination.

\r\n

list_loop
A loop containing the list view of an events \r\ncalendar.

\r\n

list.date
The date of this event.
\r\n
list.title
The title of this event.

\r\n

list.description
The description of this event.

\r\n

list.sameAsPrevious
A conditional indicating whether the \r\nthis event has the same date as the last event.

\r\n

list.url
The URL to the full page view of this event. \r\n

\r\n

list.controls
The WebGUI management controls for this \r\nevent.

\r\n


list.firstPage
A link to the first page of the \r\npagination.

\r\n

list.lastPage
A link to the last page of the pagination. \r\n

\r\n

list.nextPage
A link to the next page forward in the \r\npagination.

\r\n

list.previousPage
A link to the next page backward in the \r\npagination.

\r\n

list.pageList
A list of links to all the pages in the \r\npagination.

\r\n

list.multiplePages
A conditional variable indicating \r\nwhether there is more than one page in the pagination.

',1046016290,NULL); INSERT INTO international VALUES (73,'EventsCalendar',12,'\r\n

Tittel
Tittelen på denne Hendelsen

\r\n

Beskrivelse
Beskriver denne Hendelsen eller informasjon \r\nom hvor den foregår ....

\r\n

Start Dato
På hvilken dato vil Hendelsen Starte?

\r\n

Slutt Dato
På hvilken dato vil Hendelsen Slutte?

\r\n

Gjentaes hver
Velg et gjentakelses intervall for \r\nHendelsen.

\r\n

Hva Nå?
Velg \"Legg Til Hendelse\" om du ønsker å Legge Til \r\nen ny Hendelse, eller velg \" Gå Tilbake Til Side\".

',1046016111,NULL); @@ -11370,7 +11026,6 @@ INSERT INTO international VALUES (818,'WebGUI',12,'Deaktivert',1045779863,NULL); INSERT INTO international VALUES (817,'WebGUI',12,'Aktiv',1045779851,NULL); INSERT INTO international VALUES (816,'WebGUI',12,'Status',1045779841,NULL); INSERT INTO international VALUES (815,'WebGUI',12,'Filen du prøvde å laste opp er for stor.',1045779832,NULL); -INSERT INTO international VALUES (814,'WebGUI',12,'Tilbake til Stiler.',1054673724,NULL); INSERT INTO international VALUES (812,'WebGUI',12,'Din melding er sendt.',1045779786,NULL); INSERT INTO international VALUES (811,'WebGUI',12,'Fra',1045779766,NULL); INSERT INTO international VALUES (810,'WebGUI',12,'Send',1045779758,NULL); @@ -11378,8 +11033,6 @@ INSERT INTO international VALUES (809,'WebGUI',12,'ePost Gruppe',1045779746,NULL INSERT INTO international VALUES (808,'WebGUI',12,'Send ePost til denne gruppen.',1045779731,NULL); INSERT INTO international VALUES (807,'WebGUI',12,'Håndtere gruppene i denne gruppen.',1045779706,NULL); INSERT INTO international VALUES (806,'WebGUI',12,'Slett denne Gruppen.',1045779676,NULL); -INSERT INTO international VALUES (805,'WebGUI',12,'Slett denne Style.',1045779664,NULL); -INSERT INTO international VALUES (803,'WebGUI',12,'Rediger denne Style.',1045779651,NULL); INSERT INTO international VALUES (802,'WebGUI',12,'WebGUI tar ikke vare på side statistikker for øyeblikket. Du kan slå på denne funksjonen under instillinger.',1045779629,NULL); INSERT INTO international VALUES (801,'WebGUI',12,'Wobject samspill',1045779549,NULL); INSERT INTO international VALUES (800,'WebGUI',12,'Unike besøkende',1045779376,NULL); @@ -11436,8 +11089,6 @@ INSERT INTO international VALUES (746,'WebGUI',12,'Verkt INSERT INTO international VALUES (745,'WebGUI',12,'Gå tilbake til Siden.',1045698993,NULL); INSERT INTO international VALUES (744,'WebGUI',12,'Hva nå?',1045698978,NULL); INSERT INTO international VALUES (743,'WebGUI',12,'Du må oppgi en gyldig ePost adresse for å kunne gjennoprette passordet ditt.',1045698962,NULL); -INSERT INTO international VALUES (742,'WebGUI',12,'Håndtere Templates.',1045698907,NULL); -INSERT INTO international VALUES (741,'WebGUI',12,'Rediger denne Template.',1045698892,NULL); INSERT INTO international VALUES (739,'WebGUI',12,'UI Nivå',1045683862,NULL); INSERT INTO international VALUES (738,'WebGUI',12,'9 Guru',1045683847,NULL); INSERT INTO international VALUES (737,'WebGUI',12,'8 Mester',1045683838,NULL); @@ -11476,7 +11127,6 @@ INSERT INTO international VALUES (674,'WebGUI',12,'Forskjellige instillinger, Re INSERT INTO international VALUES (672,'WebGUI',12,'Profil Instillinger, Rediger',1045675536,NULL); INSERT INTO international VALUES (670,'WebGUI',12,'Bilde, Legg Til/Rediger',1045675483,NULL); INSERT INTO international VALUES (667,'WebGUI',12,'Gruppe, Legg Til/Rediger',1045675398,NULL); -INSERT INTO international VALUES (666,'WebGUI',12,'Style, Legg Til/Rediger',1045675374,NULL); INSERT INTO international VALUES (665,'WebGUI',12,'Gruppe, Slette',1045675357,NULL); INSERT INTO international VALUES (664,'WebGUI',12,'Wobject, Slette',1045675345,NULL); INSERT INTO international VALUES (663,'WebGUI',12,'ePost instillinger, Redigere',1045675332,NULL); @@ -11512,14 +11162,11 @@ INSERT INTO international VALUES (856,'WebGUI',12,'Du har ingen konto innstillin INSERT INTO international VALUES (766,'WebGUI',12,'Tilbake til Collateral Listen.',1045613257,NULL); INSERT INTO international VALUES (767,'WebGUI',12,'Collateral ID',1045613231,NULL); INSERT INTO international VALUES (813,'WebGUI',12,'Grupper i denne Gruppen',1045613214,NULL); -INSERT INTO international VALUES (804,'WebGUI',12,'Kopier denne Style',1045613184,NULL); INSERT INTO international VALUES (66,'WebGUI',12,'Logg Inn',1045613150,NULL); -INSERT INTO international VALUES (659,'WebGUI',12,'Stiler, Håndtere',1066009526,NULL); INSERT INTO international VALUES (658,'WebGUI',12,'Brukere, Håndtere',1045613124,NULL); INSERT INTO international VALUES (657,'WebGUI',12,'Bruker, Slett',1045613107,NULL); INSERT INTO international VALUES (656,'WebGUI',12,'Firma Informasjon, Rediger',1045613095,NULL); INSERT INTO international VALUES (655,'WebGUI',12,'Bruker, Legg Til/Rediger',1045613072,NULL); -INSERT INTO international VALUES (654,'WebGUI',12,'Style, Slett',1045613056,NULL); INSERT INTO international VALUES (653,'WebGUI',12,'Side, Slett',1045613044,NULL); INSERT INTO international VALUES (652,'WebGUI',12,'Bruker Instillinger, Rediger',1045613032,NULL); INSERT INTO international VALUES (651,'WebGUI',12,'Om du velger å tømme søppla, vill alt innhold slettes permanent. Om du er usikker på noen enheter, kan det være lurt og klippe de til utklipstavlen før du tømmer søppelbøtta.',1045613010,NULL); @@ -11535,11 +11182,9 @@ INSERT INTO international VALUES (620,'WebGUI',12,'As the function suggests you\ INSERT INTO international VALUES (62,'WebGUI',12,'Lagre',1045612031,NULL); INSERT INTO international VALUES (613,'WebGUI',12,'Users are the accounts in the system that are given rights to do certain things. There are two default users built into the system: Admin and Visitor. \r\n\r\nAdmin\r\nAdmin is exactly what you\'d expect. It is a user with unlimited rights in the WebGUI environment. If it can be done, this user has the rights to do it. \r\n\r\nVisitor\r\nVisitor is exactly the opposite of Admin. Visitor has no rights what-so-ever. By default any user who is not logged in is seen as the user Visitor. \r\n\r\nAdd a new user.\r\nClick on this to go to the add user screen. \r\n\r\nSearch\r\nYou can search users based on username and email address. You can do partial searches too if you like.\r\n',1045611901,NULL); INSERT INTO international VALUES (61,'WebGUI',12,'Oppdater Konto Informasjon',1045611780,NULL); -INSERT INTO international VALUES (609,'WebGUI',12,'Når du sletter en style, vil alle sider som benytter denne, automatisk bli tildelt standard Style. For å være sikker på at ikke visninger blir vanskelig, så pass på at ingen sider bruker den før sletting.\r\n\r\nSom med alle slette kommandoer vil du bli spurt om du vil bekrefte slettingen Om du svarer Ja vil slettingen bli permanent utført. Om du svarer Nei vil du bli returnert til forrige skjermbilde.',1045611754,NULL); INSERT INTO international VALUES (605,'WebGUI',12,'Legg Til Grupper',1045611149,NULL); INSERT INTO international VALUES (601,'WebGUI',12,'Internasjonal ID',1045611133,NULL); INSERT INTO international VALUES (60,'WebGUI',12,'Er du sikker på at du vil dekativere kontoen din? Om du fortsetter vil din konto informasjon slettes permanent.',1045611119,NULL); -INSERT INTO international VALUES (6,'WebGUI',12,'Håndtere Stiler.',1066009518,NULL); INSERT INTO international VALUES (598,'WebGUI',12,'Rediger Oversettelsen.',1045611027,NULL); INSERT INTO international VALUES (597,'WebGUI',12,'Rediger Internasjonal Melding',1045611010,NULL); INSERT INTO international VALUES (596,'WebGUI',12,'MANGLER',1045610985,NULL); @@ -11630,7 +11275,6 @@ INSERT INTO international VALUES (505,'WebGUI',12,'Legg Til Ny Template.',104552 INSERT INTO international VALUES (504,'WebGUI',12,'Template',1045522105,NULL); INSERT INTO international VALUES (503,'WebGUI',12,'Template ID',1045522096,NULL); INSERT INTO international VALUES (502,'WebGUI',12,'Er du sikker på at du vil slette denne Templaten og la alle sider som bruker den til å benytte standard Template?',1045522086,NULL); -INSERT INTO international VALUES (501,'WebGUI',12,'Body',1045522021,NULL); INSERT INTO international VALUES (500,'WebGUI',12,'Side ID',1045521996,NULL); INSERT INTO international VALUES (50,'WebGUI',12,'BrukerNavn',1045521987,NULL); INSERT INTO international VALUES (5,'WebGUI',12,'Håndtere Grupper',1045441715,NULL); @@ -11755,7 +11399,6 @@ INSERT INTO international VALUES (400,'WebGUI',12,'Forhindre Proxy Caching',1045 INSERT INTO international VALUES (40,'WebGUI',12,'Nødvendig Element',1066008045,NULL); INSERT INTO international VALUES (4,'WebGUI',12,'Håndtere Innstillinger.',1068757038,NULL); INSERT INTO international VALUES (399,'WebGUI',12,'Godkjenn denne Siden.',1045422688,NULL); -INSERT INTO international VALUES (398,'WebGUI',12,'Angi Dokumenttype',1045422668,NULL); INSERT INTO international VALUES (395,'WebGUI',12,'Legg til nytt Bilde.',1045422626,NULL); INSERT INTO international VALUES (394,'WebGUI',12,'Håndtere collateral.',1045422611,NULL); INSERT INTO international VALUES (391,'WebGUI',12,'Slette Vedlagte fil.',1045422386,NULL); @@ -11766,13 +11409,11 @@ INSERT INTO international VALUES (386,'WebGUI',12,'Rediger Bilde',1045422278,NUL INSERT INTO international VALUES (385,'WebGUI',12,'Parametere',1045422267,NULL); INSERT INTO international VALUES (384,'WebGUI',12,'Fil',1045422256,NULL); INSERT INTO international VALUES (381,'WebGUI',12,'WebGUI mottok en uriktig forespørsel og var ikke i stand til å fortsette. Propiritære karakterer som blir gitt til et skjema er den vanligste årsaken. Trykk gjerne Tilbake og prøv på nytt.',1045422248,NULL); -INSERT INTO international VALUES (380,'WebGUI',12,'Style ID',1045421584,NULL); INSERT INTO international VALUES (38,'WebGUI',12,'Du har ikke tilstrekkelige rettigheter til å utføre denne handlingen. Prøv ^a(logg inn med en konto); som har tilstrekkelige rettigheter før du prøver å gjøre denne operasjonen.',1045421559,NULL); INSERT INTO international VALUES (379,'WebGUI',12,'Gruppe ID',1045421393,NULL); INSERT INTO international VALUES (378,'WebGUI',12,'Bruker ID',1045421383,NULL); -INSERT INTO international VALUES (377,'WebGUI',12,'Ingen Pakker er definert av din pakke administrator(er)',1045421373,NULL); INSERT INTO international VALUES (376,'WebGUI',12,'Pakke',1045421312,NULL); -INSERT INTO international VALUES (375,'WebGUI',12,'Velg Pakke å rulle ut',1045421304,NULL); +INSERT INTO international VALUES (35,'Navigation',1,'Please specify an identifier. ie: ^Navigation(myMenu);',1077081415,''); INSERT INTO international VALUES (374,'WebGUI',12,'Håndtere Pakker',1066009502,NULL); INSERT INTO international VALUES (372,'WebGUI',12,'Rediger Brukerens Grupper',1045421246,NULL); INSERT INTO international VALUES (371,'WebGUI',12,'Legg Til Gruppering',1045421224,NULL); @@ -11781,8 +11422,6 @@ INSERT INTO international VALUES (37,'WebGUI',12,'Ingen Adgang!',1045421187,NULL INSERT INTO international VALUES (369,'WebGUI',12,'Utløps Dato',1045421135,NULL); INSERT INTO international VALUES (368,'WebGUI',12,'Legg en ny gruppe til denne brukeren.',1045421123,NULL); INSERT INTO international VALUES (367,'WebGUI',12,'Utløper Etter',1045421096,NULL); -INSERT INTO international VALUES (366,'WebGUI',12,'Ingen Sider som tilfredstilte ditt søk ble funnet.',1045421083,NULL); -INSERT INTO international VALUES (365,'WebGUI',12,'Resultat av Søk..',1045421047,NULL); INSERT INTO international VALUES (364,'WebGUI',12,'Søk',1045421032,NULL); INSERT INTO international VALUES (363,'WebGUI',12,'Side Template posisjon',1045421023,NULL); INSERT INTO international VALUES (362,'WebGUI',12,'Side ved Side',1045420999,NULL); @@ -11793,7 +11432,6 @@ INSERT INTO international VALUES (341,'WebGUI',12,'Rediger Profil.',1045349673,N INSERT INTO international VALUES (338,'WebGUI',12,'Rediger Profil.',1045349660,NULL); INSERT INTO international VALUES (308,'WebGUI',12,'Rediger Profil Instillinger',1045349638,NULL); INSERT INTO international VALUES (168,'WebGUI',12,'Rediger Bruker',1045349610,NULL); -INSERT INTO international VALUES (156,'WebGUI',12,'Rediger Style',1045349595,NULL); INSERT INTO international VALUES (140,'WebGUI',12,'Redigere Forskjellige Instillinger',1045349579,NULL); INSERT INTO international VALUES (6,'DataForm',12,'Kan Redigeres',1045349563,NULL); INSERT INTO international VALUES (27,'USS',12,'Rediger',1045349538,NULL); @@ -11833,22 +11471,12 @@ INSERT INTO international VALUES (1065,'WebGUI',1,'Forum Post Form Template',106 INSERT INTO international VALUES (62,'DataForm',12,'DataSkjema Felter, Legg til/Rediger',1054672477,NULL); INSERT INTO international VALUES (61,'DataForm',12,'DataSkjema, Legg til/Rediger',1054672449,NULL); INSERT INTO international VALUES (20,'DataForm',12,'Rediger Felt',1045348728,NULL); -INSERT INTO international VALUES (72,'LinkList',12,'Link, Legg til/Rediger',1045348713,NULL); -INSERT INTO international VALUES (61,'LinkList',12,'Link Liste, Legg til/Rediger',1045348697,NULL); -INSERT INTO international VALUES (12,'LinkList',12,'Rediger Link',1045348681,NULL); -INSERT INTO international VALUES (10,'LinkList',12,'Rediger LinkListe',1045348666,NULL); -INSERT INTO international VALUES (61,'Item',12,'Item, Legg til/Rediger',1045348650,NULL); -INSERT INTO international VALUES (6,'Item',12,'Rediger Item',1045348632,NULL); +INSERT INTO international VALUES (90,'USS',12,'Rediger Link',1045348681,NULL); INSERT INTO international VALUES (9,'FileManager',12,'Rediger FilBehandler',1045348613,NULL); INSERT INTO international VALUES (72,'FileManager',12,'Fil, Legg til/Rediger',1045348588,NULL); INSERT INTO international VALUES (61,'FileManager',12,'FilBehandler, Legg til/Rediger',1045348572,NULL); INSERT INTO international VALUES (10,'FileManager',12,'Rediger Fil',1045348552,NULL); -INSERT INTO international VALUES (8,'FAQ',12,'Rediger F.A.Q.',1045348528,NULL); -INSERT INTO international VALUES (72,'FAQ',12,'Spørsmål, Legg til/Rediger',1045348513,NULL); -INSERT INTO international VALUES (61,'FAQ',12,'FAQ, Legg til/Rediger',1045348493,NULL); -INSERT INTO international VALUES (10,'FAQ',12,'Rediger Spørsmål',1045348475,NULL); -INSERT INTO international VALUES (61,'ExtraColumn',12,'Ekstra kolonne, Legg til/Rediger',1045348447,NULL); -INSERT INTO international VALUES (6,'ExtraColumn',12,'Rediger Ekstra kolonne',1045348432,NULL); +INSERT INTO international VALUES (84,'USS',12,'Rediger Spørsmål',1045348475,NULL); INSERT INTO international VALUES (72,'EventsCalendar',12,'Hendelse, Legg til/Rediger',1045348414,NULL); INSERT INTO international VALUES (61,'EventsCalendar',12,'Hendelses kalender, Ny/Rediger',1068683516,NULL); INSERT INTO international VALUES (13,'EventsCalendar',12,'Rediger på hendelse',1045348167,NULL); @@ -11873,7 +11501,6 @@ INSERT INTO international VALUES (346,'WebGUI',12,'Denne brukeren er ikke lenger INSERT INTO international VALUES (345,'WebGUI',12,'Ikke Medlem.',1045347370,NULL); INSERT INTO international VALUES (343,'WebGUI',12,'Vis Profil.',1045347344,NULL); INSERT INTO international VALUES (340,'WebGUI',12,'Kvinne',1045347294,NULL); -INSERT INTO international VALUES (34,'WebGUI',12,'Sett Dato',1045347286,NULL); INSERT INTO international VALUES (339,'WebGUI',12,'Mann',1045347273,NULL); INSERT INTO international VALUES (337,'WebGUI',12,'Hjemmeside URL',1045347252,NULL); INSERT INTO international VALUES (336,'WebGUI',12,'FødselsDato',1045347239,NULL); @@ -11910,7 +11537,6 @@ INSERT INTO international VALUES (309,'WebGUI',12,'Tillat ekte Navn',1045346798, INSERT INTO international VALUES (307,'WebGUI',12,'Bruk standard Meta Tags?',1045346770,NULL); INSERT INTO international VALUES (304,'WebGUI',12,'Språk',1045346730,NULL); INSERT INTO international VALUES (30,'WebGUI',12,'Onsdag',1045346722,NULL); -INSERT INTO international VALUES (3,'WebGUI',12,'Lim inn fra utklippstavle..',1045346712,NULL); INSERT INTO international VALUES (29,'WebGUI',12,'Tirsdag',1045346684,NULL); INSERT INTO international VALUES (28,'WebGUI',12,'Mandag',1045346672,NULL); INSERT INTO international VALUES (27,'WebGUI',12,'Søndag',1045346663,NULL); @@ -11944,11 +11570,6 @@ INSERT INTO international VALUES (161,'WebGUI',12,'Bidratt av',1045346082,NULL); INSERT INTO international VALUES (160,'WebGUI',12,'Dato bidratt',1045346068,NULL); INSERT INTO international VALUES (16,'WebGUI',12,'Februar',1045346021,NULL); INSERT INTO international VALUES (159,'WebGUI',12,'Innboks',1045345725,NULL); -INSERT INTO international VALUES (158,'WebGUI',12,'Legg Til en ny Style',1045345714,NULL); -INSERT INTO international VALUES (157,'WebGUI',12,'Stiler',1054673673,NULL); -INSERT INTO international VALUES (155,'WebGUI',12,'Er du sikker på at du vil slette denne Style og migrere alle sider som bruker den til \"den trygge\" Style?',1045345676,NULL); -INSERT INTO international VALUES (154,'WebGUI',12,'Style Sheet(Stilark)',1045345588,NULL); -INSERT INTO international VALUES (151,'WebGUI',12,'Style Navn',1045345557,NULL); INSERT INTO international VALUES (15,'WebGUI',12,'Januar',1045345546,NULL); INSERT INTO international VALUES (149,'WebGUI',12,'Brukere',1045345535,NULL); INSERT INTO international VALUES (148,'WebGUI',12,'Wobjects',1045345524,NULL); @@ -11999,10 +11620,8 @@ INSERT INTO international VALUES (46,'USS',12,'Les Mer...',1045342506,NULL); INSERT INTO international VALUES (41,'USS',12,'Dato',1045342479,NULL); INSERT INTO international VALUES (4,'USS',12,'Ditt bidrag er blitt godkjent.',1045342469,NULL); INSERT INTO international VALUES (39,'USS',12,'Send et Svar',1045342438,NULL); -INSERT INTO international VALUES (38,'USS',12,'(Velg \"NEI\" om du skriver et HTML/Rik tekst bidrag.)',1045342405,NULL); INSERT INTO international VALUES (37,'USS',12,'Slett',1045342353,NULL); INSERT INTO international VALUES (35,'USS',12,'Tittel',1045342345,NULL); -INSERT INTO international VALUES (34,'USS',12,'Konverter Carriage Returns',1045342335,NULL); INSERT INTO international VALUES (33,'USS',12,'Vedlegg',1045342305,NULL); INSERT INTO international VALUES (32,'USS',12,'Bilde',1045342166,NULL); INSERT INTO international VALUES (31,'USS',12,'Innhold',1045342154,NULL); @@ -12035,7 +11654,7 @@ INSERT INTO international VALUES (71,'Survey',12,'Karakter oversikt',1045335888, INSERT INTO international VALUES (70,'Survey',12,'Individuelle Responser',1045335865,NULL); INSERT INTO international VALUES (7,'Survey',12,'Respons Styrt',1045335819,NULL); INSERT INTO international VALUES (69,'Survey',12,'Slett denne bruker\'s responser.',1045335796,NULL); -INSERT INTO international VALUES (68,'Survey',12,'Vis Rapporter og Eksport data.',1045335770,NULL); +INSERT INTO international VALUES (20,'WSClient',1,'Edit Web Services Client',1033575504,NULL); INSERT INTO international VALUES (67,'Survey',12,'Bruker',1045335737,NULL); INSERT INTO international VALUES (66,'Survey',12,'Responser',1045335729,NULL); INSERT INTO international VALUES (65,'Survey',12,'Eksporter sammensatt oppsummering.',1045335714,NULL); @@ -12101,18 +11720,16 @@ INSERT INTO international VALUES (6,'SiteMap',12,'Indent',1045163169,NULL); INSERT INTO international VALUES (4,'SiteMap',12,'Nivå å ta med',1045163127,NULL); INSERT INTO international VALUES (3,'SiteMap',12,'Start Med',1045163104,NULL); INSERT INTO international VALUES (2,'SiteMap',12,'Site Map',1045163087,NULL); -INSERT INTO international VALUES (9,'SQLReport',12,'Debug: Error: The DSN specified is of an improper format.',1045163046,NULL); -INSERT INTO international VALUES (7,'SQLReport',12,'Database Passord',1045162977,NULL); -INSERT INTO international VALUES (6,'SQLReport',12,'Database Bruker',1045162939,NULL); -INSERT INTO international VALUES (5,'SQLReport',12,'DSN',1045162925,NULL); +INSERT INTO international VALUES (10,'Auth/LDAP',1,'Password (confirm)',1071845113,''); +INSERT INTO international VALUES (17,'Auth/WebGUI',1,'Password Updated',1071885563,''); +INSERT INTO international VALUES (16,'Auth/WebGUI',1,'Password Timeout',1071885309,''); INSERT INTO international VALUES (4,'SQLReport',12,'Query',1045162917,NULL); -INSERT INTO international VALUES (3,'SQLReport',12,'Rapport Template',1045162906,NULL); +INSERT INTO international VALUES (100,'DataForm',1,'Are you certain that you want to delete this tab ?',NULL,NULL); INSERT INTO international VALUES (18,'SQLReport',12,'Det var ingen resultat av denne forespørselen.',1045162893,NULL); INSERT INTO international VALUES (17,'SQLReport',12,'Debug: Query:',1045162855,NULL); INSERT INTO international VALUES (16,'SQLReport',12,'Debug?',1045162844,NULL); INSERT INTO international VALUES (15,'SQLReport',12,'Prosseser makroer i forespørselen?',1045162833,NULL); INSERT INTO international VALUES (14,'SQLReport',12,'Sideskift Etter',1045162787,NULL); -INSERT INTO international VALUES (13,'SQLReport',12,'Convert carriage returns?',1045162774,NULL); INSERT INTO international VALUES (12,'SQLReport',12,'Debug: Error: Could not connect to the database.',1045162759,NULL); INSERT INTO international VALUES (11,'SQLReport',12,'Debug: Error: There was a problem with the query.',1045162749,NULL); INSERT INTO international VALUES (10,'SQLReport',12,'Debug:Error: SQL koden som er spesifiser har galt format.',1045162731,NULL); @@ -12178,7 +11795,7 @@ INSERT INTO international VALUES (1018,'WebGUI',1,'Start a new thread',106527996 INSERT INTO international VALUES (1017,'WebGUI',12,'Siste svar',1045073588,NULL); INSERT INTO international VALUES (2,'MessageBoard',12,'Meldinger',1045073573,NULL); INSERT INTO international VALUES (1016,'WebGUI',12,'Svar',1045073497,NULL); -INSERT INTO international VALUES (3,'LinkList',12,'Åpne i nytt vindu?',1045072474,NULL); +INSERT INTO international VALUES (92,'USS',12,'Åpne i nytt vindu?',1045072474,NULL); INSERT INTO international VALUES (950,'WebGUI',1,'Empty clipboard.',1052850265,NULL); INSERT INTO international VALUES (8,'DataForm',12,'Bredde',1044117941,NULL); INSERT INTO international VALUES (73,'DataForm',12,'Send',1044117930,NULL); @@ -12201,18 +11818,9 @@ INSERT INTO international VALUES (12,'DataForm',12,'cc',1044117197,NULL); INSERT INTO international VALUES (11,'DataForm',12,'Til',1054672237,NULL); INSERT INTO international VALUES (10,'DataForm',12,'Fra',1044117148,NULL); INSERT INTO international VALUES (1,'DataForm',12,'Data Skjema',1054672206,NULL); -INSERT INTO international VALUES (9,'LinkList',12,'Er du sikker du vil slette denne Linken?',1044117086,NULL); -INSERT INTO international VALUES (8,'LinkList',12,'URL',1044117043,NULL); -INSERT INTO international VALUES (75,'LinkList',12,'Link Liste Template',1044117020,NULL); -INSERT INTO international VALUES (6,'LinkList',12,'Link Liste',1044116949,NULL); -INSERT INTO international VALUES (13,'LinkList',12,'Legg til ny Link.',1044116936,NULL); -INSERT INTO international VALUES (73,'Item',12,'Item Template',1044116842,NULL); +INSERT INTO international VALUES (91,'USS',12,'URL',1044117043,NULL); +INSERT INTO international VALUES (89,'USS',12,'Legg til ny Link.',1044116936,NULL); INSERT INTO international VALUES (970,'WebGUI',1,'set time',1053278089,'Click the button to use the time chooser wizard.'); -INSERT INTO international VALUES (5,'Item',12,'Last ned Vedlegg',1044116784,NULL); -INSERT INTO international VALUES (4,'Item',12,'Item',1044116769,NULL); -INSERT INTO international VALUES (3,'Item',12,'Slett Vedlegg',1044116655,NULL); -INSERT INTO international VALUES (2,'Item',12,'Vedlegg',1044116643,NULL); -INSERT INTO international VALUES (1,'Item',12,'Link URL',1044116631,NULL); INSERT INTO international VALUES (8,'FileManager',12,'Kort Beskrivelse',1044116541,NULL); INSERT INTO international VALUES (75,'FileManager',12,'FilBehandler Template',1044116445,NULL); INSERT INTO international VALUES (74,'FileManager',12,'Legg til en Fil.',1044116423,NULL); @@ -12230,20 +11838,9 @@ INSERT INTO international VALUES (14,'FileManager',12,'Fil',1044116119,NULL); INSERT INTO international VALUES (12,'FileManager',12,'Er du sikker på at du vil slette denne filen?',1044116109,NULL); INSERT INTO international VALUES (11,'FileManager',12,'Legg til ny Fil.',1044116077,NULL); INSERT INTO international VALUES (1,'FileManager',12,'Fil Behandler',1044116048,NULL); -INSERT INTO international VALUES (9,'FAQ',12,'Legg til nytt spørsmål.',1044116021,NULL); -INSERT INTO international VALUES (76,'FAQ',12,'FAQ Template',1044115953,NULL); -INSERT INTO international VALUES (75,'FAQ',12,'Legg til spørsmål.',1044115940,NULL); -INSERT INTO international VALUES (7,'FAQ',12,'Er du sikker du vil slette dette spørsmål?',1044115657,NULL); -INSERT INTO international VALUES (6,'FAQ',12,'Svar',1044115602,NULL); -INSERT INTO international VALUES (5,'FAQ',12,'Spørsmål',1044115594,NULL); -INSERT INTO international VALUES (2,'FAQ',12,'F.A.Q.',1044115569,NULL); -INSERT INTO international VALUES (13,'FAQ',12,'Slå på [top]Link?',1044115556,NULL); -INSERT INTO international VALUES (12,'FAQ',12,'Slå på Q&A?',1044115516,NULL); -INSERT INTO international VALUES (11,'FAQ',12,'Slå på TOC?',1044115490,NULL); -INSERT INTO international VALUES (5,'ExtraColumn',12,'StilArk Class',1054673657,NULL); -INSERT INTO international VALUES (4,'ExtraColumn',12,'Bredde',1044115384,NULL); -INSERT INTO international VALUES (3,'ExtraColumn',12,'Spacer',1044115374,NULL); -INSERT INTO international VALUES (1,'ExtraColumn',12,'Ekstra kolonne',1044115356,NULL); +INSERT INTO international VALUES (83,'USS',12,'Legg til nytt spørsmål.',1044116021,NULL); +INSERT INTO international VALUES (86,'USS',12,'Svar',1044115602,NULL); +INSERT INTO international VALUES (85,'USS',12,'Spørsmål',1044115594,NULL); INSERT INTO international VALUES (96,'EventsCalendar',12,'Hendelse Template',1044115252,NULL); INSERT INTO international VALUES (94,'EventsCalendar',12,'Hendelse kalender Template',1044115228,NULL); INSERT INTO international VALUES (93,'EventsCalendar',12,'Neste hendelse',1044115212,NULL); @@ -12365,8 +11962,8 @@ INSERT INTO international VALUES (860,'WebGUI',21,' INSERT INTO international VALUES (859,'WebGUI',21,'ðÏÄÐÉÓØ',1045486849,NULL); INSERT INTO international VALUES (858,'WebGUI',21,'îÉË',1045486754,NULL); INSERT INTO international VALUES (857,'WebGUI',21,'IP',1045486652,NULL); -INSERT INTO international VALUES (890,'WebGUI',8,'WebGUI ha un sottosistema che può creare \"tabs\". Vedrai queste tabs in form complessi come l\'editing di una pagina. Per far visualizzare bene le tabs e farle combaciare con il look del tuo sito, é necessario aggiungere una sezione al tuo style sheet specifica per le tabs.\r\n

\r\nLe seguenti classi di style sheet sono disponibili:\r\n

\r\n\r\n.tab
\r\nIl look di default di ogni tab.\r\n

\r\n\r\ndiv.tabs
\r\nQuesto definisce alcune proprietà per tutte le tab. Dovrebbe essere usato per le etichette di testo nelle tabs.\r\n

\r\n\r\n.tabBody
\r\nL\'area del contenutoper ogni tab. Qui é dove il form viene visualizzato. Nota che per i migliori risultati il colore di sfondo di questo elemento deve combaciare con quello di .tabActive.\r\n

\r\n\r\n\r\n.tabHover
\r\nIl look di una tab quando il mouse ci passa sopra.\r\n

\r\n\r\n.tabActive
\r\nIl look della tab attualmente visibile.\r\n

\r\n\r\n\r\nEsempi
\r\nPuoi usare questi invece di creare i tuoi propri se vuoi. Oppure usa questi come linee guida per creare i tuoi propri.

\r\n
\r\nStili bianchi o chiari\r\n
\r\n.tab {\r\n  border: 1px solid black;\r\n   background-color: #eeeeee;\r\n}\r\n.tabBody {\r\n   border: 1px solid black;\r\n   border-top: 1px solid black;\r\n   border-left: 1px solid black;\r\n   background-color: #dddddd; \r\n}\r\ndiv.tabs {\r\n    line-height: 15px;\r\n    font-size: 14px;\r\n}\r\n.tabHover {\r\n   background-color: #cccccc;\r\n}\r\n.tabActive { \r\n   background-color: #dddddd; \r\n}\r\n
\r\n
\r\nStili neri o scuri\r\n
\r\n.tab {\r\n  border: 1px solid white;\r\n   background-color: #333333;\r\n}\r\n.tabBody {\r\n   border: 1px solid white;\r\n   border-top: 1px solid white;\r\n   border-left: 1px solid white;\r\n   background-color: #444444; \r\n}\r\ndiv.tabs {\r\n    line-height: 15px;\r\n    font-size: 14px;\r\n}\r\n.tabHover {\r\n   background-color: #555555;\r\n}\r\n.tabActive { \r\n   background-color: #444444; \r\n}\r\n\r\n
\r\n
',1048856569,NULL); -INSERT INTO international VALUES (73,'SyndicatedContent',8,'Le seguenti variabili sono disponibili nel template per il contenuto da altri siti.\r\n\r\n

\r\n\r\nchannel.title
\r\nIl titolo di questo pezzo di contenuto da altri siti

\r\n\r\nchannel.description
\r\nUna descrizionde del contenuto disponibile tramite questo canale

\r\n\r\nchannel.link
\r\nUna URL che punta al sito generatore di questo contenuto\r\n

\r\n\r\nitem_loop
\r\nUn loop contenente i dati da questo canale.\r\n

\r\n\r\ntitle
\r\nIl titolo di un pezzo di contenuto.\r\n

\r\n\r\ndescription
\r\nLa descrizione del contenuto\r\n

\r\n\r\nlink\r\nUna URL diretta al contenuto originale\r\n

',1048855993,NULL); +INSERT INTO international VALUES (890,'WebGUI',8,'WebGUI ha un sottosistema che può creare \"tabs\". Vedrai queste tabs in form complessi come l\'editing di una pagina. Per far visualizzare bene le tabs e farle combaciare con il look del tuo sito, é necessario aggiungere una sezione al tuo style sheet specifica per le tabs.\n

\nLe seguenti classi di style sheet sono disponibili:\n

\n\n.tab
\nIl look di default di ogni tab.\n

\n\ndiv.tabs
\nQuesto definisce alcune proprietà per tutte le tab. Dovrebbe essere usato per le etichette di testo nelle tabs.\n

\n\n.tabBody
\nL\'area del contenutoper ogni tab. Qui é dove il form viene visualizzato. Nota che per i migliori risultati il colore di sfondo di questo elemento deve combaciare con quello di .tabActive.\n

\n\n\n.tabHover
\nIl look di una tab quando il mouse ci passa sopra.\n

\n\n.tabActive
\nIl look della tab attualmente visibile.\n

\n\n\nEsempi
\nPuoi usare questi invece di creare i tuoi propri se vuoi. Oppure usa questi come linee guida per creare i tuoi propri.

\n
\nStili bianchi o chiari\n
\n.tab {\n  border: 1px solid black;\n   background-color: #eeeeee;\n}\n.tabBody {\n   border: 1px solid black;\n   border-top: 1px solid black;\n   border-left: 1px solid black;\n   background-color: #dddddd; \n}\ndiv.tabs {\n    line-height: 15px;\n    font-size: 14px;\n}\n.tabHover {\n   background-color: #cccccc;\n}\n.tabActive { \n   background-color: #dddddd; \n}\n
\n
\nStili neri o scuri\n
\n.tab {\n  border: 1px solid white;\n   background-color: #333333;\n}\n.tabBody {\n   border: 1px solid white;\n   border-top: 1px solid white;\n   border-left: 1px solid white;\n   background-color: #444444; \n}\ndiv.tabs {\n    line-height: 15px;\n    font-size: 14px;\n}\n.tabHover {\n   background-color: #555555;\n}\n.tabActive { \n   background-color: #444444; \n}\n\n
\n
',1048856569,NULL); +INSERT INTO international VALUES (73,'SyndicatedContent',8,'Le seguenti variabili sono disponibili nel template per il contenuto da altri siti.\n\n

\n\nchannel.title
\nIl titolo di questo pezzo di contenuto da altri siti

\n\nchannel.description
\nUna descrizionde del contenuto disponibile tramite questo canale

\n\nchannel.link
\nUna URL che punta al sito generatore di questo contenuto\n

\n\nitem_loop
\nUn loop contenente i dati da questo canale.\n

\n\ntitle
\nIl titolo di un pezzo di contenuto.\n

\n\ndescription
\nLa descrizione del contenuto\n

\n\nlink\nUna URL diretta al contenuto originale\n

',1048855993,NULL); INSERT INTO international VALUES (891,'WebGUI',8,'Annulla solo le macro',1048258281,NULL); INSERT INTO international VALUES (896,'WebGUI',8,'Timeout della cache (visitatori)',1056804082,NULL); INSERT INTO international VALUES (895,'WebGUI',8,'Timeout della cache',1056804058,NULL); @@ -12383,7 +11980,7 @@ INSERT INTO international VALUES (5,'HttpProxy',8,'Consenti il proxy di altri do INSERT INTO international VALUES (4,'HttpProxy',8,'Timeout',1048030489,NULL); INSERT INTO international VALUES (3,'HttpProxy',8,'HTTP Proxy',1048030479,NULL); INSERT INTO international VALUES (2,'HttpProxy',8,'Modifica HTTP Proxy',1048030468,NULL); -INSERT INTO international VALUES (11,'HttpProxy',8,'Il wobject HTTP Proxy è un tool molto potente. Ti permette di includere siti ed applicazioni esterne nel tuo sito. Per esempio, se hai un sistema di web mail che vorresti fosse accessibile dal tuo staff attraverso la intranet, puoi usare il wobject HTTP Proxy per farlo.\r\nURL
\r\nLa URL per il Proxy\r\n

\r\n\r\nSegui redirezioni?
\r\nA volte la URL di una pagina è in effetti una redirezione ad un\'altra pagina. Vuoi seguire queste redirezioni quando occorrono?\r\n

\r\n\r\nTimeout
\r\n\r\nLa quantità di tempo (in secondi) che WebGUI dovrebbe aspettare per una connessione prima di smettere di provare a raggiungere una pagina esterna.\r\n

\r\n\r\nCookie Jar
\r\nUn percorso di una directory dove conservare i cookies che un\'applicazione esterna produce. Questa directory dev\'essere in un punto in cui il webserver ha i diritti di scrittura. Se i cookies non sono salvati, l\'applicazione può non funzionare correttamente.\r\n\r\n

\r\n\r\nRimuovi stile?
\r\nVuoi rimuovere lo stylesheet del contenuo di cui stai facendo il proxy in favore dello stylesheet del tuo sitp?\r\n

\r\n\r\nFiltra Contenuto
\r\n\r\nScegli il livello di filtraggio dell\'HTML che vuoi applicare al contenuto di cui stai facendo il proxy.\r\n

\r\n\r\n\r\nConsenti il proxy di altri domini?
\r\nSe fai il proxy di siti come Yahoo! che linkano ad altri domini, vuoi consentire all\'utente di seguire quei link, o il proxy li deve fermare se tentano di abbandonare il sito che hai specificato?\r\n

',1054297997,NULL); +INSERT INTO international VALUES (11,'HttpProxy',8,'Il wobject HTTP Proxy è un tool molto potente. Ti permette di includere siti ed applicazioni esterne nel tuo sito. Per esempio, se hai un sistema di web mail che vorresti fosse accessibile dal tuo staff attraverso la intranet, puoi usare il wobject HTTP Proxy per farlo.\nURL
\nLa URL per il Proxy\n

\n\nSegui redirezioni?
\nA volte la URL di una pagina è in effetti una redirezione ad un\'altra pagina. Vuoi seguire queste redirezioni quando occorrono?\n

\n\nTimeout
\n\nLa quantità di tempo (in secondi) che WebGUI dovrebbe aspettare per una connessione prima di smettere di provare a raggiungere una pagina esterna.\n

\n\nCookie Jar
\nUn percorso di una directory dove conservare i cookies che un\'applicazione esterna produce. Questa directory dev\'essere in un punto in cui il webserver ha i diritti di scrittura. Se i cookies non sono salvati, l\'applicazione può non funzionare correttamente.\n\n

\n\nRimuovi stile?
\nVuoi rimuovere lo stylesheet del contenuo di cui stai facendo il proxy in favore dello stylesheet del tuo sitp?\n

\n\nFiltra Contenuto
\n\nScegli il livello di filtraggio dell\'HTML che vuoi applicare al contenuto di cui stai facendo il proxy.\n

\n\n\nConsenti il proxy di altri domini?
\nSe fai il proxy di siti come Yahoo! che linkano ad altri domini, vuoi consentire all\'utente di seguire quei link, o il proxy li deve fermare se tentano di abbandonare il sito che hai specificato?\n

',1054297997,NULL); INSERT INTO international VALUES (10,'HttpProxy',8,'HTTP Proxy, Aggiungi/Modifica',1048009926,NULL); INSERT INTO international VALUES (1,'HttpProxy',8,'URL',1048009909,NULL); INSERT INTO international VALUES (1030,'WebGUI',8,'da',1048009901,NULL); @@ -12486,12 +12083,10 @@ INSERT INTO international VALUES (134,'WebGUI',13,'Salasanan uusinta-viesti',104 INSERT INTO international VALUES (2,'Product',13,'Oletko varma että haluat poistaa riippuvuudet tähän tarvikkeeseen?',1043841017,NULL); INSERT INTO international VALUES (17,'Product',13,'Tarvike',1043840971,NULL); INSERT INTO international VALUES (16,'Product',13,'Lisää tarvike',1043840952,NULL); -INSERT INTO international VALUES (366,'WebGUI',13,'Etsintä ei tuottanut yhtään tulosta.',1043765335,NULL); INSERT INTO international VALUES (774,'WebGUI',13,'Oletko varma että haluat poistaa tämän kokoelmasta? Poistamisen jälkeen sitä ei voi palauttaa.',1043746780,NULL); INSERT INTO international VALUES (437,'WebGUI',13,'Statistiikka',1043705976,NULL); INSERT INTO international VALUES (400,'WebGUI',13,'Estä Proxyn välimuistitus',1043676260,NULL); INSERT INTO international VALUES (73,'MessageBoard',13,'Viestialue mallipohja',1043676052,NULL); -INSERT INTO international VALUES (73,'Item',13,'Kappale mallipohja',1043676024,NULL); INSERT INTO international VALUES (1,'Auth/WebGUI',13,'WebGUI tunnistautumisen lisäasetukset',1043676006,NULL); INSERT INTO international VALUES (2,'Auth/SMB',13,'SMB palvelin virhe (1)
\r\nJokin virhe domain controllerin yhteydessä. Ehkä aikakatkaisu. Ole hyvä yritä uudelleen tai ota yhteyttä pääkäyttäjään.',1043675974,NULL); INSERT INTO international VALUES (49,'Survey',13,'Ette voi osallistua tähän visailuun.',1043675894,NULL); @@ -12517,9 +12112,8 @@ INSERT INTO international VALUES (751,'WebGUI',13,'Siirry täksi käyttäjäksi. INSERT INTO international VALUES (734,'WebGUI',13,'5 Taitava',1043673248,NULL); INSERT INTO international VALUES (733,'WebGUI',13,'4 Taitava',1043673221,NULL); INSERT INTO international VALUES (723,'WebGUI',13,'Vastustettu',1043673187,NULL); -INSERT INTO international VALUES (6,'SQLReport',13,'Tietokannan käyttäjätunnus',1043672536,NULL); INSERT INTO international VALUES (14,'SQLReport',13,'Vastausta / sivu',1043672512,NULL); -INSERT INTO international VALUES (9,'SQLReport',13,'Virheenselvitys: Virhe: DSN määritys on väärässä muodossa.',1043672429,NULL); +INSERT INTO international VALUES (11,'Auth/LDAP',1,'No connect DN specified for this user',1071848383,''); INSERT INTO international VALUES (17,'SQLReport',13,'Virheenselvitys: Kysely:',1043672415,NULL); INSERT INTO international VALUES (12,'SQLReport',13,'Virheenselvitys: Virhe: Ei tietokantayhteyttä.',1043672389,NULL); INSERT INTO international VALUES (11,'SQLReport',13,'Virheenselvitys: Virhe: Kyselyssä on virhe.',1043672375,NULL); @@ -12590,7 +12184,6 @@ INSERT INTO international VALUES (824,'WebGUI',13,'Sähköpostin alatunniste',10 INSERT INTO international VALUES (829,'WebGUI',13,'Sivun mallipohja',1042619792,NULL); INSERT INTO international VALUES (26,'Survey',13,'Lisää yleisimmin (aina/ei koskaan) vastausten skaala.',1042619546,NULL); INSERT INTO international VALUES (815,'WebGUI',13,'Tallennettava tiedosto on liian iso.',1040587014,NULL); -INSERT INTO international VALUES (814,'WebGUI',13,'Takaisin tyyleihin',1040586942,NULL); INSERT INTO international VALUES (821,'WebGUI',13,'Mikä tahansa',1040586911,NULL); INSERT INTO international VALUES (3,'Auth/SMB',13,'SMB protokollavirhe (2)\r\nOta yhteys ylläpitäjään.',1040078279,NULL); INSERT INTO international VALUES (4,'Auth/SMB',13,'SMB kirjautumisvirhe (3)\r\nKirjoitit kirjautumisnimen tai salasanan väärin, kokeile uudestaan.',1040078257,NULL); @@ -12633,7 +12226,6 @@ INSERT INTO international VALUES (679,'WebGUI',13,'Sisällön asetukset, Muokkaa INSERT INTO international VALUES (675,'WebGUI',13,'Hakukone, käytä',1039001504,NULL); INSERT INTO international VALUES (674,'WebGUI',13,'Sekalaiset asetukset, muokkaa',1039001502,NULL); INSERT INTO international VALUES (670,'WebGUI',13,'Kuva, Lisää/Muokkaa',1039001500,NULL); -INSERT INTO international VALUES (666,'WebGUI',13,'Tyyli, Lisää/Muokkaa',1039001495,NULL); INSERT INTO international VALUES (656,'WebGUI',13,'Yrityksen tiedot, muokkaa',1039001489,NULL); INSERT INTO international VALUES (642,'WebGUI',13,'Sivu, Lisää/Muokkaa',1056062749,NULL); INSERT INTO international VALUES (639,'WebGUI',13,'',1039001479,NULL); @@ -12645,7 +12237,6 @@ INSERT INTO international VALUES (630,'WebGUI',13,'',1039001467,NULL); INSERT INTO international VALUES (629,'WebGUI',13,'',1039001465,NULL); INSERT INTO international VALUES (625,'WebGUI',13,'',1039001463,NULL); INSERT INTO international VALUES (624,'WebGUI',13,'',1039001461,NULL); -INSERT INTO international VALUES (621,'WebGUI',13,'',1039001459,NULL); INSERT INTO international VALUES (618,'WebGUI',13,'',1039001456,NULL); INSERT INTO international VALUES (606,'WebGUI',13,'',1039001450,NULL); INSERT INTO international VALUES (61,'USS',13,'User Submission System, Lisää/Muokkaa',1056384713,NULL); @@ -12655,12 +12246,6 @@ INSERT INTO international VALUES (61,'SiteMap',13,'Sivukartta, Lisää/Muokkaa', INSERT INTO international VALUES (39,'Product',13,'',1039001426,NULL); INSERT INTO international VALUES (38,'Product',13,'Tuote, Lisää/Muokkaa',1039001422,NULL); INSERT INTO international VALUES (71,'MessageBoard',13,'',1039001416,NULL); -INSERT INTO international VALUES (73,'LinkList',13,'',1039001277,NULL); -INSERT INTO international VALUES (72,'LinkList',13,'Linkki, Lisää/Muokkaa',1039001274,NULL); -INSERT INTO international VALUES (71,'LinkList',13,'',1039001269,NULL); -INSERT INTO international VALUES (61,'LinkList',13,'Linkkilista, Lisää/Muokkaa',1039001263,NULL); -INSERT INTO international VALUES (71,'Item',13,'',1039001246,NULL); -INSERT INTO international VALUES (61,'Item',13,'Kappale, Lisää/Muokkaa',1039001240,NULL); INSERT INTO international VALUES (9,'FileManager',13,'Muokkaa tiedostonhallintaa',1039001227,NULL); INSERT INTO international VALUES (71,'FileManager',13,'',1039001209,NULL); INSERT INTO international VALUES (72,'FileManager',13,'Tiedoston lataus, Lisää/Muokkaa',1039001205,NULL); @@ -12670,22 +12255,14 @@ INSERT INTO international VALUES (19,'FileManager',13,'Tiedostoja ei ole ladatta INSERT INTO international VALUES (12,'FileManager',13,'Oletko varma että haluat poistaa tämän tiedoston?',1039001164,NULL); INSERT INTO international VALUES (11,'FileManager',13,'Lisää uusi tiedosto.',1039001160,NULL); INSERT INTO international VALUES (10,'FileManager',13,'Muokkaa latausta',1039001157,NULL); -INSERT INTO international VALUES (73,'FAQ',13,'',1039001145,NULL); INSERT INTO international VALUES (1,'FileManager',13,'Tiedostohallinta',1039001139,NULL); -INSERT INTO international VALUES (72,'FAQ',13,'Kysymys, Lisää/Muokkaa',1039001135,NULL); -INSERT INTO international VALUES (71,'FAQ',13,'',1039001130,NULL); -INSERT INTO international VALUES (61,'FAQ',13,'Usein kysytyt kysymykset, Lisää/Muokkaa',1039001126,NULL); INSERT INTO international VALUES (71,'EventsCalendar',13,'',1039001120,NULL); INSERT INTO international VALUES (73,'EventsCalendar',13,'',1039001117,NULL); -INSERT INTO international VALUES (71,'ExtraColumn',13,'',1039001114,NULL); -INSERT INTO international VALUES (61,'ExtraColumn',13,'Ylimääräinen palsta, Lisää/Muokkaa',1039001109,NULL); INSERT INTO international VALUES (72,'EventsCalendar',13,'Tapahtuma, Lisää/Muokkaa',1039001105,NULL); INSERT INTO international VALUES (61,'EventsCalendar',13,'Tapahtumakalenteri, Lisää/Muokkaa',1039001099,NULL); INSERT INTO international VALUES (71,'Article',13,'',1039001091,NULL); -INSERT INTO international VALUES (75,'LinkList',13,'Linkkilistan mallipohja',1039000938,NULL); INSERT INTO international VALUES (75,'FileManager',13,'Tiedostohallinnan mallipohja',1039000911,NULL); INSERT INTO international VALUES (74,'FileManager',13,'Lisää uusi tiedosto.',1039000895,NULL); -INSERT INTO international VALUES (76,'FAQ',13,'Usein kysytyt kysymykset -mallipohja',1039000879,NULL); INSERT INTO international VALUES (96,'EventsCalendar',13,'Tapahtuman mallipohja',1039000854,NULL); INSERT INTO international VALUES (94,'EventsCalendar',13,'Tapahtumakalenterin mallipohja',1039000840,NULL); INSERT INTO international VALUES (93,'EventsCalendar',13,'Seuraava tapahtuma',1039000828,NULL); @@ -12714,13 +12291,11 @@ INSERT INTO international VALUES (622,'WebGUI',13,'',1037820668,NULL); INSERT INTO international VALUES (620,'WebGUI',13,'',1037820653,NULL); INSERT INTO international VALUES (619,'WebGUI',13,'',1037820645,NULL); INSERT INTO international VALUES (617,'WebGUI',13,'',1037820629,NULL); -INSERT INTO international VALUES (155,'WebGUI',13,'',1037820594,NULL); -INSERT INTO international VALUES (13,'FAQ',13,'Laita [top] linkki käyttöön?',1037820534,NULL); INSERT INTO international VALUES (388,'WebGUI',13,'Tallennettu',1037820131,NULL); INSERT INTO international VALUES (64,'Survey',13,'Vastausten vienti.',1037819708,NULL); INSERT INTO international VALUES (66,'Survey',13,'Vastaukset',1037819690,NULL); INSERT INTO international VALUES (67,'Survey',13,'Käyttäjä',1037819680,NULL); -INSERT INTO international VALUES (68,'Survey',13,'Näytä raportit ja viennit.',1037819671,NULL); +INSERT INTO international VALUES (16,'WSClient',1,'HTTP Header Override',1033575504,NULL); INSERT INTO international VALUES (69,'Survey',13,'Poista tämän käyttäjän vastaukset.',1037819649,NULL); INSERT INTO international VALUES (72,'Survey',13,'Oletko varma että haluat poistaa tämän käyttäjän vastaukset?',1037819621,NULL); INSERT INTO international VALUES (73,'Survey',13,'Poista kaikki vastaukset.',1037819596,NULL); @@ -12749,9 +12324,6 @@ INSERT INTO international VALUES (782,'WebGUI',13,'Mikä tahansa',1037819038,NUL INSERT INTO international VALUES (783,'WebGUI',13,'Tyyppi',1037819026,NULL); INSERT INTO international VALUES (784,'WebGUI',13,'Pikkukuva',1037819014,NULL); INSERT INTO international VALUES (799,'WebGUI',13,'Sivua katsottu',1037818963,NULL); -INSERT INTO international VALUES (804,'WebGUI',13,'Kopioi tyyli.',1037818944,NULL); -INSERT INTO international VALUES (803,'WebGUI',13,'Muokkaa tyyliä.',1037818880,NULL); -INSERT INTO international VALUES (805,'WebGUI',13,'Poista tämä tyyli.',1037818868,NULL); INSERT INTO international VALUES (806,'WebGUI',13,'Poista tämä ryhmä.',1037818854,NULL); INSERT INTO international VALUES (807,'WebGUI',13,'Hallitse ryhmiä tässä ryhmässä.',1037818839,NULL); INSERT INTO international VALUES (809,'WebGUI',13,'Postitusryhmä',1037818807,NULL); @@ -12818,21 +12390,18 @@ INSERT INTO international VALUES (616,'WebGUI',13,'',1036574631,NULL); INSERT INTO international VALUES (615,'WebGUI',13,'',1036574624,NULL); INSERT INTO international VALUES (612,'WebGUI',13,'',1036574598,NULL); INSERT INTO international VALUES (610,'WebGUI',13,'',1036574582,NULL); -INSERT INTO international VALUES (609,'WebGUI',13,'',1036574574,NULL); INSERT INTO international VALUES (608,'WebGUI',13,'',1036574564,NULL); INSERT INTO international VALUES (607,'WebGUI',13,'',1036574557,NULL); INSERT INTO international VALUES (502,'WebGUI',13,'',1036574512,NULL); INSERT INTO international VALUES (466,'WebGUI/Profile',13,'',1036574501,NULL); INSERT INTO international VALUES (417,'WebGUI',13,'',1036574484,NULL); -INSERT INTO international VALUES (416,'WebGUI',13,'',1036574476,NULL); -INSERT INTO international VALUES (377,'WebGUI',13,'',1036574458,NULL); +INSERT INTO international VALUES (19,'Navigation',1,'Copy this Navigation.',1077080062,''); INSERT INTO international VALUES (38,'WebGUI',13,'',1036574450,NULL); INSERT INTO international VALUES (36,'WebGUI',13,'Vain pääkäyttäjä voi tehdä tämän. Ota yhteys pääkäyttäjään.',1063118602,NULL); INSERT INTO international VALUES (381,'WebGUI',13,'',1036574426,NULL); INSERT INTO international VALUES (71,'SyndicatedContent',13,'',1036574393,NULL); INSERT INTO international VALUES (57,'Product',13,'',1036574380,NULL); INSERT INTO international VALUES (48,'Product',13,'',1036574366,NULL); -INSERT INTO international VALUES (614,'WebGUI',13,'',1036574249,NULL); INSERT INTO international VALUES (44,'Survey',13,'Haluatko varmasti poistaa tämän kysymyksen, sen vastaukset ja vastineet?',1036573453,NULL); INSERT INTO international VALUES (721,'WebGUI',13,'Sijainti',1036573388,NULL); INSERT INTO international VALUES (729,'WebGUI',13,'0 Aloittelija',1036573336,NULL); @@ -12844,15 +12413,12 @@ INSERT INTO international VALUES (736,'WebGUI',13,'7 Expertti',1036573257,NULL); INSERT INTO international VALUES (737,'WebGUI',13,'8 Mestari',1036573247,NULL); INSERT INTO international VALUES (738,'WebGUI',13,'9 Guru',1036573230,NULL); INSERT INTO international VALUES (739,'WebGUI',13,'Käyttäjän taso',1036573219,NULL); -INSERT INTO international VALUES (741,'WebGUI',13,'Muokkaa tätä mallia.',1036573203,NULL); -INSERT INTO international VALUES (742,'WebGUI',13,'Hallitse malleja.',1036573189,NULL); INSERT INTO international VALUES (744,'WebGUI',13,'Mitä seuraavaksi?',1036573166,NULL); INSERT INTO international VALUES (745,'WebGUI',13,'Palaa sivulle.',1036573155,NULL); INSERT INTO international VALUES (746,'WebGUI',13,'Työkalurivin napit',1036573137,NULL); INSERT INTO international VALUES (747,'WebGUI',13,'Käyttäjänimissä saa olla ainoastaa kirjaimia ja/tai numeroita.',1036573072,NULL); INSERT INTO international VALUES (632,'WebGUI',13,'',1036572996,NULL); INSERT INTO international VALUES (511,'WebGUI',13,'Ketjutettu',1036530565,NULL); -INSERT INTO international VALUES (75,'FAQ',13,'Lisää kysymys.',1036530213,NULL); INSERT INTO international VALUES (71,'SQLReport',13,'',1036528060,NULL); INSERT INTO international VALUES (50,'Product',13,'',1036528040,NULL); INSERT INTO international VALUES (47,'Product',13,'',1036528032,NULL); @@ -12904,7 +12470,6 @@ INSERT INTO international VALUES (395,'WebGUI',13,'Lisää uusi kuva.',103338862 INSERT INTO international VALUES (62,'WebGUI',13,'Tallenna',1033388612,NULL); INSERT INTO international VALUES (61,'WebGUI',13,'Päivitä tilin tiedot',1033388588,NULL); INSERT INTO international VALUES (605,'WebGUI',13,'Lisää ryhmiä',1033388577,NULL); -INSERT INTO international VALUES (6,'WebGUI',13,'Hallitse tyylejä.',1033388571,NULL); INSERT INTO international VALUES (597,'WebGUI',13,'Muokkaa kansainvälisiä ilmoituksia',1033388567,NULL); INSERT INTO international VALUES (596,'WebGUI',13,'PUUTTUU',1033388565,NULL); INSERT INTO international VALUES (595,'WebGUI',13,'Kansainväliset viestit',1033388563,NULL); @@ -12978,7 +12543,6 @@ INSERT INTO international VALUES (506,'WebGUI',13,'Hallitse mallipohjia',1033388 INSERT INTO international VALUES (505,'WebGUI',13,'Lisää uusi mallipohja.',1033388347,NULL); INSERT INTO international VALUES (504,'WebGUI',13,'Mallipohja',1033388345,NULL); INSERT INTO international VALUES (503,'WebGUI',13,'Mallin ID',1033388343,NULL); -INSERT INTO international VALUES (501,'WebGUI',13,'Body',1033388340,NULL); INSERT INTO international VALUES (500,'WebGUI',13,'Sivu ID',1033388338,NULL); INSERT INTO international VALUES (50,'WebGUI',13,'Käyttäjänimi',1033388336,NULL); INSERT INTO international VALUES (5,'WebGUI',13,'Hallitse ryhmiä.',1033388334,NULL); @@ -13071,18 +12635,15 @@ INSERT INTO international VALUES (403,'WebGUI',13,'Prefer not to say.',103338811 INSERT INTO international VALUES (401,'WebGUI',13,'Oletko varma että haluat poistaa tämän ja kaikki sen alla olevat viestit?',1033388114,NULL); INSERT INTO international VALUES (40,'WebGUI',13,'Elintärkeä komponentti',1033388110,NULL); INSERT INTO international VALUES (4,'WebGUI',13,'Hallitse asetuksia',1033388108,NULL); -INSERT INTO international VALUES (398,'WebGUI',13,'Document Type Declaration',1033388103,NULL); INSERT INTO international VALUES (391,'WebGUI',13,'Poista liitetiedosto.',1033388095,NULL); INSERT INTO international VALUES (39,'WebGUI',13,'Sinulla ei ole riittäviä oikeuksia päästäksesi tälle sivulle.',1033388090,NULL); INSERT INTO international VALUES (387,'WebGUI',13,'Tallentanut',1033388083,NULL); INSERT INTO international VALUES (386,'WebGUI',13,'Muokkaa kuvaa',1033388080,NULL); INSERT INTO international VALUES (385,'WebGUI',13,'Parametrit',1033388078,NULL); INSERT INTO international VALUES (384,'WebGUI',13,'Tiedosto',1033388075,NULL); -INSERT INTO international VALUES (380,'WebGUI',13,'Tyyli ID',1033388066,NULL); INSERT INTO international VALUES (379,'WebGUI',13,'Ryhmä ID',1033388062,NULL); INSERT INTO international VALUES (378,'WebGUI',13,'Käyttäjä ID',1033388060,NULL); INSERT INTO international VALUES (376,'WebGUI',13,'Paketti',1033388056,NULL); -INSERT INTO international VALUES (375,'WebGUI',13,'Select Package To Deploy',1033388053,NULL); INSERT INTO international VALUES (374,'WebGUI',13,'Hallitse paketteja.',1033388051,NULL); INSERT INTO international VALUES (372,'WebGUI',13,'Muokkaa käyttäjän ryhmiä',1033388048,NULL); INSERT INTO international VALUES (371,'WebGUI',13,'Lisää ryhmitys',1033388046,NULL); @@ -13090,7 +12651,6 @@ INSERT INTO international VALUES (370,'WebGUI',13,'Muokkaa ryhmitystä',10333880 INSERT INTO international VALUES (37,'WebGUI',13,'Pääsy kielletty!',1033388042,NULL); INSERT INTO international VALUES (369,'WebGUI',13,'Vanhentumispäivä',1033388040,NULL); INSERT INTO international VALUES (368,'WebGUI',13,'Lisää uusi ryhmä tälle käyttäjälle.',1033388037,NULL); -INSERT INTO international VALUES (365,'WebGUI',13,'Etsinnän tulokset...',1033388031,NULL); INSERT INTO international VALUES (362,'WebGUI',13,'Vierekkäin',1033388024,NULL); INSERT INTO international VALUES (361,'WebGUI',13,'3 yhden yläpuolella',1033388022,NULL); INSERT INTO international VALUES (360,'WebGUI',13,'1 kolmen yläpuolella',1033388020,NULL); @@ -13113,7 +12673,6 @@ INSERT INTO international VALUES (343,'WebGUI',13,'Näytä profiili.',1033387981 INSERT INTO international VALUES (342,'WebGUI',13,'Muokkaa tilin tietoja',1033387979,NULL); INSERT INTO international VALUES (341,'WebGUI',13,'Muokkaa profiilia.',1033387977,NULL); INSERT INTO international VALUES (340,'WebGUI',13,'Nainen',1033387975,NULL); -INSERT INTO international VALUES (34,'WebGUI',13,'Aseta päivä',1033387973,NULL); INSERT INTO international VALUES (339,'WebGUI',13,'Mies',1033387971,NULL); INSERT INTO international VALUES (338,'WebGUI',13,'Muokkaa profiilia',1033387969,NULL); INSERT INTO international VALUES (337,'WebGUI',13,'Kotisivun URL',1033387967,NULL); @@ -13151,7 +12710,7 @@ INSERT INTO international VALUES (309,'WebGUI',13,'Salli todellinen nimi?',10333 INSERT INTO international VALUES (308,'WebGUI',13,'Muokkaa profiiliasetuksia',1033387896,NULL); INSERT INTO international VALUES (304,'WebGUI',13,'Kieli',1033387889,NULL); INSERT INTO international VALUES (30,'WebGUI',13,'Keskiviikko',1033387887,NULL); -INSERT INTO international VALUES (3,'WebGUI',13,'Liitä leikepöydältä...',1033387885,NULL); +INSERT INTO international VALUES (5,'Navigation',1,'my mother\'s level (../page)',1077078526,'Option of \"Base page\"'); INSERT INTO international VALUES (29,'WebGUI',13,'Tiistai',1033387883,NULL); INSERT INTO international VALUES (28,'WebGUI',13,'Maanantai',1033387881,NULL); INSERT INTO international VALUES (27,'WebGUI',13,'Sunnuntai',1033387879,NULL); @@ -13189,11 +12748,6 @@ INSERT INTO international VALUES (161,'WebGUI',13,'Submitted By',1033387797,NULL INSERT INTO international VALUES (160,'WebGUI',13,'Date Submitted',1033387795,NULL); INSERT INTO international VALUES (16,'WebGUI',13,'Helmikuu',1033387792,NULL); INSERT INTO international VALUES (159,'WebGUI',13,'Saapuneet',1033387790,NULL); -INSERT INTO international VALUES (158,'WebGUI',13,'Lisää uusi tyyli.',1033387788,NULL); -INSERT INTO international VALUES (157,'WebGUI',13,'Tyylit',1033387786,NULL); -INSERT INTO international VALUES (156,'WebGUI',13,'Muokkaa tyyliä',1033387784,NULL); -INSERT INTO international VALUES (154,'WebGUI',13,'Tyylipohja',1033387779,NULL); -INSERT INTO international VALUES (151,'WebGUI',13,'Tyylin nimi',1033387776,NULL); INSERT INTO international VALUES (15,'WebGUI',13,'Tammikuu',1033387774,NULL); INSERT INTO international VALUES (147,'WebGUI',13,'Sivuja',1033387766,NULL); INSERT INTO international VALUES (145,'WebGUI',13,'WebGUI Build Version',1033387760,NULL); @@ -13243,10 +12797,8 @@ INSERT INTO international VALUES (46,'USS',13,'Lue lisää...',1033387620,NULL); INSERT INTO international VALUES (41,'USS',13,'Päiväys',1033387615,NULL); INSERT INTO international VALUES (4,'USS',13,'Your submission has been approved.',1033387610,NULL); INSERT INTO international VALUES (39,'USS',13,'Lähetä vastaus',1033387608,NULL); -INSERT INTO international VALUES (38,'USS',13,'(Select \"No\" if you\'re writing an HTML/Rich Edit submission.)',1033387605,NULL); INSERT INTO international VALUES (37,'USS',13,'Poista',1033387603,NULL); INSERT INTO international VALUES (35,'USS',13,'Otsikko',1033387601,NULL); -INSERT INTO international VALUES (34,'USS',13,'Muunna rivinvaihdot',1033387598,NULL); INSERT INTO international VALUES (33,'USS',13,'Liite',1033387596,NULL); INSERT INTO international VALUES (32,'USS',13,'Kuva',1033387594,NULL); INSERT INTO international VALUES (31,'USS',13,'Sisältö',1033387591,NULL); @@ -13274,13 +12826,12 @@ INSERT INTO international VALUES (5,'SiteMap',13,'Muokkaa sivukarttaa',103338751 INSERT INTO international VALUES (4,'SiteMap',13,'Valikon \"syvyys\"',1033387508,NULL); INSERT INTO international VALUES (2,'SiteMap',13,'Sivukartta',1033387503,NULL); INSERT INTO international VALUES (8,'SQLReport',13,'Muokkaa SQL-kyselyä',1033387498,NULL); -INSERT INTO international VALUES (7,'SQLReport',13,'Tietokannan salasana',1033387494,NULL); +INSERT INTO international VALUES (1077,'WebGUI',1,'The function you are attempting to call is not available for this authentication module',1067951805,NULL); INSERT INTO international VALUES (61,'SQLReport',13,'SQL kysely, Lisää/Muokkaa',1033387491,NULL); -INSERT INTO international VALUES (5,'SQLReport',13,'DSN',1033387487,NULL); INSERT INTO international VALUES (4,'SQLReport',13,'Kysely',1033387485,NULL); -INSERT INTO international VALUES (3,'SQLReport',13,'Raporttipohja',1033387483,NULL); +INSERT INTO international VALUES (101,'DataForm',1,'Label',NULL,NULL); INSERT INTO international VALUES (15,'SQLReport',13,'Esikäsittele makrot kyselyssä?',1033387474,NULL); -INSERT INTO international VALUES (13,'SQLReport',13,'Muunna rivinvaihdot?',1033387469,NULL); +INSERT INTO international VALUES (86,'Survey',1,'Progress',1075639914,'A label indicating how far the user has progressed through the survey\r\n'); INSERT INTO international VALUES (9,'Product',13,'Tuotekuva 3',1033387459,NULL); INSERT INTO international VALUES (8,'Product',13,'Tuotekuva 2',1033387456,NULL); INSERT INTO international VALUES (7,'Product',13,'Tuotekuva 1',1033387454,NULL); @@ -13344,33 +12895,15 @@ INSERT INTO international VALUES (1016,'WebGUI',13,'Vastaukset',1033387263,NULL) INSERT INTO international VALUES (1051,'WebGUI',1,'Replace With',1066418940,'Prompt the admin to enter a string to replace the search for string with in the replacement text.'); INSERT INTO international VALUES (1043,'WebGUI',1,'Archive After',1066394455,'A label indicating that the administrator needs to enter an interval that specifies how long posts will remain viewable before archiving.'); INSERT INTO international VALUES (949,'WebGUI',1,'Manage clipboard.',1052850265,NULL); -INSERT INTO international VALUES (9,'LinkList',13,'Haluatko todella poistaa tämän linkin?',1033387149,NULL); -INSERT INTO international VALUES (8,'LinkList',13,'URL',1033387147,NULL); -INSERT INTO international VALUES (6,'LinkList',13,'Linkkilista',1033387132,NULL); -INSERT INTO international VALUES (3,'LinkList',13,'Avaa uuteen ikkunaan?',1033387125,NULL); -INSERT INTO international VALUES (13,'LinkList',13,'Lisää uusi linkki.',1033387120,NULL); -INSERT INTO international VALUES (12,'LinkList',13,'Muokkaa linkkiä',1033387118,NULL); -INSERT INTO international VALUES (10,'LinkList',13,'Muokkaa linkkilistaa',1033387115,NULL); -INSERT INTO international VALUES (6,'Item',13,'Muokkaa kappaletta',1033387105,NULL); -INSERT INTO international VALUES (5,'Item',13,'Lataa liite',1033387103,NULL); -INSERT INTO international VALUES (4,'Item',13,'Kappale',1033387100,NULL); -INSERT INTO international VALUES (3,'Item',13,'Poista liite',1033387098,NULL); -INSERT INTO international VALUES (2,'Item',13,'Liite',1033387096,NULL); -INSERT INTO international VALUES (1,'Item',13,'Linkin URL',1033387093,NULL); -INSERT INTO international VALUES (9,'FAQ',13,'Lisää uusi kysymys.',1033387091,NULL); -INSERT INTO international VALUES (8,'FAQ',13,'Muokkaa \"Usein kysyttyjä kysymyksiä\"',1033387089,NULL); -INSERT INTO international VALUES (7,'FAQ',13,'Oletko varma että haluat poistaa tämän kysymyksen?',1033387077,NULL); -INSERT INTO international VALUES (6,'FAQ',13,'Vastaus',1033387072,NULL); -INSERT INTO international VALUES (5,'FAQ',13,'Kysymys',1033387069,NULL); -INSERT INTO international VALUES (2,'FAQ',13,'Usein kysytyt kysymykset',1033387066,NULL); -INSERT INTO international VALUES (12,'FAQ',13,'Laita Q/A päälle?',1033387050,NULL); -INSERT INTO international VALUES (11,'FAQ',13,'Laita TOC päälle?',1033387048,NULL); -INSERT INTO international VALUES (10,'FAQ',13,'Muokkaa kysymystä',1033387045,NULL); -INSERT INTO international VALUES (6,'ExtraColumn',13,'Muokkaa ylimääräistä palstaa',1033387035,NULL); -INSERT INTO international VALUES (5,'ExtraColumn',13,'Tyylipohjan luokka',1033387033,NULL); -INSERT INTO international VALUES (4,'ExtraColumn',13,'Leveys',1033387030,NULL); -INSERT INTO international VALUES (3,'ExtraColumn',13,'Välimerkki',1033387028,NULL); -INSERT INTO international VALUES (1,'ExtraColumn',13,'Ylimääräinen palsta',1033387025,NULL); +INSERT INTO international VALUES (91,'USS',13,'URL',1033387147,NULL); +INSERT INTO international VALUES (92,'USS',13,'Avaa uuteen ikkunaan?',1033387125,NULL); +INSERT INTO international VALUES (89,'USS',13,'Lisää uusi linkki.',1033387120,NULL); +INSERT INTO international VALUES (90,'USS',13,'Muokkaa linkkiä',1033387118,NULL); +INSERT INTO international VALUES (83,'USS',13,'Lisää uusi kysymys.',1033387091,NULL); +INSERT INTO international VALUES (86,'USS',13,'Vastaus',1033387072,NULL); +INSERT INTO international VALUES (85,'USS',13,'Kysymys',1033387069,NULL); +INSERT INTO international VALUES (84,'USS',13,'Muokkaa kysymystä',1033387045,NULL); +INSERT INTO international VALUES (89,'Survey',1,'The following template variables are available for the Survey.\r\n

\r\n\r\nquestion.add.url
\r\nThe URL to add a new question to the survey.\r\n

\r\n\r\nquestion.add.label
\r\nThe default label for question.add.url.\r\n

\r\n\r\nuser.canTakeSurvey
\r\nA boolean indicating whether the current user has the rights to take the survey.\r\n

\r\n\r\nform.header
\r\nThe required form elements that go at the top of the survey questions.\r\n

\r\n\r\nform.footer
\r\nThe required form elements that go after the survey questions.\r\n

\r\n\r\nform.submit
\r\nThe default submit button for the survey response.\r\n

\r\n\r\nquestions.sofar.label
\r\nThe default label for indicating how many questions have been answered to this point in the survey.\r\n

\r\n\r\nstart.newresponse.label
\r\nThe default label for start.newresponse.url.\r\n

\r\n\r\nstart.newresponse.url
\r\nThe URL to start a new response to the survey after the user has already taken the survey once.\r\n

\r\n\r\nthanks.survey.label
\r\nA message thanking the user for completing the survey.\r\n

\r\n\r\nthanks.quiz.label
\r\nA message thanking the user for completing the quiz.\r\n

\r\n\r\nquestions.total
\r\nThe total number of questions in the survey.\r\n

\r\n\r\nquestions.correct.count.label
\r\nThe default label for questions.correct.count.\r\n

\r\n\r\nquestions.correct.percent.label
\r\nThe default label for questions.correct.percent.\r\n

\r\n\r\nmode.isSurvey
\r\nA boolean indicating whether we are in survey mode or quiz mode.\r\n

\r\n\r\nsurvey.noprivs.label
\r\nA message telling the user that they do not have the privileges necessary to take this survey.\r\n

\r\n\r\nquiz.noprivs.label
\r\nA message telling the user that they do not have the privileges necessary to take the quiz.\r\n

\r\n\r\nresponse.id
\r\nThe unique id for the current response for this user.\r\n

\r\n\r\n\r\nresponse.count
\r\nThe number of responses this user has provided for this survey.\r\n

\r\n\r\n\r\nuser.isFirstResponse
\r\nA boolean indicating whether this is the first response for this user.\r\n

\r\n\r\nuser.canRespondAgain
\r\nA boolean indicating whether the user is allowed to respond to this survey again.\r\n

\r\n\r\nquestions.sofar.count
\r\nThe number of questions that have been answered to this point in the survey.\r\n

\r\n\r\nquestions.correct.count
\r\nThe number of questions the user has correct in the quiz to this point.\r\n

\r\n\r\nquestions.correct.percent
\r\nThe percentage of questions that the user has correct in the quiz to this point.\r\n

\r\n\r\nresponse.isComplete
\r\nA boolean indicating whether the user has answered all of the questions for this survey response.\r\n

\r\n\r\n\r\nquestion_loop
\r\nA loop which contains the questions for this survey response.\r\n

\r\n\r\n\r\n

\r\nquestion.question
\r\nThe survey question itself.\r\n

\r\n\r\nquestion.allowComment
\r\nA boolean indicating whether this question allows comments or not.\r\n

\r\n\r\nquestion.id
\r\nThe unique id for this question.\r\n

\r\n\r\nquestion.comment.field
\r\nThe form field to enter comments for this question.\r\n

\r\n\r\nquestion.comment.label
\r\nThe default label for question.comment.field.\r\n

\r\n\r\nquestion.answer.field
\r\nThe form field containing the possible answers for this question.\r\n

\r\n\r\n

\r\n\r\n\r\nquestion.edit_loop
\r\nA loop containing all the questions in the survey with edit controls.\r\n

\r\n\r\n

\r\nquestion.edit.controls
\r\nA toolbar to use to edit this question.\r\n

\r\n\r\nquestion.edit.question
\r\nThe question to be edited.\r\n

\r\n\r\nquestion.edit.id
\r\nThe unique id for this question.\r\n

\r\n\r\n

\r\n',1078223096,NULL); INSERT INTO international VALUES (9,'EventsCalendar',13,'kunnes',1033387022,NULL); INSERT INTO international VALUES (8,'EventsCalendar',13,'Toista',1033387019,NULL); INSERT INTO international VALUES (78,'EventsCalendar',13,'Älä poista mitään, tein virheen.',1033387016,NULL); @@ -13410,11 +12943,9 @@ INSERT INTO international VALUES (662,'WebGUI',13,'Asetukset, hallitse',10325415 INSERT INTO international VALUES (661,'WebGUI',13,'Tiedostoasetukset, muokkaa',1032541516,NULL); INSERT INTO international VALUES (660,'WebGUI',13,'Ryhmät, hallitse',1032541513,NULL); INSERT INTO international VALUES (66,'WebGUI',13,'Kirjaudu sisään',1032541510,NULL); -INSERT INTO international VALUES (659,'WebGUI',13,'Tyylit, hallitse',1056062786,NULL); INSERT INTO international VALUES (658,'WebGUI',13,'Käyttäjät, hallitse',1032541502,NULL); INSERT INTO international VALUES (657,'WebGUI',13,'Käyttäjä, poista',1032541499,NULL); INSERT INTO international VALUES (655,'WebGUI',13,'Käyttäjä, Lisää/Muokkaa',1032541492,NULL); -INSERT INTO international VALUES (654,'WebGUI',13,'Tyyli, poista',1032541488,NULL); INSERT INTO international VALUES (653,'WebGUI',13,'Sivu, poista',1032541485,NULL); INSERT INTO international VALUES (652,'WebGUI',13,'Käyttäjäasetukset, muokkaa',1032541480,NULL); INSERT INTO international VALUES (65,'WebGUI',13,'Poistakaa käyttäjätunnukseni pysyvästi.',1032541464,NULL); @@ -13439,7 +12970,7 @@ INSERT INTO international VALUES (897,'WebGUI/Profile',1,'Editable?',1050167573, INSERT INTO international VALUES (898,'WebGUI',1,'Site Icon',1050172395,NULL); INSERT INTO international VALUES (897,'WebGUI',1,'Favicon',1050170767,NULL); INSERT INTO international VALUES (931,'WebGUI',1,'Themes, Manage',1050437240,NULL); -INSERT INTO international VALUES (932,'WebGUI',1,'Themes are a mechanism to quickly install new styles, templates, and collateral into a WebGUI site. They are also great for moving those same items from one site to another.\r\n

\r\nTIP: When building a theme, be sure to name the components (styles, templates collateral) in the theme with some name that is unique to the theme. This is useful so that your users can find the components in your theme, as well as to avoid name conflicts.',1050437240,NULL); +INSERT INTO international VALUES (932,'WebGUI',1,'Themes are a mechanism to quickly install new styles, templates, and collateral into a WebGUI site. They are also great for moving those same items from one site to another.\r\n

\r\nTIP: When building a theme, be sure to name the components (styles, templates collateral) in the theme with some name that is unique to the theme. This is useful so that your users can find the components in your theme, as well as to avoid name conflicts.',1070027889,NULL); INSERT INTO international VALUES (938,'WebGUI',1,'Theme, Delete',1050437207,NULL); INSERT INTO international VALUES (939,'WebGUI',1,'When you delete a theme you\'ve created all you\'re actually deleting is the basic properties for the theme. However, when you delete a theme you\'ve imported, you\'ll also be deleting all of its components (styles, templates, and collateral) as well. Be careful that you are no longer using any of those components before deleting them.',1050437207,NULL); INSERT INTO international VALUES (936,'WebGUI',1,'Theme, Import',1050436484,NULL); @@ -13467,9 +12998,7 @@ INSERT INTO international VALUES (916,'WebGUI',1,'Snippet',1050232301,NULL); INSERT INTO international VALUES (915,'WebGUI',1,'File',1050232294,NULL); INSERT INTO international VALUES (914,'WebGUI',1,'Image',1050232286,NULL); INSERT INTO international VALUES (913,'WebGUI',1,'Template',1050232279,NULL); -INSERT INTO international VALUES (912,'WebGUI',1,'Style',1050232245,NULL); INSERT INTO international VALUES (911,'WebGUI',1,'Component',1050232236,NULL); -INSERT INTO international VALUES (910,'WebGUI',1,'Component Type',1050232221,NULL); INSERT INTO international VALUES (909,'WebGUI',1,'Add Theme Component',1050232207,NULL); INSERT INTO international VALUES (908,'WebGUI',1,'Are you certain you wish to remove this component from this theme?',1050230878,NULL); INSERT INTO international VALUES (907,'WebGUI',1,'Are you certain you wish to delete this theme?',1050230443,NULL); @@ -13595,9 +13124,8 @@ INSERT INTO international VALUES (916,'WebGUI',2,'Schnippsel',1054045820,NULL); INSERT INTO international VALUES (915,'WebGUI',2,'Datei',1054045810,NULL); INSERT INTO international VALUES (914,'WebGUI',2,'Grafik',1054045801,NULL); INSERT INTO international VALUES (913,'WebGUI',2,'Template',1054045792,NULL); -INSERT INTO international VALUES (912,'WebGUI',2,'Style',1054045784,NULL); +INSERT INTO international VALUES (1089,'WebGUI',1,'Survey Response Template',1078515839,NULL); INSERT INTO international VALUES (911,'WebGUI',2,'Komponente',1054045774,NULL); -INSERT INTO international VALUES (910,'WebGUI',2,'Komponenten Typ',1054045760,NULL); INSERT INTO international VALUES (909,'WebGUI',2,'Themen Komponente hinzufügen',1054540924,NULL); INSERT INTO international VALUES (908,'WebGUI',2,'Sind Sie sicher, dass Sie diese Komponente von diesem Thema entfernen möchten?',1054541168,NULL); INSERT INTO international VALUES (907,'WebGUI',2,'Sind Sie sicher, dass Sie dieses Thema löschen möchten?',1054541158,NULL); @@ -13641,7 +13169,6 @@ INSERT INTO international VALUES (838,'WebGUI',14,' INSERT INTO international VALUES (844,'WebGUI',14,'¤³¤ì¤é¤Î¥Þ¥¯¥í¤Ï¥æ¡¼¥¶¡¼¤È¥í¥°¥¤¥ó¤Ë´Ø¤¹¤ë¤â¤Î¤Ç¤¹¡£\r\n\r\n^a; or ^a(); - My Account Link\r\n¥¢¥«¥¦¥ó¥È¾ðÊó¤Ø¤Î¥ê¥ó¥¯¤Ç¤¹¡£¹¹¤Ë¡¢¡°a(\"Account Info\");¤È¤¤¤¦¤è¤¦¤Ê¥Þ¥¯¥í¤ÎºîÀ®¤Ë¤è¤ê¡¢¥ê¥ó¥¯¥Æ¥­¥¹¥È¤òÊѹ¹¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£\r\n\r\nÃí:¤µ¤é¤ËÆÃ¼ì¤Ê¥±¡¼¥¹¤È¤·¤Æ¡°a(\"linkonly\");¤¬»ÈÍѲÄǽ¤Ç¤¹¡£¤³¤ì¤Ï¥Û¡¼¥à¥Ú¡¼¥¸¤ÎURL¤À¤±¤òÊÖ¤·¤Þ¤¹¡£¤µ¤é¤Ë.myAccountLink¥¹¥¿¥¤¥ë¥·¡¼¥È¥¯¥é¥¹¤Ï¤³¤Î¥Þ¥¯¥í¤È´Ø·¸¤·¤Þ¤¹¡£\r\n\r\n¡°AdminText();\r\nAdmin¥â¡¼¥É¤Î¥æ¡¼¥¶¡¼¤ËÂФ·¤ÆÃ»¤¤¥Æ¥­¥¹¥È¥á¥Ã¥»¡¼¥¸É½¼¨¤Ç¤¹¡£Îã:¡°AdminText(¡ÉYou are in admin mode\");\r\n\r\n¡°AdminToggle;¤¢¤ë¤¤¤Ï¡°AdminToggle();\r\n¥³¥ó¥Æ¥ó¥È¥Þ¥Í¡¼¥¸¥ã¡¼¤È¥¢¥É¥ß¥Ë¥¹¥È¥ì¡¼¥¿¡¼¤Ë¤Î¤ßɽ¼¨¤µ¤ì¤ë¥ê¥ó¥¯¤ò¥Ú¡¼¥¸¾å¤ËÇÛÃÖ¤·¤Þ¤¹¡£¤½¤Î¥ê¥ó¥¯¤ÏAdmin¥â¡¼¥É¤ò¥ª¥ó/¥ª¥ÕÀÚ¤êÂØ¤¨¤·¤Þ¤¹¡£¤Þ¤¿¡¢°Ê²¼¤Î¤è¤¦¤ËÇÛÃÖ¤¹¤ì¤Ð¡¢Â¾¤Î¥á¥Ã¥»¡¼¥¸¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£:¡°AdminToggle; (\"Edit On\",\"Edit Off\"); \r\n\r\n¡°GroupText();\r\n¥æ¡¼¥¶¡¼¤¬ÆÃÄê¤Î¥°¥ë¡¼¥×¤Ë°¤¹¤ë!\n¾ì¹ç¡¢¤½¤Î¥æ¡¼¥¶¡¼¤ËÂФ·¤ÆÃ»¤¤¥Æ¥­¥¹¥È¥á¥Ã¥»¡¼¥¸¤òɽ¼¨¤·¤Þ¤¹¡£Îã:¡°GroupText(\"Visitors\",\"You need an account to do anything cool on this site!\"); \r\n\r\n¡°L;¤¢¤ë¤¤¤Ï¡°L();-Login Box\r\n¾®¤µ¤Ê¥í¥°¥¤¥ó¥Õ¥©¡¼¥à¤Ç¤¹¡£¤Þ¤¿¥Þ¥¯¥í¤òÀßÄꤹ¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¡°L(20);¤È¥í¥°¥¤¥ó¥Ü¥Ã¥¯¥¹¤ÎÉý¤ÎÀßÄ꤬²Äǽ¤Ç¤¹¡£¤µ¤é¤Ë¡¢¡¢¡°L(20¡¢Hi¡°a(¡°@;);.Click %here% if you wanna log out!)¤È¥æ¡¼¥¶¡¼¥í¥°¥¤¥ó¤Ë³Îǧ²èÌ̤òɽ¼¨¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£ \r\n\r\nÃí:.loginBox¥¹¥¿¥¤¥ë¥·¡¼¥È¥¯¥é¥¹¤Ï¤³¤Î¥Þ¥¯¥í¤Ë´Ø·¸¤·¤Þ¤¹¡£\r\n\r\n¡°LoginToggle;¤¢¤ë¤¤¤Ï¡°LoginToggle();\r\n¥æ¡¼¥¶¡¼¤Î¥í¥°¥¤¥ó¡¢¥í¥°¥¢¥¦¥È»þ¤Ë¡Ö¥í¥°¥¤¥ó¡×¤¢¤ë¤¤¤Ï¡Ö¥í¥°¥¢¥¦¥È¡×¥á¥Ã¥»¡¼¥¸¤òɽ¼¨¤·¤Þ¤¹¡£¤Þ¤¿¡¢¡°LoginToggle;(\"Click here to log in.\",\"Click here to log out.\");¤È¼«Í³¤Ë¥á¥Ã¥»¡¼¥¸¤ò»ØÄꤹ¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£ \r\n\r\n¡°@;- Username\r\n¸½ºß¤Î¥í¥°¥¤¥ó¥æ¡¼¥¶¡¼Ì¾¤Ç¤¹¡£\r\n\r\n¡°#;- User ID\r\n¸½ºß¤Î¥í¥°¥¤¥ó¥æ¡¼¥¶¤ÎID¤Ç¤¹¡£',1055901855,NULL); INSERT INTO international VALUES (842,'WebGUI',14,'¤³¤ì¤é¤Î¥Þ¥¯¥í¤Ï¥µ¥¤¥È¤Î¥Ê¥Ó¥²¡¼¥·¥ç¥ó¤òºîÀ®¤¹¤ë¤¿¤á¤Ë»ÈÍѤµ¤ì¤Þ¤¹¡£\r\n\r\n^C; or ^C(); - Crumb Trail\r\n¸½ºß¤Î¥Ú¡¼¥¸¤Ø¤Î¥À¥¤¥Ê¥ß¥Ã¥¯¤ËÀ¸À®¤µ¤ì¤¿CrumbTrai£ì¤Ç¤¹¡£¡°C(::)¤Î»ÈÍѤˤè¤ê¼«Í³¤Ë¥Ú¡¼¥¸Ì¾¤Î´Ö¤Ç»ÈÍѤµ¤ì¤ë¥Ç¥ê¥ß¥¿¡¼( ¶èÀÚ¤êÉ乿)¤ò»ØÄꤹ¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¥Ç¥ê¥ß¥¿¡¼¤Ï > ¤Ç¤¹¡£\r\n\r\nÃí:.crumbTrail¥¹¥¿¥¤¥ë¥·¡¼¥È¥¯¥é¥¹¤Ï¤³¤Î¥Þ¥¯¥í¤È´Ø·¸¤·¤Þ¤¹¡£\r\n\r\n¡°FlexMenu;\r\n¤³¤Î¥á¥Ë¥å¡¼¥Þ¥¯¥í¤Ï¡¢¥æ¡¼¥¶¤Î¥á¥Ë¥å¡¼¹àÌܤÎÁªÂò¤Ë¤è¤ê³ÈÄ¥¤¹¤ë¥È¥Ã¥×¥ì¥Ù¥ë¤Î¥á¥Ë¥å¡¼¤òºîÀ®¤·¤Þ¤¹¡£\r\n\r\n^H; or ^H(); - Home Link\r\n¤³¤Î¥µ¥¤¥È¤Î¥Û¡¼¥à¥Ú¡¼¥¸¤Ø¤Î¥ê¥ó¥¯¡£¹¹¤Ë¡¢^H(\"Go Home\")¤Î¤è¤¦¤Ê¥Þ¥¯¥í¤ÎºîÀ®¤Ç¡¢¥ê¥ó¥¯¥Æ¥­¥¹¥È¤òÊѹ¹¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£\r\n\r\nÃí:¤µ¤é¤ËÆÃ¼ì¤Ê¥±¡¼¥¹¤È¤·¤Æ¡°H(linkonly)¤¬»ÈÍѲÄǽ¤Ç¤¹¡£¤³¤ì¤Ï¥Û¡¼¥à¥Ú¡¼¥¸¤ÎURL¤À¤±¤òÊÖ¤·¤Þ¤¹¡£¤µ¤é¤Ë.homeLink¥¹¥¿¥¤¥ë¥·¡¼¥È¥¯¥é¥¹¤Ï¤³¤Î¥Þ¥¯¥í¤È´Ø·¸¤·¤Þ¤¹¡£\r\n\r\n^M; or ^M(); - Current Menu (Vertical)\r\n¸½ºß¤Î¥ì¥Ù¥ë¤Ë¤ª¤¤¤Æ¥µ¥Ö¥Ú¡¼¥¸¤ò´Þ¤à½Ä¥á¥Ë¥å¡¼¤Ç¤¹¡£¹¹¤Ë¡¢¤½¤Î¥á¥Ë¥å¡¼¤¬¤É¤Î¥ì¥Ù¥ëÁØ¤Þ¤Ç°ÆÆâ²Äǽ¤«»ØÄꤹ¤ë¤³¤È¤Ç¡¢¤³¤Î¥Þ ¥¯¥í¤òÀßÄꤹ¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥ÈÀßÄê¤ÏÂè1ÁؤΥì¥Ù¥ë¤Ç¤¹¡£Âè»°ÁØ¥ì¥Ù¥ë¤Ë¤¹¤ë¤¿¤á¤Ë¤Ï¡¢¡°M(3);.¤È¥Þ¥¯¥í¤òºîÀ®¤·¤Þ ¤¹¡£ÀßÄ꤬¡Ö0¡×¤Î¾ì¹ç¤Ï¥µ¥¤¥È¥Ä¥ê¡¼Á´ÂΤò¥È¥é¥Ã¥¯¤·¤Þ¤¹¡£\r\n\r\n^m; - Current Menu (Horizontal)\r\n¸½ºß¤Î¥ì¥Ù¥ë¤Ë¤ª¤¤¤Æ¥µ¥Ö¥Ú¡¼¥¸¤ò´Þ¤à²£¥á¥Ë¥å¡¼¤Ç¤¹¡£¡°m(:¡½¡½ :);¤Î»ÈÍѤˤè¤ê¼«Í³¤Ë¥Ú¡¼¥¸Ì¾¤Î´Ö¤Ç»ÈÍѤµ¤ì¤ë¥Ç¥ê¥ß¥¿¡¼( ¶èÀÚ¤êÉ乿)¤ò»ØÄꤹ¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¥Ç¥ê¥ß¥¿¡¼¤Ï¡¦¤Ç¤¹¡£\r\n\r\n^P; or ^P(); - Previous Menu (Vertical)\r\nÁ°¤Î¥ì¥Ù¥ë¤Ë¤ª¤¤¤Æ¥µ¥Ö¥Ú¡¼¥¸¤ò´Þ¤à½Ä¥á¥Ë¥å¡¼¤Ç¤¹¡£¹¹¤Ë¡¢¤½¤Î¥á¥Ë¥å¡¼¤¬¤É¤Î¥ì¥Ù¥ëÁØ¤Þ¤Ç°ÆÆâ²Äǽ¤«»ØÄꤹ¤ë¤³¤È¤Ç¡¢¤³¤Î¥Þ¥¯ ¥í¤òÀßÄꤹ¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥ÈÀßÄê¤ÏÂè1ÁؤΥì¥Ù¥ë¤Ç¤¹¡£Âè»°ÁØ¥ì¥Ù¥ë¤Ë¤¹¤ë¤¿¤á¤Ë¤Ï¡¢¡°P(3);¤È¥Þ¥¯¥í¤òºîÀ®¤·¤Þ¤¹¡£ ÀßÄ꤬¡Ö0¡×¤Î¾ì¹ç¤Ï¥µ¥¤¥È¥Ä¥ê¡¼Á´ÂΤò¥È¥é¥Ã¥¯¤·¤Þ¤¹¡£\r\n\r\n^p; - Previous Menu (Horizontal)\r\nÁ°¤Î¥ì¥Ù¥ë¤Ë¤ª¤¤¤Æ¥µ¥Ö¥Ú¡¼¥¸¤ò´Þ¤à²£¥á¥Ë¥å¡¼¤Ç¤¹¡£¡°p(:--:);¤Î»ÈÍѤˤè¤ê¼«Í³¤Ë¥Ú¡¼¥¸Ì¾¤Î´Ö¤Ç»ÈÍѤµ¤ì¤ë¥Ç¥ê¥ß¥¿¡¼(¶èÀÚ¤êÉ乿)¤ò»ØÄꤹ¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¥Ç¥ê¥ß¥¿¡¼¤Ï¡¦¤Ç¤¹¡£\r\n\r\n^rootmenu; or ^rootmenu(); (Horizontal)\r\n(WebGUI¥·¥¹¥Æ¥à¥ë¡¼¥È¤ò½ü¤¤¤¿)¥·¥¹¥Æ¥à¾å¤Î¿Íͤʥ롼¥È¤òɽ¼¨¤¹¤ë²£¥á¥Ë¥å¡¼¤òºîÀ®¤·¤Þ¤¹¡£¼«Í³¤Ë¡°rootmenu(|);¤è¤¦¤Ë ¥á¥Ë¥å¡¼¥Ç¥ß¥ê¥¿¡¼¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£\r\n\r\n¡°^s(); - Specific SubMenu (Vertical)\r\n ¤³¤Î¥Þ¥¯¥í¤Ï»ØÄꤵ¤ì¤¿¥Ú¡¼¥¸¤Î¥µ¥Ö¥á¥Ë¥å¡¼¤Î¼èÆÀ¤ò²Äǽ¤Ë¤·¤Þ¤¹¡£Î㤨¤Ð¡¢¤³¤Î¡°S(\"home\"¡¢0);¤È¤¤¤¦¤è¤¦¤Ê¥Þ¥¯¥í¤ÎºîÀ®¤¹¤ë¤³¤È¤Ç¡¢¥Û¡¼¥à¥Ú¡¼¥¸¤Î¥µ¥Ö¥á¥Ë¥å¡¼¤òÆÀ¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£Á°¤ÎÊÑ¿ôÃͤϥڡ¼¥¸¤ÎURL¤Ç¡¢¸å¤ÎÊÑ¿ôÃͤϼèÆÀ¤¹¤ë¥á¥Ë¥å¡¼¤Î³¬ÁØ¥ì¥Ù¥ë¤Ç¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Ç¤Î³¬ÁؤÏÂè1¥ì¥Ù¥ë¤Ç¤¹¡£Âè3¥ì¥Ù¥ë¤Î¾ì¹ç¤Ï¡¢¡°S(\"home\"¡¢3)¡¨¤È¥Þ¥¯¥í¤òºîÀ®¤·¤Þ¤¹¡£\r\n\r\n^s(); - Specific SubMenu (Horizontal)\r\n ¤³¤Î¥Þ¥¯¥í¤Ï»ØÄꤵ¤ì¤¿¥Ú¡¼¥¸¤Î¥µ¥Ö¥á¥Ë¥å¡¼¤Î¼èÆÀ¤ò²Äǽ¤Ë¤·¤Þ¤¹¡£Î㤨¤Ð¡¢¤³¤Î¡°s(\"home\");¤È¤¤¤¦¤è¤¦¤Ê¥Þ¥¯¥í¤ÎºîÀ®¤¹¤ë¤³¤È¤Ç¡¢¥Û¡¼¥à¥Ú¡¼¥¸¤Î¥µ¥Ö¥á¥Ë¥å¡¼¤òÆÀ¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£ÊÑ¿ôÃͤϥڡ¼¥¸¤ÎURL¤Ç¤¹¡£¡°s(\"home\",\":--:\");¤Î»ÈÍѤˤè¤ê¼«Í³¤Ë¥Ú¡¼¥¸Ì¾¤Î´Ö¤Ç»ÈÍѤµ¤ì¤ë¥Ç¥ê¥ß¥¿¡¼(¶èÀÚ¤êÉ乿)¤ò»ØÄꤹ¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¥Ç¥ê¥ß¥¿¡¼¤Ï¡¦¤Ç¤¹¡£\r\n\r\n\r\n^Synopsis; or ^Synopsis(); Menu\r\n ¤³¤Î¥Þ¥¯¥í¤Ï»ØÄꤵ¤ì¤¿¥Ú¡¼¥¸¤Î¥µ¥Ö¥á¥Ë¥å¡¼¤È¤½¤Î³µÍפò¤È¤â¤Ë¼èÆÀ¤·¤Þ¤¹¡£¤É¤Î¥ì¥Ù¥ë¤Þ¤Ç¤Î¥Ú¡¼¥¸¥Ä¥ê¡¼¤ò±ÜÍ÷¤Ç¤­¤ë¤«»ØÄꤹ¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£\r\n\r\nÃí:.synopsis_sub¡¢.synopsis_summary¤ª¤è¤Ó.synopsis_title¥¹¥¿¥¤¥ë¡¦¥·¡¼¥È¡¦¥¯¥é¥¹¤Ï¤³¤Î¥Þ¥¯¥í¤È´Ø·¸¤·¤Þ¤¹¡£\r\n\r\n^T; or ^T(); - Top Level Menu (Vertical)\r\n¡Ê¥Û¡¼¥à¥Ú¡¼¥¸¤«¤é¤Î¥µ¥Ö¥Ú¡¼¥¸¤È¤·¤ÆÃΤé¤ì¤ë¡Ë¥µ¥¤¥È¤Î¥á¥¤¥ó¥Ú¡¼¥¸¤ò´Þ¤à½Ä¥á¥Ë¥å¡¼¤Ç¤¹¡£¹¹¤Ë¡¢¤½¤Î¥á¥Ë¥å¡¼¤¬¤É¤Î¥ì¥Ù¥ëÁØ¤Þ¤Ç°ÆÆâ²Äǽ¤«»ØÄꤹ¤ë¤³¤È¤Ç¡¢¤³¤Î¥Þ¥¯ ¥í¤òÀßÄꤹ¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥ÈÀßÄê¤ÏÂè1ÁؤΥì¥Ù¥ë¤Ç¤¹¡£Âè»°ÁØ¥ì¥Ù¥ë¤Ë¤¹¤ë¤¿¤á¤Ë¤Ï¡¢¡°T(3);¤È¥Þ¥¯¥í¤òºîÀ®¤·¤Þ¤¹¡£ ÀßÄ꤬¡Ö0¡×¤Î¾ì¹ç¤Ï¥µ¥¤¥È¥Ä¥ê¡¼Á´ÂΤò¥È¥é¥Ã¥¯¤·¤Þ¤¹¡£\r\n\r\n^T; or ^T(); - Top Level Menu (Horizontal)\r\n¡Ê¥Û¡¼¥à¥Ú¡¼¥¸¤«¤é¤Î¥µ¥Ö¥Ú¡¼¥¸¤È¤·¤ÆÃΤé¤ì¤ë¡Ë¥µ¥¤¥È¤Î¥á¥¤¥ó¥Ú¡¼¥¸¤ò´Þ¤à²£¥á¥Ë¥å¡¼¤Ç¤¹¡£¡°t(\":--:\");¤Ë¤è¤ê¼«Í³¤Ë¥Ú¡¼¥¸Ì¾¤Î´Ö¤Ç»ÈÍѤµ¤ì¤ë¥Ç¥ê¥ß¥¿¡¼(¶èÀÚ¤êÉ乿)¤ò»ØÄꤹ¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¥Ç¥ê¥ß¥¿¡¼¤Ï¡¦¤Ç¤¹¡£\r\n\r\n^/; - System URL¡£\r\n¥²¡¼¥È¥¦¥§¥¤¥¹¥¯¥ê¥×¥È¤Ø¤ÎURL¤Ç¤¹¡£(Îã:/index.pl/)\r\n\r\n^\\; - Page URL\r\n¥«¥ì¥ó¥È¥Ú¡¼¥¸¤Ø¤ÎURL¤Ç¤¹¡£(Îã: /index.pl/pagename)',1055636754,NULL); INSERT INTO international VALUES (846,'WebGUI',14,'¤³¤ì¤é¤Î¥Þ¥¯¥í¤Ï¡¢¼ç¤ËWebGUI¤Ç¥á¥ó¥Æ¥Ê¥ó¥¹¤ËÌòΩ¤Á¤Þ¤¹¡£\r\n\r\n¡°AdminBar;\r\n¥Ú¡¼¥¸¤Ë´ÉÍý¥Ä¡¼¥ë¥Ð¡¼¤òÇÛÃÖ¤·¤Þ¤¹¡£¤³¤ì¤Ï¥¹¥¿¥¤¥ë¥Þ¥Í¡¼¥¸¥ã¡¼¤ÎBODY¥»¥°¥á¥ó¥ÈÆâ¤Çɬ¿ÜÍ×ÁǤǤ¹¡£\r\n\r\n^c; - Company Name\r\n´ÉÍý¼Ô¤Ë¤è¤Ã¤ÆÀßÄꤵ¤ì¤ë²ñ¼Ò¤Î̾¾Î¤Ç¤¹¡£\r\n\r\n^e; - Company Email Address\r\n´ÉÍý¼Ô¤Ë¤è¤Ã¤ÆÀßÄꤵ¤ì¤ë²ñ¼Ò¤Î¥á¡¼¥ë¥¢¥É¥ì¥¹¤Ç¤¹¡£\r\n\r\n¡°Extras;\r\nWebGUI¤Î¥¢¥¤¥³¥ó¤Ê¤É¤ò´Þ¤ó¤ÀWebGUI¤Î\"Extras\"¥Õ¥©¥ë¥À¤Ø¤Î¥Ñ¥¹¤òɽ¼¨¤·¤Þ¤¹¡£\r\n\r\n¡°PageTitle;\r\n¸½ºß¤Î¥Ú¡¼¥¸¤Î¥¿¥¤¥È¥ë¤òɽ¼¨¤·¤Þ¤¹¡£\r\n\r\nÃí:´ÉÍýµ¡Ç½¤äWobject¤Î¿ºÌ¤Êµ¡Ç½¤Î»ÈÍѤǡ¢¥Ú¡¼¥¸¥¿¥¤¥È¥ë¤Ï¤è¤ê¿×®¤Ê¥Ú¡¼¥¸´Ö¤Î°Üư¤ò²Äǽ¤Ë¤¹¤ë¥ê¥ó¥¯¤Ë¤Ê¤ê¤Þ¤¹¡£\r\n\r\n¡°r;¡¡¤¢¤ë¤¤¤Ï¡¡¡°r();¡¡°õºþ²Äǽ¤Ê¥Ú¡¼¥¸\r\n¥Ú¡¼¥¸¤«¤é¥¹¥¿¥¤¥ë¤ò¼è¤ê½ü¤­¤¤¤¿°õºþ²Äǽ¤Ê¥Ú¡¼¥¸¤Ø¤Î¥ê¥ó¥¯¤òºîÀ®¤·¤Þ¤¹¡£¹¹¤Ë¡¢^r(\"Print Me!\");¤Î¤è¤¦¤Ê¥Þ¥¯¥í¤ÎºîÀ®¤Ë¤è¤ê¥ê¥ó¥¯¥Æ¥­¥¹¥È¤òÊѹ¹¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£\r\n\r\n¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¡¢¤³¤Î¥ê¥ó¥¯¤¬¥¯¥ê¥Ã¥¯¤µ¤ì¤¿¾ì¹ç!\n¤Ë¸½ºß¤Î¥Ú¡¼¥¸¤Î¥¹¥¿¥¤¥ë¤¬¥¹¥¿¥¤¥ë¥Þ¥Í¡¼¥¸¥ã¡¼Æâ¤Î \"Make Page Printable\"¥¹¥¿¥¤¥ë¤ËÃÖ¤­´¹¤¨¤é¤ì¤Þ¤¹¡£¤·¤«¤·¡¢^r(\"Print!\",\"WebGUI\");¤Î¤è¤¦¤ÊÂè2¤Î¥Ñ¥é¥á¡¼¥¿¡¼¤Ë¤è¤êÊ̤Υ¹¥¿¥¤¥ë̾¤ò»ØÄꤹ¤ë¤³¤È¤Ç̵»ë¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£\r\n\r\nÃí:¤µ¤é¤ËÆÃ¼ì¤Ê¥±¡¼¥¹¤È¤·¤Æ¡°r(linkonly)¤¬»ÈÍѲÄǽ¤Ç¤¹¡£¤³¤ì¤Ï°õºþ²Äǽ¤Ê¥Ú¡¼¥¸¤ÎURL¤À¤±¤òÊÖ¤·¤Þ¤¹¡£¤µ¤é¤Ë.makePrintableLink¥¹¥¿¥¤¥ë¥·¡¼¥È¥¯¥é¥¹¤Ï¤³¤Î¥Þ¥¯¥í¤È´Ø·¸¤·¤Þ¤¹¡£\r\n\r\n¡°RootTitle;\r\n¸½ºß¤Î¥Ú¡¼¥¸¤Î¥ë¡¼¥È¤Î¥¿¥¤¥È¥ë¤òÊÖ¤·¤Þ¤¹¡£Î㤨¤Ð¡¢WebGUI¤ÎÃæ¤Î¼çÍפʥ롼¥È¤Ï¡Ö¥Û¡¼¥à¡×¥Ú¡¼¥¸¤Ç¤¹¡£Â¿¤¯¤Î¹âÅ٤ʥµ¥¤¥È¤Ï¿¤¯¤Î¥ë¡¼¥È¤ò»ý¤Ã¤Æ¤ª¤ê¡¢¤½¤ì¤é¤Ï¥æ¡¼¥¶¡¼¤¬¤¤¤ë¥ë¡¼¥È¤ò¥æ¡¼¥¶¡¼¤Ëɽ¼¨¤¹¤ëÊýË¡¤òɬÍפȤ·¤Æ¤¤¤Þ¤¹¡£\r\n\r\n^u; - Company URL\r\n´ÉÍý¼Ô¤Ë¤è¤êÀßÄꤵ¤ì¤ë²ñ¼Ò¤ÎURL¤Ç¤¹¡£\r\n\r\n^?; - Search\r\n¥Ú¡¼¥¸¤Ë¸¡º÷¥Ü¥Ã¥¯¥¹¤ò²Ã¤¨¤Þ¤¹¡£¸¡º÷¥Ü¥Ã¥¯¥¹¤ÏWebGUI¤Î¥Ó¥ë¥È¥¤¥ó¸¡º÷¥¨¥ó¥¸¥ó¤Ë´Ø·¸¤·¤Þ¤¹¡£\r\n\r\nÃí:.searchBox¥¹¥¿¥¤¥ë¥·¡¼¥È¥¯¥é¥¹¤Ï¤³¤Î¥Þ¥¯¥í¤Ë´Ø·¸¤·¤Þ¤¹¡£\r\n\r\n^-;\r\n¤³¤ì¤Ï¥»¥Ñ¥ì¡¼¥¿¡¼¥Þ¥¯¥í¤È¤·¤ÆÃΤé¤ì¤Æ¤¤¤Þ¤¹¡£¤³¤Î¥Þ¥¯¥í¤Ï¤É¤Î¥¹¥¿¥¤¥ë¤Ë¤ª¤¤¤Æ¤âɬ¤º°ì²ó¤Ï¸!\n½¤ï¤ì¤Þ¤¹¡£¤³¤Î¥Þ¥¯¥í¤¬¸½¤ï¤ì¤ë¤È¤³¤í¤Ï½êÄê¤Î¥Ú¡¼¥¸¤Î¥³¥ó¥Æ¥ó¥Ä¤¬ÇÛÃÖ¤µ¤ì¤ë¾ì½ê¤Ç¤¹¡£',1055636582,NULL); -INSERT INTO international VALUES (741,'WebGUI',14,'¥Æ¥ó¥×¥ì¡¼¥È¤òÊÔ½¸',1055603990,NULL); INSERT INTO international VALUES (752,'WebGUI',14,'¥æ¡¼¥¶¡¼¤Î¥×¥í¥Õ¥£¡¼¥ë¤òɽ¼¨',1055603971,NULL); INSERT INTO international VALUES (753,'WebGUI',14,'¥°¥ë¡¼¥×¤òÊÔ½¸',1055603950,NULL); INSERT INTO international VALUES (760,'WebGUI',14,'¥Õ¥©¥ë¥À¡¼¤òºï½ü',1055603920,NULL); @@ -13664,8 +13191,6 @@ INSERT INTO international VALUES (11,'HttpProxy',14,'HTTP INSERT INTO international VALUES (5,'HttpProxy',14,'¾¤Î¥É¥á¥¤¥ó¤Î¥×¥í¥­¥·¥ó¥°¤òµö²Ä¤·¤Þ¤¹¤«¡©',1055602561,NULL); INSERT INTO international VALUES (73,'FileManager',14,'¥Õ¥¡¥¤¥ë¥¿¥¤¥È¥ë\r\n¤³¤Î¥Õ¥¡¥¤¥ë¤Ëɽ¼¨¤µ¤ì¤ë¥¿¥¤¥È¥ë¤Ç¤¹¡£º¸Â¦¤¬¶õÇò¤Î¾ì¹ç¤Ï¥Õ¥¡¥¤¥ë̾¤¬¥¿¥¤¥È¥ë¤Ë»ÈÍѤµ¤ì¤Þ¤¹¡£\r\n\r\n¥Õ¥¡¥¤¥ë\r\n¥¢¥Ã¥×¥í¡¼¥É¤·¤¿¤¤¥Õ¥¡¥¤¥ë¤ò¥Ç¡¼¥¿ÊݸÀ褫¤éÁªÂò¤·¤Æ¤¯¤À¤µ¤¤¡£\r\n\r\n¸ß´¹¥Ð¡¼¥¸¥ç¥ó#1\r\n¥Õ¥¡¥¤¥ë¤Î¸ß´¹¥Ð¡¼¥¸¥ç¥ó¤Ç¤¹¡£Î㤨¤Ð¤â¤·¥Õ¥¡¥¤¥ë¤¬JPEG¤Î¾ì¹ç¡¢¤ª¤½¤é¤¯¸ß´¹¥Ð¡¼¥¸¥ç¥ó¤ÏTIFF¤«BMP¤Ë¤Ê¤ê¤Þ¤¹¡£\r\n\r\n¸ß´¹¥Ð¡¼¥¸¥ç¥ó#2\r\n¥Õ¥¡¥¤¥ë¤Î¸ß´¹¥Ð¡¼¥¸¥ç¥ó¤Ç¤¹¡£Î㤨¤Ð¤â¤·¥Õ¥¡¥¤¥ë¤¬JPEG¤Î¾ì¹ç¡¢¤ª¤½¤é¤¯¸ß´¹¥Ð¡¼¥¸¥ç¥ó¤ÏTIFF¤«BMP¤Ë¤Ê¤ê¤Þ¤¹¡£\r\n\r\n³µÍ×\r\n¤³¤Î¥Õ¥¡¥¤¥ë¤ÎÀâÌÀ½ñ¤­¤Ç¤¹¡£¥æ¡¼¥¶¡¼¤¬¸¡º÷¤¹¤ë¥­¡¼¥ï¡¼¥É¤òɬ¤º´Þ¤á¤Æ¤¯¤À¤µ¤¤¡£\r\n\r\n¥À¥¦¥ó¥í¡¼¥É¤¹¤ë¥°¥ë¡¼¥×\r\n¤³¤Î¥Õ¥¡¥¤¥ë¤ò¥À¥¦¥ó¥í¡¼¥É¤¹¤ë¥°¥ë¡¼¥×¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤¡£\r\n\r\n¼¡¤Îºî¶È\r\n¤³¤Î¥Õ¥¡¥¤¥ë¤Î¸å¤Ë¤â¤·Äɲä·¤¿¤¤Â¾¤Î¥Õ¥¡¥¤¥ë¤¬¤¢¤ì¤Ð¡¢¡Ö¿·µ¬¥Õ¥¡¥¤¥ë¤òÄɲáפòÁªÂò¤·¤Æ¤¯¤À¤µ¤¤¡£¤Þ¤¿¤Ï¡Ö¥Ú¡¼¥¸¤ËÌá¤ë¡×¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤¡£',1055602456,NULL); INSERT INTO international VALUES (71,'FileManager',14,'¥Õ¥¡¥¤¥ë¥Þ¥Í¡¼¥¸¥ã¡¼¤Ï¡¢¥µ¥¤¥È¾å¤Ç¥Õ¥¡¥¤¥ë¤ÎÇÛÃÖ´ÉÍý¤ò´Êñ¤Ë¤¹¤ë¤¿¤á¤ËÀ߷פµ¤ì¤Æ¤¤¤Þ¤¹¡£¥Õ¥¡¥¤¥ë¥Þ¥Í¡¼¥¸¥ã¡¼¤Ï¡¢Ã¯¤¬¥µ¥¤¥È¤«¤é¥Õ¥¡¥¤¥ë¤ò¸«¤ë¤«¡¢Ã¯¤¬¥µ¥¤¥È¤«¤é¥Õ¥¡¥¤¥ë¤ò¥À¥¦¥ó¥í¡¼¥É¤¹¤ë¤«¤òÀßÄꤹ¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£\r\n\r\n¥Æ¥ó¥×¥ì¡¼¥È\r\n¥Õ¥¡¥¤¥ë¥Þ¥Í¡¼¥¸¥ã¡¼¤Î¥ì¥¤¥¢¥¦¥È¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤¡£\r\n\r\n¥Ú¡¼¥¸ÈÖ¹æÉÕ¤±\r\n1¥Ú¡¼¥¸Åö¤¿¤ê¤Ë²¿¥Õ¥¡¥¤¥ëɽ¼¨¤·¤Þ¤¹¤«¡£\r\n\r\n¥À¥¦¥ó¥í¡¼¥É¥Õ¥¡¥¤¥ë¤òÄɲÃ\r\n¥À¥¦¥ó¥í¡¼¥É¥Õ¥¡¥¤¥ë¤ò¤¹¤°¤ËÄɲä·¤¿¤¤¾ì¹ç¤Ï¡¢¤³¤³¤ò¥Á¥§¥Ã¥¯¤·¤Æ¤¯¤À¤µ¤¤¡£',1055602381,NULL); -INSERT INTO international VALUES (73,'FAQ',14,'¼ÁÌä\r\nF.A.Q.¤Ëɽ¼¨¤·¤¿¤¤¼ÁÌä¤òÄɲ䷤Ƥ¯¤À¤µ¤¤¡£\r\n\r\n²óÅú\r\nÆþÎϤ·¤¿¼ÁÌä¤ËÂФ¹¤ë²óÅú¤òÄɲ䷤Ƥ¯¤À¤µ¤¤¡£\r\n\r\n¼¡¤Îºî¶È\r\n¼ÁÌä¤òÄɲä·¤¿¸å¤Ë¹¹¤ËÊ̤μÁÌä¤òÄɲä·¤¿¤¤¾ì¹ç¡¢¥Ç¥Õ¥©¥ë¥È¤Ç¤³¤ÎÀßÄê¤Î¤Þ¤Þ¤Ë¤·¤Æ¤¯¤À¤µ¤¤¡£',1055602285,NULL); -INSERT INTO international VALUES (71,'FAQ',14,'À¤³¦Ãæ¤Î¤Û¤È¤ó¤É¤Î¥¦¥§¥Ö¥µ¥¤¥È¡¢¥¤¥ó¥È¥é¥Í¥Ã¥È¡¢¥¨¥¯¥¹¥È¥é¥Í¥Ã¥È¤ÏF.A.Q.¥Ú¡¼¥¸¤ò»ý¤Ã¤Æ¤¤¤ë¤è¤¦¤Ç¤¹¡£¤³¤Îwobject¤ÏF.A.Q.¹½Ãۤμê½õ¤±¤ò¤·¤Þ¤¹¡£\r\n\r\n¥Æ¥ó¥×¥ì¡¼¥È\r\n¤³¤ÎF.A.Q.¤Î¥ì¥¤¥¢¥¦¥È¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤¡£\r\n\r\n¼¡¤Îºî¶È\r\n¤³¤Î¸å¤ËÊ̤μÁÌä¤òÄɲä·¤¿¤¤¾ì¹ç¡Ö¼ÁÌä¤òÄɲáפòÁªÂò¤·¤Æ¤¯¤À¤µ¤¤¡£\r\n\r\nÃí : °Ê²¼¤Î¥¹¥¿¥¤¥ë¤Ï¡¢´û¸¤Î¥Æ¥ó¥×¥ì¡¼¥ÈÃæ¤ÇF.A.Q.ÆÃÍ­¤Î¤â¤Î¤Ç¤¹¡£\r\n\r\n.faqQuestion\r\nF.A.Q.¤Î¼ÁÌä¤Ç¤¹¡£Åú¤¨¤È¶èÊ̤·¤Æ¤¯¤À¤µ¤¤¡£',1055602213,NULL); INSERT INTO international VALUES (76,'EventsCalendar',14,'¥¤¥Ù¥ó¥È¤òºï½ü',1055602122,NULL); INSERT INTO international VALUES (71,'EventsCalendar',14,'¥¤¥Ù¥ó¥È¥«¥ì¥ó¥À¡¼¤Ï¤¢¤é¤æ¤ëÁÈ¿¥¤Ç¤â¤Ã¤È¤â½ÅÍפʡ֥¤¥Ù¥ó¥ÈÆüÄø¡×¤ò´ÉÍý¤¹¤ë¤¿¤á¤Ë¡¢Â¿¤¯¤Î¥¤¥ó¥È¥é¥Í¥Ã¥È¤Ç»È¤ï¤ì¤Æ¤¤¤Þ¤¹¡£¤Þ¤¿Ã¯¤¬¤É¤Î¥¤¥Ù¥ó¥È¤Ë»²²Ã¤¹¤ë¤«¡¢¤¤¤Ä¤É¤Î¤è¤¦¤Ê¥¤¥Ù¥ó¥È¤¬¹Ô¤ï¤ì¤ë¤«¤ò¡¢¸ÜµÒ¤Ï¼«¿È¤Î¥µ¥¤¥È¤Î¥¤¥Ù¥ó¥È¥«¥ì¥ó¥À¡¼¤Ç³Îǧ¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£\r\n\r\n¼çÍץƥó¥×¥ì¡¼¥È\r\n¥¤¥Ù¥ó¥È¥«¥ì¥ó¥À¡¼¤Î¥ì¥¤¥¢¥¦¥È¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤¡£\r\n\r\n¥¤¥Ù¥ó¥È¥Æ¥ó¥×¥ì¡¼¥È\r\n¥¤¥Ù¥ó¥È¥«¥ì¥ó¥À¡¼¤Î¸ÄÊ̤Υ¤¥Ù¥ó¥È¤Î¥ì¥¤¥¢¥¦¥È¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤¡£\r\n\r\n³«»Ï·î\r\n¥«¥ì¥ó¥À¡¼¤Î³«»Ï·î¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤¡£¡Ö¸½ºß¡×¤òÁªÂò¤¹¤ì¤Ð¡¢¸½ºß¤Î·î¤«¤é¥«¥ì¥ó¥À¡¼¤ò³«»Ï¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¤³¤ì¤Ï·î¤«¤é·î¤ØÊѹ¹²Äǽ¤Ç¤¹¡£¡Ö¥«¥ì¥ó¥À¡¼¤ÎÀèÆ¬¡×¤òÁªÂò¤¹¤ì¤Ð¡¢¥«¥ì¥ó¥À¡¼¤Î°ìÈÖ½é¤á¤ÎÆü¤«¤é³«»Ï¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£\r\n\r\n½ªÎ»·î\r\n¥«¥ì¥ó¥À¡¼¤Î½ªÎ»·î¤òÁªÂò¤·¤Æ²¼¤µ¤¤¡£¡Ö³«»Ï¤«¤é¡û¥ö·î¸å¤òɽ¼¨¡×¤òÁªÂò¤¹¤ì¤Ð¡¢³«»Ï·î¤«¤é¤½¤Î´ü´Ö¤Î¤ßɽ¼¨¤µ¤ì¡¢¤½¤Î´ü´Ö¤Ç¥«¥ì¥ó¥À¡¼¤Ï½ªÎ»¤·¤Þ¤¹¡£¡Ö¸½ºß¡×¤òÁªÂò¤¹¤ì¤Ð¡¢¸½ºß¤Î·î¤Ç¥«¥ì¥ó!\n¥À¡¼¤Ï½ªÎ»¤·¤Þ¤¹¡£¡Ö¥«¥ì¥ó¥À¡¼¤Î°ìÈֺǸåÈø¡×¤òÁªÂò¤¹¤ì¤Ð¥«¥ì¥ó¥À¡¼¤ÎºÇ¸å¤ÎÆü¤Ç½ªÎ»¤·¤Þ¤¹¡£\r\n\r\n¥Ç¥Õ¥©¥ë¥È·î\r\n¥Ó¥¸¥¿¡¼¸¢¸Â¼Ô¤¬¥«¥ì¥ó¥À¡¼¥Ú¡¼¥¸¤ËÍ褿»þ¡¢¥«¥ì¥ó¥À¡¼¤ò³«»Ï¤¹¤ë·î¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤¡£\r\n\r\n¥¤¥Ù¥ó¥È·ï¿ô\r\n¥ê¥¹¥È·Á¼°¤Î¥«¥ì¥ó¥À¡¼¤ò»ÈÍѤ¹¤ë¾ì¹ç¡¢1¥Ú¡¼¥¸¤Ë¤¤¤¯¤Ä¤Î¥¤¥Ù¥ó¥È¤òɽ¼¨¤¹¤ë¤«¤òÀßÄꤷ¤Þ¤¹¡£\r\n\r\n¥¤¥Ù¥ó¥ÈÄɲäò³¹Ô\r\n¥¤¥Ù¥ó¥È¤òÄɲä·¤¿¸å¡¢Ê̤Υ¤¥Ù¥ó¥È¤ò¤¹¤°¤Ë¥«¥ì¥ó¥À¡¼¤ËÄɲä·¤¿¤¤¾ì¹ç¤Ï¡Ö¤Ï¤¤¡×¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤¡£\r\n\r\nÃí¡¨´û¤Ë½ªÎ»¤·¤¿¥¤¥Ù¥ó¥È¤Ï¥«¥ì¥ó¥À¡¼¾å¤Ëɽ¼¨¤µ¤ì¤Þ¤»¤ó¡£\r\n\r\nÃí¡¨°Ê²¼¤Î¥¹¥¿¥¤¥ë¤Ï¥¤¥Ù¥ó¥È¥«¥ì¥ó¥À¡¼ÆÈ¼«¤Î¤â¤Î¤Ç¤¹¡£\r\n\r\n.eventTitle\r\n¥¤¥Ù¥ó¥È¤Î¥¿¥¤¥È¥ë¡£',1055602060,NULL); INSERT INTO international VALUES (894,'WebGUI',14,'¥Ç¥£¥¹¥«¥Ã¥·¥ç¥ó¤òµö²Ä',1055601782,NULL); @@ -13693,9 +13218,6 @@ INSERT INTO international VALUES (813,'WebGUI',14,' INSERT INTO international VALUES (808,'WebGUI',14,'¥°¥ë¡¼¥×¤Ë¥á¡¼¥ë¤òÁ÷¤ë',1055598745,NULL); INSERT INTO international VALUES (807,'WebGUI',14,'¥°¥ë¡¼¥×Æâ¤Î¥°¥ë¡¼¥×¤ò´ÉÍý',1055598723,NULL); INSERT INTO international VALUES (806,'WebGUI',14,'¥°¥ë¡¼¥×¤òºï½ü',1055598697,NULL); -INSERT INTO international VALUES (805,'WebGUI',14,'¥¹¥¿¥¤¥ë¤òºï½ü',1055598677,NULL); -INSERT INTO international VALUES (804,'WebGUI',14,'¥¹¥¿¥¤¥ë¤ò¥³¥Ô¡¼',1055598656,NULL); -INSERT INTO international VALUES (803,'WebGUI',14,'¥¹¥¿¥¤¥ë¤òÊÔ½¸',1055598636,NULL); INSERT INTO international VALUES (802,'WebGUI',14,'WebGUI¤Ï¸½ºß¥Ú¡¼¥¸Åý·×¤ò¼è¤Ã¤Æ¤¤¤Þ¤»¤ó¡£ÀßÄêÃæ¤Î¡ÖÀßÄê¡×¤ò»ÈÍѲÄǽ¤Ë¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£',1055598595,NULL); INSERT INTO international VALUES (801,'WebGUI',14,'Wobject¤ÎÁê¸ß´ØÏ¢',1055598525,NULL); INSERT INTO international VALUES (800,'WebGUI',14,'¥æ¥Ë¡¼¥¯¥Ó¥¸¥¿¡¼¿ô',1055598428,NULL); @@ -13754,8 +13276,6 @@ INSERT INTO international VALUES (59,'USS',14,' INSERT INTO international VALUES (58,'USS',14,'Á°¤ÎÅê¹Æ',1055515857,NULL); INSERT INTO international VALUES (5,'USS',14,'Åê¹Æ¤ÏµÑ²¼¤µ¤ì¤Þ¤·¤¿¡£',1055515824,NULL); INSERT INTO international VALUES (4,'USS',14,'Åê¹Æ¤¬¾µÇ§¤µ¤ì¤Þ¤·¤¿¡£',1055515770,NULL); -INSERT INTO international VALUES (38,'USS',14,'¡Ê¤¢¤Ê¤¿¤¬HTML/¥ê¥Ã¥Á¥Æ¥­¥¹¥È¤ÇÅê¹Æ¤ò½ñ¤¤¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢¤¤¤¤¤¨¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤¡£¡Ë',1055515692,NULL); -INSERT INTO international VALUES (34,'USS',14,'²þ¹Ô¤ò¡ãbr¡ä¤ËÊÑ´¹',1055515649,NULL); INSERT INTO international VALUES (30,'USS',14,'Åê¹Æ¤´¤È¤Î¥«¥ë¥ÞÃÍ',1055515620,NULL); INSERT INTO international VALUES (3,'USS',14,'¾µÇ§ÂÔ¤Á¤Î¿·µ¬¥æ¡¼¥¶Åê¹Æ¤¬¤¢¤ê¤Þ¤¹¡£',1055515600,NULL); INSERT INTO international VALUES (29,'USS',14,'¥æ¡¼¥¶¡¼Åê¹Æ¥·¥¹¥Æ¥à',1055515572,NULL); @@ -13774,7 +13294,6 @@ INSERT INTO international VALUES (12,'Survey',14,' INSERT INTO international VALUES (73,'SiteMap',14,'¤³¤ì¤Ï¥µ¥¤¥È¥Þ¥Ã¥×¥Æ¥ó¥×¥ì¡¼¥È¤ËÍøÍѲÄǽ¤Ê¥Æ¥ó¥×¥ì¡¼¥ÈÊÑ¿ô¤Î¥ê¥¹¥È¤Ç¤¹¡£\r\n\r\npage_loop\r\n¤³¤Î¥ë¡¼¥×¤Ï¤¹¤Ù¤Æ¤Î¥Ú¡¼¥¸¤Î¥µ¥¤¥È¥Þ¥Ã¥×¤Ë´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹¡£\r\n\r\npage.indent\r\n¥Ä¥ê¡¼¾õ¤Ë¥Ú¡¼¥¸¤Î³¬Áؤò¼¨¤¹¡¢¥Ú¡¼¥¸¤Î¥¤¥ó¥Ç¥ó¥È¤Î¥¹¥Ú¡¼¥¹Éý¤Ç¤¹¡£\r\n\r\npage.url\r\n¥Ú¡¼¥¸¤Ø¤ÎURL¡£\r\n\r\npage.id\r\nWebGUI¤Ç»ÈÍѤµ¤ì¤ë¥Ú¡¼¥¸¤ÎID¡£\r\n\r\npage.title\r\n¥Ú¡¼¥¸¤Î¥¿¥¤¥È¥ë¡£\r\n\r\npage.menutitle\r\n¥Ê¥Ó¥²¡¼¥·¥ç¥ó¤Çɽ¼¨¤µ¤ì¤ë¥Ú¡¼¥¸¤Î¥¿¥¤¥È¥ë¡£\r\n\r\npage.synopsis\r\n¥Ú¡¼¥¸¤Î¥³¥ó¥Æ¥ó¥Ä¤Îµ­½Ò(¤â¤·¤¢¤ì¤Ð)¡£\r\n\r\npage.isRoot\r\n¥Ú¡¼¥¸¤¬¥ë¡¼¥È¤«¤É¤¦¤«¼¨¤·¤Þ¤¹¡£\r\n\r\npage.isTop\r\n¤³¤Î¥Ú¡¼¥¸¤¬¥Ê¥Ó¥²¡¼¥·¥ç¥ó¥Ä¥ê¡¼¤Î°ìÈÖ¾å¤Î³¬Áؤˤ¢¤ë¤«¤É¤¦¤«¤ò¼¨¤·¤Þ¤¹¡£',1055514617,NULL); INSERT INTO international VALUES (71,'SiteMap',14,'¥µ¥¤¥È¥Þ¥Ã¥×¤ÏWebGUIÆâ¤ÇÊ䭥ʥӥ²¡¼¥·¥ç¥ó¤òÄ󶡤¹¤ë¤¿¤á¤Ë»ÈÍѤµ¤ì¤Þ¤¹¡£¥µ¥¤¥È¤Î¤¹¤Ù¤Æ¤Î¥Ú¡¼¥¸¤ò³¬ÁØÅª¤Ëɽ¼¨¤Ç¤­¤ë¤³¤Î¥µ¥¤¥È¥Þ¥Ã¥×¤ò¡¢¥»¥Ã¥È¥¢¥Ã¥×¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¥µ¥¤¥È¥Þ¥Ã¥×¤ò»ÈÍѤˤè¤Ã¤Æ¥µ¥¤¥È¤Î¤¢¤ë³¬ÁØ¥ì¥Ù¥ë¤Ë¥Ê¥Ó¥²¡¼¥·¥ç¥ó¤òÄ󶡤¹¤ë¤³¤È¤¬²Äǽ¤Ë¤Ê¤ê¤Þ¤¹¡£\r\n\r\n¥Æ¥ó¥×¥ì¡¼¥È\r\n¥µ¥¤¥È¥Þ¥Ã¥×ÍѤ˥쥤¥¢¥¦¥È¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤¡£\r\n\r\n¥¹¥¿¡¼¥È\r\n¥µ¥¤¥È¥Þ¥Ã¥×¤ò³«»Ï¤¹¤ë¥Ú¡¼¥¸¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤¡£\r\n\r\n³¬ÁؤΥì¥Ù¥ë\r\n¤É¤Î¤¯¤é¤¤¤Î¥ì¥Ù¥ë¤Î¿¼¤µ¤Î³¬Áؤò¥µ¥¤¥È¥Þ¥Ã¥×¤Çɽ¼¨¤·¤Þ¤¹¤«¡©¤â¤·0(¥¼¥í)¤¬»ØÄꤵ¤ì¤ë¤È¡¢Æ±¥ì¥Ù¥ë¤Î³¬Áؤ¬É½¼¨¤µ¤ì¤Þ¤¹¡£\r\n\r\n¥¤¥ó¥Ç¥ó¥È\r\n¤É¤Î¤¯¤é¤¤¤Î¥¤¥ó¥Ç¥ó¥È¤ò³Æ³¬ÁØ¥ì¥Ù¥ë¤Ç¤·¤Þ¤¹¤«¡©',1055514472,NULL); INSERT INTO international VALUES (71,'SQLReport',14,'SQL¥ì¥Ý¡¼¥È¤ÏWebGUI¤ÎÃæ¤Ç¤âºÇ¤â¶¯ÎϤÊwobject¤Ç¤¹¡£SQL¥ì¥Ý¡¼¥È¤Ï¡¢¥æ¡¼¥¶¡¼¤¬SQL¥ì¥Ý¡¼¥È¤Ë¥¢¥¯¥»¥¹¤·¡¢¤¹¤Ù¤Æ¤Î¥Ç¡¼¥¿¥Ù¡¼¥¹¤«¤é¥Ç¡¼¥¿¤ò¥ê¥¯¥¨¥¹¥È¤¹¤ë¤³¤È¤ò²Äǽ¤Ë¤·¤Þ¤¹¡£SQL¥ì¥Ý¡¼¥È¤Ï²ñ·×¥Ç¡¼¥¿¥Ù¡¼¥¹¤«¤éÇä¤ê¾å¤²¤òÆÀ¤¿¤ê¡¢¥¦¥§¥Ö¥µ¥¤¥È¾å¤Î¤¹¤Ù¤Æ¤Î·Ç¼¨ÈĤò¤µ¤é¤ËÍ×Ì󤹤뤳¤È¤Ç¤â¤¹¤Ð¤é¤·¤¤¸ú²Ì¤òȯ´ø¤·¤Þ¤¹¡£\r\n\r\n¥¯¥¨¥ê¡¼¾å¤Ç¥Þ¥¯¥í½èÍý¤ò¼Â¹Ô¤·¤Þ¤¹¤«¡©\r\n¥¯¥¨¥ê¡¼¤ÎÃæ¤ÇWebGUI¥Þ¥¯¥í¤ò»ÈÍѤ·¤¿¤±¤ì¤Ð¡¢¤³¤Î¥Ü¥Ã¥¯¥¹¤ò¥Á¥§¥Ã¥¯¤·¤Æ¤¯¤À¤µ¤¤¡£\r\n\r\n¥Ç¥Ð¥Ã¥°¤·¤Þ¤¹¤«¡©\r\n¤â¤·¥Ç¥Ð¥Ã¥®¥ó¥°¤ä¥Ú¡¼¥¸¤Î¥¨¥é¡¼¥á¥Ã¥»¡¼¥¸¤òɽ¼¨¤·¤¿¤±¤ì¤Ð¡¢¤³¤Î¥Ü¥Ã¥¯¥¹¤ò¥Á¥§¥Ã¥¯¤·¤Æ¤¯¤À¤µ¤¤¡£\r\n\r\n¥¯¥¨¥ê¡¼\r\n¤³¤ì¤Ïɸ½à¤ÎSQL¤Î¥¯¥¨¥ê¡¼¤Ç¤¹¡£¤¢¤Ê¤¿¤¬SQL¤Ë´·¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¡¢Plain Black Software¤ÏSQL¤ª¤è¤Ó¥Ç¡¼¥¿¥Ù¡¼¥¹´ÉÍý¤Î¥È¥ì¡¼¥Ë¥ó¥°¥³¡¼¥¹¤òÄ󶡤·¤Þ¤¹¡£¥Þ¥¯¥í¤Î^FormParam()¤Î»ÈÍѤˤè¤ê¡¢¼ÁÌä¤ò¤è¤ê¥À¥¤¥Ê¥ß¥Ã¥¯¤Ë¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£\r\n\r\n¥ì¥Ý¡¼¥È¥Æ¥ó¥×¥ì¡¼¥È\r\n¤³¤Î¥ì¥Ý!\n¡¼¥È¤ò¤É¤Î¤è¤¦¤Ëɽ¼¨¤¹¤ë¤«¤ò·èÄꤹ¤ë¥ì¥¤¥¢¥¦¥È¤Î¥Æ¥ó¥×¥ì¡¼¥È¤Ç¤¹¡£Ä̾ï¤Ï¥ì¥Ý¡¼¥È¤òÀ¸À®¤¹¤ë¤Î¤ËHTML¥Æ¡¼¥Ö¥ë¤ò»ÈÍѤ·¤Þ¤¹¡£¤³¤Î¥Õ¥£¡¼¥ë¥É¤ò¶õÇò¤Ë¤¹¤ë¤È¡¢ÀßÄê¤Ë´ð¤Å¤¤¤Æ¥Æ¥ó¥×¥ì¡¼¥È¤¬À¸À®¤µ¤ì¤Þ¤¹¡£\r\n\r\nSQL¥ì¥Ý¡¼¥È¤òÀ¸À®¤¹¤ë¤Î¤Ë»ÈÍѤµ¤ì¤ë¡¢ÆÃÊ̤ʥޥ¯¥í¤ÎÆÃħ¤Ç¤¹¡£Î㤨¤Ð¡Ê¡°¡¢¡°0¡¢¡°1¡¢¡°2¡¢¡°3¡¢¡Ë¤Ê¤É¤Ç¤¹¡£¤³¤ì¤é¤Î¥Þ¥¯¥í¤Ï¡¢¾åµ­¤Î¥×¥í¥»¥¹¥Þ¥¯¥í¥Ü¥Ã¥¯¥¹¤ò¥Á¥§¥Ã¥¯¤·¤¿¤«¤É¤¦¤«¤Ë¤«¤«¤ï¤é¤º½èÍý¤µ¤ì¤Þ¤¹¡£¡°-¥Þ¥¯¥í¤È¤Ï¡¢¥É¥­¥å¥á¥ó¥ÈÆâ¤Ç¥ì¥Ý¡¼¥È¤¬¥ë¡¼¥×¤·¤Æ»Ï¤Þ¤ê½ªÎ»¤¹¤ë¤Þ¤Ç¤Ëʬ´ô¤·¤¿¥Ý¥¤¥ó¥È¤ËÁêÅö¤·¤Þ¤¹¡£¿ôÃÍ¥Þ¥¯¥í¤È¤Ï¡¢¼ÁÌ䤫¤éÊÖ¤µ¤ì¤ë¥Ç¡¼¥¿¥Õ¥£¡¼¥ë¥É¤òɽ¤ï¤·¤Þ¤¹¡£Êä­¥Þ¥¯¥í¤Ë¤Ï¡°rownum¤¬¤¢¤ê¤Þ¤¹¡£¤³¤ì¤Ï½ÐÎϤÇÈÖ¹æ¤òÉÕ¤±¤ëɬÍפ¬¤¢¤ë¾ì¹ç¡¢1¤«¤é¥¯¥¨¥ê¡¼¤ÎÎó¤ò¿ô¤¨¤Þ¤¹¡£\r\n\r\nDSN(Data Source Name)\r\n¥Ç¡¼¥¿¥½¡¼¥¹Ì¾¤È¤Ï¡¢Perl¤ò»ÈÍѤ·¤Æ¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¾ì½ê¤òµ­½Ò¤¹¤ë¼±ÊÌ̾¤Ç¤¹¡£¥Õ¥©¡¼¥Þ¥Ã¥È¤ÏDBI:[driver]:[database name]:[host]¡£\r\n\r\nÎã:DBI:mysql:WebGUI\r\n\r\n¥Ç¡¼¥¿¥Ù¡¼¥¹¥æ¡¼¥¶¡¼Ì¾\r\nDSN¤ËÀܳ¤¹¤ë»þ¤Ë»ÈÍѤ¹¤ë¥æ¡¼¥¶¡¼Ì¾¡£\r\n\r\n¥Ç¡¼¥¿¥Ù¡¼¥¹¥Ñ¥¹¥ï¡¼¥É\r\nDSN¤ËÀܳ¤¹¤ë»þ¤Ë»ÈÍѤ¹¤ë¥Ñ¥¹¥ï¡¼¥É¡!\n£\r\n\r\n¥Ú¡¼¥¸¤¢¤¿¤ê¤ÎÎó¿ô\r\n¤É¤ì¤À¤±¤ÎÎó¤ò1¥Ú¡¼¥¸¤Ëɽ¼¨¤·¤Þ¤¹¤«¡£\r\n\r\n²þ¹Ô¤ò¡ãbr¡ä¤ËÊÑ´¹¤·¤Þ¤¹¤«¡©\r\n¥Ç¡¼¥¿Ãæ¤Î²þ¹Ô¤ò¡¢HTML¤Î²þ¹Ô¥¿¥°¤ËÊÑ´¹¤·¤Þ¤¹¤«¡©',1055514141,NULL); -INSERT INTO international VALUES (13,'SQLReport',14,'²þ¹Ô¤ò¡ãbr¡ä¤ËÊÑ´¹¤·¤Þ¤¹¤«¡©',1055513411,NULL); INSERT INTO international VALUES (63,'Product',14,'²¼µ­¤Ï¾¦Éʥƥó¥×¥ì¡¼¥È¤Ë¤ª¤¤¤ÆÍøÍѲÄǽ¤Ê¥Æ¥ó¥×¥ì¡¼¥ÈÊÑ¿ô¤Î¥ê¥¹¥È¤Ç¤¹¡£\r\n\r\nbrochure.icon\r\n¥Ñ¥ó¥Õ¥ì¥Ã¥ÈÍѤΥ¢¥¤¥³¥ó¤Ø¤ÎURL¡£\r\n\r\nbrochure.url\r\n¥Ñ¥ó¥Õ¥ì¥Ã¥È¤ò¥À¥¦¥ó¥í¡¼¥É¤¹¤ëURL¡£\r\n\r\nbrochure.label\r\n¥Ñ¥ó¥Õ¥ì¥Ã¥ÈURL¥é¥Ù¥ë¡£\r\n\r\nwarranty.icon\r\nÊݾڽñ¥¢¥¤¥³¥ó¤Ø¤ÎURL¡£\r\n\r\nwarranty.url\r\nÊݾڽñ¤ò¥À¥¦¥ó¥í¡¼¥É¤¹¤ëURL¡£\r\n\r\nwarranty.label\r\nÊݾڽñURL¤Î¥é¥Ù¥ë¡£\r\n\r\nimage1\r\n¥¢¥Ã¥×¥í¡¼¥É¤¹¤ë¾¦ÉÊ¥¤¥á¡¼¥¸1¤ÎURL¡£\r\n\r\nthumbnail1\r\n¥¢¥Ã¥×¥í¡¼¥É¤¹¤ë¾¦ÉÊ¥¤¥á¡¼¥¸1¤Î¥µ¥à¥Í¥¤¥ë¤ÎURL\r\n\r\nimage2\r\n¥¢¥Ã¥×¥í¡¼¥É¤¹¤ë¾¦ÉÊ¥¤¥á¡¼¥¸2¤ÎURL¡£\r\n\r\nthumbnail2\r\n¥¢¥Ã¥×¥í¡¼¥É¤¹¤ë¾¦ÉÊ¥¤¥á¡¼¥¸2¤Î¥µ¥à¥Í¥¤¥ë¤ÎURL\r\n\r\nimage3\r\n¥¢¥Ã¥×¥í¡¼¥É¤¹¤ë¾¦ÉÊ¥¤¥á¡¼¥¸3¤ÎURL¡£\r\n\r\nthumbnail3\r\n¥¢¥Ã¥×¥í¡¼¥É¤¹¤ë¾¦ÉÊ¥¤¥á¡¼¥¸3¤Î¥µ¥à¥Í¥¤¥ë¤ÎURL\r\n\r\naddfeature.url\r\n¾¦Éʤ˾¦ÉÊ¤ÎÆÃħ¤ò²Ã¤¨¤ëURL¡£\r\n\r\naddfeature.labeladd\r\n¾¦ÉÊ¤ÎÆÃħ¥ê¥ó¥¯¤Î¥é¥Ù¥ë¡£\r\n\r\nfeature_loo!\np\r\n¤³¤Î¥ë¡¼¥×¤Ï¡¢¾¦Éʤ˥ê¥ì¡¼¥·¥ç¥ó¤µ¤ì¤¿¾¦ÉÊ¤ÎÆÃħ¤ò¤¹¤Ù¤Æ´Þ¤ó¤Ç¤¤¤Þ¤¹¡£\r\n\r\nfeature.controls\r\nWebGUI·Ð±Ä¿Ø¤Ï¤³¤Î¾¦ÉÊ¤ÎÆÃħ¤ò´ÉÍý¤·¤Þ¤¹¡£\r\n\r\nfeature.feature\r\n¾¦ÉÊ¤ÎÆÃħ¼«ÂΤΥƥ­¥¹¥È¡£\r\n\r\naddbenefit.url\r\n¾¦ÉʤËÍøÅÀ¤òÄɲ乤ëURL¡£\r\n\r\naddbenefit.labeladd\r\nÍøÅÀ¥ê¥ó¥¯¤Î¥é¥Ù¥ë¡£\r\n\r\nbenefit_loop\r\n¤³¤Î¥ë¡¼¥×¤Ï¡¢¾¦ÉʤÎÍøÅÀ¤ò´Þ¤ó¤Ç¤¤¤Þ¤¹¡£\r\n\r\nbenefit.benefit\r\nÍøÅÀ¤Î¥Æ¥­¥¹¥È¼«ÂΡ£\r\n\r\nbenefit.controls\r\nWebGUI·Ð±Ä¿Ø¤Ï¤³¤ÎÍøÅÀ¤ò´ÉÍý¤·¤Þ¤¹¡£\r\n\r\naddspecification.url\r\n¾¦Éʤ˻ÅÍͤòÄɲ乤ëURL¡£\r\n\r\naddspecification.label\r\n»ÅÍͤΥê¥ó¥¯¤òÄɲ乤뤿¤á¤Î¥é¥Ù¥ë¡£\r\n\r\nspecification_loop\r\n¾¦Éʤȥê¥ì¡¼¥·¥ç¥ó¤µ¤ì¤¿»ÅÍͤΥꥹ¥È¡£\r\n\r\nspecification.controls\r\nWebGUI·Ð±Ä¿Ø¤Ï¤³¤Î»ÅÍͤδÉÍý¤ò¤·¤Þ¤¹¡£\r\n\r\nspecification.specification\r\n»ÅÍͼ«ÂΤΥƥ­¥¹¥È¡£\r\n\r\nspecification.units\r\n»ÅÍͤÎñ°Ì¡£Îã:¥á¡¼¥¿¡¼\r\n\r\nspecification.label\r\n»ÅÍͤΥé¥Ù¥ë¡£Îã:¹â¤µ\r\n\r\naddaccessory.url\r\n¾¦Éʤ˥¢¥¯¥»¥µ¥ê¤òÄɲ乤ëURL¡£\r\n\r\naddaccessory.labe!\nl\r\n¥¢¥¯¥»¥µ¥ê¥ê¥ó¥¯¤Î¥é¥Ù¥ë¡£\r\n\r\naccessory_loop\r\n¤³¤Î¥ë¡¼¥×¤Ï¡¢¾¦Éʤ˥ê¥ì¡¼¥·¥ç¥ó¤µ¤ì¤¿¥¢¥¯¥»¥µ¥ê¤ò¤¹¤Ù¤Æ´Þ¤ó¤Ç¤¤¤Þ¤¹¡£\r\n\r\naccessory.url\r\n¥ê¥ó¥¯¤·¤¿¥¢¥¯¥»¥µ¥ê¤ÎURL¡£\r\n\r\naccessory.title\r\n¥ê¥ó¥¯¤·¤¿¥¢¥¯¥»¥µ¥ê¤Î¥¿¥¤¥È¥ë¡£\r\n\r\naccessory.controls\r\n¥¢¥¯¥»¥µ¥ê¤ÎWebGUI´ÉÍý¥³¥ó¥È¥í¡¼¥ë¡£\r\n\r\naddRelatedProduct.url\r\n¾¦Éʤ˴ØÏ¢¾¦ÉʤòÄɲ乤ëURL¡£\r\n\r\naddRelatedProduct.label\r\n´ØÏ¢¾¦ÉÊ¥ê¥ó¥¯¤Î¥é¥Ù¥ë¡£\r\n\r\nrelatedproduct.url\r\n¥ê¥ó¥¯¤·¤¿´ØÏ¢¾¦ÉʤÎURL¡£\r\n\r\nrelatedproduct.title\r\n¥ê¥ó¥¯¤·¤¿´ØÏ¢¾¦ÉʤΥ¿¥¤¥È¥ë¡£\r\n\r\nrelatedproduct.controls\r\n´ØÏ¢¾¦ÉʤÎWebGUI´ÉÍý¥³¥ó¥È¥í¡¼¥ë¡£',1055513310,NULL); INSERT INTO international VALUES (50,'Product',14,'ÍøÅÀ¤È¤Ï¾¦Éʤò»ÈÍѤ¹¤ë¤³¤È¤Ë¤è¤Ã¤Æ¡¢¥æ¡¼¥¶¡¼¤Ë¤É¤Î¤è¤¦¤ÊÍø±×·ë²Ì¤¬½Ð¤ë¤«¤òɽ¤·¤Þ¤¹¡£¤¢¤Ê¤¿¤Î¾¦Éʤ¬¤É¤Î¤è¤¦¤Ë¤è¤¤¤«¤Î¥¢¥Ô¡¼¥ë¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤¡£ÍøÅÀ¤òÄɲ乤ì¤Ð¡¢¾¦ÉÊÆÃħ¤âÄɲä·¤¿¤¤¤È»×¤¦¤«¤â¤·¤ì¤Þ¤»¤ó¤Í¡£\r\n\r\nÍøÅÀ\r\n¿·¤·¤¤ÍøÅÀ¤òÆþÎϤ¹¤ë¤«¡¢¤¢¤ë¤¤¤Ï´û¤ËÅÐÏ¿ºÑ¤ß¤ÎÍøÅÀ¤«¤éÁªÂò¤·¤Þ¤¹¡£\r\n\r\n¤½¤Î¾¤ÎÍøÅÀ¤òÄɲä·¤Þ¤¹¤«¡©\r\n¤¢¤Ê¤¿¤¬¤½¤Î¾¤ÎÍøÅÀ¤òÄɲä·¤¿¤¤¾ì¹ç¤Ï¡¢¡Ö¤Ï¤¤¡×¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤¡£',1055512930,NULL); INSERT INTO international VALUES (45,'Product',14,'¥¢¥¯¥»¥µ¥ê¤Ï¾¤Î¾¦Éʤò¤è¤ê¤è¤¯¤¹¤ëÉÕ°¤Î¾¦ÉʤǤ¹¡£\r\n\r\n¥¢¥¯¥»¥µ¥ê\r\n´û¤ËÆþÎϤ·¤¿¾¦Éʥꥹ¥È¤«¤éÁªÂò¤·¤Æ¤¯¤À¤µ¤¤¡£\r\n\r\n¤½¤Î¾¤Î¥¢¥¯¥»¥µ¥ê¡¼¤òÄɲä·¤Þ¤¹¤«¡©\r\n¤â¤·¤¢¤Ê¤¿¤¬Â¾¤Î¥¢¥¯¥»¥µ¥ê¤òÄɲä·¤¿¤¤¾ì¹ç¤Ï¡Ö¤Ï¤¤¡×¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤¡£',1055813684,NULL); @@ -13785,19 +13304,13 @@ INSERT INTO international VALUES (4,'Poll',14,' INSERT INTO international VALUES (71,'Poll',14,'Åêɼ¤È¤Ï¤¤¤í¤¤¤í¤Ê¥È¥Ô¥Ã¥¯¾å¤Ç¥æ¡¼¥¶¡¼¤¬¤¢¤Ê¤¿¤ËÂФ·¤Æ¤É¤Î¤è¤¦¤Ê°õ¾Ý»ý¤Ã¤Æ¤¤¤ë¤«¤òÃΤꤿ¤¤¤Ê¤Éޥޥޥ¿§¡¹¤ÊÍÑÅӤ˻ÈÍѤ¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£\r\n\r\nÍ­¸ú\r\n¤³¤Î¥Ü¥Ã¥¯¥¹¤Ë¥Á¥§¥Ã¥¯¤¬Æþ¤Ã¤Æ¤¤¤ë¾ì¹ç¡¢¥æ¡¼¥¶¡¼¤ÏÅêɼ¤¹¤ë¤³¤È¤¬²Äǽ¤Ë¤Ê¤ê¤Þ¤¹¡£¤Þ¤¿¥æ¡¼¥¶¡¼¤ÏÅêɼ¤Î·ë²Ì¤ò¸«¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£\r\n\r\nÅêɼ¤¹¤ë¥°¥ë¡¼¥×\r\nÅêɼ¤¹¤ë¥°¥ë¡¼¥×¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤¡£\r\n\r\nÅêɼÅö¤¿¤ê¤Î¥«¥ë¥ÞÃÍ\r\n¥æ¡¼¥¶¡¼¤¬Åêɼ¤¹¤ë¾ì¹ç¡¢¤É¤ì¤À¤±¤Î¥«¥ë¥Þ¤ò¤½¤Î¥æ¡¼¥¶¡¼¤ËÍ¿¤¨¤ë¤«ÀßÄê¤Ç¤­¤Þ¤¹¡£\r\n\r\n¥°¥é¥ÕÉý\r\nÅêɼ·ë²Ì¥°¥é¥Õ¤ÎÉý¤Ç¤¹¡£¥Ô¥¯¥»¥ëñ°Ì¤Ç¤¹¡£\r\n\r\n¼ÁÌä\r\n¤¢¤Ê¤¿¤¬¥æ¡¼¥¶¤Ë¿Ò¤Í¤¿¤¤¼ÁÌä¤Ç¤¹¡£\r\n\r\n²óÅú\r\n¤¢¤Ê¤¿¤Î¼ÁÌä¤ËÂФ¹¤ëÅú¤¨¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤¡£1¹Ô¤Ë¤Ä¤­1¤Ä¤Î²óÅú¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤¡£ºÇÂç20¸Ä¤Î²óÅú¤òÆþÎϲÄǽ¤Ç¤¹¡£\r\n\r\n²óÅú¤ò¥é¥ó¥À¥à¤Ë¤·¤Þ¤¹¤«¡©\r\n¥æ¡¼¥¶¡¼¤ÎÅêɼ¤Î²óÅú¤¬Æ±·¹¸þ¤Ë¤Ê¤é¤Ê¤¤¤è¤¦¤Ë¡¢²óÅú¤òǤ°Õ¤Î½ç¤ËʤÙÂØ¤¨¤¿¤Û¤¦¤¬¤è¤¤¤Ç¤·¤ç¤¦¡£Ëè²óÅêɼ¤Î²óÅú¤ò¥é¥ó¥À¥à¤¹¤ë¤¿¤á¤Ë¤Ï¡Ö¤Ï¤¤¡×¤òÁªÂò¤·¤Æ¤¯¤À¤µ!\n¤¤¡£\r\n\r\nÅêɼ¤ò¥ê¥»¥Ã¥È\r\n¤³¤ÎÅêɼ¤ò¥ê¥»¥Ã¥È¤·¤Þ¤¹¡£\r\n\r\nÃí:¼¡¤Î¥¹¥¿¥¤¥ë¥·¡¼¥È¥¨¥ó¥È¥ê¡¼¤ÏÅêɼwobject¤Î¥«¥¹¥¿¥à¤Ç¤¹:\r\n\r\n.pollAnswer\r\nÅêɼ¤Î²óÅú¡£\r\n\r\n.pollColor\r\nÅêɼ¤Î¥Ñ¡¼¥»¥ó¥Æ¡¼¥¸¥Ð¡¼¤Î¿§¡£\r\n\r\n.pollQuestion\r\nÅêɼ¤Î¼ÁÌä¡£',1055510020,NULL); INSERT INTO international VALUES (74,'MessageBoard',14,'²¼µ­¤Ï·Ç¼¨Èĥƥó¥×¥ì¡¼¥È¤Ë¤ª¤¤¤ÆÍøÍѲÄǽ¤Ê¥Æ¥ó¥×¥ì¡¼¥ÈÊÑ¿ô¤Î¥ê¥¹¥È¤Ç¤¹¡£\r\n\r\ncanPost\r\n¸½ºß¤Î¥æ¡¼¥¶¡¼¤¬¿·µ¬¥á¥Ã¥»¡¼¥¸¤òÅê¹Æ¤¹¤ë¸¢¸Â¤ò»ý¤Ã¤Æ¤¤¤ë¤«¤É¤¦¤«¼¨¤·¤Þ¤¹¡£\r\n\r\npost.url\r\n¿·¤·¤¤¥á¥Ã¥»¡¼¥¸¤òÅê¹Æ¤¹¤ëURL¡£\r\n\r\npost.label\r\nÅê¹ÆURL¤Î¥é¥Ù¥ë¡£\r\n\r\nsearch.url\r\n¤³¤Î·Ç¼¨ÈĤò¸¡º÷¤¹¤ëURL¡£\r\n\r\nsearch.label\r\n¸¡º÷URL¤Î¥é¥Ù¥ë¡£\r\n\r\nsubject.label\r\n·ï̾¥³¥é¥à¤Î¥é¥Ù¥ë¡£\r\n\r\nuser.label\r\n¥æ¡¼¥¶¡¼¥³¥é¥à¤Î¥é¥Ù¥ë¡£\r\n\r\ndate.label\r\nÆüÉÕ¥³¥é¥à¤Î¥é¥Ù¥ë¡£\r\n\r\nviews.label\r\nɽ¼¨¥³¥é¥à¤Î¥é¥Ù¥ë¡£\r\n\r\nreplies.label\r\nÊÖ¿®¥³¥é¥à¤Î¥é¥Ù¥ë¡£\r\n\r\nlast.label\r\nºÇ¸å¤ÎÊÖ¿®¥³¥é¥à¤Î¥é¥Ù¥ë¡£\r\n\r\nmessage_loop\r\n³Æ¥á¥Ã¥»¡¼¥¸¤ò´Þ¤ó¤Ç¤¤¤ë¥ë¡¼¥×¡£\r\n\r\nlast.url\r\n¥á¥Ã¥»¡¼¥¸¤ÎºÇ¸å¤ÎÊÖ¿®¤ÎURL¡£\r\n\r\nlast.subject\r\n¥á¥Ã¥»¡¼¥¸¤ÎºÇ¸å¤ÎÊÖ¿®¤Î·ï̾¡£\r\n\r\nlast.username\r\n¥á¥Ã¥»¡¼¥¸¤ÎºÇ¸å¤ÎÊÖ¿®¤Î¥æ¡¼¥¶¡¼Ì¾¡£\r\n\r\nlast.userProfile\r\n¥á¥Ã¥»¡¼¥¸¤ÎºÇ!\n¸å¤ÎÊÖ¿®¤òÅê¹Æ¤·¤¿¥æ¡¼¥¶¡¼¤Î¥×¥í¥Õ¥£¡¼¥ë¤Ø¤ÎURL¡£\r\n\r\nlast.date\r\n¥á¥Ã¥»¡¼¥¸¤ÎºÇ¸å¤ÎÊÖ¿®¤ÎÆüÉÕ¡£\r\n\r\nmessage.subject\r\n¥á¥Ã¥»¡¼¥¸¤Î·ï̾¡£\r\n\r\nmessage.date\r\n¥á¥Ã¥»¡¼¥¸¤¬Åê¹Æ¤µ¤ì¤¿ÆüÉÕ¡£\r\n\r\nmessage.user\r\n¥á¥Ã¥»¡¼¥¸¤òÅê¹Æ¤·¤¿¥æ¡¼¥¶¡¼Ì¾¡£\r\n\r\nmessage.views\r\n¼õ¤±¼è¤Ã¤¿¤³¤Î¥á¥Ã¥»¡¼¥¸¤òɽ¼¨¡£\r\n\r\nmessage.replies\r\n¥¹¥ì¥Ã¥É¤ÎÊÖ¿®Èֹ档\r\n\r\nmessage.url\r\n¥á¥Ã¥»¡¼¥¸¤òɽ¼¨¤¹¤ëURL¡£\r\n\r\nmessage.currentUser\r\n¸½ºß¤Î¥æ¡¼¥¶¡¼¤¬¤³¤Î¥á¥Ã¥»¡¼¥¸¤òÅê¹Æ¤·¤¿¥æ¡¼¥¶¡¼¤«¤É¤¦¤«¤ò¼¨¤·¤Þ¤¹¡£\r\n\r\nmessage.status\r\n¥á¥Ã¥»¡¼¥¸¤¬(̤²ò·è¡¢¾µÇ§¡¢¾µÇ§ÉÔ²Ä)¤«¤òɽ¤·¤Þ¤¹¡£\r\n\r\nfirstPage\r\n¥Ú¡¼¥¸ÈÖ¹æ¤Î°ìÈֺǽé¤Î¥Ú¡¼¥¸¤Ø¤Î¥ê¥ó¥¯¡£\r\n\r\nlastPage\r\n¥Ú¡¼¥¸ÈÖ¹æ¤Î°ìÈֺǸå¤Î¥Ú¡¼¥¸¤Ø¤Î¥ê¥ó¥¯¡£\r\n\r\nnextPage\r\n¥Ú¡¼¥¸ÈÖ¹æ¤Î¼¡¤Î¥Ú¡¼¥¸¤Ø¤Î¥ê¥ó¥¯¡£\r\n\r\npreviousPage\r\n¥Ú¡¼¥¸ÈÖ¹æ¤ÎÁ°¤Î¥Ú¡¼¥¸¤Ø¤Î¥ê¥ó¥¯¡£\r\n\r\npageList\r\n¥Ú¡¼¥¸ÈÖ¹æ¤Î¤¹¤Ù¤Æ¤Î¥Ú¡¼¥¸¤Ø¤Î¥ê¥ó¥¯¤Î¥ê¥¹¥È¡£\r\n\r\nmultiplePages\r\n¥Ú¡¼¥¸Èֹ椬1¥Ú¡¼¥¸°Ê¾å¤¢¤ë¤«¤É¤¦¤«¤ò¼¨¤·¤Þ¤¹¡£',1055507985,NULL); INSERT INTO international VALUES (71,'MessageBoard',14,'¥Õ¥©¡¼¥é¥à¤¢¤ë¤¤¤Ï¥Ç¥£¥¹¥«¥Ã¥·¥ç¥ó¤È¸Æ¤Ð¤ì¤ë·Ç¼¨ÈĤϥµ¥¤¥È¤ä¥¤¥ó¥È¥é¥Í¥Ã¥È¾å¤Ç¤Î¥³¥ß¥å¥Ë¥Æ¥£¼êÃʤȤ·¤Æ¤È¤Æ¤âÎɤ¤ÊýË¡¤Ç¤¹¡£Â¿¤¯¤Î²ñ¼Ò¤¬¥×¥í¥¸¥§¥¯¥È¤ò¶¦Æ±¸¦µæ¤¹¤ë¤¿¤á¤Ë·Ç¼¨ÈĤò¼ÒÆâ¤Ç»ÈÍѤ·¤Æ¤¤¤Þ¤¹¡£\r\n\r\nȯ¸À·ï¿ô\r\n¥Ó¥¸¥¿¡¼¤¬½é¤á¤Æ·Ç¼¨ÈĤËÍè¤ë¤È¡¢·Ç¼¨ÈĤΤ¹¤Ù¤Æ¤Î¥¹¥ì¥Ã¥É¥ê¥¹¥È¤¬É½¼¨¤µ¤ì¤Þ¤¹¡£¤½¤Î·Ç¼¨ÈĤ¬¿Íµ¤¤¬¤¢¤ë¾ì¹ç¡¢¤¹¤°¤Ë¤¿¤¯¤µ¤ó¤Î¥¹¥ì¥Ã¥É¤¬½ñ¤­¹þ¤Þ¤ì¤ë¤Ç¤·¤ç¤¦¡£¥Ú¡¼¥¸¤ËÉտ魯¤ë¥á¥Ã¥»¡¼¥¸¤¬1¥Ú¡¼¥¸¤Ë¤É¤ì¤À¤±¤Î¥¹¥ì¥Ã¥É¤òɽ¼¨¤¹¤ë¤«¤ò»ØÄꤹ¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£\r\n\r\n¼çÍץƥó¥×¥ì¡¼¥È\r\n·Ç¼¨ÈĤΥᥤ¥ó¥ê¥¹¥È¤Î¥ì¥¤¥¢¥¦¥È¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤¡£\r\n\r\nÅê¹ÆÊýË¡¤Î¥Õ¥£¥ë¥¿¥ê¥ó¥°\r\n¤Æ¤Î¥Ç¥£¥¹¥«¥Ã¥·¥ç¥ó¤ÎÅê¹Æ¤ËŬ±þ¤µ¤»¤ë¡¢Åê¹ÆÊýË¡¤Î¥Õ¥£¥ë¥¿¥ê¥ó¥°¤òÁªÂò¤·¤Þ¤¹¡£\r\n\r\nÅê¹Æ¥°¥ë¡¼¥×¤òÁªÂò\r\n¥Ç¥£¥¹¥«¥Ã¥·¥ç¥óÅê¹Æ¤òµö²Ä¤¹¤ë¥æ¡¼¥¶¡¼¥°¥ë¡¼¥×¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤¡£\r\n\r\nÊÔ½¸¥¿¥¤¥à¥¢¥¦¥È\r\n¥æ¡¼¥¶¡¼¤Ë²¿»þ´ÖÅê¹Æ¤òÊÔ½¸¤µ¤»¤ë¤«¤òÀßÄꤷ¤Þ¤¹¡£ \r\n\r\nÃí:¤³¤Î»þ´Ö¤ò¤¢¤Þ¤êŤ¯ÀßÄꤷ¤Ê¤¤¤è¤!\n¦¤Ë¤·¤Æ¤¯¤À¤µ¤¤¡£¥Ç¥£¥¹¥«¥Ã¥·¥ç¥ó¤Ç°ìÈÖÂçÀڤʤ³¤È¤Ï¡¢¤½¤Î»þ郎²¿¤òȯ¸À¤·¤¿¤«¤ÎÀµ³Î¤Ëµ­Ï¿¤¹¤ë¤³¤È¤Ç¤¹¡£¥æ¡¼¥¶¡¼¤ËÊÔ½¸»þ´Ö¤òĹ»þ´ÖÍ¿¤¨¤Æ¤·¤Þ¤¦¤È¡¢¥æ¡¼¥¶¡¼¤Ï»þ´Ö¤¬Î©¤Ã¤Æ¤«¤éÅê¹ÆÆâÍÆ¤ò¹Í¤¨Ä¾¤·¤Æ¡¢Ê̤ÎÅê¹Æ¤Ëºî¤êÊѤ¨¤Æ¤·¤Þ¤¦¤³¤È¤¬¤Ç¤­¤Æ¤·¤Þ¤¤¤Þ¤¹¡£\r\n\r\nÅê¹Æ¤´¤È¤Î¥«¥ë¥ÞÃÍ\r\n¥æ¡¼¥¶¡¼¤¬¥Ç¥£¥¹¥«¥Ã¥·¥ç¥ó¤ËÅê¹Æ¤¹¤ë¤È¤­¡¢¤É¤Î¤¯¤é¤¤¤Î¥«¥ë¥ÞÃͤò¤½¤Î¥æ¡¼¥¶¡¼¤ËÍ¿¤¨¤Þ¤¹¤«¡©\r\n\r\nµÄĹ¥°¥ë¡¼¥×¤òÁªÂò\r\n¤³¤Î¥Ç¥£¥¹¥«¥Ã¥·¥ç¥ó¤ÎµÄŤ¹¤ë¥°¥ë¡¼¥×¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤¡£\r\n\r\n¾µÇ§ÊýË¡\r\nµÄŤ¬¥æ¡¼¥¶¡¼¾µÇ§¤ò¤¹¤ë»þ¡¢¾µÇ§ÊýË¡¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤¡£¡Ö¸å¡×¤È¤Ï¥æ¡¼¥¶¡¼¤¬Åê¹Æ¤·¤¿Åê¹Æ¤òµÄŤ¬¾µÇ§¤¹¤ëÁ°¤Ë¾¤Î¥æ¡¼¥¶¡¼¤Ëɽ¼¨¤·¤Þ¤¹¡£¡ÖÀè¡×¤È¤ÏµÄŤ¬Â¾¤Î¥æ¡¼¥¶¡¼¤Ëɽ¼¨¤¹¤ëÁ°¤Ë¡¢¤½¤ÎÅê¹Æ¤ò¾µÇ§¤·¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó¡£¡Ö¸å¡×¤òÁªÂò¤·¤¿¾ì¹ç¡¢¼«Æ°Åª¤ËµÄŤÎWebGUI¼õ¿®¥Ü¥Ã¥¯¥¹¤Ë¿·µ¬Åê¹Æ¤ÎÄÌÃΤ¬Íè¤Þ¤¹¡£\r\n\r\n¤É¤Á¤é¤Î¾µÇ§ÊýË¡¤Ç¤â¾ï¤Ë¥æ¡¼¥¶¡¼¤¬Åê¹Æ¤·¤¿Åê¹Æ¤ÎÊÔ½¸¡¢ºï½ü¤¬¤Ç¤­¤Þ¤¹¡£\r\n\r\nÅê¹Æ¤ËÊÔ½¸¥¹¥¿¥ó¥×¤òÄɲáÖÊÔ½¸¥¹¥¿¥ó¥×¡×¤È¤Ï¡¢Ã¯¤¬¤¤¤Ä¤½¤ÎÅê¹Æ¤òÊÔ½¸¤·¤¿¤«ÃΤ뤳¤È¤¬¤Ç¤­¤Þ¤¹¡£¤¹¤Ù¤Æ¤ÎÊÔ½¸¤Ç¤³¤Î¡ÖÊÔ½¸¥¹¥¿¥ó¥×¡×¤ò»ÈÍѤ·¤Þ¤¹!\n¤«¡©',1055725511,NULL); -INSERT INTO international VALUES (76,'LinkList',14,'²¼µ­¤Ï¥ê¥ó¥¯¥ê¥¹¥È¥Æ¥ó¥×¥ì¡¼¥È¤ÇÍøÍѲÄǽ¤Ê¥Æ¥ó¥×¥ì¡¼¥ÈÊÑ¿ô¤Î¥ê¥¹¥È¤Ç¤¹¡£\r\n\r\naddlink.url\r\n¥ê¥ó¥¯¥ê¥¹¥È¤Ø¥ê¥ó¥¯¤òÄɲ乤ëURL¡£\r\n\r\naddlink.label\r\n¥ê¥ó¥¯URL¤Î¥é¥Ù¥ë¡£\r\n\r\nlink_loop\r\n¤³¤Î¥ë¡¼¥×¤Ï¡¢³Æ¥ê¥ó¥¯¾ðÊó¤Î¤¹¤Ù¤Æ¤ò´Þ¤ó¤Ç¤¤¤Þ¤¹¡£\r\n\r\nlink.url\r\n¥ê¥ó¥¯¤ÎURL¡£\r\n\r\nlink.name\r\n¥ê¥ó¥¯¤µ¤ì¤ë¥Æ¥­¥¹¥È̾¡£\r\n\r\nlink.controls\r\nWebGUI·Ð±Ä¿Ø¤Ï¤³¤Î¥ê¥ó¥¯¤ò´ÉÍý¤·¤Þ¤¹¡£\r\n\r\nlink.newwindow\r\n¥ê¥ó¥¯¤¬ÊÌ¥¦¥£¥ó¥É¤Ç³«¤«¤ì¤ë¤«¤É¤¦¤«¤Î¾ò·ï¡£\r\n\r\nlink.description\r\n¥ê¥ó¥¯¤Îµ­½Ò¡£',1055503301,NULL); -INSERT INTO international VALUES (3,'LinkList',14,'ÊÌ¥¦¥£¥ó¥É¤ò³«¤­¤Þ¤¹¤«¡©',1055503191,NULL); -INSERT INTO international VALUES (73,'LinkList',14,'¥¿¥¤¥È¥ë\r\n¥ê¥ó¥¯¤µ¤ì¤ë¥Æ¥­¥¹¥È̾¡£\r\n\r\nURL\r\n¥ê¥ó¥¯¤¹¤ë¥¦¥§¥Ö¥µ¥¤¥È¤ÎURL¡£\r\n\r\nÊÌ¥¦¥£¥ó¥É¤ò³«¤­¤Þ¤¹¤«¡©\r\n¤â¤·¤³¤Î¥ê¥ó¥¯¤òÊÌ¥¦¥£¥ó¥É¤ò³«¤­¤¿¤¤¾ì¹ç¤Ï¡Ö¤Ï¤¤¡×¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤¡£\r\n\r\nµ­½Ò\r\n¤¢¤Ê¤¿¤¬¥ê¥ó¥¯¤·¤Æ¤¤¤ë¥µ¥¤¥È¤Î¾ðÊó¤òµ­½Ò¤·¤Æ¤¯¤À¤µ¤¤¡£¾Êά¤·¤Æ¤â¤«¤Þ¤¤¤Þ¤»¤ó¡£\r\n\r\n¼¡¤Îºî¶È\r\n¤â¤·¤³¤Î¸å¤ËÊ̤Υê¥ó¥¯¤òÄɲä·¤¿¤¤¾ì¹ç¤Ï¡¢¤³¤ÎÀßÄê¤ò¥Ç¥Õ¥©¥ë¥È¤Ë¤·¤Æ¤¯¤À¤µ¤¤¡£',1055503137,NULL); -INSERT INTO international VALUES (71,'LinkList',14,'¥ê¥ó¥¯¥ê¥¹¥È¤Ï¤Þ¤µ¤Ë¥ê¥ó¥¯¤Î¥ê¥¹¥È¤Ç¤¹¡£Â¿¤¯¤Î¥µ¥¤¥È¤Ï¥ê¥ó¥¯¥»¥¯¥·¥ç¥ó¤ò»ý¤Á¡¢¤Þ¤¿¤³¤Îwobject¤Ï¥×¥í¥»¥¹¤ò¼«Æ°²½¤·¤Æ¤¯¤ì¤Þ¤¹¡£\r\n\r\n¥Æ¥ó¥×¥ì¡¼¥È\r\nwobject¤Î¥ì¥¤¥¢¥¦¥È¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤¡£\r\n\r\n¼¡¤Îºî¶È\r\n¥ê¥ó¥¯¥ê¥¹¥È¤òÄɲä·¤¿¸å¤Ë¡¢Â³¤±¤Æ¥ê¥ó¥¯¤òÄɲä·¤¿¤¤¾ì¹ç¡¢¥Ç¥Õ¥©¥ë¥È¤Ç¤³¤ÎÀßÄê¤Î¤Þ¤Þ¤Ë¤·¤Æ¤¯¤À¤µ¤¤¡£',1055502987,NULL); -INSERT INTO international VALUES (74,'Item',14,'°Ê²¼¤Î¥Æ¥ó¥×¥ì¡¼¥ÈÊÑ¿ô¥ê¥¹¥È¤Ï¥¢¥¤¥Æ¥à¥Æ¥ó¥×¥ì¡¼¥È¤ÇÍøÍѲÄǽ¤Ç¤¹¡£\r\n\r\nattachment.name\r\n¥¢¥¤¥Æ¥à¤ÎźÉÕ¥Õ¥¡¥¤¥ë¤Î¥Õ¥¡¥¤¥ë̾¡£\r\n\r\nattachment.url\r\n¥¢¥¤¥Æ¥à¤ËźÉÕ¤¹¤ë¥À¥¦¥ó¥í¡¼¥É¥Õ¥¡¥¤¥ë¤ÎURL¡£\r\n\r\nattachment.icon\r\n¥¢¥¤¥Æ¥à¤ÎźÉÕ¥Õ¥¡¥¤¥ë¤Î¥¢¥¤¥³¥ó¤ÎURL¡£',1055502880,NULL); -INSERT INTO international VALUES (71,'Item',14,'µ­»ö¤Ë¤¢¤ë¤è¤¦¤Ë¡¢¤³¤Î¥¢¥¤¥Æ¥à¤Ïthe Swiss Army knife of WebGUI¤Î¤â¤Î¤Ç¤¹¡£ÀÅŪ¥³¥ó¥Æ¥ó¥Ä¤Î¤Û¤È¤ó¤É¤Ï¥¢¥¤¥Æ¥à¤Ë¤è¤Ã¤ÆÄɲ乤뤳¤È¤¬¤Ç¤­¤Þ¤¹¡£¤·¤«¤·¥¢¥¤¥Æ¥à¤Ïµ­»ö¤è¤ê¤â¾®¤µ¤Ê¥³¥ó¥Æ¥ó¥Ä¤ËÄ̾ï»ÈÍѤµ¤ì¤Þ¤¹¡£\r\n\r\n¥ê¥ó¥¯URL\r\n¤³¤ÎURL¤Ï¥¢¥¤¥Æ¥à¤Î¥¿¥¤¥È¥ë¤òÉÕ¤±¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£Îã:http://www.google.com\r\n\r\nźÉÕ¥Õ¥¡¥¤¥ë\r\n¥ï¡¼¥É¥Õ¥¡¥¤¥ë¡¢zip¥Õ¥¡¥¤¥ë¡¢¥À¥¦¥ó¥í¡¼¥É¥Õ¥¡¥¤¥ë¤òźÉÕ¤·¤¿¤¤¾ì¹ç¤Ï¡¢¥Ç¡¼¥¿ÊݸÀ褫¤éźÉÕ¤·¤¿¤¤¥Õ¥¡¥¤¥ë¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤¡£\r\n\r\n¥Æ¥ó¥×¥ì¡¼¥È\r\n¤³¤Î¥¢¥¤¥Æ¥à¤Î¥ì¥¤¥¢¥¦¥È¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤¡£',1055502781,NULL); +INSERT INTO international VALUES (72,'WSClient',1,'Web Services Client Template',1072812143,NULL); +INSERT INTO international VALUES (73,'WSClient',1,'This is the list of\ntemplate variables available for Web Services Client\ntemplates.

results
This loop contains all the results from\nthe SOAP call. Within the loop, you may access specific data elements by the\nnames set for them by the SOAP server (i.e. perhaps \"localTime\" for a time query). In addition, there are a number of special template variables:\n\n
numResults
Number of rows found by the client, if an array was returned.

\n\nfirstPage
Link to first page in a paginated set.

\n\nlastPage
Link to last page in a paginated set.

\n\nnextPage
Link to next page in a paginated set.

\n\npageList
List of all pages in a paginated set.

\n\npreviousPage
Link to previous page in a paginated set.

\n\nmultiplePages
Boolean indicating multiple pages in a paginated set.

\n\nnumberOfPages
Number of pages in a paginated set.

\n\npageNumber
Current page number in a paginated set.
',1072812143,NULL); +INSERT INTO international VALUES (92,'USS',14,'ÊÌ¥¦¥£¥ó¥É¤ò³«¤­¤Þ¤¹¤«¡©',1055503191,NULL); INSERT INTO international VALUES (6,'HttpProxy',14,'¥¹¥¿¥¤¥ë¤òºï½ü¤·¤Þ¤¹¤«¡©',1055502598,NULL); INSERT INTO international VALUES (8,'HttpProxy',14,'½ñ¤­´¹¤¨¤ò³¹Ô',1055502302,NULL); INSERT INTO international VALUES (76,'FileManager',14,'¤³¤ì¤Ï¥Õ¥¡¥¤¥ë¥Þ¥Í¡¼¥¸¥ã¡¼¥Æ¥ó¥×¥ì¡¼¥È¤Ë¤ª¤¤¤ÆÍøÍѲÄǽ¤Ê¥Æ¥ó¥×¥ì¡¼¥ÈÊÑ¿ô¤Î¥ê¥¹¥È¤Ç¤¹¡£\r\n\r\ntitleColumn.url\r\n¥¿¥¤¥È¥ë½ç¤ËʤÓÂØ¤¨¤ëURL¡£\r\n\r\ntitleColumn.label\r\n¥¿¥¤¥È¥ë¤Î¥é¥Ù¥ë¡£\r\n\r\ndescriptionColumn.label\r\nµ­½Ò¤Î¥é¥Ù¥ë¡£\r\n\r\ndescriptionColumn.url\r\nµ­½Ò½ç¤ËʤÓÂØ¤¨¤ëURL¡£\r\n\r\ndateColumn.label\r\n¥¢¥Ã¥×¥í¡¼¥ÉÆü¤Î¥é¥Ù¥ë¡£\r\n\r\ndateColumn.url\r\n¥¢¥Ã¥×¥í¡¼¥É¤µ¤ì¤¿ÆüÉÕ½ç¤ËʤÓÂØ¤¨¤ëURL¡£\r\n\r\nsearch.form\r\nWebGUI¥Ñ¥ï¡¼Ãµº÷¥¨¥ó¥¸¥ó¤Î¥Õ¥©¡¼¥à¡£\r\n\r\nsearch.url\r\nõº÷¥â¡¼¥É¤Î¥ª¥ó¥ª¥Õ¤òÀÚ¤êÂØ¤¨¤ëURL¡£\r\n\r\nsearch.label\r\nõº÷¥ê¥ó¥¯¤Î¥é¥Ù¥ë¡£\r\n\r\naddfile.url\r\n¥Õ¥¡¥¤¥ë¥Þ¥Í¡¼¥¸¥ã¡¼¤Ë¥Õ¥¡¥¤¥ë¤òÄɲ乤ëURL¡£\r\n\r\naddfile.label\r\n¥Õ¥¡¥¤¥ë¥ê¥ó¥¯¤òÄɲ乤ë¥é¥Ù¥ë¡£\r\n\r\nfile_loop\r\n³Æ¥Õ¥¡¥¤¥ë¤Ë´Ø¤¹¤ë¾ðÊó¤ò´Þ¤ó¤Ç¤¤¤ë¥ë¡¼¥×¤Ï¡¢¤³¤Î¥Õ¥¡¥¤¥ë¥Þ¥Í¡¼¥¸¥ã¡¼¤Ë¤è¤Ã¤Æ¥¢¥Ã¥×¥í¡¼¥É¤µ¤ì¤Þ¤¹¡£\r\n\r\nfile.canView\r\n¸½ºß¤Î¥æ¡¼¥¶¡¼¤Ë¤³¤Î¥Õ¥¡¥¤¥ë¤ò¸«¤ë!\n¸¢¸Â¤¬¤¢¤ë¤«¤É¤¦¤«¤Î¾ò·ï¡£\r\n\r\nfile.controls\r\nWebGUI·Ð±Ä¿Ø¤Ï¤³¤Î¥Õ¥¡¥¤¥ë¤ò´ÉÍý¤·¤Þ¤¹¡£\r\n\r\nfile.title\r\n¥Õ¥¡¥¤¥ë¤Î¥¿¥¤¥È¥ë¡£\r\n\r\nfile.version1.name\r\n¥Õ¥¡¥¤¥ëÂè1¥Ð¡¼¥¸¥ç¥ó¤Î¥Õ¥¡¥¤¥ë̾¡£\r\n\r\nfile.version1.url\r\n¥Õ¥¡¥¤¥ëÂè1¥Ð¡¼¥¸¥ç¥ó¤Î¥À¥¦¥ó¥í¡¼¥É¤ÎURL¡£\r\n\r\nfile.version1.icon\r\n¥Õ¥¡¥¤¥ëÂè1¥Ð¡¼¥¸¥ç¥ó¤Î¥Õ¥¡¥¤¥ë¥¿¥¤¥×¥¢¥¤¥³¥ó¤Ø¤ÎURL¡£\r\n\r\nfile.version1.size\r\n¥Õ¥¡¥¤¥ëÂè1¥Ð¡¼¥¸¥ç¥ó¤Îµ­²±¥µ¥¤¥º¡£\r\n\r\nfile.version1.type\r\n¥Õ¥¡¥¤¥ëÂè1¥Ð¡¼¥¸¥ç¥ó¤Î¥¿¥¤¥×(¤¢¤ë¤¤¤Ï³ÈÄ¥¥Õ¥¡¥¤¥ë)¡£\r\n\r\nfile.version1.thumbnail\r\n¥Õ¥¡¥¤¥ëÂè1¥Ð¡¼¥¸¥ç¥ó¤Î¥µ¥à¥Í¥¤¥ë¤ÎURL¡£\r\n\r\nfile.version1.isImage\r\n¥Õ¥¡¥¤¥ëÂè1¥Ð¡¼¥¸¥ç¥ó¤¬¥¤¥á¡¼¥¸¤«¤É¤¦¤«¼¨¤·¤Þ¤¹¡£\r\n\r\nfile.version2.name\r\n¥Õ¥¡¥¤¥ëÂè2¥Ð¡¼¥¸¥ç¥ó¤Î¥Õ¥¡¥¤¥ë̾¡£\r\n\r\nfile.version2.url\r\n¥Õ¥¡¥¤¥ëÂè2¥Ð¡¼¥¸¥ç¥ó¤Î¥À¥¦¥ó¥í¡¼¥É¤ÎURL¡£\r\n\r\nfile.version2.icon\r\n¥Õ¥¡¥¤¥ëÂè2¥Ð¡¼¥¸¥ç¥ó¤Î¥Õ¥¡¥¤¥ë¥¿¥¤¥×¥¢¥¤¥³¥ó¤ÎURL¡£\r\n\r\nfile.version2.size\r\n¥Õ¥¡¥¤¥ëÂè2¥Ð¡¼¥¸¥ç¥ó¤Îµ­²±¥µ¥¤¥º¡£\r\n\r\nfile.version2.type\r\n¥Õ¥¡¥¤¥ëÂè2¥Ð¡¼¥¸¥ç¥!\nó¤Î¥¿¥¤¥×(¤¢¤ë¤¤¤Ï³ÈÄ¥¥Õ¥¡¥¤¥ë)¡£\r\n\r\nfile.version2.thumbnail\r\n¥Õ¥¡¥¤¥ëÂè2¥Ð¡¼¥¸¥ç¥ó¤Î¥µ¥à¥Í¥¤¥ë¤ÎURL¡£\r\n\r\nfile.version2.isImage\r\n¥Õ¥¡¥¤¥ëÂè2¥Ð¡¼¥¸¥ç¥ó¤¬¥¤¥á¡¼¥¸¤«¤É¤¦¤«¼¨¤·¤Þ¤¹¡£\r\n\r\nfile.version3.name\r\n¥Õ¥¡¥¤¥ëÂè3¥Ð¡¼¥¸¥ç¥ó¤Î¥Õ¥¡¥¤¥ë̾¡£\r\n\r\nfile.version3.url\r\n¥Õ¥¡¥¤¥ëÂè3¥Ð¡¼¥¸¥ç¥ó¤Î¥À¥¦¥ó¥í¡¼¥É¤ÎURL¡£\r\n\r\nfile.version3.icon\r\n¥Õ¥¡¥¤¥ëÂè3¥Ð¡¼¥¸¥ç¥ó¤Î¥Õ¥¡¥¤¥ë¥¿¥¤¥×¥¢¥¤¥³¥ó¤Ø¤ÎURL¡£\r\n\r\nfile.version3.size\r\n¥Õ¥¡¥¤¥ëÂè3¥Ð¡¼¥¸¥ç¥ó¤Îµ­²±¥µ¥¤¥º¡£\r\n\r\nfile.version3.type\r\n¥Õ¥¡¥¤¥ëÂè3¥Ð¡¼¥¸¥ç¥ó¤Î¥¿¥¤¥×(¤¢¤ë¤¤¤Ï³ÈÄ¥¥Õ¥¡¥¤¥ë)¡£\r\n\r\nfile.version3.thumbnail\r\n¥Õ¥¡¥¤¥ëÂè3¥Ð¡¼¥¸¥ç¥ó¤Î¥µ¥à¥Í¥¤¥ë¤Ø¤ÎURL¡£\r\n\r\nfile.version3.isImage\r\n¥Õ¥¡¥¤¥ëÂè3¥Ð¡¼¥¸¥ç¥ó¤¬¥¤¥á¡¼¥¸¤«¤É¤¦¤«¼¨¤·¤Þ¤¹¡£\r\n\r\nfile.description\r\n¥Õ¥¡¥¤¥ë¤Îµ­½Ò¡£\r\n\r\nfile.date\r\n¥Õ¥¡¥¤¥ë¤¬¥¢¥Ã¥×¥í¡¼¥É¤µ¤ì¤¿ÆüÉÕ¡£\r\n\r\nfile.time\r\n¥Õ¥¡¥¤¥ë¤¬¥¢¥Ã¥×¥í¡¼¥É¤µ¤ì¤¿»þ´Ö¡£\r\n\r\nnoresults.message\r\n¥Õ¥¡¥¤¥ë¥Þ¥Í¡¼¥¸¥ã¡¼¤¬¤³¤Î¥æ¡¼¥¶¡¼¤Ëɽ¼¨¤¹¤ë¥Õ¥¡¥¤¥ë¤ò»ý¤Ã¤Æ¤¤¤Ê¤¤¤«¤ò¼¨¤¹¥á¥Ã¥»¡¼¥¸¡£\r\n!\nr\nnoresults\r\n¤³¤Î¥æ¡¼¥¶¡¼¤Ëɽ¼¨¤¹¤ë¥Õ¥¡¥¤¥ë¤¬¤¢¤ë¤«¤É¤¦¤«¤ò¼¨¤·¤Þ¤¹¡£\r\n\r\nfirstPage\r\n¥Ú¡¼¥¸ÈÖ¹æ¤ÎºÇ½é¤Î¥Ú¡¼¥¸¤Ø¤Î¥ê¥ó¥¯¡£\r\n\r\nlastPage\r\n¥Ú¡¼¥¸ÈÖ¹æ¤ÎºÇ¸å¤Î¥Ú¡¼¥¸¤Ø¤Î¥ê¥ó¥¯¡£\r\n\r\nnextPage\r\n¥Ú¡¼¥¸ÈÖ¹æ¤Î¼¡¤Î¥Ú¡¼¥¸¤Ø¤Î¥ê¥ó¥¯¡£\r\n\r\npreviousPage\r\n¥Ú¡¼¥¸ÈÖ¹æ¤ÎÁ°¤Î¥Ú¡¼¥¸¤Ø¤Î¥ê¥ó¥¯¡£\r\n\r\npageList\r\n¥Ú¡¼¥¸ÈÖ¹æ¤Î¤¹¤Ù¤Æ¤Î¥Ú¡¼¥¸¤Ø¤Î¥ê¥ó¥¯¥ê¥¹¥È¡£\r\n\r\nmultiplePages\r\n1¥Ú¡¼¥¸°Ê¾å¤Î¥Ú¡¼¥¸¤¬¥Ú¡¼¥¸ÈÖ¹æ¤Ë¤¢¤ë¤«¤É¤¦¤«¤ò¼¨¤·¤Þ¤¹¡£',1055479260,NULL); INSERT INTO international VALUES (3,'FileManager',14,'¥Õ¥¡¥¤¥ëÄɲäò³¹Ô',1055475803,NULL); -INSERT INTO international VALUES (77,'FAQ',14,'²¼µ­¤ÏFAQ¥Æ¥ó¥×¥ì¡¼¥È¤Ë¤ª¤¤¤ÆÍøÍѲÄǽ¤Ê¥Æ¥ó¥×¥ì¡¼¥ÈÊÑ¿ô¤Î¥ê¥¹¥È¤Ç¤¹¡£\r\n\r\naddquestion.url\r\nFAQ¤Ë¼ÁÌä¤òÄɲ乤ëURL¡£\r\n\r\naddquestion.labeladd\r\n¼ÁÌä¥ê¥ó¥¯¤òÄɲ乤ë¥é¥Ù¥ë¡£\r\n\r\nqa_loop\r\nFAQ¤Ë³Æ¼ÁÌä¤ÎÊÑ¿ô¤ò´Þ¤ó¤Ç¤¤¤ë¥ë¡¼¥×¡£\r\n\r\nqa.id\r\n¼ÁÌä¤ÎID¡£\r\n\r\nqa.answer\r\n¼ÁÌä¤Î²óÅú¡£\r\n\r\nqa.question\r\n¼ÁÌ伫ÂΤǤ¹¡£\r\n\r\nqa.controls\r\nWebGUI·Ð±Ä¿Ø¤Ï¤³¤Î¼ÁÌä¤ò´ÉÍý¤·¤Þ¤¹¡£',1055475064,NULL); -INSERT INTO international VALUES (71,'ExtraColumn',14,'ÆÃÊ̤ʥ³¥é¥à¤Ï¡¢¥Ú¡¼¥¸¤Î¥ì¥¤¥¢¥¦¥È¤ò1¥Ú¡¼¥¸¤Î¤ßÊѹ¹¤Ç¤­¤Þ¤¹¡£¤¹¤Ù¤Æ¤Î¥Ú¡¼¥¸¤Ë¥³¥é¥à¤ò»ÈÍѤ·¤¿¤¤¾ì¹ç¤Ï¡¢¥Ú¡¼¥¸¤Ç»ÈÍѤµ¤ì¤Æ¤¤¤ë¥¹¥¿¥¤¥ë¤òÊѹ¹¤¹¤ë¤«¡¢¥³¥é¥à¤ÎÂå¤ï¤ê¤Ë¥Æ¥ó¥×¥ì¡¼¥È¤ò»ÈÍѤ¹¤ë¤«¤ò¤·¤Æ¤¯¤À¤µ¤¤¡£\r\n\r\n¥³¥é¥à¤ÏÄɲ䵤ì¤ë¤È¤­º¸¤«¤é±¦¤Î½çÈÖ¤ÇÄɲ䵤ì¤Þ¤¹¡£¤è¤Ã¤Æ¡¢¥³¥ó¥Æ¥ó¥Ä¤Ï¥³¥é¥à¤Îº¸Â¦¤ËÃÖ¤«¤ì¤Þ¤¹¡£\r\n\r\n¥¹¥Ú¡¼¥¹Éý\r\n¥³¥ó¥Æ¥ó¥Ä¤È¥³¥é¥à¤Î´Ö¤Î¥¹¥Ú¡¼¥¹¤ÎÉý¤Ç¤¹¡£Ã±°Ì¤Ï¥Ô¥¯¥»¥ë¤Ç¤¹¡£\r\n\r\nÉý\r\nÉý¤Ï¥³¥é¥à¤Î¼ÂºÝ¤ÎÉý¤Ç¤¹¡£Ã±°Ì¤Ï¥Ô¥¯¥»¥ë¤Ç¤¹¡£\r\n\r\n¥¹¥¿¥¤¥ë¥·¡¼¥È¥¯¥é¥¹\r\n¥Ç¥Õ¥©¥ë¥È¤Ç»ÈÍѤµ¤ì¤ë¥³¥é¥à¤Î¥¹¥¿¥¤¥ë¤Ç¤¹(Ä̾掠¥¤¥È¤ÎBODY¤Ç»ÈÍѤ·¤Æ¤¤¤ë¥¹¥¿¥¤¥ë¤Ç¤¹)¡£¤·¤«¤·¤â¤·¤¢¤Ê¤¿¤¬¥³¥é¥à¤Î¥¹¥¿¥¤¥ë¤ò¿·µ¬ºîÀ®¤·¤¿¾ì¹ç¤Ï¡¢¼«Í³¤Ë¤³¤Î¥¯¥é¥¹¤ò½¤Àµ¤·¤Æ¤¯¤À¤µ¤¤¡£',1055474375,NULL); -INSERT INTO international VALUES (3,'ExtraColumn',14,'¥¹¥Ú¡¼¥¹Éý',1055473910,NULL); INSERT INTO international VALUES (97,'EventsCalendar',14,'°Ê²¼¤Ï¥¤¥Ù¥ó¥È¥Æ¥ó¥×¥ì¡¼¥È¤Ç»ÈÍѲÄǽ¤Ê¥Æ¥ó¥×¥ì¡¼¥È¤Î¥ê¥¹¥È¤Ç¤¹¡£\r\n\r\ntitle\r\n¥¤¥Ù¥ó¥È¤Î¥¿¥¤¥È¥ë¡£\r\n\r\nstart.label\r\n³«»ÏÆü¤Î¥é¥Ù¥ë¡£\r\n\r\nstart.date\r\n¥¤¥Ù¥ó¥È¤Î³«»ÏÆü¡£\r\n\r\nend.label\r\n½ªÎ»Æü¤Î¥é¥Ù¥ë¡£\r\n\r\nend.date\r\n¥¤¥Ù¥ó¥È¤Î½ªÎ»Æü¡£\r\n\r\ncanEdit\r\n¸½ºß¤Î¥æ¡¼¥¶¡¼¤¬ÊÔ½¸²Äǽ¤«¤É¤¦¤«¤ò¼¨¤¹¾ò·ï¡£\r\n\r\nedit.url\r\n¥¤¥Ù¥ó¥È¤òÊÔ½¸¤¹¤ëURL¡£\r\n\r\nedit.label\r\nURL¤òÊÔ½¸¤¹¤ë¤¿¤á¤Î¥é¥Ù¥ë¡£\r\n\r\ndelete.url\r\n¥¤¥Ù¥ó¥È¤òºï½ü¤¹¤ë¤¿¤á¤ÎURL¡£\r\n\r\ndelete.label\r\nURL¤òºï½ü¤¹¤ë¤¿¤á¤Î¥é¥Ù¥ë¡£\r\n\r\nprevious.url\r\nÁ°¤Î¥¤¥Ù¥ó¥È¤òɽ¼¨¤¹¤ëURL¡£\r\n\r\nprevious.label\r\nÁ°¤ÎURL¤Î¥é¥Ù¥ë¡£\r\n\r\nnext.label\r\n¼¡¤ÎURL¤Î¥é¥Ù¥ë¡£\r\n\r\nnext.url\r\n¼¡¤Î¥¤¥Ù¥ó¥È¤òɽ¼¨¤¹¤ëURL¡£\r\n\r\ndescription\r\n¥¤¥Ù¥ó¥È¤Îµ­½Ò¡£',1055473782,NULL); INSERT INTO international VALUES (9,'EventsCalendar',14,'¤«¤é',1055473552,NULL); INSERT INTO international VALUES (19,'EventsCalendar',14,'¥Ú¡¼¥¸ÈÖ¹æÉÕ¤±',1055473194,NULL); @@ -13839,7 +13352,6 @@ INSERT INTO international VALUES (72,'SyndicatedContent',14,' INSERT INTO international VALUES (61,'SyndicatedContent',14,'Äó·È¥³¥ó¥Æ¥ó¥Ä¡¡ÄɲÃ/ÊÔ½¸',1055317134,NULL); INSERT INTO international VALUES (4,'SyndicatedContent',14,'Äó·È¥³¥ó¥Æ¥ó¥Ä¤òÊÔ½¸',1055317108,NULL); INSERT INTO international VALUES (2,'SyndicatedContent',14,'Äó·È¥³¥ó¥Æ¥ó¥Ä',1055317082,NULL); -INSERT INTO international VALUES (11,'FAQ',14,'TOC(Table of Contents)¤òÊѹ¹¤·¤Þ¤¹¤«¡©',1055314978,NULL); INSERT INTO international VALUES (69,'Survey',14,'¤³¤Î¥æ¡¼¥¶¡¼¤ÎÊÖÅú¤òºï½ü',1055314348,NULL); INSERT INTO international VALUES (26,'Survey',14,'²óÅúÉÑÅÙ(¾ï¤Ë/Á´¤¯)¤ÎÈæÎ¨¤òÄɲÃ',1055313825,NULL); INSERT INTO international VALUES (27,'Survey',14,'°Õ¸«²óÅú(Ʊ°Õ¤¹¤ë/Ʊ°Õ¤·¤Ê¤¤)¤ÎÈæÎ¨¤òÄɲÃ',1055313798,NULL); @@ -13869,7 +13381,6 @@ INSERT INTO international VALUES (749,'WebGUI',14,' INSERT INTO international VALUES (509,'WebGUI',14,'¥Ç¥£¥¹¥«¥Ã¥·¥ç¥ó¤Î¥ì¥¤¥¢¥¦¥È',1055295250,NULL); INSERT INTO international VALUES (450,'WebGUI',14,'²ñ¼Ò̾',1055295146,NULL); INSERT INTO international VALUES (436,'WebGUI',14,'¥»¥Ã¥·¥ç¥ó¤ò½ªÎ»',1055295070,NULL); -INSERT INTO international VALUES (366,'WebGUI',14,'¤ªÃµ¤·¤Î¥Ú¡¼¥¸¤Ï¸«¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿¡£',1055294961,NULL); INSERT INTO international VALUES (359,'WebGUI',14,'¥³¥é¥à¤ò±¦¤è¤»¤¹¤ë',1055294808,NULL); INSERT INTO international VALUES (358,'WebGUI',14,'¥³¥é¥à¤òº¸¤è¤»¤¹¤ë',1055294790,NULL); INSERT INTO international VALUES (135,'WebGUI',14,'SMTP¥µ¡¼¥Ð',1055294629,NULL); @@ -13893,13 +13404,11 @@ INSERT INTO international VALUES (36,'Survey',14,' INSERT INTO international VALUES (35,'Survey',14,'¤ä¤ä»¿À®',1055127812,NULL); INSERT INTO international VALUES (40,'Survey',14,'¾ï¤Ë',1055127751,NULL); INSERT INTO international VALUES (75,'SiteMap',14,'¤¹¤Ù¤Æ¤Î¥ë¡¼¥È',1055127616,NULL); -INSERT INTO international VALUES (9,'SQLReport',14,'¥Ç¥Ð¥Ã¥°¥¨¥é¡¼¡§»ØÄꤵ¤ì¤¿DSN(Data Source Name)¤Ï¡¢ÉÔÅö¤Ê¥Õ¥©¡¼¥Þ¥Ã¥È¤Ç¤¹¡£',1055127541,NULL); -INSERT INTO international VALUES (5,'SQLReport',14,'DSN(Data Source Name)',1055127500,NULL); +INSERT INTO international VALUES (13,'Auth/LDAP',1,'Invalid LDAP connection URL. Contact your administrator.',1071849063,''); +INSERT INTO international VALUES (12,'Auth/LDAP',1,'No LDAP Url Specified for this user',1071848371,''); INSERT INTO international VALUES (8,'SQLReport',14,'SQL¥ì¥Ý¡¼¥È¤òÊÔ½¸',1055126782,NULL); -INSERT INTO international VALUES (7,'SQLReport',14,'¥Ç¡¼¥¿¥Ù¡¼¥¹¥Ñ¥¹¥ï¡¼¥É',1055126742,NULL); INSERT INTO international VALUES (61,'SQLReport',14,'SQL¥ì¥Ý¡¼¥È¡¡ÄɲÃ/ÊÔ½¸',1055126713,NULL); -INSERT INTO international VALUES (6,'SQLReport',14,'¥Ç¡¼¥¿¥Ù¡¼¥¹¥æ¡¼¥¶¡¼',1055126684,NULL); -INSERT INTO international VALUES (3,'SQLReport',14,'¥ì¥Ý¡¼¥È¥Æ¥ó¥×¥ì¡¼¥È',1055126580,NULL); +INSERT INTO international VALUES (102,'DataForm',1,'Subtext',NULL,NULL); INSERT INTO international VALUES (16,'SQLReport',14,'¥Ç¥Ð¥Ã¥°¤·¤Þ¤¹¤«¡©',1055126538,NULL); INSERT INTO international VALUES (12,'SQLReport',14,'¥Ç¥Ð¥Ã¥°¥¨¥é¡¼¡§¥Ç¡¼¥¿¥Ù¡¼¥¹¤ËÀܳ¤Ç¤­¤Þ¤»¤ó¡£',1055126482,NULL); INSERT INTO international VALUES (5,'Product',14,'¤³¤Î»ÅÍͤòºï½ü¤·¤Æ¤â¤¤¤¤¤Ç¤¹¤«¡©',1055126370,NULL); @@ -13928,28 +13437,20 @@ INSERT INTO international VALUES (3,'HttpProxy',14,'HTTP INSERT INTO international VALUES (2,'HttpProxy',14,'HTTP¥×¥í¥­¥·¤òÊÔ½¸',1055124449,NULL); INSERT INTO international VALUES (10,'HttpProxy',14,'HTTP¥×¥í¥­¥·¡¡ÄɲÃ/ÊÔ½¸',1055124348,NULL); INSERT INTO international VALUES (616,'WebGUI',14,'WebGUIÎ×»þ¥Ñ¥¹\r\nWebGUI¥¤¥á¡¼¥¸¤ª¤è¤Ójavascript¥Õ¥¡¥¤¥ë¤ò´Þ¤à¥Ç¥£¥ì¥¯¥È¥ê¤Ø¤Î¥¦¥§¥Ö¥Ñ¥¹¤Ç¤¹¡£\r\n\r\nºÇÂçźÉÕ¥Õ¥¡¥¤¥ë¥µ¥¤¥º\r\n¤³¤Î¥µ¥¤¥È¤Ø¥¢¥Ã¥×¥í¡¼¥É¤Ç¤­¤ëºÇÂç¤Î¥Õ¥¡¥¤¥ë¤Î¥µ¥¤¥º¤Ç¤¹¡£¤³¤ì¤Ï¡¢¥Õ¥¡¥¤¥ë¤ä¥¤¥á¡¼¥¸(µ­»ö¤È¥æ¡¼¥¶¡¼Åê¹Æ¤Ê¤É)¤Î¥¢¥Ã¥×¥í¡¼¥É¤¬¤Ç¤­¤ëÁ´¤Æ¤ÎWobject¤Ë¤¢¤Æ¤Ï¤Þ¤ê¤Þ¤¹¡£¤³¤Î¥µ¥¤¥º¤Îñ°Ì¤Ï¥­¥í¥Ð¥¤¥È¤Ç¤¹¡£\r\n\r\n¥µ¥à¥Í¥¤¥ë¥µ¥¤¥º\r\n¥µ¥à¥Í¥¤¥ë¤ÎÃæ¤ÇºÇĹ¤Î¥µ¥¤¥º¡£¥µ¥à¥Í¥¤¥ë¤Ï¥¤¥á¡¼¥¸¤Î½Ä²£Èæ¤ò°Ý»ý¤·¤Þ¤¹¡£¤·¤¿¤¬¤Ã¤Æ¤³¤ÎÃͤò100¤Ë¥»¥Ã¥È¤·¡¢Éý400¥Ô¥¯¥»¥ë¡¦¹â¤µ200¥Ô¥¯¥»¥ë¤Ç¤¢¤ë¥¤¥á¡¼¥¸¤ò»ÈÍѤ¹¤ë¤È¡¢¥µ¥à¥Í¥¤¥ë¤ÏÉý100¥Ô¥¯¥»¥ë¤ª¤è¤Ó¹â¤µ50¥Ô¥¯¥»¥ë¤Ë¤Ê¤ê¤Þ¤¹¡£\r\n\r\nÃí:¥¤¥á¡¼¥¸¤¬¥·¥¹¥Æ¥à¤Ë¥¢¥Ã¥×¥í¡¼¥É¤µ¤ì¤ë¤È¤È¤â¤Ë¡¢¥µ¥à¥Í¥¤¥ë¤Ï¼«Æ°Åª¤ËÀ¸À®¤µ¤ì¤Þ¤¹¡£\r\n\r\n¥¦¥§¥Ö°À­¥Ñ¥¹\r\n°À­¤¬³ÊǼ¤µ¤ì¤ë¤³¤È¤Ë¤Ê¤Ã¤Æ¤¤¤ë¥Ç¥£¥ì¥¯¥È¥ê¤Î¥¦¥§¥Ö¥Ñ¥¹¡£\r\n\r\n¥µ¡¼¥Ð¡¼Â°À­¥Ñ¥¹\r\n°À­¤¬³ÊǼ¤µ¤ì¤ë¤³¤È¤Ë¤Ê¤Ã¤Æ¤¤¤ë¥Ç¥£¥ì¥¯¥È¥ê¤Î¥í¡¼¥«¥ë¥Ñ¥¹¡£(/var/www/public/public/uploads)¥¦¥§¥Ö¥µ¡¼¥!\nС¼¤Ï¡¢¤½¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ë½ñ¤­¹þ¤à¸¢¸Â¤ò»ý¤Ã¤Æ¤¤¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó¡£',1055124132,NULL); -INSERT INTO international VALUES (61,'ExtraColumn',14,'ÆÃÊ̤ʥ³¥é¥à¡¡ÄɲÃ/ÊÔ½¸',1055124032,NULL); -INSERT INTO international VALUES (6,'ExtraColumn',14,'ÆÃÊ̤ʥ³¥é¥à¤òÊÔ½¸',1055123990,NULL); -INSERT INTO international VALUES (1,'ExtraColumn',14,'ÆÃÊ̤ʥ³¥é¥à',1055123956,NULL); INSERT INTO international VALUES (85,'EventsCalendar',14,'¥«¥ì¥ó¥À¡¼¤Î°ìÈֺǸåÈø',1055123917,NULL); INSERT INTO international VALUES (83,'EventsCalendar',14,'¥«¥ì¥ó¥À¡¼¤Î°ìÈÖÀèÆ¬',1055123842,NULL); INSERT INTO international VALUES (8,'FileManager',14,'³µÍ×',1055123671,NULL); INSERT INTO international VALUES (11,'Article',14,'µ­»öÃæ¤Ë¡ãbr¡ä¥¿¥°¤òÆþÎϤ·¤Ê¤¤¾ì¹ç¤Î¤ß¡¢¡Ö¤Ï¤¤¡×¤òÁªÂò¤·¤Æ²¼¤µ¤¤¡£',1055123546,NULL); -INSERT INTO international VALUES (76,'FAQ',14,'FAQ¥Æ¥ó¥×¥ì¡¼¥È',1055123271,NULL); -INSERT INTO international VALUES (12,'FAQ',14,'Q&A¤òÊѹ¹¤·¤Þ¤¹¤«¡©',1055123175,NULL); INSERT INTO international VALUES (6,'Auth/SMB',14,'BDC(Backup Domain Controller)',1055122798,NULL); INSERT INTO international VALUES (5,'Auth/SMB',14,'PDC(Primary Domain Controller)',1055122762,NULL); INSERT INTO international VALUES (4,'Auth/LDAP',14,'DN(Distinguished Name)¤ËÀܳ',1055122696,NULL); -INSERT INTO international VALUES (614,'WebGUI',14,'¥¹¥¿¥¤¥ë¤ÏWebGUI¤Î¥Ú¡¼¥¸¤Î\"¥ë¥Ã¥¯¥¢¥ó¥É¥Õ¥£¡¼¥ë\"¤ò´ÉÍý¤¹¤ë¤¿¤á¤Ë»ÈÍѤµ¤ì¤Þ¤¹¡£WebGUI¤Ç¤Ï¤¤¤¯¤Ä¤Ç¤â¿¤¯¤Î¥¹¥¿¥¤¥ë¤ò»ý¤Ä¤³¤È¤¬¤Ç¤­¡¢¹¥¤­¤Ê¤À¤±¥Ç¥¶¥¤¥ó¤òÊѹ¹¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£²ñ¼Ò¤Î¥Ñ¥ó¥Õ¥ì¥Ã¥È¤Î¤è¤¦¤Ê¥Ú¡¼¥¸¡¢Yahoo!¤Î¤è¤¦¤Ê¥Ú¡¼¥¸¡¢ËܤÎÃæ¤Ë¤¢¤ë¤è¤¦¤Ê¥Ú¡¼¥¸¤Ë¤¹¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹¡£¥¹¥¿¥¤¥ë´ÉÍýµ¡Ç½¤ò»È¤¦¤³¤È¤Ë¤è¤Ã¤Æ¡¢¥Ç¥¶¥¤¥ó¤ò¤É¤ó¤ÊÉ÷¤Ë¤Ç¤âÊѤ¨¤é¤ì¤ë¤Î¤Ç¤¹¡£\r\n\r\nWebGUI¤Ë¤Ï¡¢¤¤¤¯¤Ä¤«¤Î¥¹¥¿¥¤¥ë¤¬ÍѰդµ¤ì¤Æ¤¤¤Þ¤¹¡£ºÇ½é¤Î¤¤¤¯¤Ä¤«¤Ï¡¢WbGUI¼«ÂΤ˻ÈÍѤµ¤ì¤Þ¤¹¤Î¤Ç¡¢ÊÔ½¸¡¦ºï½ü¤·¤Ê¤¤¤³¤È¤ò¤ªÁ¦¤á¤·¤Þ¤¹¡£¸å¤í¤ÎÊý¤Î¤¤¤¯¤Ä¤«¤Ï¥µ¥ó¥×¥ë¤Ç¤¹¤Î¤Ç¡¢¹¥¤­¤Ê¤À¤±ÊÔ½¸¡¦ºï½ü¤·¤ÆÄº¤±¤Þ¤¹¡£\r\n¥¯¥ê¥Ã¥×¥Ü¡¼¥É\r\n¤³¤Î¥¹¥¿¥¤¥ë¤Ï¥¯¥ê¥Ã¥×¥Ü¡¼¥É¥·¥¹¥Æ¥à¤Ë¤è¤Ã¤Æ»ÈÍѤµ¤ì¤Þ¤¹¡£\r\n\r\n¥Õ¥§¡¼¥ë¥»¡¼¥Õ\r\n¤¢¤Ê¤¿¤¬¤¤¤¯¤Ä¤«¤Î¥Ú¡¼¥¸¤Ë»ÈÍѤµ¤ì¤Æ¤¤¤ë¥¹¥¿¥¤¥ë¤òºï½ü¤¹¤ë»þ¡¢¥Õ¥§¡¼¥ë¥»¡¼¥Õ¥¹¥¿¥¤¥ë¤Ï¤½¤Î¥Ú¡¼¥¸¤ËŬÍѤµ¤ì¤Þ¤¹¡£¤³¤Î¥¹¥¿¥¤¥ë¤Ë¤ÏÇò¤¤Çطʤª¤è¤Óñ½ã¤Ê¥Ê¥Ó¥²¡¼¥·¥ç¥ó¤¬¤¢¤ê¤Þ¤¹¡£\r\n\r\n°õºþ²Äǽ¥Ú¡¼¥¸\r\n^r;¤!\nÎ¥Þ¥¯¥í¤òÃÖ¤¯¤È¡¢¥æ¡¼¥¶¡¼¤¬¤½¤³¤ò¥¯¥ê¥Ã¥¯¤¹¤ì¤Ð¥Ú¡¼¥¸¤Î¥Ç¥¶¥¤¥ó¤¬¤³¤Î¥¹¥¿¥¤¥ë¤ËÊѤï¤ê¤Þ¤¹¡£¤³¤Î¥¹¥¿¥¤¥ë¤Ç¤Ï¡¢¤Á¤ç¤Ã¤È¤·¤¿¥í¥´¤äÃøºî¸¢¤Ê¤É¤Î¥á¥Ã¥»¡¼¥¸¤ò°õºþ²Äǽ¤Ê¥Ú¡¼¥¸¤ËÃÖ¤¯¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£\r\n¥Ñ¥Ã¥±¡¼¥¸\r\n¤³¤Î¥¹¥¿¥¤¥ë¤Ï¥Ñ¥Ã¥±¡¼¥¸´ÉÍý¥·¥¹¥Æ¥à¤Ë¤è¤Ã¤Æ»ÈÍѤµ¤ì¤Þ¤¹¡£\r\n\r\n¥´¥ßÈ¢\r\n¤³¤Î¥¹¥¿¥¤¥ë¤Ï¤´¤ßÈ¢¥·¥¹¥Æ¥à¤Ë¤è¤Ã¤Æ»ÈÍѤµ¤ì¤Þ¤¹¡£\r\n\r\n¥Ç¥â¥¹¥¿¥¤¥ë\r\n¤³¤ì¤Ï¥Æ¥ó¥×¥ì¡¼¥È¥µ¥¤¥È(www.freewebtemplates.com)¤«¤éÆÀ¤¿¥µ¥ó¥×¥ë¥Ç¥¶¥¤¥ó¤Ç¤¹¡£\r\n\r\nPlain Black Software (black) & (white)\r\n¤³¤ì¤é¤Î¥Ç¥¶¥¤¥ó¤ÏPlain Black¥µ¥¤¥È¾å¤Ç»ÈÍѤµ¤ì¤Þ¤¹¡£\r\n\r\nYahoo!\r\n¤³¤ì¤ÏYahoo!¥µ¥¤¥È¤Î¥Ç¥¶¥¤¥ó¤Ç¤¹¡£(µö²Ä¤Ê¤·¤Ç»ÈÍѤ·¤Æ¤¤¤Þ¤¹¡£)\r\n\r\nWebGUI\r\n¤³¤ì¤ÏWebGUI¥í¥´¤òÆÃ¿§¤È¤¹¤ëñ½ã¤ÊÀ߷פǤ¹¡£\r\n\r\nWebGUI 4\r\n¤³¤Î¥¹¥¿¥¤¥ë¤Ï¥Ð¡¼¥¸¥ç¥ó4.0.0¤Î»þÅÀ¤ÇWebGUI¤Ë²Ã¤¨¤é¤ì¤¿¥¹¥¿¥¤¥ë¤Ç¤¹¡£¤½¤ì¤Ïº£¥Ç¥Õ¥©¥ë¥È¥¹¥¿¥¤¥ë¤Ç¡ÖWebGUI¡×¥¹¥¿¥¤¥ë¤ËÂå¤ï¤ê¤Þ¤·¤¿¡£',1054855738,NULL); INSERT INTO international VALUES (588,'WebGUI',14,'WebGUI¤Î¸ø¼°ÇÛÉÛ¤ÎËÝÌõ¤òPlain Black¤ËÅÐÏ¿¤·¤Þ¤¹¤«¡©¡Ö¤Ï¤¤¡×¥ê¥ó¥¯¤ò¥¯¥ê¥Ã¥¯¤¹¤ë¤È¡¢Plain Black¤Ë¤½¤Î¥½¥Õ¥È¥¦¥§¥¢ÇÛÉÛ¤ÎËÝÌõ¤ò»ÈÍѤ¹¤ë̵À©¸Â¤Î¥é¥¤¥»¥ó¥¹¤òÍ¿¤¨¤Þ¤¹¡£',1054855459,NULL); -INSERT INTO international VALUES (621,'WebGUI',14,'¥¹¥¿¥¤¥ë¤È¤Ï»ÈÍѲÄǽ¤ÊWebGUI¥Þ¥¯¥í¤Î¤³¤È¤Ç¤¹¡£¾ÜºÙ¤Ï¡È¥Þ¥¯¥í¤ò»ÈÍѤ¹¤ë¡É¤ò¤´Í÷²¼¤µ¤¤¡£\r\n\r\n¥¹¥¿¥¤¥ë̾\r\n¤½¤Î¥¹¥¿¥¤¥ë¤¬¤É¤Î¤è¤¦¤Ê¤â¤Î¤«°ìÌܤÇʬ¤«¤ë¤è¤¦¤ÊÆÈ¼«¤Î̾Á°¤Ç¤¹¡£Ì¾Á°¤Ë¤è¤Ã¤Æ¥¹¥¿¥¤¥ë¤½¤Î¤â¤Î¤¬Êѹ¹¤µ¤ì¤ë¤³¤È¤Ï¤¢¤ê¤Þ¤»¤ó¡£\r\n\r\nBODY\r\nʸ»úÄ̤ê¤Ë¤¢¤Ê¤¿¤Î¥µ¥¤¥È¤ÎHTML¤ÎBODY¤Ç¤¹¡£¥Ú¡¼¥¸¥Ê¥Ó¥²¡¼¥·¥ç¥ó¤¬¤É¤Î¤è¤¦¤Ë¥ì¥¤¥¢¥¦¥È¤µ¤ì¤ë¤«¤ä¡¢¥í¥´¡¢Ãøºî¸¢¡¢¤Ê¤É¿¤¯¤Î¤â¤Î¤òÄêµÁ¤·¤Þ¤¹¡£',1054689915,NULL); INSERT INTO international VALUES (620,'WebGUI',14,'¥°¥ë¡¼¥×¤òºï½ü¤·¡¢¤½¤Î¥°¥ë¡¼¥×¤Ë°¤¹¤ë¤¹¤Ù¤Æ¤Î¥æ¡¼¥¶¤òÄɤ¤½Ð¤¹¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¤·¤«¤·¥°¥ë¡¼¥×¤Îºï½ü¤Ë¤è¤Ã¤Æ¥æ¡¼¥¶¡¼¤¬¥¢¥¯¥»¥¹¤·¤Æ¤¤¤ë¥Ú¡¼¥¸¤«¤é¥æ¡¼¥¶¡¼¤¬¸ÉΩ¤·¤Ê¤¤¤è¤¦¤ËÃí°Õ¤·¤Æ¤¯¤À¤µ¤¤¡£\r\n\r\nºï½ü¤·¤è¤¦¤È¤¹¤ë¤È¡¢ºï½ü¼Â¹Ô¤ò¤¹¤ë¤«¤É¤¦¤«¤ò³Îǧ¤·¤Þ¤¹¡£¡Ö¤Ï¤¤¡×¤òÁªÂò¤¹¤ë¤Èºï½ü¤ò¼Â¹Ô¤·¤Þ¤¹¡£°ìÅÙºï½ü¤·¤¿¥Ç¡¼¥¿¡¼¤ÏÆóÅ٤ȸµ¤ËÌ᤻¤Þ¤»¤ó¡£¡Ö¤¤¤¤¤¨¡×¤òÁªÂò¤¹¤ë¤È¡¢¸µ¤Î²èÌ̤ËÌá¤ê¤Þ¤¹¡£',1054689309,NULL); INSERT INTO international VALUES (611,'WebGUI',14,'²ñ¼Ò̾\r\n¤¢¤Ê¤¿¤Î²ñ¼Ò̾¤Ç¤¹¡£¤³¤ì¤ÏÅŻҥ᡼¥ë¤Ëɽ¼¨¤µ¤ì¤Þ¤¹¡£¤¹¤Ù¤Æ¤Î¥á¡¼¥ë¡¢¤ª¤è¤Ó²ñ¼Ò̾¥Þ¥¯¥í¤ò»ÈÍѤ·¤¿¤È¤³¤í¤Ëɽ¼¨¤µ¤ì¤Þ¤¹¡£\r\n\r\n²ñ¼Ò¥á¡¼¥ë¥¢¥É¥ì¥¹\r\n¤¢¤Ê¤¿¤Î²ñ¼Ò¤Î¥á¡¼¥ë¥¢¥É¥ì¥¹¤Ç¤¹¡£¼«Æ°Á÷¿®¤Î¥á¡¼¥ë¤Ï¤³¤Î¥¢¥É¥ì¥¹¤«¤éÁ÷¿®¤µ¤ì¤Þ¤¹¡£WebGUI¥Þ¥¯¥í¥·¥¹¥Æ¥à¤ò·Ðͳ¤·¤Æ»ÈÍѤ¹¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹¡£\r\n\r\n²ñ¼Ò¤ÎURL\r\n¤¢¤Ê¤¿¤Î²ñ¼Ò¤Î¥¦¥§¥ÖURL¡£¤³¤³¤ËWebGUI¥·¥¹¥Æ¥à¤«¤éÁ÷¤é¤ì¤¿¤¹¤Ù¤Æ¤ÎÅŻҥ᡼¥ë¤¬É½¼¨¤µ¤ì¤Þ¤¹¡£WebGUI¥Þ¥¯¥í¥·¥¹¥Æ¥à¤ò·Ðͳ¤·¤Æ»ÈÍѤ¹¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹¡£',1054675493,NULL); INSERT INTO international VALUES (639,'WebGUI',14,'¥Æ¥ó¥×¥ì¡¼¥È̾\r\n¤¤¤Ä¡¢²¿¤Î¤¿¤á¤Ë¥Æ¥ó¥×¥ì¡¼¥È¤òŬÍѤ·¤¿¤«Ê¬¤«¤ë¤è¤¦¤Ë¡¢Ê¬¤«¤ê¤ä¤¹¤¤Ì¾Á°¤òÉÕ¤±¤Æ²¼¤µ¤¤¡£\r\n\r\n̾Á°Íó\r\n¤³¤ì¤Ï¤É¤Î¥¿¥¤¥×¤Î¥Æ¥ó¥×¥ì¡¼¥È¤Ç¤¹¤«¡£\r\n\r\n¥Æ¥ó¥×¥ì¡¼¥È\r\n¥Æ¥ó¥×¥ì¡¼¥È¥³¥Þ¥ó¥É¤ª¤è¤ÓÊÑ¿ô¤Î»ÈÍÑ¡¢¥Þ¥¯¥í¤ª¤è¤ÓHTML¤ò»ÈÍѤ·¤Æ¡¢¤¢¤Ê¤¿¤Î¥Æ¥ó¥×¥ì¡¼¥È¤òºîÀ®¤·¤Æ¤¯¤À¤µ¤¤¡£\r\n\r\nÃí:¿·¤·¤¤¥Ð¡¼¥¸¥ç¥ó¤Î¥ê¥ê¡¼¥¹¤´¤È¤ËÊѹ¹¤µ¤ì¤ë²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¤Î¤Ç¡¢WebGUI¤ËÉÕ°¤¹¤ë¥Ç¥Õ¥©¥ë¥È¥Æ¥ó¥×¥ì¡¼¥È¤òÊÔ½¸¤·¤Ê¤¤¤Ç²¼¤µ¤¤¡£ÊÔ½¸¤·¤¿¤¤¾ì¹ç¤Ï¡¢¥Æ¥ó¥×¥ì¡¼¥È¤ò¥³¥Ô¡¼¤·¤Æ¡¢¤½¤Î¥³¥Ô¡¼¤òÊÔ½¸¤·¤Æ²¼¤µ¤¤¡£',1055893072,NULL); INSERT INTO international VALUES (362,'WebGUI',14,'ʤó¤Ç',1054618588,NULL); INSERT INTO international VALUES (3,'Survey',14,'¥¢¥ó¥±¡¼¥È¡¡ÄɲÃ/ÊÔ½¸',1054538385,NULL); INSERT INTO international VALUES (15,'Product',14,'Êݾڽñ',1054526571,NULL); -INSERT INTO international VALUES (609,'WebGUI',14,'¥¹¥¿¥¤¥ë¤òºï½ü¤¹¤ë¤È¡¢¤½¤Î¥¹¥¿¥¤¥ë¤ò»ÈÍѤ·¤Æ¤¤¤¿¥Ú¡¼¥¸¤Ï¡¢ºï½ü¸å¥Õ¥§¡¼¥ë¥»¡¼¥Õ(¥Ç¥Õ¥©¥ë¥È)¥¹¥¿¥¤¥ë¤ËÊѹ¹¤µ¤ì¤Þ¤¹¡£ºï½ü¤¹¤ëÁ°¤Ë¤½¤Î¥¹¥¿¥¤¥ë¤ò»ÈÍѤ·¤Æ¤¤¤ë¥Ú¡¼¥¸¤¬¤Ê¤¤¤³¤È¤ò³Îǧ¤·¤Æ¤ª¤¤¤¿¤Û¤¦¤¬¤è¤¤¤Ç¤·¤ç¤¦¡£\r\n\r\n¥ª¥Ú¥ì¡¼¥·¥ç¥ó¤òºï½ü¤¹¤ë¤È¡¢ºï½ü¤·¤Æ¤â¤è¤¤¤«Ìä¤ï¤ì¤Þ¤¹¡£¡Ö¤Ï¤¤¡×¤òÁªÂò¤¹¤ë¤È¡¢ºï½ü¤·¤Þ¤¹¡£ºï½ü¤·¤¿¥Ç¡¼¥¿¡¼¤òÌ᤹¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó¡£¡Ö¤¤¤¤¤¨¡×¤òÁªÂò¤¹¤ë¤È¸µ¤Î²èÌ̤ËÌá¤ê¤Þ¤¹¡£',1054521465,NULL); INSERT INTO international VALUES (608,'WebGUI',14,'¥Ú¡¼¥¸¤òºï½ü¤¹¤ëºÝ¡¢³Îǧ¤·¤Æ¤«¤éºï½ü¤·¤Æ¤¯¤À¤µ¤¤¡£ºï½ü¤¹¤ë¤È¡¢¤½¤Î¥Ú¡¼¥¸¤ÎÆâÍÆ¡¢¤½¤Î¥Ú¡¼¥¸¤Ë´ØÏ¢¤¹¤ë¤¹¤Ù¤Æ¤Î¥µ¥Ö¥Ú¡¼¥¸¡¢¤ª¤è¤Ó¤½¤Î¤¹¤Ù¤Æ¤ÎÆâÍÆ¤òºï½ü¤·¤Þ¤¹¡£Êݸ¤·¤¿¤¤ÆâÍÆ¤Ï¤¹¤Ù¤Æ¥³¥Ô¡¼¤·¤¿¤³¤È³Îǧ¤·¤Æ¤«¤éºï½ü¤·¤Æ¤¯¤À¤µ¤¤¡£\r\n\r\nºï½ü¤ò¼Â¹Ô¤¹¤ë¤«¤òÌä¤ï¤ì¤Þ¤¹¡£¡Ö¤Ï¤¤¡×¤òÁªÂò¤¹¤ë¤Èºï½ü¤ò¼Â¹Ô¤·¤Þ¤¹¡£°ìÅÙºï½ü¤·¤¿¥Ç¡¼¥¿¡¼¤Ï¸µ¤ËÌ᤻¤Þ¤»¤ó¡£¡Ö¤¤¤¤¤¨¡×¤òÁªÂò¤¹¤ë¤È¡¢¸µ¤Î²èÌ̤ËÌá¤ê¤Þ¤¹¡£',1054521043,NULL); INSERT INTO international VALUES (60,'WebGUI',14,'¥¢¥«¥¦¥ó¥È¤ò̵¸ú¤Ë¤·¤Þ¤¹¤«¡£Ìµ¸ú¤Ë¤¹¤ë¤È¤¢¤Ê¤¿¤Î¥¢¥«¥¦¥ó¥È¾ðÊó¤Ï¼º¤ï¤ì¤Þ¤¹¤¬¤è¤í¤·¤¤¤Ç¤¹¤«¡©',1054520826,NULL); INSERT INTO international VALUES (698,'WebGUI',14,'¥«¥ë¥Þ¤È¤Ï¥æ¡¼¥¶¡¼¤ÎÁàºî¤òÇİ®¤·¡¢¤½¤ÎÁ±¤·°­¤·¤òȽÃǤ¹¤ëÊýË¡¤Ç¤¹¡£°ìö¥«¥ë¥Þ¤¬»ÈÍѲÄǽ¤Ë¤Ê¤ë¤È¡¢¥«¥ë¥Þµ¡Ç½¤òÈ¿±Ç¤¹¤ë¤Î¤Ç¡¢WebGUIÆâ¤Î¿¤¯¤Î¥á¥Ë¥å¡¼¤¬Êѹ¹¤µ¤ì¤Þ¤¹¡£\r\n\r\n¥æ¡¼¥¶¡¼¤¬¥í¥°¥¤¥ó¤·¤Æ¤¤¤ë´Ö¡¢¤½¤Î¥æ¡¼¥¶¡¼¤ÎÁàºî¤òÇİ®¤·¡¢¤½¤ì¤¬¥µ¥¤¥È¤Ë¤É¤ì¤¯¤é¤¤ÌòΩ¤Ã¤Æ¤¤¤ë¤«Ê¬¤«¤ê¤Þ¤¹¡£¤Þ¤¿¤½¤Î¥«¥ë¥Þ¤Î¥ì¥Ù¥ë¤Ë¤è¤Ã¤Æ¤¢¤Ê¤¿¤ÏÆÃħÄɲäΥ¢¥¯¥»¥¹¸¢¤ò¥æ¡¼¥¶¡¼¤ËÍ¿¤¨¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£\r\n\r\nWebGUIµ¬Äê¤Ë¤Æ¥«¥ë¥Þ¤Ë¤Ä¤¤¤Æ¤Î¾ÜºÙ¤òÆÀ¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£',1054520671,NULL); @@ -14028,7 +13529,6 @@ INSERT INTO international VALUES (670,'WebGUI',14,' INSERT INTO international VALUES (669,'WebGUI',14,'¥Þ¥¯¥í¡¡»ÈÍѤ¹¤ë',1054454474,NULL); INSERT INTO international VALUES (668,'WebGUI',14,'¥¹¥¿¥¤¥ë¥·¡¼¥È¡¡»ÈÍѤ¹¤ë',1054454449,NULL); INSERT INTO international VALUES (667,'WebGUI',14,'¥°¥ë¡¼¥×¡¡ÄɲÃ/ÊÔ½¸',1054454417,NULL); -INSERT INTO international VALUES (666,'WebGUI',14,'¥¹¥¿¥¤¥ë¡¡ÄɲÃ/ÊÔ½¸',1054454393,NULL); INSERT INTO international VALUES (665,'WebGUI',14,'¥°¥ë¡¼¥×¡¡ºï½ü',1054454370,NULL); INSERT INTO international VALUES (664,'WebGUI',14,'Wobject¡¡ºï½ü',1054454349,NULL); INSERT INTO international VALUES (663,'WebGUI',14,'ÀßÄê´ÉÍý¡¡ÊÔ½¸',1054454325,NULL); @@ -14036,7 +13536,6 @@ INSERT INTO international VALUES (662,'WebGUI',14,' INSERT INTO international VALUES (65,'WebGUI',14,'¥¢¥«¥¦¥ó¥È¤ò»ÈÍÑÉԲĤˤ¹¤ë',1054454270,NULL); INSERT INTO international VALUES (661,'WebGUI',14,'¥Õ¥¡¥¤¥ëÀßÄê¡¡ÊÔ½¸',1054453118,NULL); INSERT INTO international VALUES (660,'WebGUI',14,'¥°¥ë¡¼¥×¡¡´ÉÍý',1054453097,NULL); -INSERT INTO international VALUES (659,'WebGUI',14,'¥¹¥¿¥¤¥ë¡¡´ÉÍý',1054453076,NULL); INSERT INTO international VALUES (658,'WebGUI',14,'¥æ¡¼¥¶¡¼¡¡´ÉÍý',1054453049,NULL); INSERT INTO international VALUES (652,'WebGUI',14,'¥æ¡¼¥¶¡¼ÀßÄê¡¡ÊÔ½¸',1054453016,NULL); INSERT INTO international VALUES (596,'WebGUI',14,'Ìõ¤Ê¤·',1054452794,NULL); @@ -14052,14 +13551,12 @@ INSERT INTO international VALUES (422,'WebGUI',14,' INSERT INTO international VALUES (585,'WebGUI',14,'ËÝÌõ¤ò´ÉÍý',1054320764,NULL); INSERT INTO international VALUES (4,'WobjectProxy',14,'Wobject¤Î¥×¥í¥­¥·¥ó¥°¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£¥×¥í¥­¥·¥ó¥°¤µ¤ì¤¿Wobject¤Ïºï½ü¤µ¤ì¤Þ¤·¤¿¡£',1054316289,NULL); INSERT INTO international VALUES (827,'WebGUI',14,'Wobject¥Æ¥ó¥×¥ì¡¼¥È',1054315885,NULL); -INSERT INTO international VALUES (742,'WebGUI',14,'¥Æ¥ó¥×¥ì¡¼¥È¤ò´ÉÍý',1054315768,NULL); INSERT INTO international VALUES (72,'WebGUI',14,'Éüµì',1054315708,NULL); INSERT INTO international VALUES (71,'WebGUI',14,'¥Ñ¥¹¥ï¡¼¥É¤òÉüµì',1054315661,NULL); INSERT INTO international VALUES (7,'WebGUI',14,'¥æ¡¼¥¶¡¼¤ò´ÉÍý',1054315618,NULL); INSERT INTO international VALUES (657,'WebGUI',14,'¥æ¡¼¥¶¡¼¡¡ºï½ü',1054315583,NULL); INSERT INTO international VALUES (656,'WebGUI',14,'²ñ¼Ò¾ðÊó¡¡ÊÔ½¸',1054315564,NULL); INSERT INTO international VALUES (655,'WebGUI',14,'¥æ¡¼¥¶¡¼¡¡ÄɲÃ/ºï½ü',1054315547,NULL); -INSERT INTO international VALUES (654,'WebGUI',14,'¥¹¥¿¥¤¥ë¡¡ºï½ü',1054315522,NULL); INSERT INTO international VALUES (653,'WebGUI',14,'¥Ú¡¼¥¸¡¡ºï½ü',1054315504,NULL); INSERT INTO international VALUES (642,'WebGUI',14,'¥Ú¡¼¥¸¡¡ÄɲÃ/ÊÔ½¸',1054315487,NULL); INSERT INTO international VALUES (62,'WebGUI',14,'Êݸ',1054315441,NULL); @@ -14099,7 +13596,7 @@ INSERT INTO international VALUES (387,'WebGUI',14,' INSERT INTO international VALUES (386,'WebGUI',14,'¥¤¥á¡¼¥¸¤òÊÔ½¸',1054313002,NULL); INSERT INTO international VALUES (374,'WebGUI',14,'¥Ñ¥Ã¥±¡¼¥¸´ÉÍý',1054312972,NULL); INSERT INTO international VALUES (354,'WebGUI',14,'¼õ¿®¥Ü¥Ã¥¯¥¹¤òɽ¼¨',1054312933,NULL); -INSERT INTO international VALUES (375,'WebGUI',14,'Ÿ³«¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤òÁªÂò',1054312910,NULL); +INSERT INTO international VALUES (15,'Navigation',1,'ancestors',1077079273,'Option on question \"return a loop with\".'); INSERT INTO international VALUES (372,'WebGUI',14,'¥æ¡¼¥¶¡¼¥°¥ë¡¼¥×¤òÊÔ½¸',1054312893,NULL); INSERT INTO international VALUES (371,'WebGUI',14,'¥°¥ë¡¼¥×¤òÄɲÃ',1054312870,NULL); INSERT INTO international VALUES (370,'WebGUI',14,'¥°¥ë¡¼¥×¤òÊÔ½¸',1054312853,NULL); @@ -14112,7 +13609,6 @@ INSERT INTO international VALUES (332,'WebGUI',14,' INSERT INTO international VALUES (328,'WebGUI',14,'¼«Âð¤ÎÅÅÏÃÈÖ¹æ',1054312632,NULL); INSERT INTO international VALUES (313,'WebGUI',14,'¤½¤Î¾¤Î¾ðÊó¤òµö²Ä¤·¤Þ¤¹¤«¡©',1054312428,NULL); INSERT INTO international VALUES (308,'WebGUI',14,'¥×¥í¥Õ¥£¡¼¥ëÀßÄê¤òÊÔ½¸',1054312359,NULL); -INSERT INTO international VALUES (3,'WebGUI',14,'¥¯¥ê¥Ã¥×¥Ü¡¼¥É¤«¤éޤêÉÕ¤±Ž¥Ž¥Ž¥',1054312335,NULL); INSERT INTO international VALUES (174,'WebGUI',14,'¥¿¥¤¥È¥ë¤òɽ¼¨',1054312271,NULL); INSERT INTO international VALUES (169,'WebGUI',14,'¿·µ¬¥æ¡¼¥¶¡¼¤òÄɲÃ',1054312248,NULL); INSERT INTO international VALUES (168,'WebGUI',14,'¥æ¡¼¥¶¡¼¤òÊÔ½¸',1054312227,NULL); @@ -14121,10 +13617,7 @@ INSERT INTO international VALUES (162,'WebGUI',14,' INSERT INTO international VALUES (159,'WebGUI',14,'¼õ¿®¥Ü¥Ã¥¯¥¹',1054312149,NULL); INSERT INTO international VALUES (161,'WebGUI',14,'ÅÐÏ¿¤·¤Þ¤·¤¿',1054312117,NULL); INSERT INTO international VALUES (160,'WebGUI',14,'ÅÐÏ¿Æü',1054312070,NULL); -INSERT INTO international VALUES (158,'WebGUI',14,'¿·µ¬¥¹¥¿¥¤¥ë¤òÄɲÃ',1054312043,NULL); -INSERT INTO international VALUES (156,'WebGUI',14,'¥¹¥¿¥¤¥ë¤òÊÔ½¸',1054312008,NULL); INSERT INTO international VALUES (148,'WebGUI',14,'Wobjects',1054311985,NULL); -INSERT INTO international VALUES (155,'WebGUI',14,'¤³¤Î¥¹¥¿¥¤¥ë¤È¡¢¡Ö¥Õ¥§¡¼¥ë¥»¡¼¥Õ¡×¥¹¥¿¥¤¥ë¤Ë¤³¤Î¥¹¥¿¥¤¥ë¤ò»È¤¦¤¹¤Ù¤Æ¤Î¥Ú¡¼¥¸¤òºï½ü¤·¤Æ¤â¤¤¤¤¤Ç¤¹¤«¡©',1054311920,NULL); INSERT INTO international VALUES (144,'WebGUI',14,'Åý·×¤òɽ¼¨',1054311862,NULL); INSERT INTO international VALUES (143,'WebGUI',14,'ÀßÄê¤ò´ÉÍý',1054311842,NULL); INSERT INTO international VALUES (134,'WebGUI',14,'¥Ñ¥¹¥ï¡¼¥É¥á¥Ã¥»¡¼¥¸¤òÉüµì',1054311807,NULL); @@ -14141,7 +13634,7 @@ INSERT INTO international VALUES (47,'USS',14,' INSERT INTO international VALUES (21,'USS',14,'ÅÐÏ¿¤µ¤ì¤Þ¤·¤¿',1054311136,NULL); INSERT INTO international VALUES (13,'USS',14,'ÅÐÏ¿Æü',1054310994,NULL); INSERT INTO international VALUES (73,'Survey',14,'Á´¤Æ¤ÎÊÖÅú¤òºï½ü',1054310845,NULL); -INSERT INTO international VALUES (68,'Survey',14,'¥ì¥Ý¡¼¥È¤òɽ¼¨¤·¤Æ¥¨¥¯¥¹¥Ý¡¼¥È',1054310760,NULL); +INSERT INTO international VALUES (15,'WSClient',1,'Decode utf8 data?',1033575504,NULL); INSERT INTO international VALUES (65,'Survey',14,'Á´¤Æ¤ÎÍ×Ìó¤ò¥¨¥¯¥¹¥Ý¡¼¥È',1054310687,NULL); INSERT INTO international VALUES (64,'Survey',14,'ÊÖÅú¤ò¥¨¥¯¥¹¥Ý¡¼¥È',1054310668,NULL); INSERT INTO international VALUES (63,'Survey',14,'¼ÁÌä¤ò¥¨¥¯¥¹¥Ý¡¼¥È',1054310652,NULL); @@ -14198,23 +13691,14 @@ INSERT INTO international VALUES (3,'Poll',14,'Í­ INSERT INTO international VALUES (10,'Poll',14,'Åêɼ¤ò¥ê¥»¥Ã¥È',1054307750,NULL); INSERT INTO international VALUES (61,'MessageBoard',14,'·Ç¼¨ÈÄ¡¡ÄɲÃ/ÊÔ½¸',1054307658,NULL); INSERT INTO international VALUES (6,'MessageBoard',14,'·Ç¼¨ÈĤòÊÔ½¸',1054307636,NULL); -INSERT INTO international VALUES (72,'LinkList',14,'¥ê¥ó¥¯¡¡ÄɲÃ/ÊÔ½¸',1054306912,NULL); -INSERT INTO international VALUES (61,'LinkList',14,'¥ê¥ó¥¯¥ê¥¹¥È¡¡ÄɲÃ/ÊÔ½¸',1054306883,NULL); -INSERT INTO international VALUES (13,'LinkList',14,'¿·µ¬¥ê¥ó¥¯¤òÄɲÃ',1054306793,NULL); -INSERT INTO international VALUES (61,'Item',14,'¥¢¥¤¥Æ¥à¡¡ÄɲÃ/ÊÔ½¸',1054306753,NULL); -INSERT INTO international VALUES (3,'Item',14,'źÉÕ¥Õ¥¡¥¤¥ë¤òºï½ü',1054306715,NULL); -INSERT INTO international VALUES (2,'Item',14,'źÉÕ¥Õ¥¡¥¤¥ë',1054306690,NULL); +INSERT INTO international VALUES (89,'USS',14,'¿·µ¬¥ê¥ó¥¯¤òÄɲÃ',1054306793,NULL); INSERT INTO international VALUES (9,'FileManager',14,'¥Õ¥¡¥¤¥ë¥Þ¥Í¡¼¥¸¥ã¡¼¤òÊÔ½¸',1054306623,NULL); -INSERT INTO international VALUES (72,'FAQ',14,'¼ÁÌä¡¡ÄɲÃ/ÊÔ½¸',1054306460,NULL); INSERT INTO international VALUES (82,'EventsCalendar',14,'¸½ºß',1054306344,NULL); INSERT INTO international VALUES (72,'FileManager',14,'¥Õ¥¡¥¤¥ë¡¡ÄɲÃ/ÊÔ½¸',1054305539,NULL); INSERT INTO international VALUES (61,'FileManager',14,'¥Õ¥¡¥¤¥ë¥Þ¥Í¡¼¥¸¥ã¡¼¡¡ÄɲÃ/ÊÔ½¸',1054305492,NULL); -INSERT INTO international VALUES (9,'FAQ',14,'¿·µ¬¼ÁÌä¤òÄɲÃ',1054305410,NULL); +INSERT INTO international VALUES (83,'USS',14,'¿·µ¬¼ÁÌä¤òÄɲÃ',1054305410,NULL); INSERT INTO international VALUES (11,'FileManager',14,'¿·µ¬¥Õ¥¡¥¤¥ë¤òÄɲÃ',1054305382,NULL); INSERT INTO international VALUES (10,'FileManager',14,'¥Õ¥¡¥¤¥ë¤òÊÔ½¸',1054305336,NULL); -INSERT INTO international VALUES (8,'FAQ',14,'F.A.Q.¤òÊÔ½¸',1054305291,NULL); -INSERT INTO international VALUES (61,'FAQ',14,'F.A.Q.¡¡ÄɲÃ/ÊÔ½¸',1054305157,NULL); -INSERT INTO international VALUES (2,'FAQ',14,'F.A.Q.',1054305093,NULL); INSERT INTO international VALUES (91,'EventsCalendar',14,'¿·µ¬¥¤¥Ù¥ó¥È¤òÄɲÃ',1054304830,NULL); INSERT INTO international VALUES (89,'EventsCalendar',14,'³«»Ï¤«¤é3¥ö·î¤òɽ¼¨',1054304805,NULL); INSERT INTO international VALUES (88,'EventsCalendar',14,'³«»Ï¤«¤é6¥ö·î¤òɽ¼¨',1054304788,NULL); @@ -14277,7 +13761,6 @@ INSERT INTO international VALUES (817,'WebGUI',14,'Í­ INSERT INTO international VALUES (818,'WebGUI',14,'̵¸ú',1054295893,NULL); INSERT INTO international VALUES (816,'WebGUI',14,'¾õÂÖ',1054295693,NULL); INSERT INTO international VALUES (815,'WebGUI',14,'¥¢¥Ã¥×¥í¡¼¥É¤·¤è¤¦¤È¤·¤¿¥Õ¥¡¥¤¥ë¤ÏÂ礭¤¹¤®¤Þ¤¹',1054295663,NULL); -INSERT INTO international VALUES (814,'WebGUI',14,'¥¹¥¿¥¤¥ë¤ËÌá¤ë',1054295547,NULL); INSERT INTO international VALUES (812,'WebGUI',14,'¥á¥Ã¥»¡¼¥¸¤ÏÁ÷¿®¤µ¤ì¤Þ¤·¤¿¡£',1054295501,NULL); INSERT INTO international VALUES (811,'WebGUI',14,'º¹½Ð¿Í',1054295466,NULL); INSERT INTO international VALUES (810,'WebGUI',14,'Á÷¿®',1054295423,NULL); @@ -14339,7 +13822,6 @@ INSERT INTO international VALUES (64,'WebGUI',14,' INSERT INTO international VALUES (61,'WebGUI',14,'¥¢¥«¥¦¥ó¥È¾ðÊó¤ò¹¹¿·',1054264287,NULL); INSERT INTO international VALUES (605,'WebGUI',14,'¥°¥ë¡¼¥×¤òÄɲÃ',1054263145,NULL); INSERT INTO international VALUES (601,'WebGUI',14,'¥¤¥ó¥¿¡¼¥Ê¥·¥ç¥Ê¥ëID',1054263126,NULL); -INSERT INTO international VALUES (6,'WebGUI',14,'¥¹¥¿¥¤¥ë¤ò´ÉÍý',1054262985,NULL); INSERT INTO international VALUES (595,'WebGUI',14,'¥¤¥ó¥¿¡¼¥Ê¥·¥ç¥Ê¥ë¥á¥Ã¥»¡¼¥¸',1054262874,NULL); INSERT INTO international VALUES (592,'WebGUI',14,'¥­¥ã¥é¥¯¥¿¡¼¥»¥Ã¥È',1054262797,NULL); INSERT INTO international VALUES (591,'WebGUI',14,'¸À¸ì',1054262776,NULL); @@ -14380,7 +13862,6 @@ INSERT INTO international VALUES (51,'WebGUI',14,' INSERT INTO international VALUES (504,'WebGUI',14,'¥Æ¥ó¥×¥ì¡¼¥È',1054247613,NULL); INSERT INTO international VALUES (503,'WebGUI',14,'¥Æ¥ó¥×¥ì¡¼¥ÈID',1054247595,NULL); INSERT INTO international VALUES (502,'WebGUI',14,'¥Ç¥Õ¥©¥ë¥È¥Æ¥ó¥×¥ì¡¼¥È¤Ë¤³¤Î¥Æ¥ó¥×¥ì¡¼¥È¤È¤³¤Î¥Æ¥ó¥×¥ì¡¼¥È¤ò»ÈÍѤ·¤ÆÀßÄꤷ¤¿¤¹¤Ù¤Æ¤Î¥Ú¡¼¥¸¤òºï½ü¤·¤Æ¤â¤¤¤¤¤Ç¤¹¤«¡©',1054247530,NULL); -INSERT INTO international VALUES (501,'WebGUI',14,'ËÜʸ',1054247226,NULL); INSERT INTO international VALUES (500,'WebGUI',14,'¥Ú¡¼¥¸ID',1054247021,NULL); INSERT INTO international VALUES (50,'WebGUI',14,'¥æ¡¼¥¶¡¼Ì¾',1054246994,NULL); INSERT INTO international VALUES (498,'WebGUI',14,'½ªÎ»Æü',1054246824,NULL); @@ -14440,7 +13921,6 @@ INSERT INTO international VALUES (427,'WebGUI',14,' INSERT INTO international VALUES (426,'WebGUI',14,'¥í¥°ÍúÎò',1054194495,NULL); INSERT INTO international VALUES (425,'WebGUI',14,'¥¢¥¯¥Æ¥£¥Ö¥»¥Ã¥·¥ç¥ó',1054194470,NULL); INSERT INTO international VALUES (420,'WebGUI',14,'²¿¤âºï½ü¤·¤Ê¤¤',1054194193,NULL); -INSERT INTO international VALUES (416,'WebGUI',14,'¥ê¥¯¥¨¥¹¥È¤Ë¤è¤ëÌäÂ꤬ȯÀ¸¤·¤Þ¤·¤¿\r\n¤¢¤Ê¤¿¤Î¥ê¥¯¥¨¥¹¥È¤Ë¤è¤Ã¤ÆÌäÂ꤬ȯÀ¸¤·¤Þ¤·¤¿¡£¥Ð¥Ã¥¯¥Ü¥¿¥ó¤ÇÁàºî¤·¤Ê¤ª¤·¤Æ¤¯¤À¤µ¤¤¡£¾ÜºÙ¤Ë¤Ä¤¤¤Æ¤ªÃΤê¤Ë¤Ê¤ê¤¿¤¤¾ì¹ç¤Ï¤´Ï¢Íí²¼¤µ¤¤¡£¹Ô¤ï¤ì¤¿Áàºî¡¢ÌäÂêȯÀ¸»þ´Ö¤ª¤è¤ÓÆüÉÕ¤ò¤ªÃΤ餻²¼¤µ¤¤¡£',1055721015,NULL); INSERT INTO international VALUES (412,'WebGUI',14,'³µÍ×',1054193566,NULL); INSERT INTO international VALUES (411,'WebGUI',14,'¥¿¥¤¥È¥ë¥á¥Ë¥å¡¼',1054193530,NULL); INSERT INTO international VALUES (41,'WebGUI',14,'WebGUI¥·¥¹¥Æ¥à¤Î½ÅÍפʥ³¥ó¥Ý¡¼¥Í¥ó¥È¤òºï½ü¤·¤è¤¦¤È¤·¤Æ¤¤¤Þ¤¹¡£¤â¤·Â³¹Ô¤¹¤ë¤È¡¢WebGUI¤Ïµ¡Ç½¤òÄä»ß¤¹¤ë¤«¤â¤·¤ì¤Þ¤»¤ó¡£',1054193464,NULL); @@ -14450,20 +13930,17 @@ INSERT INTO international VALUES (405,'WebGUI',14,' INSERT INTO international VALUES (404,'WebGUI',14,'½é¤á¤Î¥Ú¡¼¥¸',1054192187,NULL); INSERT INTO international VALUES (401,'WebGUI',14,'¤³¤Î¥á¥Ã¥»¡¼¥¸¤ª¤è¤Ó¡¢¤³¤Î¥¹¥ì¥Ã¥É¤Î¤¹¤Ù¤Æ¤Î¥á¥Ã¥»¡¼¥¸¤òºï½ü¤·¤Æ¤â¤¤¤¤¤Ç¤¹¤«¡©',1054190204,NULL); INSERT INTO international VALUES (40,'WebGUI',14,'½ÅÍפʥ³¥ó¥Ý¡¼¥Í¥ó¥È',1054189988,NULL); -INSERT INTO international VALUES (398,'WebGUI',14,'¥É¥­¥å¥á¥ó¥È¥¿¥¤¥×Àë¸À',1054188994,NULL); INSERT INTO international VALUES (39,'WebGUI',14,'¤³¤Î¥Ú¡¼¥¸¤Ë¥¢¥¯¥»¥¹¤¹¤ë¸¢¸Â¤¬¤¢¤ê¤Þ¤»¤ó¡£',1054188389,NULL); INSERT INTO international VALUES (385,'WebGUI',14,'¥Ñ¥é¥á¡¼¥¿¡¼',1054188226,NULL); INSERT INTO international VALUES (384,'WebGUI',14,'¥Õ¥¡¥¤¥ë',1054188190,NULL); INSERT INTO international VALUES (381,'WebGUI',14,'WebGUI¤ÏÉÔ³ÎÄê¤Ê¥ê¥¯¥¨¥¹¥È¤Ë¤è¤ê½èÍý¤ò³¤±¤ë¤³¤È¤¬¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿¡£¥Ð¥Ã¥¯¥Ü¥¿¥ó¤ò²¡¤·¤Æ¤ä¤ê¤Ê¤ª¤·¤Æ¤¯¤À¤µ¤¤¡£',1054188155,NULL); -INSERT INTO international VALUES (380,'WebGUI',14,'¥¹¥¿¥¤¥ëID',1054187844,NULL); INSERT INTO international VALUES (38,'WebGUI',14,'¤³¤ÎÁàºî¤ò¼Â¹Ô¤¹¤ë¸¢¸Â¤¬¤¢¤ê¤Þ¤»¤ó¡£¸¢¸Â¼Ô¤Î¥¢¥«¥¦¥ó¥È¤Ç¥í¥°¥¤¥ó¤·¤Ê¤ª¤·¤Æ¤¯¤À¤µ¤¤¡£',1054187820,NULL); INSERT INTO international VALUES (379,'WebGUI',14,'¥°¥ë¡¼¥×ID',1054187635,NULL); INSERT INTO international VALUES (378,'WebGUI',14,'¥æ¡¼¥¶¡¼ID',1054187609,NULL); -INSERT INTO international VALUES (377,'WebGUI',14,'¤¢¤Ê¤¿¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ï¡¢¥Ñ¥Ã¥±¡¼¥¸¥Þ¥Í¡¼¥¸¥ã¡¼¤Þ¤¿¤Ï´ÉÍý¼Ô¤ËÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£',1054187564,NULL); +INSERT INTO international VALUES (2,'Navigation',1,'root level (/home)',1077078325,'Option of \"Base page\"'); INSERT INTO international VALUES (376,'WebGUI',14,'¥Ñ¥Ã¥±¡¼¥¸',1054187187,NULL); INSERT INTO international VALUES (37,'WebGUI',14,'µö²Ä¤Ç¤­¤Þ¤»¤ó¡£',1054186712,NULL); INSERT INTO international VALUES (369,'WebGUI',14,'Í­¸ú´ü¸Â',1054186628,NULL); -INSERT INTO international VALUES (365,'WebGUI',14,'¸¡º÷·ë²Ì',1054186203,NULL); INSERT INTO international VALUES (364,'WebGUI',14,'¸¡º÷',1054186177,NULL); INSERT INTO international VALUES (363,'WebGUI',14,'¥Ú¡¼¥¸¥Æ¥ó¥×¥ì¡¼¥È¤Î°ÌÃÖ',1054186149,NULL); INSERT INTO international VALUES (36,'WebGUI',14,'¥·¥¹¥Æ¥à´ÉÍý¼Ô¤ËÏ¢Íí¤ò¤È¤Ã¤Æ¤¯¤À¤µ¤¤¡£²¼µ­¤Ï¤³¤Î¥·¥¹¥Æ¥à¤Î´ÉÍý¼Ô¤Î¥ê¥¹¥È¤Ç¤¹:',1054185487,NULL); @@ -14478,7 +13955,6 @@ INSERT INTO international VALUES (35,'WebGUI',14,' INSERT INTO international VALUES (348,'WebGUI',14,'̾Á°',1054184697,NULL); INSERT INTO international VALUES (345,'WebGUI',14,'¥á¥ó¥Ð¡¼¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó',1054184424,NULL); INSERT INTO international VALUES (340,'WebGUI',14,'½÷À­',1054184278,NULL); -INSERT INTO international VALUES (34,'WebGUI',14,'ÀßÄêÆüÉÕ¤±',1054184249,NULL); INSERT INTO international VALUES (339,'WebGUI',14,'ÃËÀ­',1054184194,NULL); INSERT INTO international VALUES (337,'WebGUI',14,'¥¦¥§¥Ö¥µ¥¤¥ÈURL\r\n',1054184126,NULL); INSERT INTO international VALUES (336,'WebGUI',14,'À¸Ç¯·îÆü',1054184073,NULL); @@ -14525,10 +14001,7 @@ INSERT INTO international VALUES (17,'WebGUI',14,'3 INSERT INTO international VALUES (167,'WebGUI',14,'ºï½ü¤¹¤ë¤È½èÍý¤òÌ᤹»ö¤¬¤Ç¤­¤Þ¤»¤ó¤¬¡¢¤³¤Î¥æ¡¼¥¶¡¼¤òºï½ü¤·¤Þ¤¹¤«¡©',1054159612,NULL); INSERT INTO international VALUES (164,'WebGUI',14,'ǧ¾ÚÊýË¡',1054123369,NULL); INSERT INTO international VALUES (16,'WebGUI',14,'2·î',1054123057,NULL); -INSERT INTO international VALUES (157,'WebGUI',14,'¥¹¥¿¥¤¥ë',1054122973,NULL); -INSERT INTO international VALUES (154,'WebGUI',14,'¥¹¥¿¥¤¥ë¥·¡¼¥È',1054122752,NULL); INSERT INTO international VALUES (15,'WebGUI',14,'1·î ',1054122709,NULL); -INSERT INTO international VALUES (151,'WebGUI',14,'¥¹¥¿¥¤¥ë̾',1054122665,NULL); INSERT INTO international VALUES (149,'WebGUI',14,'¥æ¡¼¥¶¡¼',1054122624,NULL); INSERT INTO international VALUES (147,'WebGUI',14,'¥Ú¡¼¥¸',1054122583,NULL); INSERT INTO international VALUES (146,'WebGUI',14,'¥¢¥¯¥Æ¥£¥Ö¥»¥Ã¥·¥ç¥ó',1054122565,NULL); @@ -14624,18 +14097,9 @@ INSERT INTO international VALUES (73,'MessageBoard',14,' INSERT INTO international VALUES (1017,'WebGUI',14,'ºÇ¸å¤ÎÊÖ¿®',1054074573,NULL); INSERT INTO international VALUES (2,'MessageBoard',14,'·Ç¼¨ÈÄ',1054074335,NULL); INSERT INTO international VALUES (1016,'WebGUI',14,'ÊÖ¿®',1054074318,NULL); -INSERT INTO international VALUES (9,'LinkList',14,'¤³¤Î¥ê¥ó¥¯¤òºï½ü¤·¤Æ¤â¤¤¤¤¤Ç¤¹¤«¡©',1054069320,NULL); -INSERT INTO international VALUES (8,'LinkList',14,'URL',1054069286,NULL); -INSERT INTO international VALUES (75,'LinkList',14,'¥ê¥ó¥¯¥ê¥¹¥È¥Æ¥ó¥×¥ì¡¼¥È',1054069213,NULL); -INSERT INTO international VALUES (6,'LinkList',14,'¥ê¥ó¥¯¥ê¥¹¥È',1054014044,NULL); -INSERT INTO international VALUES (12,'LinkList',14,'¥ê¥ó¥¯¤òÊÔ½¸',1054013908,NULL); -INSERT INTO international VALUES (10,'LinkList',14,'¥ê¥ó¥¯¥ê¥¹¥È¤òÊÔ½¸',1054013754,NULL); -INSERT INTO international VALUES (73,'Item',14,'¥¢¥¤¥Æ¥à¥Æ¥ó¥×¥ì¡¼¥È',1054011931,NULL); -INSERT INTO international VALUES (6,'Item',14,'¥¢¥¤¥Æ¥à¤ÎÊÔ½¸',1054011831,NULL); -INSERT INTO international VALUES (5,'Item',14,'źÉÕ¥Õ¥¡¥¤¥ë¤ò¥À¥¦¥ó¥í¡¼¥É',1054011798,NULL); -INSERT INTO international VALUES (4,'Item',14,'¥¢¥¤¥Æ¥à',1054011761,NULL); +INSERT INTO international VALUES (91,'USS',14,'URL',1054069286,NULL); +INSERT INTO international VALUES (90,'USS',14,'¥ê¥ó¥¯¤òÊÔ½¸',1054013908,NULL); INSERT INTO international VALUES (74,'FileManager',14,'¿·µ¬¥Õ¥¡¥¤¥ëÄɲÃ',1054011590,NULL); -INSERT INTO international VALUES (1,'Item',14,'¥ê¥ó¥¯URL',1054011201,NULL); INSERT INTO international VALUES (4,'HttpProxy',14,'¥¿¥¤¥à¥¢¥¦¥È',1054010475,NULL); INSERT INTO international VALUES (1,'HttpProxy',14,'URL',1054010182,NULL); INSERT INTO international VALUES (75,'FileManager',14,'¥Õ¥¡¥¤¥ë¥Þ¥Í¡¼¥¸¥ã¡¼¥Æ¥ó¥×¥ì¡¼¥È',1054010051,NULL); @@ -14649,14 +14113,9 @@ INSERT INTO international VALUES (15,'FileManager',14,' INSERT INTO international VALUES (14,'FileManager',14,'¥Õ¥¡¥¤¥ë',1053989551,NULL); INSERT INTO international VALUES (12,'FileManager',14,'¤³¤Î¥Õ¥¡¥¤¥ë¤òºï½ü¤·¤Æ¤â¤¤¤¤¤Ç¤¹¤«¡©',1053989416,NULL); INSERT INTO international VALUES (1,'FileManager',14,'¥Õ¥¡¥¤¥ë¥Þ¥Í¡¼¥¸¥ã¡¼',1053989332,NULL); -INSERT INTO international VALUES (75,'FAQ',14,'¼ÁÌä¤òÄɲÃ',1053989120,NULL); -INSERT INTO international VALUES (7,'FAQ',14,'¤³¤Î¼ÁÌä¤òºï½ü¤·¤Æ¤¤¤¤¤Ç¤¹¤«¡©',1053987432,NULL); -INSERT INTO international VALUES (13,'FAQ',14,'¥È¥Ã¥×¤Î¥ê¥ó¥¯¤òÊѹ¹¤·¤Þ¤¹¤«¡©',1053987339,NULL); -INSERT INTO international VALUES (6,'FAQ',14,'²óÅú',1053987186,NULL); -INSERT INTO international VALUES (5,'FAQ',14,'¼ÁÌä',1053987173,NULL); -INSERT INTO international VALUES (10,'FAQ',14,'¼ÁÌä¤òÊÔ½¸',1053986861,NULL); -INSERT INTO international VALUES (5,'ExtraColumn',14,'¥¹¥¿¥¤¥ë¥·¡¼¥È¥¯¥é¥¹',1053986768,NULL); -INSERT INTO international VALUES (4,'ExtraColumn',14,'Éý',1053986740,NULL); +INSERT INTO international VALUES (86,'USS',14,'²óÅú',1053987186,NULL); +INSERT INTO international VALUES (85,'USS',14,'¼ÁÌä',1053987173,NULL); +INSERT INTO international VALUES (84,'USS',14,'¼ÁÌä¤òÊÔ½¸',1053986861,NULL); INSERT INTO international VALUES (96,'EventsCalendar',14,'¥¤¥Ù¥ó¥È¥Æ¥ó¥×¥ì¡¼¥È',1053986562,NULL); INSERT INTO international VALUES (94,'EventsCalendar',14,'¥¤¥Ù¥ó¥È¥«¥ì¥ó¥À¡¼¥Æ¥ó¥×¥ì¡¼¥È',1053986532,NULL); INSERT INTO international VALUES (93,'EventsCalendar',14,'¼¡¤Î¥¤¥Ù¥ó¥È',1053986503,NULL); @@ -14704,13 +14163,14 @@ INSERT INTO international VALUES (47,'WebGUI',14,' INSERT INTO international VALUES (1,'Article',14,'µ­»ö',1053675664,NULL); INSERT INTO international VALUES (945,'WebGUI',8,'Filtro Scratch',1054490432,NULL); INSERT INTO international VALUES (973,'WebGUI',8,'Se è \"proxied\" usa il client IP address reale?',1054481645,NULL); -INSERT INTO international VALUES (937,'WebGUI',8,'Per importare un tema hai bisogno di un file di tema valido esportato da un\r\naltro sito con WebGUI. Seleziona il tema dal tuo hard disk e clicca sul bottone\r\n\"Importa\"Ora ti sarà mostrata una schermata di conferma che ti\r\nchiederà se questo è il tema che vuoi importare. Se è questo, clicca ancora\r\nsul bottone \"Importa\" e avrai il il tuo nuovo tema. Adesso puoi\r\ncominciare ad applicare il tema al tuo sito proprio come faresti con un normale\r\nstile, template o elemento dell\'archivio collaterale.\r\n

Non puoi importare un tema due volte. Se desideri importare una nuova\r\nversione di un tema, allora devi prima cancellare la versione precedente del\r\ntema.\r\n

Allo stesso modo non puoi importare un tema creato da una versione di WebGUI\r\npiù recente di quella che stai usando. Per questo se stai usando WebGUI 5.2.4 e\r\nil tema è stato creato con WebGUI 6.0.0, non ti sarà possibile importare quel\r\ntema fino a quando non avrai aggiornato la versione di WebGUI.

\r\n',1054477866,NULL); -INSERT INTO international VALUES (939,'WebGUI',8,'

Quando cancelli un tema che hai creato, stai cancellando le proprietà base\r\ndel tema. Comunque quando cancelli un tema che hai importato, stai cancellando\r\nanche tutti i suoi componenti ( stili, template e elementi dell\'archivio\r\ncollaterale). Assicurati che non dovrai più usare quei componenti prima di\r\ncancellarli.

',1054477122,NULL); -INSERT INTO international VALUES (958,'WebGUI',8,'Gli Appunti sono un deposito particolare in cui vengono temporaneamente\r\narchiviati i contenuti "tagliati" o "copiati". Gli elementi\r\nnegli Appunti  possono poi essere incollati in una nuova posizione. \r\n

Gli elementi negli Appunti  possono gestiti singolarmente.

\r\n

Puoi "cancellare" o "incollare" un elemento tramite il\r\npulsante appropriato. Puoi anche eliminare tutto il contenuto degli appunti\r\nspostandolo nel cestino tramite l\'apposita opzione nel  menù degli\r\nAppunti.

\r\n

Titolo
\r\nIl nome dell\'elemento negli Appunti. Puoi visualizzare questo elemento\r\nselezionando il titolo.\r\n

Tipo
\r\nIl tipo di contenuto. Per esempio una Pagina, un Articolo, un Calendario Eventi,\r\netc.\r\n

Data Appunti
\r\nLa data e l\'ora in cui l\'elemento è stato messo negli Appunti.\r\n

Posizione Precedente
\r\nLa posizione (nel sito) da cui è stato preso l\'elemento. Puoi vedere la\r\nposizione precedente selezionando posizione precedente.\r\n

Nome utente
\r\nIl nome utente di chi ha inserito l\'elemento negli appunti. Questo campo\r\nopzionale è visibile solamente negli Appunti Condiviso o quando un\r\namministratore sta gestendo gli Appunti di Sistema .

\r\n',1054473476,NULL); -INSERT INTO international VALUES (961,'WebGUI',8,'Il cestino è un deposito particolare in cui vengono temporaneamente archiviati\r\ni contenuti cancellati. Gli elementi nel cestino possono essere gestiti\r\nsingolarmente. Puoi "tagliare" un elemento negli Appunti oppure\r\neliminarlo permanentemente tramite il pulsante appropriato. Puoi anche eliminare\r\ntutto il contenuto del cestino tramite l\'apposita opzione nel< menù del\r\ncestino.\r\n

Titolo
\r\nIl nome dell\'elemento nel cestino. Puoi visualizzare questo elemento\r\nselezionando il titolo.\r\n

Tipo
\r\nil tipo di contenuto. Per esempio una Pagina, un Articolo, un Calendario Eventi,\r\netc.\r\n

Data Cestino
\r\nLa data e l\'ora in cui l\'elemento è stato messo nel cestino.\r\n

Posizione Precedente
\r\nLa posizione (nel sito) in cui si trovava precedentemente l\'elemento. Puoi\r\nvedere la posizione precedente selezionando posizione precedente.\r\n

Nome utente
\r\nIl nome utente di chi ha spostato l\'elemento nel cestino Questo campo opzionale\r\nè visibile solamente nel Cestino Condiviso o quando un amministratore sta\r\ngestendo il Cestino di Sistema .

\r\n',1054472919,NULL); -INSERT INTO international VALUES (934,'WebGUI',8,'Creare e modificare i Temi è un processo semplice. Prima imposta alcune\r\nproprietà di base per il Tema poi comincia ad aggiungere i componenti al Tema.\r\n

Le proprietà di base del Tema non possono essere modificate da nessuno\r\ntranne che sul sito nel quale il tema è stato creato.
\r\nLe seguenti sono le definizioni delle proprità di base del Tema:\r\n

ID Tema
\r\nL\' ID univoco per questo tema all\'interno di questo sito. Questo ID cambierà se\r\nquesto tema sarà importato in un altro sito.\r\n

Nome Tema
\r\nQuesto è il nome univoco del tema. Deve essere univoco in ogni sito in cui il\r\ntema sarà importato. Questo nome non cambierà importandolo da un sito\r\nall\'altro \r\n

Designer del Tema
\r\nIl nome della persona o azienda che ha creato questo tema.\r\n

URL del Designer
\r\nLa URL della persona o azienda che ha creato questo tema.

\r\n',1054394992,NULL); +INSERT INTO international VALUES (937,'WebGUI',8,'Per importare un tema hai bisogno di un file di tema valido esportato da un\naltro sito con WebGUI. Seleziona il tema dal tuo hard disk e clicca sul bottone\n\"Importa\"Ora ti sarà mostrata una schermata di conferma che ti\nchiederà se questo è il tema che vuoi importare. Se è questo, clicca ancora\nsul bottone \"Importa\" e avrai il il tuo nuovo tema. Adesso puoi\ncominciare ad applicare il tema al tuo sito proprio come faresti con un normale\nstile, template o elemento dell\'archivio collaterale.\n

Non puoi importare un tema due volte. Se desideri importare una nuova\nversione di un tema, allora devi prima cancellare la versione precedente del\ntema.\n

Allo stesso modo non puoi importare un tema creato da una versione di WebGUI\npiù recente di quella che stai usando. Per questo se stai usando WebGUI 5.2.4 e\nil tema è stato creato con WebGUI 6.0.0, non ti sarà possibile importare quel\ntema fino a quando non avrai aggiornato la versione di WebGUI.

\n',1054477866,NULL); +INSERT INTO international VALUES (939,'WebGUI',8,'

Quando cancelli un tema che hai creato, stai cancellando le proprietà base\ndel tema. Comunque quando cancelli un tema che hai importato, stai cancellando\nanche tutti i suoi componenti ( stili, template e elementi dell\'archivio\ncollaterale). Assicurati che non dovrai più usare quei componenti prima di\ncancellarli.

',1054477122,NULL); +INSERT INTO international VALUES (958,'WebGUI',8,'Gli Appunti sono un deposito particolare in cui vengono temporaneamente\narchiviati i contenuti "tagliati" o "copiati". Gli elementi\nnegli Appunti  possono poi essere incollati in una nuova posizione. \n

Gli elementi negli Appunti  possono gestiti singolarmente.

\n

Puoi "cancellare" o "incollare" un elemento tramite il\npulsante appropriato. Puoi anche eliminare tutto il contenuto degli appunti\nspostandolo nel cestino tramite l\'apposita opzione nel  menù degli\nAppunti.

\n

Titolo
\nIl nome dell\'elemento negli Appunti. Puoi visualizzare questo elemento\nselezionando il titolo.\n

Tipo
\nIl tipo di contenuto. Per esempio una Pagina, un Articolo, un Calendario Eventi,\netc.\n

Data Appunti
\nLa data e l\'ora in cui l\'elemento è stato messo negli Appunti.\n

Posizione Precedente
\nLa posizione (nel sito) da cui è stato preso l\'elemento. Puoi vedere la\nposizione precedente selezionando posizione precedente.\n

Nome utente
\nIl nome utente di chi ha inserito l\'elemento negli appunti. Questo campo\nopzionale è visibile solamente negli Appunti Condiviso o quando un\namministratore sta gestendo gli Appunti di Sistema .

\n',1054473476,NULL); +INSERT INTO international VALUES (961,'WebGUI',8,'Il cestino è un deposito particolare in cui vengono temporaneamente archiviati\ni contenuti cancellati. Gli elementi nel cestino possono essere gestiti\nsingolarmente. Puoi "tagliare" un elemento negli Appunti oppure\neliminarlo permanentemente tramite il pulsante appropriato. Puoi anche eliminare\ntutto il contenuto del cestino tramite l\'apposita opzione nel< menù del\ncestino.\n

Titolo
\nIl nome dell\'elemento nel cestino. Puoi visualizzare questo elemento\nselezionando il titolo.\n

Tipo
\nil tipo di contenuto. Per esempio una Pagina, un Articolo, un Calendario Eventi,\netc.\n

Data Cestino
\nLa data e l\'ora in cui l\'elemento è stato messo nel cestino.\n

Posizione Precedente
\nLa posizione (nel sito) in cui si trovava precedentemente l\'elemento. Puoi\nvedere la posizione precedente selezionando posizione precedente.\n

Nome utente
\nIl nome utente di chi ha spostato l\'elemento nel cestino Questo campo opzionale\nè visibile solamente nel Cestino Condiviso o quando un amministratore sta\ngestendo il Cestino di Sistema .

\n',1054472919,NULL); +INSERT INTO international VALUES (934,'WebGUI',8,'Creare e modificare i Temi è un processo semplice. Prima imposta alcune\nproprietà di base per il Tema poi comincia ad aggiungere i componenti al Tema.\n

Le proprietà di base del Tema non possono essere modificate da nessuno\ntranne che sul sito nel quale il tema è stato creato.
\nLe seguenti sono le definizioni delle proprità di base del Tema:\n

ID Tema
\nL\' ID univoco per questo tema all\'interno di questo sito. Questo ID cambierà se\nquesto tema sarà importato in un altro sito.\n

Nome Tema
\nQuesto è il nome univoco del tema. Deve essere univoco in ogni sito in cui il\ntema sarà importato. Questo nome non cambierà importandolo da un sito\nall\'altro \n

Designer del Tema
\nIl nome della persona o azienda che ha creato questo tema.\n

URL del Designer
\nLa URL della persona o azienda che ha creato questo tema.

\n',1054394992,NULL); INSERT INTO international VALUES (77,'DataForm',8,'Nome / Etichetta',1054393515,NULL); -INSERT INTO international VALUES (83,'DataForm',8,'Le seguenti sono le variabili di template disponibili per i template dei Moduli\r\nDati.\r\n

acknowledgement
\r\nIl Riconoscimento specificato nelle proprietà del wobject. Questo messaggio\r\nviene mostrato dopo che l\'utente invia i dati.\r\n

export.tab.url
\r\nSeguendo questo URL  i dati archiviati in questo modulo dati, saranno\r\nesportati in un file delimitato da tab.\r\n

export.tab.label
\r\nL\'etichetta di default per la variabile export.tab.url.\r\n

entryList.url
\r\nSeguendo questo URL sarà mostrato un elenco con tutti i dati  archiviati\r\nin questo modulo dati.\r\n

entryList.label
\r\nL\'etichetta di default per la variabile entryList.url .\r\n

canEdit
\r\nUna condizione che indica se l\'utente attuale ha i privilegi per modificare un\r\ninserimento o per esportare i dati del modulo.\r\n

back.url
\r\nUn url che ti riporterà indietro alla pagina di default del Modulo.\r\n

back.label
\r\nL\'etichetta di default per la variabile back.url.\r\n

username*
\r\nLa username dell\'utente che ha inviato i dati.\r\n

userId*
\r\nLa user id dell\'utente che ha inviato i dati.\r\n

date*
\r\nLa data in cui questi dati sono stati inseriti o aggiornati, nel formato\r\ndata/ora scelto dall\'utente.\r\n

epoch*
\r\nLa data in cui questi dati sono stati inseriti o aggiornati visualizzati nel\r\nformato epoch della data.\r\n

ipAddress*
\r\nL\' IP address dell\'utente che ha inviato i dati.\r\n

edit.url*
\r\nLa URL alla pagina per modificare questo inserimento.\r\n

error_loop*
\r\nUn loop contenente informazioni sugli errori, ad esempio se qualcuno non compila\r\nun campo richiesto.\r\n

 \r\n

\r\n error.message*
\r\n Un messaggio di errore che indica cosa l\'utente ha fatto in modo errato.\r\n
\r\naddField.url
\r\nLa URL che i  content managers utilizzeranno per aggiungere nuovi campi al\r\nmodulo.\r\n

addField.label
\r\nL\'etichetta di default per la variabile addField.url.\r\n

form.start
\r\nL\'inizio del modulo.\r\n

field_loop
\r\nUn loop contenente tutte le informazioni sui campi.\r\n

 \r\n

\r\n field.form
\r\n L\'elemento del form per questo campo.\r\n

field.name
\r\n il nome di questo campo.\r\n

field.value
\r\n Il "value" per questo campo. se è un nuovo elemento sarà usato il\r\n valore di default.\r\n

field.label
\r\n L\'etichetta di testo per questo campo.\r\n

field.isHidden
\r\n Una condizione che indica se questo campo può essere nascosto.\r\n

field.isDisplayed
\r\n Una condizione che indica se questo campo può essere visualizzato.\r\n

field.isEditable
\r\n Una condizione che indica se questo campo è modificabile.\r\n

field.isRequired
\r\n Una condizione che indica se questo campo è obbligatorio.\r\n

field.isMailField
\r\n Una condizione che indica se questo campo è presente solo per inviare email.\r\n

field.subtext
\r\n Una descrizione del campo in modo che gli utenti capiscano cosa inserire nel\r\n campo.\r\n

field.controls
\r\n I controlli di gestione di WebGUI per questo campo.\r\n

 

\r\n
\r\nform.send
\r\nUn bottone con la parola "Invia" .\r\n

form.save
\r\n
Un bottone con la parola "Salva".\r\n

form.end
\r\n
La fine del modulo.\r\n

*Disponibili solo se l\'utente ha già inviato il modulo.

\r\n',1054386522,NULL); +INSERT INTO international VALUES (83,'DataForm',8,'Le seguenti sono le variabili di template disponibili per i template dei Moduli\nDati.\n

acknowledgement
\nIl Riconoscimento specificato nelle proprietà del wobject. Questo messaggio\nviene mostrato dopo che l\'utente invia i dati.\n

export.tab.url
\nSeguendo questo URL  i dati archiviati in questo modulo dati, saranno\nesportati in un file delimitato da tab.\n

export.tab.label
\nL\'etichetta di default per la variabile export.tab.url.\n

entryList.url
\nSeguendo questo URL sarà mostrato un elenco con tutti i dati  archiviati\nin questo modulo dati.\n

entryList.label
\nL\'etichetta di default per la variabile entryList.url .\n

canEdit
\nUna condizione che indica se l\'utente attuale ha i privilegi per modificare un\ninserimento o per esportare i dati del modulo.\n

back.url
\nUn url che ti riporterà indietro alla pagina di default del Modulo.\n

back.label
\nL\'etichetta di default per la variabile back.url.\n

username*
\nLa username dell\'utente che ha inviato i dati.\n

userId*
\nLa user id dell\'utente che ha inviato i dati.\n

date*
\nLa data in cui questi dati sono stati inseriti o aggiornati, nel formato\ndata/ora scelto dall\'utente.\n

epoch*
\nLa data in cui questi dati sono stati inseriti o aggiornati visualizzati nel\nformato epoch della data.\n

ipAddress*
\nL\' IP address dell\'utente che ha inviato i dati.\n

edit.url*
\nLa URL alla pagina per modificare questo inserimento.\n

error_loop*
\nUn loop contenente informazioni sugli errori, ad esempio se qualcuno non compila\nun campo richiesto.\n

 \n

\n error.message*
\n Un messaggio di errore che indica cosa l\'utente ha fatto in modo errato.\n
\naddField.url
\nLa URL che i  content managers utilizzeranno per aggiungere nuovi campi al\nmodulo.\n

addField.label
\nL\'etichetta di default per la variabile addField.url.\n

form.start
\nL\'inizio del modulo.\n

field_loop
\nUn loop contenente tutte le informazioni sui campi.\n

 \n

\n field.form
\n L\'elemento del form per questo campo.\n

field.name
\n il nome di questo campo.\n

field.value
\n Il "value" per questo campo. se è un nuovo elemento sarà usato il\n valore di default.\n

field.label
\n L\'etichetta di testo per questo campo.\n

field.isHidden
\n Una condizione che indica se questo campo può essere nascosto.\n

field.isDisplayed
\n Una condizione che indica se questo campo può essere visualizzato.\n

field.isEditable
\n Una condizione che indica se questo campo è modificabile.\n

field.isRequired
\n Una condizione che indica se questo campo è obbligatorio.\n

field.isMailField
\n Una condizione che indica se questo campo è presente solo per inviare email.\n

field.subtext
\n Una descrizione del campo in modo che gli utenti capiscano cosa inserire nel\n campo.\n

field.controls
\n I controlli di gestione di WebGUI per questo campo.\n

 

\n
\nform.send
\nUn bottone con la parola "Invia" .\n

form.save
\n
Un bottone con la parola "Salva".\n

form.end
\n
La fine del modulo.\n

*Disponibili solo se l\'utente ha già inviato il modulo.

\n',1054386522,NULL); +INSERT INTO international VALUES (22,'PhotoGallery',8,'Inserimento',1034023785,NULL); INSERT INTO international VALUES (10,'WobjectProxy',8,'Sostituisci il template?',1054238008,NULL); INSERT INTO international VALUES (897,'WebGUI/Profile',8,'Modificabile?',1054237380,NULL); INSERT INTO international VALUES (978,'WebGUI',8,'Utente aggiunto con successo.',1054237364,NULL); @@ -14752,7 +14212,7 @@ INSERT INTO international VALUES (938,'WebGUI',8,'Tema Cancella',1054232627,NULL INSERT INTO international VALUES (936,'WebGUI',8,'Tema, Importa',1054231475,NULL); INSERT INTO international VALUES (935,'WebGUI',8,'il file caricato sembra non essere un file appropriato per i temi.',1054231454,NULL); INSERT INTO international VALUES (933,'WebGUI',8,'Tema, Modifica',1054231363,NULL); -INSERT INTO international VALUES (932,'WebGUI',8,'I Temi sono uno strumento per installare velocemente Stili, Templates e oggetti dell\'archivio collaterale in un sito creato con WebGUI. Sono anche molto utili per spostare gli stessi elementi da un sito ad un altro.\r\n

\r\nNota: quando costruisci un tema, assicurati di dare dei nomi ai componenti (Stili, Templates e oggetti dell\'archivio collaterale) che richiamino un riferimento a quel tema. Questo è utile per ritrovare facilmente i componenti nel tema ed inoltre evita di creare conflitti(duplicazioni) tra i nomi.',1054231342,NULL); +INSERT INTO international VALUES (932,'WebGUI',8,'I Temi sono uno strumento per installare velocemente Stili, Templates e oggetti dell\'archivio collaterale in un sito creato con WebGUI. Sono anche molto utili per spostare gli stessi elementi da un sito ad un altro.\n

\nNota: quando costruisci un tema, assicurati di dare dei nomi ai componenti (Stili, Templates e oggetti dell\'archivio collaterale) che richiamino un riferimento a quel tema. Questo è utile per ritrovare facilmente i componenti nel tema ed inoltre evita di creare conflitti(duplicazioni) tra i nomi.',1054231342,NULL); INSERT INTO international VALUES (931,'WebGUI',8,'Temi, Gestisci',1054230855,NULL); INSERT INTO international VALUES (930,'WebGUI',8,'Visualizza Tema',1054230835,NULL); INSERT INTO international VALUES (929,'WebGUI',8,'Importa',1054230806,NULL); @@ -14772,9 +14232,8 @@ INSERT INTO international VALUES (916,'WebGUI',8,'Frammento',1054230422,NULL); INSERT INTO international VALUES (915,'WebGUI',8,'File',1054230412,NULL); INSERT INTO international VALUES (914,'WebGUI',8,'Immagine',1054230403,NULL); INSERT INTO international VALUES (913,'WebGUI',8,'Template',1054230394,NULL); -INSERT INTO international VALUES (912,'WebGUI',8,'Stile',1054230382,NULL); +INSERT INTO international VALUES (1087,'WebGUI',1,'Gradebook Report Template',1078513217,NULL); INSERT INTO international VALUES (911,'WebGUI',8,'Componente',1054230365,NULL); -INSERT INTO international VALUES (910,'WebGUI',8,'Tipo di componente',1054230354,NULL); INSERT INTO international VALUES (909,'WebGUI',8,'Aggiungi un componente del tema',1054230340,NULL); INSERT INTO international VALUES (908,'WebGUI',8,'Sei sicuro di voler eliminare questo componente da questo tema?',1054230316,NULL); INSERT INTO international VALUES (907,'WebGUI',8,'Sei sicuro di voler cancellare questo tema?',1054230266,NULL); @@ -14828,11 +14287,9 @@ INSERT INTO international VALUES (999,'WebGUI',1,'Database Link, Delete',1056151 INSERT INTO international VALUES (1000,'WebGUI',1,'

\r\nDatabase Links enable a WebGUI administrator to add commonly used databases for use in SQL Reports. This frees the SQL Report author from having to know or enter a DSN, user, or password.
\r\n
\r\nBe aware that any database links you create here will be available to all content authors. While they will not be able to see the database connection info, they will be able to execute any select, show, or describe commands on the database.\r\n

',1056151382,NULL); INSERT INTO international VALUES (1001,'WebGUI',1,'

\r\nThe following fields make up a Database Link.\r\n

\r\n\r\nTitle
\r\nA title for the database link.\r\n

\r\n\r\nDSN
\r\nData Source Name is the unique identifier that Perl uses to describe the location of your database. It takes the format of DBI:[driver]:[database name]:[host].
\r\n

\r\n\r\n\r\nExample: DBI:mysql:WebGUI:localhost\r\n

\r\n\r\nHere are some examples for other databases.
\r\nOracle:\r\n

    DBI:Oracle:SID
    \r\nDBD::Oracle must be installed.
    \r\nYou must be using mod_perl and configure PerlSetEnv ORACLE_HOME /home/oracle/product/8.1.7 in httpd.conf. Without setting ORACLE_HOME, you can connect using DBI:Oracle:host=myhost.com;sid=SID\r\n
\r\n\r\nPostgreSQL:\r\n
    DBI:PgPP:dbname=DBNAME[;host=hOST]
    \r\nDBD::PgPP must be installed.\r\n
\r\n\r\n\r\nSybase:\r\n
    DBI:Sybase:[server=SERVERNAME][database=DATABASE]
    \r\nDBD::Sybase must be installed.
    \r\nYou must be using mod_perl and configure PerlSetEnv SYBASE /opt/sybase/11.0.2 in httpd.conf.\r\n
\r\n\r\n

\r\nDatabase User
\r\nThe username you use to connect to the DSN.\r\n

\r\n\r\n\r\nDatabase Password
\r\nThe password you use to connect to the DSN.\r\n

\r\n',1056151382,NULL); INSERT INTO international VALUES (1002,'WebGUI',1,'

\r\nWhen you delete a database link, all SQL Reports using that link will stop working. A list of all affected reports is shown on the confirmation screen.\r\n

\r\n\r\n\r\nAs with any delete operation, you are prompted to be sure you wish to proceed with the delete. If you answer yes, the delete will proceed and there is no recovery possible. If you answer no you\'ll be returned to the prior screen.\r\n

\r\n',1056151382,NULL); -INSERT INTO international VALUES (19,'SQLReport',1,'Choose a database link...',1056151382,NULL); -INSERT INTO international VALUES (20,'SQLReport',1,'Database Link',1056151382,NULL); -INSERT INTO international VALUES (21,'SQLReport',1,'If you do not want to use a predefined database link, enter your own database connection info below.',1056151382,NULL); +INSERT INTO international VALUES (1075,'WebGUI',1,'Database Link',1056151382,NULL); INSERT INTO international VALUES (1003,'WebGUI',1,'Wobject privileges?',1056041703,'Would you like Wobject Privileges to be enabled?'); -INSERT INTO international VALUES (634,'WebGUI',1,'Default Home Page
Some really small sites don\'t have a home page, but instead like to use one of their internal pages like \"About Us\" or \"Company Information\" as their home page. For that reason, you can set the default page of your site to any page in the site. That page will be the one people go to if they type in just your URL http://www.mywebguisite.com, or if they click on the Home link generated by the ^H; macro. \r\n

Not Found Page
If a page that a user requests is not found in the system, the user can be redirected to the home page or to an error page where they can attempt to find what they were looking for. You decide which is better for your users. \r\n

Document Type Declaration
These days it is very common to have a wide array of browsers accessing your site, including automated browsers like search engine spiders. Many of those browsers want to know what kind of content you are serving. The doctype tag allows you to specify that. By default WebGUI generates HTML 4.0 compliant content. \r\n

Favicon
An icon that appears on Internet Explorer short cuts such as your \"Favorites\". To learn more about Favicon click here. \r\n

Site Icon
An icon that appears in the URL bar of most modern browsers. It may also appear in the bookmarks of the browser. The image must be 16x16 pixels. \r\n

Add edit stamp to posts?
Typically if a user edits a post on a discussion, a stamp is added to that post to identify who made the edit, and at what time. On some sites that information is not necessary, therefore you can turn it off here. \r\n

Filter Contributed HTML
Especially when running a public site where anybody can post to your message boards or user submission systems, it is often a good idea to filter their content for malicious code that can harm the viewing experience of your visitors; And in some circumstances, it can even cause security problems. Use this setting to select the level of filtering you wish to apply. \r\n

Maximum Attachment Size
The size (in kilobytes) of the maximum allowable attachment to be uploaded to your system. \r\n

Max Image Size
If images are uploaded to your system that are bigger than the max image size, then they will be resized to the max image size. The max image size is measured in pixels and will use the size of the longest side of the image to determine if the limit has been reached. \r\n

Thumbnail Size
When images are uploaded to your system, they will automatically have thumbnails generated at the size specified here (unless overridden on a case-by-case basis). Thumbnail size is measured in pixels. \r\n

Snippet Preview Length
How many characters of a snippet should be displayed in the collateral management system main listing. \r\n

Text Area Rows
Some sites wish to control the size of the forms that WebGUI generates. With this setting you can specify how many rows of characters will be displayed in textareas on the site. \r\n

Text Area Columns
Some sites wish to control the size of the forms that WebGUI generates. With this setting you can specify how many columns of characters will be displayed in textareas on the site. \r\n

Text Box Size
Some sites wish to control the size of the forms that WebGUI generates. With this setting you can specify how characters can be displayed at once in text boxes on the site. \r\n\r\n

Wobject Privileges
Choose \'Yes\' to enable privileges at the Wobject level.  By default, Wobjects are set to inherit page level privileges

',1056292957,NULL); +INSERT INTO international VALUES (634,'WebGUI',1,'Default Home Page
Some really small sites don\'t have a home page, but instead like to use one of their internal pages like \"About Us\" or \"Company Information\" as their home page. For that reason, you can set the default page of your site to any page in the site. That page will be the one people go to if they type in just your URL http://www.mywebguisite.com, or if they click on the Home link generated by the ^H; macro. \r\n\r\n

Not Found Page
If a page that a user requests is not found in the system, the user can be redirected to the home page or to an error page where they can attempt to find what they were looking for. You decide which is better for your users. \r\n\r\n\r\n

Favicon
An icon that appears on Internet Explorer short cuts such as your \"Favorites\". To learn more about Favicon click here. \r\n\r\n

Site Icon
An icon that appears in the URL bar of most modern browsers. It may also appear in the bookmarks of the browser. The image must be 16x16 pixels. \r\n\r\n

Add edit stamp to posts?
Typically if a user edits a post on a discussion, a stamp is added to that post to identify who made the edit, and at what time. On some sites that information is not necessary, therefore you can turn it off here. \r\n\r\n

Filter Contributed HTML
Especially when running a public site where anybody can post to your message boards or user submission systems, it is often a good idea to filter their content for malicious code that can harm the viewing experience of your visitors; And in some circumstances, it can even cause security problems. Use this setting to select the level of filtering you wish to apply. \r\n\r\n

Maximum Attachment Size
The size (in kilobytes) of the maximum allowable attachment to be uploaded to your system. \r\n\r\n

Max Image Size
If images are uploaded to your system that are bigger than the max image size, then they will be resized to the max image size. The max image size is measured in pixels and will use the size of the longest side of the image to determine if the limit has been reached. \r\n\r\n

Thumbnail Size
When images are uploaded to your system, they will automatically have thumbnails generated at the size specified here (unless overridden on a case-by-case basis). Thumbnail size is measured in pixels. \r\n\r\n

Snippet Preview Length
How many characters of a snippet should be displayed in the collateral management system main listing. \r\n\r\n

Text Area Rows
Some sites wish to control the size of the forms that WebGUI generates. With this setting you can specify how many rows of characters will be displayed in textareas on the site. \r\n\r\n

Text Area Columns
Some sites wish to control the size of the forms that WebGUI generates. With this setting you can specify how many columns of characters will be displayed in textareas on the site. \r\n\r\n

Text Box Size
Some sites wish to control the size of the forms that WebGUI generates. With this setting you can specify how characters can be displayed at once in text boxes on the site. \r\n\r\n

Wobject Privileges
Choose \'Yes\' to enable privileges at the Wobject level.  By default, Wobjects are set to inherit page level privileges

',1070026791,NULL); INSERT INTO international VALUES (934,'WebGUI',2,'Themen zu erstellen oder zu bearbeiten ist eine ganz einfache Sache. Zuerst \r\nmüssen Sie einige Standardeigenschaften für das Thema definieren und anschliessend \r\nkönnen Sie schon Elemente zum Thema hinzufügen.

Die Standardeigenschaften \r\neines Themas können von niemand ausser berechtigten Benutzern der Site, auf \r\nder das Thema erstellt wurde, geändert werden. Nachfolgend die Standardeigenschaften \r\nfür ein Thema: \r\n

Themen ID
Die eindeutige ID für dieses Thema innerhalb dieser WebGUI \r\nSite. Die ID ändert sich beim Importieren in eine andere Seite.

Themen Name
Der \r\neindeutige Name für dieses Thema. Der Name muss in allen Seiten, in die das \r\nThema importiert werden soll, eindeutig sein, z. B. TH-blueLayout-001

Themen Designer
Der \r\nName der Person oder Firma,die dieses Thema erstellt hat.

Designer URL
Die \r\nURL der Website dieses Theman Designers.

',1055253820,NULL); INSERT INTO international VALUES (958,'WebGUI',2,'Die Zwischenablage ist eine spezielle Funktion, wo Elemente, die ausgeschnitten \r\noder kopiert wurden, vorübergehend \r\ngespeichert werden. Dort können sie individuell verwaltet werden. Um nun ein \r\nElement aus der Zwischenablage an einer anderen Stelle in die Seite einzufügen, \r\ngehen Sie zuerste auf diese Seite und wählen dann einfach das entsprechende \r\nElement aus der Zwischenablage aus. Damit wird es aus dieser entfernt und in \r\ndie aktuelle Seite eingefügt.

Titel
Der \r\nName des Elements. Nach einem Klick darauf können Sie sich das Element anschauen.

Typ
Der \r\nInhaltstyp, z. B. Seite, Artikel, Veranstaltungskalender, etc. \r\n

Datum Zwischenablage
Das Datum, an dem das Element der Zwischenablage hinzugefügt \r\nwurde.

Vorherige Location
Der Ort, an dem das Element vorher integriert \r\nwar.

Benutzername
Der Benutzername der Person, die das Element der \r\nZwischenablage hingezugefügt hat. Dieses optionale Feld \r\nist nur sichtbar, wenn Sie in den Einstellungen eine gemeinsame Zwischenablage \r\ndefiniert haben oder wenn ein Administrator die System-Zwischenablage verwaltet.

',1055253203,NULL); INSERT INTO international VALUES (961,'WebGUI',2,'Der Mülleimer ist eine spezielle Funktion, wo gelöschte Elemente vorübergehend \r\ngespeichert werden. Dort können sie individuell verwaltet werden. Sie können \r\nElemente wieder in die Zwischenablage ausschneiden oder sie komplett und endgültig \r\nlöschen. Sie können auch den gesamten Mülleimer auf einmal leeren.

Titel
Der \r\nName des Elements. Nach einem Klick darauf können Sie sich das Element anschauen.

Typ
Der \r\nInhaltstyp, z. B. Seite, Artikel, Veranstaltungskalender, etc. \r\n

Löschdatum
Das Datum, an dem das Element in den Mülleimer verschoben \r\nwurde.

Vorherige Location
Der Ort, an dem das Element vorher integriert \r\nwar.

Benutzername
Der Benutzername der Person, die das Element in \r\nden Mülleimer verschoben (das heisst es gelöscht) hat. Dieses optionale Feld \r\nist nur sichtbar, wenn Sie in den Einstellungen einen gemeinsamen Mülleimer \r\ndefiniert haben oder wenn ein Administrator den System-Mülleimer verwaltet.

',1055252785,NULL); @@ -14863,12 +14320,10 @@ INSERT INTO international VALUES (981,'WebGUI',2,' Verwalten: Datenbanklink INSERT INTO international VALUES (980,'WebGUI',2,'Ordner leeren.',1056541163,NULL); INSERT INTO international VALUES (979,'WebGUI',2,'Sind Sie sicher, dass Sie alle Elemente dieses Ordners löschen möchten? Diese können nicht wiederhergestellt werden. Elemente in Unterordnern werden aber nicht gelöscht.',1056541143,NULL); INSERT INTO international VALUES (1003,'WebGUI',2,'Wobject Berechtigungen aktivieren?',1056541041,NULL); -INSERT INTO international VALUES (21,'SQLReport',2,'Wenn Sie keinen vordefinierten Datenbanklink verwenden möchten, geben Sie hier die Datenbankverbindungsdaten an.',1056540950,NULL); -INSERT INTO international VALUES (20,'SQLReport',2,'Datenbank Link',1056540900,NULL); -INSERT INTO international VALUES (19,'SQLReport',2,'Wählen Sie einen Datenbanklink...',1056540888,NULL); +INSERT INTO international VALUES (1075,'WebGUI',2,'Datenbank Link',1056540900,NULL); INSERT INTO international VALUES (12,'HttpProxy',2,'URLs überschreiben?',1056540861,NULL); INSERT INTO international VALUES (29,'DataForm',2,'erforderlich',1056540838,NULL); -INSERT INTO international VALUES (1001,'WebGUI',8,'

Titolo
\r\nUn titolo per il database link.\r\n

DSN
\r\nData Source Name è l\'identificatore univoco che il Perl\r\nusa per descrivere la posizione del tuo database. Prende il formato di DBI:[driver]:[database\r\nname]:[host].
\r\n

Esempio: DBI:mysql:WebGUI:localhost\r\n

Qui ci sono alcuni esempi per altri database.
\r\nOracle:\r\n

    \r\n DBI:Oracle:SID
    \r\n DBD::Oracle deve essere installato.
    \r\n Devi usare mod_perl e configurare PerlSetEnv ORACLE_HOME /home/oracle/product/8.1.7\r\n in httpd.conf. Senza settare ORACLE_HOME, puoi connetterti usando DBI:Oracle:host=myhost.com;sid=SID\r\n
\r\nPostgreSQL:\r\n
    \r\n DBI:PgPP:dbname=DBNAME[;host=hOST]
    \r\n DBD::PgPP deve essere installato.\r\n
\r\nSybase:\r\n
    \r\n DBI:Sybase:[server=SERVERNAME][database=DATABASE]
    \r\n DBD::Sybase deve essere installato.
    \r\n Devi usare mod_perl e configurare PerlSetEnv SYBASE /opt/sybase/11.0.2\r\n in httpd.conf.\r\n
\r\n

Database User
\r\nLa username che usi per connetterti al  DSN.\r\n

Database Password
\r\nLa password che usi per connetterti al  DSN.

\r\n',1056804559,NULL); +INSERT INTO international VALUES (1001,'WebGUI',8,'

Titolo
\nUn titolo per il database link.\n

DSN
\nData Source Name è l\'identificatore univoco che il Perl\nusa per descrivere la posizione del tuo database. Prende il formato di DBI:[driver]:[database\nname]:[host].
\n

Esempio: DBI:mysql:WebGUI:localhost\n

Qui ci sono alcuni esempi per altri database.
\nOracle:\n

    \n DBI:Oracle:SID
    \n DBD::Oracle deve essere installato.
    \n Devi usare mod_perl e configurare PerlSetEnv ORACLE_HOME /home/oracle/product/8.1.7\n in httpd.conf. Senza settare ORACLE_HOME, puoi connetterti usando DBI:Oracle:host=myhost.com;sid=SID\n
\nPostgreSQL:\n
    \n DBI:PgPP:dbname=DBNAME[;host=hOST]
    \n DBD::PgPP deve essere installato.\n
\nSybase:\n
    \n DBI:Sybase:[server=SERVERNAME][database=DATABASE]
    \n DBD::Sybase deve essere installato.
    \n Devi usare mod_perl e configurare PerlSetEnv SYBASE /opt/sybase/11.0.2\n in httpd.conf.\n
\n

Database User
\nLa username che usi per connetterti al  DSN.\n

Database Password
\nLa password che usi per connetterti al  DSN.

\n',1056804559,NULL); INSERT INTO international VALUES (999,'WebGUI',8,'Database Link, Cancella',1056804021,NULL); INSERT INTO international VALUES (998,'WebGUI',8,'Database Link, Aggiungi/Modifica',1056804004,NULL); INSERT INTO international VALUES (997,'WebGUI',8,'Database Links, Gestisci',1056803889,NULL); @@ -14891,11 +14346,9 @@ INSERT INTO international VALUES (981,'WebGUI',8,'Gestisci database links.',1056 INSERT INTO international VALUES (980,'WebGUI',8,'Svuota questa cartella.',1056803402,NULL); INSERT INTO international VALUES (979,'WebGUI',8,'Sei sicuro di voler cancellare tutti gli elementi di questa cartella? Una volta cancellati non potranno essere recuperati. Gli elementi nelle sotto-cartelle non saranno rimossi.',1056803380,NULL); INSERT INTO international VALUES (1003,'WebGUI',8,'Privilegi Wobjects?',1056803284,NULL); -INSERT INTO international VALUES (1002,'WebGUI',8,'Qunado cancelli un database link, tutti i report SQL che usano quel link cesseranno di funzionare. Una lista di tutti i Report interessati sarà mostrato nella schermata di conferma.\r\n

\r\nCome ogni operazione di cancellazione, ti viene richiesto se sei certo di voler procedere alla eliminazione. Se rispondi SI la cancellazione sarà eseguita e non ci sarà più possibilità di ripristinare i dati. Se rispondi NO tornerai alla schermata precedente.',1056803235,NULL); -INSERT INTO international VALUES (1000,'WebGUI',8,'I Database Links consentono agli amministratori di WebGUI di aggiungere i database comunemente usati per utilizzarli con gli SQL Report. Questo permette agli autori del Report SQL di non dover conoscere o inserire DNS, utente e password.\r\n

\r\nTieni presente che ogni Database Link che crei qui sarà disponibile a tutti gli autori di contenuti. Mentre essi non potranno vedere le informazioni di connessione al database, avranno la possibilità di eseguire ogni select, visualizzazione sul database.',1056802924,NULL); -INSERT INTO international VALUES (21,'SQLReport',8,'Se non desideri utilizzare il link al database predefinito, inserisci qui sotto le informazioni relative alla connessione al tuo database. ',1056802367,NULL); -INSERT INTO international VALUES (20,'SQLReport',8,'Database Link',1056802278,NULL); -INSERT INTO international VALUES (19,'SQLReport',8,'Scegli un link al database',1056802264,NULL); +INSERT INTO international VALUES (1002,'WebGUI',8,'Qunado cancelli un database link, tutti i report SQL che usano quel link cesseranno di funzionare. Una lista di tutti i Report interessati sarà mostrato nella schermata di conferma.\n

\nCome ogni operazione di cancellazione, ti viene richiesto se sei certo di voler procedere alla eliminazione. Se rispondi SI la cancellazione sarà eseguita e non ci sarà più possibilità di ripristinare i dati. Se rispondi NO tornerai alla schermata precedente.',1056803235,NULL); +INSERT INTO international VALUES (1000,'WebGUI',8,'I Database Links consentono agli amministratori di WebGUI di aggiungere i database comunemente usati per utilizzarli con gli SQL Report. Questo permette agli autori del Report SQL di non dover conoscere o inserire DNS, utente e password.\n

\nTieni presente che ogni Database Link che crei qui sarà disponibile a tutti gli autori di contenuti. Mentre essi non potranno vedere le informazioni di connessione al database, avranno la possibilità di eseguire ogni select, visualizzazione sul database.',1056802924,NULL); +INSERT INTO international VALUES (1075,'WebGUI',8,'Database Link',1056802278,NULL); INSERT INTO international VALUES (12,'HttpProxy',8,'Riscrivi urls?',1056802227,NULL); INSERT INTO international VALUES (29,'DataForm',8,'Obbligatorio',1056290012,NULL); INSERT INTO international VALUES (29,'DataForm',12,'må fylles ut',1066009455,NULL); @@ -14958,9 +14411,7 @@ INSERT INTO international VALUES (919,'WebGUI',12,'Rediger dette tema.',10545952 INSERT INTO international VALUES (918,'WebGUI',12,'Slett dette tema.',1054595206,NULL); INSERT INTO international VALUES (915,'WebGUI',12,'Fil',1054595186,NULL); INSERT INTO international VALUES (914,'WebGUI',12,'Bilde',1054595174,NULL); -INSERT INTO international VALUES (912,'WebGUI',12,'Style',1054595061,NULL); INSERT INTO international VALUES (917,'WebGUI',12,'Legg element til tema.',1054595028,NULL); -INSERT INTO international VALUES (910,'WebGUI',12,'Element Type',1054595001,NULL); INSERT INTO international VALUES (909,'WebGUI',12,'Legg til Tema element',1054594988,NULL); INSERT INTO international VALUES (908,'WebGUI',12,'Er du sikke på at du vil fjerne dette elementet fra tema?',1066009596,NULL); INSERT INTO international VALUES (911,'WebGUI',12,'Element',1054594824,NULL); @@ -15004,7 +14455,6 @@ INSERT INTO international VALUES (974,'WebGUI',12,'Kan bruker legge til seg selv INSERT INTO international VALUES (973,'WebGUI',12,'Om Proxy brukes, skal ekte klient IP-adresse brukes?',1054580314,NULL); INSERT INTO international VALUES (972,'WebGUI',12,'Dato og Tidspunkt',1054580235,NULL); INSERT INTO international VALUES (971,'WebGUI',12,'Klokken',1054580202,NULL); -INSERT INTO international VALUES (158,'WebGUI',15,'Dodaj novi stil.',1059297006,NULL); INSERT INTO international VALUES (768,'WebGUI',15,'Ime',1059296719,NULL); INSERT INTO international VALUES (718,'WebGUI',15,'Eksportiraj ovaj prijevod.',1059296708,NULL); INSERT INTO international VALUES (605,'WebGUI',15,'Dodaj grupe',1059296416,NULL); @@ -15089,7 +14539,6 @@ INSERT INTO international VALUES (505,'WebGUI',15,'Dodaj novi predlo INSERT INTO international VALUES (504,'WebGUI',15,'Predlo¾ak',1059294251,NULL); INSERT INTO international VALUES (503,'WebGUI',15,'ID predlo¹ka',1059294236,NULL); INSERT INTO international VALUES (502,'WebGUI',15,'®elite li doista obrisati ovaj predlo¾ak i svim stranicama koje ga koriste dodijeliti default predlo¾ak?',1059294224,NULL); -INSERT INTO international VALUES (501,'WebGUI',15,'Tijelo',1059294182,NULL); INSERT INTO international VALUES (500,'WebGUI',15,'ID stranice',1059294172,NULL); INSERT INTO international VALUES (499,'WebGUI',15,'ID Wobjecta',1059294160,NULL); INSERT INTO international VALUES (498,'WebGUI',15,'Zavr¹ni datum',1059294147,NULL); @@ -15159,18 +14608,9 @@ INSERT INTO international VALUES (74,'Poll',15,'The following variables are avai INSERT INTO international VALUES (71,'Poll',15,'Polls can be used to get the impressions of your users on various topics.\r\n

\r\nActive
\r\nIf this box is checked, then users will be able to vote. Otherwise they\'ll only be able to see the results of the poll.\r\n

\r\n\r\nWho can vote?
\r\nChoose a group that can vote on this Poll.\r\n

\r\n\r\nKarma Per Vote
\r\nHow much karma should be given to a user when they vote?\r\n

\r\n\r\nGraph Width
\r\nThe width of the poll results graph. The width is measured in pixels.\r\n

\r\n\r\nQuestion
\r\nWhat is the question you\'d like to ask your users?\r\n

\r\n\r\nAnswers
\r\nEnter the possible answers to your question. Enter only one answer per line. Polls are only capable of 20 possible answers.\r\n

\r\n\r\nRandomize answers?
\r\nIn order to be sure that the order\n ing of the answers in the poll does not bias your users, it is often helpful to present the options in a random order each time they are shown. Select \"yes\" to randomize the answers on the poll.\r\n

\r\n\r\nReset votes.
\r\nReset the votes on this Poll.\r\n

',1059279022,NULL); INSERT INTO international VALUES (74,'MessageBoard',15,'The following is the list of template variables available in message board templates.\r\n

\r\n\r\ncanPost
\r\nA conditional indicating whether the current user has the privileges to post a new message.\r\n

\r\n\r\n\r\npost.url
\r\nThe URL to post a new message.\r\n

\r\n\r\npost.label
\r\nThe translated label for the post URL.\r\n

\r\n\r\n\r\nsearch.url
\r\nThe URL to search this message board.\r\n

\r\n\r\nsearch.label
\r\nThe translated label for the search URL.\r\n

\r\n\r\nsubject.label
\r\nThe translated label for the subject column.\r\n

\r\n\r\nuser.label
\r\nThe translated label for the user column.\r\n

\r\n\r\ndate.label
\r\nThe translated label for the date column.\r\n

\r\n\r\nviews.label
\r\nThe translated label for the views colu\n mn.\r\n

\r\n\r\nreplies.label
\r\nThe translated label for the replies column.\r\n

\r\n\r\nlast.label
\r\nThe translated label for the last reply column.\r\n

\r\n\r\nmessage_loop
\r\nThe loop containing each message.\r\n

\r\n\r\nlast.url
\r\nThe URL to the last reply to this message.\r\n

\r\n\r\nlast.subject
\r\nThe subject on the last reply to this message.\r\n

\r\n\r\n\r\nlast.username
\r\nThe username who posted the last reply to this message.\r\n

\r\n\r\nlast.userProfile
\r\nThe URL to the profile of the user who posted the last reply to this message.\r\n

\r\n\r\nlast.date
\r\nThe date that the last reply to this message was posted.\r\n

\r\n\r\n\r\nmessage.subject
\r\nThe subject of this message.\r\n

\r\n\r\nmessage.date
\r\nThe date that this message was posted.\r\n

\r\n\r\nmessage.user
\r\nThe user that posted\n this message.\r\n

\r\n\r\nmessage.views
\r\nThe views that this message has received.\r\n

\r\n\r\nmessage.replies
\r\nThe number of replies to this thread.\r\n

\r\n\r\nmessage.url
\r\nThe URL to view this message.\r\n

\r\n\r\nmessage.currentUser
\r\nA condition indicating whether the current user is also the user that posted this message.\r\n

\r\n\r\nmessage.status
\r\nThe status of this message (pending, approved, denied).\r\n

\r\n\r\n

\r\n

\r\n\r\n\r\nfirstPage
\r\nA link to the first page in the paginator.\r\n

\r\n\r\nlastPage
\r\nA link to the last page in the paginator.\r\n

\r\n\r\nnextPage
\r\nA link to the next page forward in the paginator.\r\n

\r\n\r\npreviousPage
\r\nA link to the next page backward in the paginator.\r\n

\r\n\r\npageList
\r\nA list of links to all the pages in the paginator.\r\n

\r\n\r\nmu\n ltiplePages
\r\nA conditional indicating whether there is more than one page in the paginator.\r\n

',1059278999,NULL); INSERT INTO international VALUES (71,'MessageBoard',15,'Message boards, also called Forums and/or Discussions, are a great way to add community to any site or intranet. Many companies use message boards internally to collaborate on projects.\r\n

\r\n\r\nMessages Per Page
\r\nWhen a visitor first comes to a message board s/he will be presented with a listing of all the topics (a.k.a. threads) of the Message Board. If a board is popular, it will quickly have many topics. The Messages Per Page attribute allows you to specify how many topics should be shown on one page.\r\n

\r\n\r\nMain Template
\r\nSelect a layout for the main listing of this message board.\r\n

\r\n\r\n\r\n\r\nFilter Post
\r\nSelect the level of content filtering you wish to perform on all discussion posts.\r\n

\r\n\r\nWho can post?
\r\nSelect the group that is allowed to post to this discussion.\r\n \n

\r\n\r\nEdit Timeout
\r\nHow long should a user be able to edit their post before editing is locked to them?\r\n

\r\nNOTE: Don\'t set this limit too high. One of the great things about discussions is that they are an accurate record of who said what. If you allow editing for a long time, then a user has a chance to go back and change his/her mind a long time after the original statement was made.\r\n

\r\n\r\nKarma Per Post
\r\nHow much karma should be given to a user when they post to this discussion?\r\n

\r\n\r\nWho can moderate?
\r\nSelect the group that is allowed to moderate this discussion.\r\n

\r\n\r\nModeration Type?
\r\nYou can select what type of moderation you\'d like for your users. After-the-fact means that when a user posts a message it is displayed publically right away. Pre-emptive means that a moderator must preview and approve users posts before allowing them to be publically visible. \n Alerts for new posts will automatically show up in the moderator\'s WebGUI Inbox.\r\n

\r\nNOTE: In both types of moderation the moderator can always edit or delete the messages posted by your users.\r\n

\r\n\r\nAdd edit stamp to posts?
\r\nDo you wish to \"stamp\" all edits so that you can track who edited a post and when?\r\n

',1059278979,NULL); -INSERT INTO international VALUES (76,'LinkList',15,'The following is the list of template variables available in Link List templates.\r\n

\r\n\r\n\r\naddlink.url
\r\nThe URL to add a link to this link list.\r\n

\r\n\r\naddlink.label
\r\nThe translated label for the add link URL.\r\n

\r\n\r\ncanEdit
\r\nA condition indicating whether the user can edit the links.\r\n

\r\n\r\n\r\nlink_loop
\r\nThis loop contains all of the information about each link.\r\n

\r\n\r\nlink.url
\r\nThe URL for this link.\r\n

\r\n\r\nlink.name
\r\nThe text to be linked.\r\n

\r\n\r\nlink.controls
\r\nThe WebGUI management controls for this link.\r\n

\r\n\r\nlink.newwindow
\r\nA conditional as to whether the link should be opened in a new window.\r\n

\r\n\r\nlink.description
\r\nThe description of this link.\r\n<\n p/>\r\n\r\n

\r\n

',1059278958,NULL); -INSERT INTO international VALUES (73,'LinkList',15,'Title
\r\nThe text that will be linked.\r\n

\r\n\r\nURL
\r\nThe web site to link to.\r\n

\r\n\r\nOpen in new window?
\r\nSelect yes if you\'d like this link to pop-up into a new window.\r\n

\r\n\r\nDescription
\r\nDescribe the site you\'re linking to. You can omit this if you\'d like.\r\n

\r\n\r\nWhat Next?\r\nLeave this set to the default if you wish to add another link after this one.\r\n

',1059278936,NULL); -INSERT INTO international VALUES (71,'LinkList',15,'Link Lists are just what they sound like, a list of links. Many sites have a links section, and this wobject just automates the process.\r\n

\r\n\r\nTemplate
\r\nChoose a layout for this wobject.\r\n

\r\n\r\nWhat Next?
\r\nLeave this set to the default if you wish to add a link after creating the link list.\r\n

',1059278894,NULL); -INSERT INTO international VALUES (74,'Item',15,'The following is the list of template variables available in item templates.\r\n

\r\n\r\nattachment.name
\r\nThe filename for the file attached to this item.\r\n

\r\n\r\nattachment.url
\r\nThe URL to download the file attached to this item.\r\n

\r\n\r\nattachment.icon
\r\nThe URL to the icon for the file attached to this item.\r\n

',1059278874,NULL); -INSERT INTO international VALUES (71,'Item',15,'Like Articles, Items are the Swiss Army knife of WebGUI. Most pieces of static content can be added via the Item, though Items are usually used for smaller content than Articles.\r\n

\r\n\r\nLink URL
\r\nThis URL will be attached to the title of this Item.\r\n

\r\nExample: http://www.google.com\r\n

\r\n\r\nAttachment
\r\nIf you wish to attach a word processor file, a zip file, or any other file for download by your users, then choose it from your hard drive.\r\n

\r\n\r\nTemplate
\r\nChoose a layout for this Item.\r\n

',1059278856,NULL); INSERT INTO international VALUES (76,'FileManager',15,'This is the list of template variables available in File Manager templates.\r\n

\r\n\r\ntitleColumn.url
\r\nThe URL to sort by the title.\r\n

\r\n\r\ntitleColumn.label
\r\nThe translated label for the title.\r\n

\r\n\r\ndescriptionColumn.label
\r\nThe translated label for the description.\r\n

\r\n\r\ndescriptionColumn.url
\r\nThe URL to sort by the description.\r\n

\r\n\r\ndateColumn.label
\r\nThe translated label for the upload date.\r\n

\r\n\r\ndateColumn.url
\r\nThe URL to sort by the date uploaded.\r\n

\r\n\r\nsearch.form
\r\nWebGUI\'s power search form.\r\n

\r\n\r\nsearch.url
\r\nThe URL to toggle search mode on and off.\r\n

\r\n\r\nsearch.label
\r\nThe translated label for the search link.\r\n

\r\n\r\naddfile.url
\r\nT\n he URL to add a file to the file manager.\r\n

\r\n\r\naddfile.label
\r\nThe translated label for the add file link.\r\n

\r\n\r\nfile_loop
\r\nA loop containing the information about each file uploaded to this file manager.\r\n

\r\nfile.canView
\r\nA condition as to whether the current user has the privileges to view this file.\r\n

\r\nfile.controls
\r\nThe WebGUI management controls for this file.\r\n

\r\nfile.title
\r\nThe title for this file.\r\n

\r\nfile.version1.name
\r\nThe filename for the first version of this file.\r\n

\r\nfile.version1.url
\r\nThe download URL for the first version of this file.\r\n

\r\nfile.version1.icon
\r\nThe URL to the icon for the file type of the first version of this file.\r\n

\r\nfile.version1.size
\r\nThe storage size of the first version of this file.\r\n

\r\nfile.version1.type
\r\nThe type (o\n r file extension) of the first version of this file.\r\n

\r\nfile.version1.thumbnail
\r\nThe URL to the thumbnail for the first version of this file.\r\n

\r\nfile.version1.isImage
\r\nA conditional indicating whether the first version of this file is an image or not.\r\n

\r\nfile.version2.name
\r\nThe filename for the second version of this file.\r\n

\r\nfile.version2.url
\r\nThe download URL for the second version of this file.\r\n

\r\nfile.version2.icon
\r\nThe URL to the icon for the file type of the second version of this file.\r\n

\r\nfile.version2.size
\r\nThe storage size of the second version of this file.\r\n

\r\nfile.version2.type
\r\nThe type (or file extension) of the second version of this file.\r\n

\r\nfile.version2.thumbnail
\r\nThe URL to the thumbnail for the second version of this file.\r\n

\r\nfile.version2.isImage
\r\nA conditional\n indicating whether the second version of this file is an image or not.\r\n

\r\nfile.version3.name
\r\nThe filename for the third version of this file.\r\n

\r\nfile.version3.url
\r\nThe download URL for the third version of this file.\r\n

\r\nfile.version3.icon
\r\nThe URL to the icon for the file type of the third version of this file.\r\n

\r\nfile.version3.size
\r\nThe storage size of the third version of this file.\r\n

\r\nfile.version3.type
\r\nThe type (or file extension) of the third version of this file.\r\n

\r\nfile.version3.thumbnail
\r\nThe URL to the thumbnail for the third version of this file.\r\n

\r\nfile.version3.isImage
\r\nA conditional indicating whether the third version of this file is an image or not.\r\n

\r\nfile.description
\r\nThe description of this file.\r\n

\r\nfile.date
\r\nThe date that this file was uploaded.\r\n

\r\n<\n b>file.time
\r\nThe time that this file was uploaded.\r\n

\r\n

\r\n

\r\nnoresults.message
\r\nA translated message stating that this file manager has no files for this user to view.\r\n

\r\nnoresults
\r\nA conditional indicating whether there are any files for this user to view.\r\n

\r\n\r\nfirstPage
\r\nA link to the first page in the paginator.\r\n

\r\n\r\nlastPage
\r\nA link to the last page in the paginator.\r\n

\r\n\r\nnextPage
\r\nA link to the next page forward in the paginator.\r\n

\r\n\r\npreviousPage
\r\nA link to the next page backward in the paginator.\r\n

\r\n\r\npageList
\r\nA list of links to all the pages in the paginator.\r\n

\r\n\r\nmultiplePages
\r\nA conditional indicating whether there is more than one page in the paginator.\r\n

',1059278836,NULL); INSERT INTO international VALUES (73,'FileManager',15,'File Title
\r\nThe title that will be displayed for this file. If left blank the filename will be used.\r\n

\r\n\r\nFile
\r\nChoose the file from your hard drive that you wish to upload.\r\n

\r\n\r\nAlternate Version #1
\r\nAn alternate version of the file. For instance, if the file was a JPEG, perhaps the alternate version would be a TIFF or a BMP.\r\n

\r\n\r\nAlternate Version #2
\r\nAn alternate version of the file. For instance, if the file was a JPEG, perhaps the alternate version would be a TIFF or a BMP.\r\n

\r\n\r\nBrief Synopsis
\r\nA short description of this file. Be sure to include keywords that users may try to search for.\r\n

\r\n\r\nGroup To Download
\r\nChoose the group that may download this file.\r\n

\r\n\r\nWhat\'s next?
\r\nIf you\'d like to add another file aft\n er this one, then select \"add a new file\" otherwise select \"go back to the page\".\r\n

',1059278811,NULL); INSERT INTO international VALUES (71,'FileManager',15,'The File Manager is designed to help you manage file distribution on your site. It allows you to specify who may view/download files from your site.\r\n

\r\n\r\nTemplate
\r\nChoose a layout for the file manager.\r\n

\r\n\r\nPaginate After
\r\nHow many files should be displayed before splitting the results into separate pages? In other words, how many files should be displayed per page?\r\n

\r\n\r\nProceed to add download?
\r\nIf you wish to start adding files to download right away, leave this checked.\r\n

\r\n',1059278789,NULL); -INSERT INTO international VALUES (77,'FAQ',15,'The following is the list of template variables available in FAQ templates.\r\n

\r\n\r\naddquestion.url
\r\nThe URL to add a question to the FAQ.\r\n

\r\n\r\naddquestion.label
\r\nThe translated label for the add question link.\r\n

\r\n\r\nqa_loop
\r\nThe loop containing the variables for each question in the FAQ.\r\n

\r\nqa.id
\r\nThe unique identifier for this question.\r\n

\r\nqa.answer
\r\nThe answer for this question.\r\n

\r\nqa.question
\r\nThe question itself.\r\n

\r\nqa.controls
\r\nThe WebGUI management controls for this question.\r\n

\r\n

\r\n

',1059278568,NULL); -INSERT INTO international VALUES (73,'FAQ',15,'Question
\r\nAdd the question you\'d like to appear on the FAQ.\r\n

\r\n\r\n\r\nAnswer
\r\nAdd the answer for the question you entered above.\r\n

\r\n\r\n\r\nWhat next?
\r\nIf you wish to add another question then leave this set to the default.\r\n\r\n

\r\n',1059278512,NULL); -INSERT INTO international VALUES (71,'FAQ',15,'It seems that almost every web site, intranet, and extranet in the world has a Frequently Asked Questions area. This wobject helps you build one, too.\r\n

\r\n\r\nTemplate
\r\nChoose a layout for this FAQ.\r\n

\r\n\r\nWhat Next?
\r\nSelect \"add a question\" if you wish to add another question after this one.\r\n

\r\n\r\n


\r\nNote: The following style is specific to the FAQ in some of the built-in templates.\r\n

\r\n.faqQuestion
\r\nAn F.A.Q. question. To distinguish it from an answer.',1059278490,NULL); -INSERT INTO international VALUES (71,'ExtraColumn',15,'Extra columns allow you to change the layout of your page for one page only. If you wish to have multiple columns on all your pages, perhaps you should consider altering the style applied to your pages or use a Template instead of an Extra Column. \r\n

\r\nColumns are always added from left to right. Therefore any existing content will be on the left of the new column.\r\n

\r\nSpacer
\r\nSpacer is the amount of space between your existing content and your new column. It is measured in pixels.\r\n

\r\nWidth
\r\nWidth is the actual width of the new column to be added. Width is measured in pixels.\r\n

\r\nStyleSheet Class
\r\nBy default the content style (which is the style the body of your site should be using) that is applied to all columns. However, if you\'ve created a style specifically fo\n r columns, then feel free to modify this class.',1059278469,NULL); INSERT INTO international VALUES (97,'EventsCalendar',15,'The following is the list of template variables available in event templates.\r\n

\r\n\r\ntitle
\r\nThe title of this event.\r\n

\r\n\r\nstart.label
\r\nThe translated label for the start date.\r\n

\r\n\r\nstart.date
\r\nThe date this event starts.\r\n

\r\n\r\nend.date
\r\nThe date this event ends.\r\n

\r\n\r\nend.label
\r\nThe translated label for the end date.\r\n

\r\n\r\ncanEdit
\r\nA condition indicating whether the current user can edit an event.\r\n

\r\n\r\nedit.url
\r\nThe URL to edit this event.\r\n

\r\n\r\nedit.label
\r\nThe translated label for the edit URL.\r\n

\r\n\r\ndelete.url
\r\nThe URL to delete this event.\r\n

\r\n\r\ndelete.label
\r\nThe translated label for the delete URL.\r\n

\r\n\r\nprevious.ur\n l
\r\nThe URL to view the event before this one.\r\n

\r\n\r\nprevious.label
\r\nThe translated label for the previous URL.\r\n

\r\n\r\nnext.label
\r\nThe translated label for the next URL.\r\n

\r\n\r\nnext.url
\r\nThe URL to view the event after this one.\r\n

\r\n\r\ndescription
\r\nThe description of this event.',1059278447,NULL); INSERT INTO international VALUES (73,'EventsCalendar',15,'Title
\r\nThe title for this event.\r\n

\r\n\r\nDescription
\r\nDescribe the activities of this event or information about where the event is to be held.\r\n

\r\n\r\nStart Date
\r\nOn what date will this event begin?\r\n

\r\n\r\nEnd Date
\r\nOn what date will this event end?\r\n

\r\n\r\nRecurs every
\r\nSelect a recurrence interval for this event. \r\n\r\n

\r\n\r\nWhat next?
\r\nSelect \"add new event\" if you\'d like to add another event, otherwise select \"go back to page\".\r\n',1059278427,NULL); INSERT INTO international VALUES (71,'EventsCalendar',15,'Events calendars are used on many intranets to keep track of internal dates that affect a whole organization. Also, Events Calendars on consumer sites are a great way to let your customers know what events you\'ll be attending and what promotions you\'ll be having.\r\n

\r\n\r\nMain Template
\r\nChoose a layout for the events calendar.\r\n

\r\n\r\nEvent Template
\r\nChoose a layout for the individual events within the calendars.\r\n

\r\n\r\nStart Month
\r\nChoose the start month for your calendar. If you choose \"current\" the calendar will always start on the current month, therefore it will change from month to month. If you choose \"first in the calendar\" then it will start at whatever the earliest date in the calendar is.\r\n

\r\n\r\nEnd Month
\r\nChoose the end month for your calendar. I\n f you choose \"show X months from start\", then only X months worth of information will ever be displayed. If you choose \"current\" then the calendar will end on the month you are currently in. If you choose \"last in calendar\" then the calendar will end on the last date entered into the calendar.\r\n

\r\n\r\nDefault Month
\r\nChoose which month for this calendar to start on when a visitor comes to the page containing the calendar.\r\n

\r\n\r\nPaginate After
\r\nWhen using a list-style calendar, how many events should be shown per page?\r\n

\r\nProceed to add event?
\r\nLeave this set to yes if you want to add events to the Events Calendar directly after creating it.\r\n

\r\n\r\nNote: Events that have already happened will not be displayed on the events calendar.\r\n

\r\n


\r\nNote: The following style is specific to the Events Calendar.\r\n

\r\n.eventTitle
\n \r\nThe title of an individual event.',1059278377,NULL); @@ -15235,7 +14675,6 @@ INSERT INTO international VALUES (63,'WebGUI',15,'Uklju INSERT INTO international VALUES (62,'WebGUI',15,'snimi',1059232318,NULL); INSERT INTO international VALUES (60,'WebGUI',15,'®elite li doista deaktivirati svoj korisnièki raèun? Ukoliko nastavite, sve va¹e informacije bit æe trajno izgubljene.',1059232302,NULL); INSERT INTO international VALUES (61,'WebGUI',15,'A¾uriranje informacije o korisniku',1059232263,NULL); -INSERT INTO international VALUES (6,'WebGUI',15,'Upravljanje stilovima.',1059232245,NULL); INSERT INTO international VALUES (59,'WebGUI',15,'Zaboravio sam lozinku.',1059232227,NULL); INSERT INTO international VALUES (58,'WebGUI',15,'Veæ imam korisnièki raèun.',1059232214,NULL); INSERT INTO international VALUES (57,'WebGUI',15,'Ovo je potrebno samo ako ¾elite koristiti komponente koje zahtijevaju e-mail.',1059232196,NULL); @@ -15265,7 +14704,6 @@ INSERT INTO international VALUES (42,'WebGUI',15,'Molim potvrdu',1059231590,NULL INSERT INTO international VALUES (419,'WebGUI',15,'Obri¹i sve osim teksta.',1059231566,NULL); INSERT INTO international VALUES (418,'WebGUI',15,'Filtriraj sadr¾aj',1059231415,NULL); INSERT INTO international VALUES (417,'WebGUI',15,'

Security Violation

You attempted to access a wobject not associated with this page. This incident has been reported.',1059231311,NULL); -INSERT INTO international VALUES (416,'WebGUI',15,'

Problem With Request

We have encountered a problem with your request. Please use your back button and try again. If this problem persists, please contact us with what you were trying to do and the time and date of the problem.',1059231251,NULL); INSERT INTO international VALUES (412,'WebGUI',15,'Sa¾etak',1059231187,NULL); INSERT INTO international VALUES (411,'WebGUI',15,'Naziv menija',1059231164,NULL); INSERT INTO international VALUES (410,'WebGUI',15,'Upravljanje vr¹nim sjedi¹tima.',1059231152,NULL); @@ -15280,7 +14718,6 @@ INSERT INTO international VALUES (403,'WebGUI',15,'Prefer not to say.',105923091 INSERT INTO international VALUES (401,'WebGUI',15,'®elite li doista obrisati ovu poruku i sve poruke ispod nje u ovom nizu poruka?',1059230857,NULL); INSERT INTO international VALUES (400,'WebGUI',15,'Prevent Proxy Caching',1059230819,NULL); INSERT INTO international VALUES (399,'WebGUI',15,'Validate this page.',1059230796,NULL); -INSERT INTO international VALUES (398,'WebGUI',15,'Document Type Declaration',1059230789,NULL); INSERT INTO international VALUES (395,'WebGUI',15,'Dodaj novu sliku.',1059230772,NULL); INSERT INTO international VALUES (394,'WebGUI',15,'Manage collateral.',1059230762,NULL); INSERT INTO international VALUES (391,'WebGUI',15,'Obri¹i datoteku u privitku.',1059230752,NULL); @@ -15291,13 +14728,11 @@ INSERT INTO international VALUES (386,'WebGUI',15,'Uredi sliku',1059230679,NULL) INSERT INTO international VALUES (385,'WebGUI',15,'Parametri',1059230664,NULL); INSERT INTO international VALUES (384,'WebGUI',15,'Datoteka',1059230647,NULL); INSERT INTO international VALUES (381,'WebGUI',15,'WebGUI received a malformed request and was unable to continue. Proprietary characters being passed through a form typically cause this. Please feel free to hit your back button and try again.',1059230637,NULL); -INSERT INTO international VALUES (380,'WebGUI',15,'ID stila',1059230615,NULL); INSERT INTO international VALUES (38,'WebGUI',15,'You do not have sufficient privileges to perform this operation. Please ^a(log in with an account); that has sufficient privileges before attempting this operation.',1059230595,NULL); INSERT INTO international VALUES (379,'WebGUI',15,'ID grupe',1059230576,NULL); INSERT INTO international VALUES (378,'WebGUI',15,'Korisnièki ID',1059230552,NULL); -INSERT INTO international VALUES (377,'WebGUI',15,'No packages have been defined by your package manager(s) or administrator(s).',1059230536,NULL); +INSERT INTO international VALUES (1082,'WebGUI',1,'Clipboard',1076866475,'A label for the clipboard.'); INSERT INTO international VALUES (376,'WebGUI',15,'Paket',1059230512,NULL); -INSERT INTO international VALUES (375,'WebGUI',15,'Odaberi paket za primjenu',1059230498,NULL); INSERT INTO international VALUES (374,'WebGUI',15,'Upravljanje paketima.',1059230483,NULL); INSERT INTO international VALUES (372,'WebGUI',15,'Uredi korisnièke grupe',1059230471,NULL); INSERT INTO international VALUES (371,'WebGUI',15,'Dodaj grupe',1059230441,NULL); @@ -15326,10 +14761,8 @@ INSERT INTO international VALUES (46,'USS',15,'Pro INSERT INTO international VALUES (41,'USS',15,'Datum',1059229961,NULL); INSERT INTO international VALUES (4,'USS',15,'Your submission has been approved.',1059229952,NULL); INSERT INTO international VALUES (39,'USS',15,'Post a Reply',1059229940,NULL); -INSERT INTO international VALUES (38,'USS',15,'(Select \"No\" if you\'re writing an HTML/Rich Edit submission.)',1059229920,NULL); INSERT INTO international VALUES (37,'USS',15,'Obri¹i',1059229906,NULL); INSERT INTO international VALUES (35,'USS',15,'Naziv',1059229893,NULL); -INSERT INTO international VALUES (34,'USS',15,'Convert Carriage Returns',1059229882,NULL); INSERT INTO international VALUES (33,'USS',15,'Privitak',1059229858,NULL); INSERT INTO international VALUES (32,'USS',15,'Slika',1059229849,NULL); INSERT INTO international VALUES (31,'USS',15,'Sadr¾aj',1059229839,NULL); @@ -15358,7 +14791,7 @@ INSERT INTO international VALUES (4,'SyndicatedContent',15,'Edit Syndicated Cont INSERT INTO international VALUES (2,'SyndicatedContent',15,'Syndicated Content',1059229416,NULL); INSERT INTO international VALUES (1,'SyndicatedContent',15,'URL za RSS datoteku',1059229408,NULL); INSERT INTO international VALUES (71,'Survey',15,'Grade Book',1059229393,NULL); -INSERT INTO international VALUES (68,'Survey',15,'View reports and exports.',1059229381,NULL); +INSERT INTO international VALUES (14,'WSClient',1,'Pagination variable',1072810296,NULL); INSERT INTO international VALUES (65,'Survey',15,'Export composite summary.',1059229347,NULL); INSERT INTO international VALUES (64,'Survey',15,' \r\nEnglish Export responses. \r\n',1059229336,NULL); INSERT INTO international VALUES (63,'Survey',15,'Export questions.',1059229327,NULL); @@ -15369,8 +14802,6 @@ INSERT INTO international VALUES (73,'SiteMap',15,'This is the list of template INSERT INTO international VALUES (71,'SiteMap',15,'Site maps are used to provide additional navigation in WebGUI. You could set up a traditional site map that would display a hierarchical view of all the pages in the site. On the other hand, you could use site maps to provide extra navigation at certain levels in your site. \r\n\r\nTemplate\r\nChoose a layout for this site map. \r\nStart With\r\nSelect the page that this site map should start from. \r\n\r\nDepth To Traverse\r\nHow many levels deep of navigation should the Site Map show? If 0 (zero) is specified, it will show as many levels as there are. \r\n\r\nIndent How many characters should indent each level? \r\n',1059229255,NULL); INSERT INTO international VALUES (71,'SQLReport',15,'SQL Reports are perhaps the most powerful wobject in the WebGUI arsenal. They allow a user to query data from any database that they have access to. This is great for getting sales figures from your Accounting database or even summarizing all the message boards on your web site. \r\nPreprocess macros on query?\r\nIf you\'re using WebGUI macros in your query you\'ll want to check this box. \r\n\r\nDebug?\r\nIf you want to display debugging and error messages on the page, check this box. \r\n\r\nQuery\r\nThis is a standard SQL query. If you are unfamiliar with SQL, Plain Black Software provides training courses in SQL and database management. You can make your queries more dynamic by using the ^FormParam(); macro. \r\n\r\nReport Template\r\nLayout a template of how this report should look. Usually you\'ll use HTML tables to generate a report. An example is included below. If you leave this field blank a template will be generated based on your result set. \r\n\r\nThere are special macro characters used in generating SQL Reports. They are ^-;, ^0;, ^1;, ^2;, ^3;, etc. These macros will be processed regardless of whether you checked the process macros box above. The ^- macro represents split points in the document where the report will begin and end looping. The numeric macros represent the data fields that will be returned from your query. There is an additional macro, ^rownum; that counts the rows of the query starting at 1 for use where the lines of the output need to be numbered. \r\n\r\nDatabase Link\r\nThe administrator can configure common databases on which you can run SQL Reports, freeing you from having to know or enter the DSN, Username, and Password. If a database is selected from this list, the DSN, User, and Password fields will be ignored.\r\n\r\nIf the database you need to use is not configured as a Database Link, you can\n enter the DSN, User, and Password. \r\n\r\nDSN\r\nData Source Name is the unique identifier that Perl uses to describe the location of your database. It takes the format of DBI:[driver]:[database name]:[host]. \r\n\r\nExample: DBI:mysql:WebGUI:localhost \r\n\r\nDatabase User The username you use to connect to the DSN. \r\n\r\nDatabase Password The password you use to connect to the DSN. \r\n\r\nPaginate After How many rows should be displayed before splitting the results into separate pages? In other words, how many rows should be displayed per page? \r\n\r\nConvert carriage returns? Do you wish to convert the carriage returns in the resultant data to HTML breaks (
). \r\n',1059229235,NULL); INSERT INTO international VALUES (367,'WebGUI',15,'Expire Offset',1059229222,NULL); -INSERT INTO international VALUES (366,'WebGUI',15,'Nije pronaðena nijedna stranica èiji bi sadr¾aj odgovarao va¹em upitu.',1059229209,NULL); -INSERT INTO international VALUES (365,'WebGUI',15,'Rezultati pretra¾ivanja...',1059229181,NULL); INSERT INTO international VALUES (364,'WebGUI',15,'Tra¾i',1059229163,NULL); INSERT INTO international VALUES (363,'WebGUI',15,'Polo¾aj predlo¹ka',1059229088,NULL); INSERT INTO international VALUES (362,'WebGUI',15,'jedan do drugog',1059229043,NULL); @@ -15397,7 +14828,6 @@ INSERT INTO international VALUES (343,'WebGUI',15,'Pregledaj profil.',1059228475 INSERT INTO international VALUES (342,'WebGUI',15,'Uredi informacije o korisnièkom raèunu.',1059228444,NULL); INSERT INTO international VALUES (341,'WebGUI',15,'Uredi profil.',1059228414,NULL); INSERT INTO international VALUES (340,'WebGUI',15,'®ena',1059228393,NULL); -INSERT INTO international VALUES (34,'WebGUI',15,'postavi datum',1059228376,NULL); INSERT INTO international VALUES (339,'WebGUI',15,'Mu¹karac',1059228352,NULL); INSERT INTO international VALUES (338,'WebGUI',15,'Uredi profil',1059228322,NULL); INSERT INTO international VALUES (337,'WebGUI',15,'URL',1059228308,NULL); @@ -15436,7 +14866,6 @@ INSERT INTO international VALUES (308,'WebGUI',15,'Uredi postavke profila',10592 INSERT INTO international VALUES (307,'WebGUI',15,'Treba li korisiti pretpostavljene meta tagove?',1059227429,NULL); INSERT INTO international VALUES (304,'WebGUI',15,'Jezik',1059227404,NULL); INSERT INTO international VALUES (30,'WebGUI',15,'Srijeda',1059227380,NULL); -INSERT INTO international VALUES (3,'WebGUI',15,'Paste s clipboarda...',1059227351,NULL); INSERT INTO international VALUES (29,'WebGUI',15,'Utorak',1059227330,NULL); INSERT INTO international VALUES (28,'WebGUI',15,'Ponedjeljak',1059227320,NULL); INSERT INTO international VALUES (27,'WebGUI',15,'Nedjelja',1059227282,NULL); @@ -15472,11 +14901,6 @@ INSERT INTO international VALUES (162,'WebGUI',15,' INSERT INTO international VALUES (161,'WebGUI',15,'Poslao',1059226574,NULL); INSERT INTO international VALUES (160,'WebGUI',15,'Datum slanja',1059226510,NULL); INSERT INTO international VALUES (159,'WebGUI',15,'Ulazni spremnik',1059226469,NULL); -INSERT INTO international VALUES (155,'WebGUI',15,'®elite li doista obrisati ovaj stil i sve stranice koje ga koriste prebaciti na \"Fail Safe\" stil?',1059226410,NULL); -INSERT INTO international VALUES (157,'WebGUI',15,'Stilovi',1059226367,NULL); -INSERT INTO international VALUES (156,'WebGUI',15,'Uredi stil',1059226356,NULL); -INSERT INTO international VALUES (154,'WebGUI',15,'Stilski predlo¾ak',1059226326,NULL); -INSERT INTO international VALUES (151,'WebGUI',15,'Naziv stila',1059226304,NULL); INSERT INTO international VALUES (149,'WebGUI',15,'Korisnici',1059226263,NULL); INSERT INTO international VALUES (148,'WebGUI',15,'Wobjects',1059226246,NULL); INSERT INTO international VALUES (147,'WebGUI',15,'Stranice',1059226230,NULL); @@ -15593,23 +15017,21 @@ INSERT INTO international VALUES (12,'Survey',15,'Tko mo INSERT INTO international VALUES (11,'Survey',15,'Naèin',1059215634,NULL); INSERT INTO international VALUES (10,'Survey',15,'Kviz',1059215623,NULL); INSERT INTO international VALUES (1,'Survey',15,'Istra¾ivanje',1059215615,NULL); -INSERT INTO international VALUES (9,'SQLReport',15,'Debug: Gre¹ka: Naznaèeni DSN nije u dobrom formatu.',1059215581,NULL); +INSERT INTO international VALUES (10,'Auth/SMB',1,'No SMB username specfified.',1071926471,''); INSERT INTO international VALUES (8,'SQLReport',15,'Uredi SQL izvje¹æe',1059215559,NULL); -INSERT INTO international VALUES (7,'SQLReport',15,'Lozinka za bazu podataka',1059215543,NULL); INSERT INTO international VALUES (61,'SQLReport',15,'SQL izvje¹æe, Dodaj/uredi',1059215532,NULL); -INSERT INTO international VALUES (6,'SQLReport',15,'Korisnièko ime u bazi podataka',1059215517,NULL); -INSERT INTO international VALUES (5,'SQLReport',15,'DSN',1059215504,NULL); +INSERT INTO international VALUES (30,'WSClient',1,'Debug: Error: The URI/WSDL specified is of an improper format.',1033575504,NULL); INSERT INTO international VALUES (4,'SQLReport',15,'Upit',1059215496,NULL); -INSERT INTO international VALUES (3,'SQLReport',15,'Predlo¾ak za izvje¹æe',1059215487,NULL); -INSERT INTO international VALUES (21,'SQLReport',15,'Ukoliko ne ¾elite koristiti unaprijed definirani link na bazu podataka, unesite informacije o konekciji.',1059215473,NULL); -INSERT INTO international VALUES (20,'SQLReport',15,'Link na bazu podataka',1059215446,NULL); -INSERT INTO international VALUES (19,'SQLReport',15,'Odaberi link na bazu podataka...',1059215435,NULL); +INSERT INTO international VALUES (106,'DataForm',1,'Tab Template',NULL,NULL); +INSERT INTO international VALUES (105,'DataForm',1,'Add a Tab',NULL,NULL); +INSERT INTO international VALUES (104,'DataForm',1,'Tab',NULL,NULL); +INSERT INTO international VALUES (103,'DataForm',1,'Add new Tab',NULL,NULL); +INSERT INTO international VALUES (1075,'WebGUI',15,'Link na bazu podataka',1059215446,NULL); INSERT INTO international VALUES (18,'SQLReport',15,'Nema rezultata za ovaj upit.',1059215423,NULL); INSERT INTO international VALUES (17,'SQLReport',15,'Debug: Upit:',1059215410,NULL); INSERT INTO international VALUES (16,'SQLReport',15,'Debugiraj?',1059215395,NULL); INSERT INTO international VALUES (15,'SQLReport',15,'Unaprijed obradi makro naredbe kod upita?',1059215385,NULL); INSERT INTO international VALUES (14,'SQLReport',15,'Nova stranica nakon',1059215368,NULL); -INSERT INTO international VALUES (13,'SQLReport',15,'Pretvori ?',1059215357,NULL); INSERT INTO international VALUES (12,'SQLReport',15,'Debug: Pogre¹ka: Ne mogu se spojiti na bazu podataka.',1059215342,NULL); INSERT INTO international VALUES (75,'SiteMap',15,'Sve vr¹ne stranice',1059215317,NULL); INSERT INTO international VALUES (74,'SiteMap',15,'Ova stranica',1059215304,NULL); @@ -15669,25 +15091,9 @@ INSERT INTO international VALUES (12,'Poll',15,'Ukupno glasova',1059207700,NULL) INSERT INTO international VALUES (11,'Poll',15,'Glasuj!',1059207686,NULL); INSERT INTO international VALUES (10,'Poll',15,'Anuliraj glasove.',1059207674,NULL); INSERT INTO international VALUES (1,'Poll',15,'Anketa',1059207653,NULL); -INSERT INTO international VALUES (9,'FAQ',15,'Dodaj novo pitanje.',1059207634,NULL); -INSERT INTO international VALUES (8,'FAQ',15,'Uredi FAQ',1059207623,NULL); -INSERT INTO international VALUES (76,'FAQ',15,'Predlo¾ak za FAQ',1059207606,NULL); -INSERT INTO international VALUES (75,'FAQ',15,'Dodaj pitanje.',1059207590,NULL); -INSERT INTO international VALUES (72,'FAQ',15,'Pitanje, Dodaj/uredi',1059207569,NULL); -INSERT INTO international VALUES (7,'FAQ',15,'®elite li doista obrisati ovo pitanje?',1059207552,NULL); -INSERT INTO international VALUES (61,'FAQ',15,'FAQ, Dodaj/uredi',1059207538,NULL); -INSERT INTO international VALUES (6,'FAQ',15,'Odgovor',1059207523,NULL); -INSERT INTO international VALUES (5,'FAQ',15,'Pitanje',1059207514,NULL); -INSERT INTO international VALUES (2,'FAQ',15,'Uèestalo postavljana pitanja',1059207503,NULL); -INSERT INTO international VALUES (13,'FAQ',15,'Ukljuèi link na [vrh]?',1059207489,NULL); -INSERT INTO international VALUES (12,'FAQ',15,'Ukljuèi pitanja i odgovore?',1059207471,NULL); -INSERT INTO international VALUES (11,'FAQ',15,'Ukljuèi sadr¾aj?',1059207457,NULL); -INSERT INTO international VALUES (61,'ExtraColumn',15,'Dodatni stupac, Dodaj/uredi',1059207438,NULL); -INSERT INTO international VALUES (6,'ExtraColumn',15,'Uredi dodatni stupac',1059207422,NULL); -INSERT INTO international VALUES (5,'ExtraColumn',15,'Klasa u CSS-u',1059207409,NULL); -INSERT INTO international VALUES (4,'ExtraColumn',15,'©irina',1059207398,NULL); -INSERT INTO international VALUES (3,'ExtraColumn',15,'Razmak',1059207388,NULL); -INSERT INTO international VALUES (1,'ExtraColumn',15,'Dodatni stupac',1059207377,NULL); +INSERT INTO international VALUES (83,'USS',15,'Dodaj novo pitanje.',1059207634,NULL); +INSERT INTO international VALUES (86,'USS',15,'Odgovor',1059207523,NULL); +INSERT INTO international VALUES (85,'USS',15,'Pitanje',1059207514,NULL); INSERT INTO international VALUES (88,'DataForm',15,'Predlo¾ak za ispis u formularu',1059207360,NULL); INSERT INTO international VALUES (87,'DataForm',15,'Predlo¾ak za ispis formulara',1059207344,NULL); INSERT INTO international VALUES (86,'DataForm',15,'Ispi¹i sve unose',1059207322,NULL); @@ -15747,16 +15153,10 @@ INSERT INTO international VALUES (4,'Auth/LDAP',15,'DN za spajanje',1059206507,N INSERT INTO international VALUES (3,'Auth/LDAP',15,'URL LDAP servera',1059206492,NULL); INSERT INTO international VALUES (2,'Auth/LDAP',15,'Spajanje na LDAP server nije moguæe.',1059206479,NULL); INSERT INTO international VALUES (1,'Auth/LDAP',15,'LDAP opcije za autentifikaciju',1059206455,NULL); -INSERT INTO international VALUES (9,'LinkList',15,'®elite li doista obrisati ovaj link?',1059196367,NULL); -INSERT INTO international VALUES (8,'LinkList',15,'URL',1059196350,NULL); -INSERT INTO international VALUES (75,'LinkList',15,'Predlo¾ak za listu linkova',1059196335,NULL); -INSERT INTO international VALUES (72,'LinkList',15,'Link, Dodaj/uredi',1059196312,NULL); -INSERT INTO international VALUES (61,'LinkList',15,'Lista linkova, Dodaj/uredi',1059196294,NULL); -INSERT INTO international VALUES (6,'LinkList',15,'Lista linkova',1059196281,NULL); -INSERT INTO international VALUES (3,'LinkList',15,'Otvori u novom prozoru?',1059196270,NULL); -INSERT INTO international VALUES (13,'LinkList',15,'Dodaj novi link',1059196257,NULL); -INSERT INTO international VALUES (12,'LinkList',15,'Uredi link',1059196246,NULL); -INSERT INTO international VALUES (10,'LinkList',15,'Uredi popis linkova',1059196236,NULL); +INSERT INTO international VALUES (91,'USS',15,'URL',1059196350,NULL); +INSERT INTO international VALUES (92,'USS',15,'Otvori u novom prozoru?',1059196270,NULL); +INSERT INTO international VALUES (89,'USS',15,'Dodaj novi link',1059196257,NULL); +INSERT INTO international VALUES (90,'USS',15,'Uredi link',1059196246,NULL); INSERT INTO international VALUES (73,'MessageBoard',15,'Predlo¾ak za oglasnu ploèu',1059196193,NULL); INSERT INTO international VALUES (61,'MessageBoard',15,'Oglasna ploèa, Dodaj/uredi',1059196163,NULL); INSERT INTO international VALUES (6,'MessageBoard',15,'Uredi oglasnu ploèu',1059196145,NULL); @@ -15765,15 +15165,7 @@ INSERT INTO international VALUES (1017,'WebGUI',15,'Posljednji odgovor',10591961 INSERT INTO international VALUES (2,'MessageBoard',15,'Oglasna ploèa',1059196096,NULL); INSERT INTO international VALUES (1016,'WebGUI',15,'Odgovori',1059196083,NULL); INSERT INTO international VALUES (1052,'WebGUI',1,'Edit Replacement',1066418983,'A heading for the edit replacement page. '); -INSERT INTO international VALUES (73,'Item',15,'Predlo¾ak za stavke',1059195990,NULL); -INSERT INTO international VALUES (61,'Item',15,'Stavka, Dodaj/uredi',1059195969,NULL); -INSERT INTO international VALUES (6,'Item',15,'Uredi stavku',1059195956,NULL); -INSERT INTO international VALUES (5,'Item',15,'Dohvati privitak',1059195946,NULL); -INSERT INTO international VALUES (4,'Item',15,'Stavka',1059195933,NULL); -INSERT INTO international VALUES (3,'Item',15,'Obri¹i privitak',1059195911,NULL); -INSERT INTO international VALUES (2,'Item',15,'Privitak',1059195901,NULL); -INSERT INTO international VALUES (1,'Item',15,'URL linka',1059195889,NULL); -INSERT INTO international VALUES (10,'FAQ',15,'Uredi pitanje',1059195874,NULL); +INSERT INTO international VALUES (84,'USS',15,'Uredi pitanje',1059195874,NULL); INSERT INTO international VALUES (1,'WebGUI',15,'Dodaj sadr¾aj...',1059195852,NULL); INSERT INTO international VALUES (40,'WebGUI',15,'Va¾na komponenta',1059195821,NULL); INSERT INTO international VALUES (4,'WebGUI',15,'Uredi postavke.',1059195809,NULL); @@ -15797,7 +15189,6 @@ INSERT INTO international VALUES (818,'WebGUI',15,'Isklju INSERT INTO international VALUES (817,'WebGUI',15,'Aktivno',1059195362,NULL); INSERT INTO international VALUES (816,'WebGUI',15,'Stanje',1059195352,NULL); INSERT INTO international VALUES (815,'WebGUI',15,'Datoteka koju ste poku¹ali prenijeti je prevelika.',1059195340,NULL); -INSERT INTO international VALUES (814,'WebGUI',15,'Povratak na stilove.',1059195318,NULL); INSERT INTO international VALUES (813,'WebGUI',15,'Grupe u ovoj grupi',1059195307,NULL); INSERT INTO international VALUES (812,'WebGUI',15,'Va¹a poruka je poslana.',1059195292,NULL); INSERT INTO international VALUES (7,'FileManager',15,'Dozvola pristupa grupi',1059195230,NULL); @@ -15857,8 +15248,7 @@ INSERT INTO international VALUES (997,'WebGUI',13,'Tietokantayhteydet, Hallitse' INSERT INTO international VALUES (996,'WebGUI',13,'Hallitse tietokantayhteyksiä',1059429664,NULL); INSERT INTO international VALUES (994,'WebGUI',13,'Tietokannan käyttäjänimi',1059429647,NULL); INSERT INTO international VALUES (995,'WebGUI',13,'Tietokannan salasana',1059429630,NULL); -INSERT INTO international VALUES (20,'SQLReport',13,'Tietokantayhteys',1059429361,NULL); -INSERT INTO international VALUES (19,'SQLReport',13,'Valitse tietokantayhteys...',1059429347,NULL); +INSERT INTO international VALUES (1075,'WebGUI',13,'Tietokantayhteys',1059429361,NULL); INSERT INTO international VALUES (98,'EventsCalendar',13,'Nyt!',1059429262,NULL); INSERT INTO international VALUES (76,'DataForm',13,'Lisää kenttä.',1059429182,NULL); INSERT INTO international VALUES (899,'WebGUI',13,'Hallitse teemoja',1059429144,NULL); @@ -15888,9 +15278,8 @@ INSERT INTO international VALUES (916,'WebGUI',13,'Leike',1056063636,NULL); INSERT INTO international VALUES (915,'WebGUI',13,'Tiedosto',1056063602,NULL); INSERT INTO international VALUES (914,'WebGUI',13,'Kuva',1056063580,NULL); INSERT INTO international VALUES (913,'WebGUI',13,'Mallipohja',1056063512,NULL); -INSERT INTO international VALUES (912,'WebGUI',13,'Tyyli',1056063476,NULL); +INSERT INTO international VALUES (1085,'WebGUI',1,'Pagination Template Variables',1078243385,NULL); INSERT INTO international VALUES (911,'WebGUI',13,'Osa',1056063436,NULL); -INSERT INTO international VALUES (910,'WebGUI',13,'Osan tyyppi',1056063417,NULL); INSERT INTO international VALUES (909,'WebGUI',13,'Lisää teeman osa',1056063395,NULL); INSERT INTO international VALUES (908,'WebGUI',13,'Haluatko varmasti poistaa tämän teeman osan?',1056063374,NULL); INSERT INTO international VALUES (907,'WebGUI',13,'Haluatko varmasti poistaa tämän teeman?',1056063317,NULL); @@ -15944,8 +15333,6 @@ INSERT INTO international VALUES (371,'WebGUI',5,'Adicionar Grupo',1062168586,NU INSERT INTO international VALUES (370,'WebGUI',5,'Editar grupo',1062168573,NULL); INSERT INTO international VALUES (369,'WebGUI',5,'Data espirada',1062168554,NULL); INSERT INTO international VALUES (368,'WebGUI',5,'dicionar um novo grupo para este usuário.',1062168538,NULL); -INSERT INTO international VALUES (366,'WebGUI',5,'Nenhuma página foi encontrada com o conteúdo da sua pergunta.',1062168490,NULL); -INSERT INTO international VALUES (365,'WebGUI',5,'Resultado da Pesquisa',1062168427,NULL); INSERT INTO international VALUES (364,'WebGUI',5,'Pesquisar',1062168390,NULL); INSERT INTO international VALUES (363,'WebGUI',5,'Posição do modelo da Página',1062168380,NULL); INSERT INTO international VALUES (362,'WebGUI',5,'Lado a Lado',1062168361,NULL); @@ -15965,13 +15352,6 @@ INSERT INTO international VALUES (73,'MessageBoard',5,'Modelo do campo de Mensag INSERT INTO international VALUES (61,'MessageBoard',5,'Campo da Mensagem, Adicionar/Editar',1062167932,NULL); INSERT INTO international VALUES (1064,'WebGUI',1,'Post a Message',1066580782,'A header for the forum post form.'); INSERT INTO international VALUES (19,'EventsCalendar',5,'Paginar depois.',1062167083,NULL); -INSERT INTO international VALUES (61,'Item',5,'Item, Adicionar/Editar',1062159597,NULL); -INSERT INTO international VALUES (6,'Item',5,'Editar Item',1062159575,NULL); -INSERT INTO international VALUES (5,'Item',5,'Download Anexo',1062159559,NULL); -INSERT INTO international VALUES (4,'Item',5,'',1062159536,NULL); -INSERT INTO international VALUES (3,'Item',5,'Deletar Anexo',1062159527,NULL); -INSERT INTO international VALUES (2,'Item',5,'Anexos',1062159504,NULL); -INSERT INTO international VALUES (1,'Item',5,'Link URL',1062159487,NULL); INSERT INTO international VALUES (1024,'WebGUI',5,'Filtrar Post',1062085787,NULL); INSERT INTO international VALUES (4,'Auth/WebGUI',5,'Sua senha não pode ser em branco.',1062085755,NULL); INSERT INTO international VALUES (1,'Auth/WebGUI',5,'Opções de Autenticação do WebGUI',1062085718,NULL); @@ -16012,9 +15392,7 @@ INSERT INTO international VALUES (1003,'WebGUI',3,'Wobject privileges?',10587257 INSERT INTO international VALUES (1002,'WebGUI',3,'Als u een databaselink verwijdert zullen alle SQL rapporten die daar gebruik van maken niet meer werken. Een lijst met alle rapporten die hier last van zullen hebben wordt weergegeven in het bevestigingsscherm.
\r\n
\r\nZoals gebruikelijk met verwijderacties, krijgt u nog de vraag of u het zeker weet. Indien u voor ja kiest is er geen weg meer terug. Door op nee te klikken gaat u een scherm terug.',1058725721,NULL); INSERT INTO international VALUES (1001,'WebGUI',3,'

\r\nEen database link bestaat uit de volgende velden.\r\n

\r\n\r\nTitel
\r\nEen titel voor de database link\r\n

\r\n\r\nDSN
\r\nData Source Name wordt door Perl gebruikt om de de locatie van de database aan te geven.\r\nIn het volgende formaat:\r\n[driver]:[database naam]:[host].
\r\n\r\n

\r\n\r\n\r\nVoorbeeld: DBI:mysql:WebGUI:localhost\r\n

\r\n\r\nHier zijn een aantal voorbeelden voor andere database:\r\n
\r\nOracle:\r\n

    DBI:Oracle:SID
    \r\nDBD::Oracle moet geinstalleerd zijn.
    \r\nU Mod_perl gebruiken en het de volgende configuratie gebruiken: PerlSetEnv ORACLE_HOME /home/oracle/product/8.1.7 in httpd.conf. Without setting ORACLE_HOME, you can connect using DBI:Oracle:hos\n t=myhost.com;sid=SID\r\n\r\n
\r\n\r\nPostgreSQL:\r\n
    DBI:PgPP:dbname=DBNAME[;host=hOST]
    \r\nDBD::PgPP moet geinstalleerd zijn.\r\n
\r\n\r\n\r\nSybase:\r\n
    DBI:Sybase:[server=SERVERNAME][database=DATABASE]
    \r\nDBD::Sybase moet geinstalleerd zijn.
    \r\nU Mod_perl gebruiken en het de volgende configuratie gebruiken: PerlSetEnv SYBASE /opt/sybase/11.0.2 in httpd.conf.\r\n\r\n
\r\n\r\n

\r\nDatabase gebruiker
\r\nDe database gebruikersnaam die gebruikt wordt voor de DSN connectie.\r\n

\r\n\r\n\r\nDatabase wachtwoord
\r\nHet database wachtwoord dat gebruikt wordt voor de DSN connectie.\r\n

',1058725527,NULL); INSERT INTO international VALUES (1000,'WebGUI',3,'

\r\nDatabaselinks zorgen ervoor dat een WebGUI administrator gebruik kan maken van veelgebruikte databases. Hierdoor hoeven gebruikers van het SQL rapport niet het DSN, user en password in te vullen.
\r\n
\r\nPas op! Door het gebruik van databaselinks krijgen content beheerders toegang tot deze databases. Weliswaar krijgen ze niet de DSN, naam en password informatie te zien, maar ze kunnen wel naar believen SQL commando\'s op deze databases uitvoeren.

',1057749412,NULL); -INSERT INTO international VALUES (21,'SQLReport',3,'Als u niet een voorgedefinieerde databaselink wilt gebruiken kunt u hieronder uw eigen connectie informatie opgeven.',1057749026,NULL); -INSERT INTO international VALUES (20,'SQLReport',3,'Database link',1057748972,NULL); -INSERT INTO international VALUES (19,'SQLReport',3,'Kies een database link...',1057748958,NULL); +INSERT INTO international VALUES (1075,'WebGUI',3,'Database link',1057748972,NULL); INSERT INTO international VALUES (12,'HttpProxy',3,'Herschrijf URL\'s?',1057748938,NULL); INSERT INTO international VALUES (29,'DataForm',3,'is vereist',1057748915,NULL); INSERT INTO international VALUES (7,'WobjectProxy',3,'Gebruik deze titel i.p.v. orgineel?',1057511429,NULL); @@ -16092,7 +15470,6 @@ INSERT INTO international VALUES (916,'WebGUI',3,'Knipsel',1056211880,NULL); INSERT INTO international VALUES (915,'WebGUI',3,'Bestand',1056211853,NULL); INSERT INTO international VALUES (914,'WebGUI',3,'Plaatje',1056211833,NULL); INSERT INTO international VALUES (913,'WebGUI',3,'Sjabloon',1056211783,NULL); -INSERT INTO international VALUES (912,'WebGUI',3,'Stijl',1056211755,NULL); INSERT INTO international VALUES (74,'Poll',3,'De volgende variabelen zijn beschikbaar bij de peiling sjabloon:
\r\n
\r\ncanVote
\r\nEen conditie die aangeeft of de gebruiker het recht heeft te stemmen in deze peiling.\r\n

\r\n\r\nquestion
\r\nDe peiling vraag.\r\n

\r\n\r\nform.start
\r\nHet begin van het peilingsformulier.\r\n

\r\n\r\nanswer_loop
\r\nEen loop die informatie bevat ocer de antwoorden in de peiling.\r\n

\r\n\r\n

\r\n\r\nanswer.form
\r\nRadio button for dit antwoord.\r\n

\r\n\r\nanswer.text
\r\nDe tekst van dit antwoord.\r\n

\r\n\r\nanswer.number
\r\nHet nummer van dit antwoord (zoals 1, 2, 3 enz.)\r\n

\r\n\r\nanswer.graphWidth
\r\nDe breedte van de grafiek van dit antwoord. Het is gebaseerd op een percentage van de totale grootte van de grafiek.\r\n

\r\n\r\n\r\n\n answer.percent
\r\nHet percentage van de peiling dat dit antwoord tot zover heeft gekregen.\r\n

\r\n\r\nanswer.total
\r\nHet totaal aantal stemmen dat dit antwoord heeft gekregen.\r\n\r\n

\r\n\r\n

\r\n\r\n\r\nform.submit
\r\nDe invoerknop van het formulier van deze peiling.\r\n

\r\n\r\nform.end
\r\nHet einde van het formulier van deze peiling.\r\n

\r\n\r\nresponses.label
\r\nDe naam (label) voor het totaal aantal reacties. \"Totaal stemmen\"\r\n

\r\n\r\nresponses.total
\r\nHet totaal van het aantal stemmen die zijn uitgebracht in deze stemming.\r\n

\r\n\r\n

',1056211690,NULL); INSERT INTO international VALUES (73,'Poll',3,'Peiling sjabloon',1056206572,NULL); INSERT INTO international VALUES (9,'HttpProxy',3,'Cookie verzameling',1056206434,NULL); @@ -16110,7 +15487,6 @@ INSERT INTO international VALUES (1030,'WebGUI',3,'door',1056204020,NULL); INSERT INTO international VALUES (1029,'WebGUI',3,'Bewerkt op',1056204001,NULL); INSERT INTO international VALUES (1024,'WebGUI',3,'Filter bericht',1056203937,NULL); INSERT INTO international VALUES (911,'WebGUI',3,'Component',1056203864,NULL); -INSERT INTO international VALUES (910,'WebGUI',3,'Component type',1056203845,NULL); INSERT INTO international VALUES (909,'WebGUI',3,'Voeg thema component toe',1056203810,NULL); INSERT INTO international VALUES (908,'WebGUI',3,'Weet u zeker dat u dit component van dit thema wilt verwijderen?',1056203773,NULL); INSERT INTO international VALUES (907,'WebGUI',3,'Weet u zeker dat u dit thema wilt verwijderen?',1056203683,NULL); @@ -16202,9 +15578,6 @@ INSERT INTO international VALUES (7,'DataForm',4,'Editar Formulario de Datos',10 INSERT INTO international VALUES (6,'DataForm',4,'Modificable',1065116921,NULL); INSERT INTO international VALUES (4,'DataForm',4,'Oculto',1065116605,NULL); INSERT INTO international VALUES (18,'Product',4,'Añadir otro accesorio?',1065170806,NULL); -INSERT INTO international VALUES (61,'FAQ',4,'FAQ, Añadir/Editar',1065116170,NULL); -INSERT INTO international VALUES (12,'FAQ',4,'Activar Q/A?',1065170460,NULL); -INSERT INTO international VALUES (72,'FAQ',4,'Pregunta, Añadir/Editar',1065116131,NULL); INSERT INTO international VALUES (451,'WebGUI',4,'es necesario.',1065116083,NULL); INSERT INTO international VALUES (450,'WebGUI',4,'Nombre de Trabajo (Nombre de la Compañía)',1065116074,NULL); INSERT INTO international VALUES (449,'WebGUI',4,'Información miscelánea',1065116055,NULL); @@ -16222,7 +15595,6 @@ INSERT INTO international VALUES (86,'DataForm',4,'Mostrar todas la entradas.',1 INSERT INTO international VALUES (84,'DataForm',4,'Exportar delimitado por tabulaciones.',1065102987,NULL); INSERT INTO international VALUES (81,'DataForm',4,'Plantilla de Agradecimiento',1065102956,NULL); INSERT INTO international VALUES (85,'DataForm',4,'Una por línea.',1065102933,NULL); -INSERT INTO international VALUES (61,'ExtraColumn',4,'Columna Extra, Añadir/Editar',1065102917,NULL); INSERT INTO international VALUES (91,'WebGUI',4,'Página Anterior',1065120538,NULL); INSERT INTO international VALUES (76,'DataForm',4,'Añadir un campo.',1065102752,NULL); INSERT INTO international VALUES (75,'DataForm',4,'Obligatorio',1065102736,NULL); @@ -16297,9 +15669,7 @@ INSERT INTO international VALUES (1003,'WebGUI',12,'Wobject Privilegier?',106600 INSERT INTO international VALUES (1002,'WebGUI',12,'Når du sletter en database Link, vil alle SQL Rapporter som benytter denne linken, slutte å fungere. En liste over de berørte rapportene blir vist i på bekreftelses siden.\r\n\r\nSom ved alle slette kommandoer, vil du bli spurt om du er helt sikker på at du ønsker å fortsette med slettingen. Om du svarer Ja, så vil slettingen fortsette og det er ingen angre mulighet. Om du svarer Nei, vil du returnere til forrige skjermbilde.',1066004892,NULL); INSERT INTO international VALUES (1001,'WebGUI',12,'

De følgende feltene utgjør en database link.\r\n

Tittel
En tittel for database linken.

\r\n

DSN
Data Source Name is the unique identifier \r\nthat Perl uses to describe the location of your database. It takes the format of \r\nDBI:[driver]:[database name]:[host].

\r\n

Example: DBI:mysql:WebGUI:localhost \r\n

Here are some examples for other databases.
Oracle: \r\n

    DBI:Oracle:SID
    DBD::Oracle must be installed.
    You must be using \r\nmod_perl and configure PerlSetEnv ORACLE_HOME /home/oracle/product/8.1.7 \r\nin httpd.conf. Without setting ORACLE_HOME, you can connect using \r\nDBI:Oracle:host=myhost.com;sid=SID
PostgreSQL: \r\n
    DBI:PgPP:dbname=DBNAME[;host=hOST]
    DBD::PgPP must be installed.
Sybase: \r\n
    DBI:Sybase:[server=SERVERNAME][database=DATABASE]
    DBD::Sybase must be \r\ninstalled.
    You must be using mod_perl and configure PerlSetEnv SYBASE \r\n/opt/sybase/11.0.2 in httpd.conf.
\r\n

Database Bruker

Brukernavnet du bruker for å koble til DSN. \r\n

\r\n

Database Passord
Passordet du bruker for å koble til DSN.

',1066004659,NULL); INSERT INTO international VALUES (1000,'WebGUI',12,'Database Linker setter en WebGui administrator i stand til å legge til ofte benyttede databaser for bruk i SQL Rapporter. Detter frigjør SQL Rapport forfatteren fra å ha kjennskap til eller legge inn DSN, bruker, eller passord.\r\n\r\nVær klar over at alle database linker du legger inn vil være tilgjengelig for alle innholds redaktører. Selv om de ikke vil se database tilkoplingsinfo, så vil de være i stand til å utføre enhver select, show eller describe commando på databasen.',1066002807,NULL); -INSERT INTO international VALUES (21,'SQLReport',12,'Om du ikke ønsker å benytte en predefinert database link, så kan du legge inn din egen database tilkopling under.',1066002553,NULL); -INSERT INTO international VALUES (20,'SQLReport',12,'Database Link',1066002475,NULL); -INSERT INTO international VALUES (19,'SQLReport',12,'Velg en database link...',1066002463,NULL); +INSERT INTO international VALUES (1075,'WebGUI',12,'Database Link',1066002475,NULL); INSERT INTO international VALUES (12,'HttpProxy',12,'Omskrive urls ?',1066002077,NULL); INSERT INTO international VALUES (1071,'WebGUI',1,'Env HTTP Host',1066641511,'A label referring to the HTTP_HOST environment variable provided by the web server.'); INSERT INTO international VALUES (1070,'WebGUI',1,'Config Sitename',1066641473,'A label referring to the sitename property in the config file.'); @@ -16385,6 +15755,1278 @@ INSERT INTO international VALUES (78,'MessageBoard',2,'Forum, Hinzufügen/Be INSERT INTO international VALUES (77,'MessageBoard',2,'Forum bearbeiten',1066751371,NULL); INSERT INTO international VALUES (76,'MessageBoard',2,'Sind Sie sicher, dass Sie dieses Forum und den gesamten Inhalt l&oouml;schen möchten?',1066751358,NULL); INSERT INTO international VALUES (75,'MessageBoard',2,'Neues Forum hinzufügen',1066751321,NULL); +INSERT INTO international VALUES (1068,'WebGUI',8,'Le seguenti variabili sono disponibili per il search template.\r\n

callback.url
\r\n L\'URL che rimanda all\'oggetto chiamante, come un articolo o un contributo utente.\r\n

callback.label
\r\n L\'etichetta di default per l\'URL del chiamante.\r\n

form.begin
\r\n L\'header del search form.\r\n

search.label
\r\n L\'etichetta di default per la search page.\r\n

all.label
\r\n L\'etichetta di default per all.form.

all.form
\r\nUn elemento del form che consente una ricerca basata su tutte le parole.\r\n

exactphrase.label
\r\n L\'etichetta di default per exactphrase.form.

exactphrase.form
\r\nUn elemento del form che consente una ricerca basata su una frase esatta.\r\n

without.label
\r\n L\'etichetta di default per without.form.

without.form
\r\nUn elemento del form che consente una ricerca basata su parole non presenti nel\r\ntesto.\r\n

atleastone.label
\r\n L\'etichetta di default per atleastone.form.

atleastone.form
\r\nUn elemento del form che consente una ricerca basata su almeno una parola\r\npresente nel testo.\r\n

results.label
\r\n L\'etichetta di default per results.form.

results.form
\r\nUn elemento del form per selezionare quanti risultati per pagina devono essere\r\nmostrati.\r\n

form.search
\r\n Il bottone cerca.\r\n

form.end
\r\n Il footer del form .\r\n

thread.list.url
\r\n Un url che torna alla lista dei thread  (o forum).\r\n

thread.list.label
\r\n L\'etichetta di default per thread.list.url.\r\n

post.subject.label
\r\n L\'etichetta di default per la colonna subject .\r\n

post.date.label
\r\n L\'etichetta di default per la colonna data.\r\n

post.user.label
\r\n L\'etichetta di default per la colonna autore.

post_loop
\r\nUn loop contenente tutti i risultati della ricerca.\r\n

 \r\n

\r\n post.subject
\r\n L\'oggetto del post.\r\n

post.url
\r\n La url per mostrare questo post.\r\n

post.epoch
\r\n Una data epoch per questo post.\r\n

post.date
\r\n Una data leggibile per questo post.\r\n

post.time
\r\n Un orario leggibile per questo post.\r\n

post.user.id
\r\n La userId di chi ha postato.\r\n

post.user.name
\r\n La username dell\'utente che ha postato.\r\n

post.user.profile
\r\n La url al profilo dell\'\'utente che ha postato.\r\n

 

\r\n
\r\n

firstpage
\r\nUn link alla prima pagina di una lista su più pagine.\r\n

lastpage
\r\nUn link all\'ultima pagina di una lista su più pagine.\r\n

nextpage
\r\nUn link alla prossima pagina di una lista su più pagine.\r\n

pagelist
\r\nUna serie di link alle pagine di una lista su più pagine.\r\n

previouspage
\r\nUn link alla pagina precedente di una lista su più pagine.\r\n

multiplepages
\r\nUna condizione indicante se ci sono più pagine o no.\r\n

numberOfPages
\r\nIl numero di pagine di una lista su più pagine.\r\n

pageNumber
\r\nIl numero della pagina corrente in una lista su più pagine.

\r\n

 

\r\n',1071916483,NULL); +INSERT INTO international VALUES (1066,'WebGUI',8,'Le seguenti sono le variabili disponibili per il post form template.

newpost.header
\r\nL\'etichetta di default per l\'intestazione di questo form.

newpost.isNewThread
\r\nUna condizione indicante se questo post è un nuovo thread.\r\n

newpost.isReply
\r\n Una condizione indicante se questo post è un reply.

NOTA: \r\nSe il post è un reply, allora le variabili del template dal post template sono\r\nincluse e popolate con i dati dal messaggio originale.

newpost.isEdit
\r\nUna condizione indicante se questo post è una modifica di post esistente.

user.isVisitor
\r\nUna condizione indicante che l\'utente corrente è un visitatore.\r\n

newpost.isNewMessage
\r\n La condizione opposta a newpost.isEdit.\r\n

form.begin
\r\n L\'intestazione del  form.\r\n

sticky.label
\r\n L\'etichetta di default per sticky.form.\r\n

sticky.form
\r\n Un elemento del form per rendere il  thread sticky.\r\n

subscribe.label
\r\n L\'etichetta di default per subscribe.form.

subscribe.form
\r\nUn elemento del form per  iscriversi al thread.\r\n

lock.label
\r\n L\'etichetta di default per lock.form.

lock.form
\r\nUn elemento del form per bloccare il thread.\r\n

contenttype.label
\r\n L\'etichetta di default per contentype.form.\r\n

contentType.form
\r\n Un elemento del form per selezionare che tipo di contenuto viene postato.

user.isModerator
\r\nUna condizione indicante se l\'utente corrente è un moderatore.

allowReplacements
\r\nUna condizione indicante se questo forum tollera le sostituzioni.\r\n

message.label
\r\n L\'etichetta di default per message.form.

message.form
\r\nUn elemento del form per gli utenti per inserire i propri messaggi.\r\n

visitorName.label
\r\n L\'etichetta di default per visitorName.form.

visitorName.form
\r\nUn elemento del form che consente all\'utente di inserire un nome di\r\nvisualizzazione se è un visitatore.\r\n

form.submit
\r\n Il bottone invia per il form.\r\n

subject.label
\r\n L\'etichetta di default per subject.form.\r\n

subject.form
\r\n Un elemento del form che consente all\'utente di inserire un oggetto\r\n per i propri messaggi.

form.end
\r\nIl form footer.

\r\n',1071861217,NULL); +INSERT INTO international VALUES (1061,'WebGUI',8,'Le seguenti variabili sono disponibili nel template del thread.\r\n

callback.url
\r\nUn URL che rimanda all\'oggetto chiamante, come un articolo o un contributo degli utenti.\r\n

callback.label
\r\n L\'etichetta di default per l\'URL del chiamante.\r\n

user.canpost
\r\n Una condizione indicante se l\'utente può postare un nuovo messaggio.\r\n

user.isVisitor
\r\n Una condizione indicante se l\'utente è un visitatore.\r\n

user.isModerator
\r\n Una condizione indicante se l\'utente è un moderatore.\r\n

user.isSubscribed
\r\n Una condizione indicante se l\'utente è iscritto a questo thread.\r\n

thread.layout.nested.label
\r\n L\'etichetta di default per thread.layout.nested.url.

thread.layout.nested.url
\r\nUna url che cambia il layout del thread a nested.\r\n

thread.layout.flat.url
\r\n Una url che cambia il layout del thread a flat.\r\n

thread.layout.flat.label
\r\n L\'etichetta di default per thread.layout.flat.url.\r\n

thread.layout.threaded.label
\r\n L\'etichetta di default per thread.layout.threaded.url.\r\n

thread.layout.threaded.url
\r\n Una url che cambia il layout del thread a threaded.\r\n

thread.layout.isThreaded
\r\n Una condizione indicante se il  layout del thread è threaded.\r\n

thread.layout.isNested
\r\n Una condizione indicante se il  layout del thread è nested.\r\n

thread.layout.isFlat
\r\n Una condizione indicante se il  layout del thread è flat.\r\n

thread.subscribe.url
\r\n Un url che iscriverà l\'utente a questo thread.\r\n

thread.subscribe.label
\r\n L\'etichetta di default per thread.subscribe.url.\r\n

thread.unsubscribe.url
\r\n Un url che disiscriverà l\'utente da questo thread.\r\n

thread.unsubscribe.label
\r\n L\'etichetta di default per thread.unsubscribe.url.

thread.isSticky
\r\nUna condizione indicante se il   thread è sticky (in evidenza).\r\n

thread.stick.url
\r\n Una url che renderà questo thread sticky.\r\n

thread.stick.label
\r\n L\'etichetta di default per thread.stick.url.

thread.unstick.url
\r\nUna url che renderà uno sticky thread unstick (non più in evidenza).\r\n

thread.unstick.label
\r\n L\'etichetta di default per thread.unstick.url.\r\n

thread.isLocked
\r\n Una condizione indicante se il   thread è chiuso.\r\n

thread.lock.url
\r\n Una url che bloccherà questo thread.\r\n

thread.lock.label
\r\n L\'etichetta di default per thread.lock.url.\r\n

thread.unlock.url
\r\n Una url che sbloccherà questo thread.\r\n

thread.unlock.label
\r\n L\'etichetta di default per thread.unlock.url.\r\n

post_loop
\r\n Un loop contenente tutti i post in questo thread.\r\n

 \r\n

\r\n post.indent_loop
\r\n un loop utilizzato per i rientri.\r\n

 \r\n

\r\n depth
\r\n Un integer che indica la profondità. \r\n
\r\n

post.indent.depth
\r\n Un integer che indica a quanti livelli di  profondità è questo post.\r\n

post.isCurrent
\r\n Una condizione che indica se questo post è quello selezionato\r\n dall\'utente per la visualizzazione.

NOTA: tutte le \r\n variabili del post template sono disponibili anche qui.

\r\n
\r\n

thread.subject.label
\r\n L\'etichetta di default per subjects.\r\n

thread.date.label
\r\n L\'etichetta di default per dates.\r\n

thread.user.label
\r\n L\'etichetta di default per authors.\r\n

thread.new.url
\r\n Un url per creare un nuovo url.\r\n

thread.new.label
\r\n L\'etichetta di default perthread.new.url.\r\n

thread.previous.url
\r\n Una url per visualizzare il precedente thread.\r\n

thread.previous.label
\r\n L\'etichetta di default per thread.previous.url.\r\n

thread.next.url
\r\n Una url per visualizzare il prossimo thread.\r\n

thread.next.label
\r\n L\'etichetta di default per thread.next.url.

thread.list.url\r\n 
\r\n
\r\nUna url per portare indietro l\'utente alla lista dei thread (o il forum).\r\n

thread.list.label
\r\n
\r\nL\'etichetta di default per thread.list.url.',1070996783,NULL); +INSERT INTO international VALUES (1059,'WebGUI',8,'Le seguenti variabili sono disponibili nel template del post.\r\n

callback.url
\r\nL\'URL che rimanda all\'oggetoo chiamante, come un articolo o un contributo utente.\r\n

callback.label
\r\nL\'etichetta di default per l\'URL del chiamante. \r\n

post.subject.label
\r\nL\'etichetta di default per post.subject \r\n

post.subject
\r\nL\'oggetto del post. \r\n

post.message
\r\nIl messaggio del post. \r\n

user.canPost
\r\nUna consizione indicante se l\'utente corrente può postare un nuovo messaggio. \r\n

post.date.value
\r\nUna data leggibile per questo post.\r\n

post.date.epoch
\r\nUna data epoch per questo post. \r\n

post.time.value
\r\nUn orario leggibile per questo post. \r\n

post.date.label
\r\nL\'etichetta di default per post.date.value.\r\n

post.rating.value
\r\nIl punteggio medio per questo post.\r\n

post.rating.label
\r\n L\'etichetta di default per post.date.value.\r\n

post.views.value
\r\nIl numero di viste per questo post.\r\n

post.views.label
\r\n L\'etichetta di default per post.views.value.\r\n

post.status.value
\r\n Lo stato di questo post.\r\n

post.status.label
\r\n L\'etichetta di default per post.status.value.\r\n

post.isLocked
\r\nUna condizione indicante se il thread in cui questo post è contenuto è bloccato o meno.\r\n

post.isModerator
\r\nUna condizione indicante se l\'utente corrente è un moderatore. \r\n

post.canEdit
\r\nUna condizione indicante se l\'utente corrente può modificare questo post. \r\n

post.user.isVisitor
\r\nUna condizione indicante se l\'utente che ha postato era un visitatore. \r\n

post.user.id\r\n
\r\n\r\n La userId di chi ha postato.

post.user.name
\r\nLa username dell\'utente che ha postato.\r\n

post.user.profile
\r\n La url al profilo dell\'\'utente che ha postato.\r\n

post.url
\r\n La url per mostrare questo post.

post.id
\r\nLa unique id di questo post.\r\n

post.rate.label
\r\n L\'etichetta di default per post.rate.url.1.

post.rate.url.1
\r\nLa url per dare a questo post il punteggio di 1.\r\n

post.rate.url.2
\r\n La url per dare a questo post il punteggio di  2.\r\n

post.rate.url.3
\r\n La url per dare a questo post il punteggio di  3.\r\n

post.rate.url.4
\r\n La url per dare a questo post il punteggio di  4.\r\n

post.rate.url.5
\r\n La url per dare a questo post il punteggio di  5.

post.hasRated
\r\nUna condizione che indica se l\'utente corrente ha già dato un punteggio a\r\nquesto\r\n post.\r\n

post.reply.label
\r\n L\'etichetta di default per post.reply.url.

post.reply.url
\r\nLa url per rispondere a questo post.

post.reply.withquote.url
\r\nLa url per rispondere a questo quotando.\r\n

post.edit.label
\r\n L\'etichetta di default per post.edit.url.\r\n

post.edit.url
\r\n La url per modificare questo post.\r\n

post.delete.url
\r\n La url per cancellare questo post.\r\n

post.delete.label
\r\n L\'etichetta di default per post.delete.url.\r\n

post.approve.label
\r\n L\'etichetta di default per post.approve.url.\r\n

post.approve.url
\r\n La url per approvare questo post.\r\n

post.deny.url
\r\n La url per rifiutare questo post.\r\n

post.deny.label
\r\n L\'etichetta di default per post.deny.url.

post.full
\r\nL\'intero messaggio reso usando il post template. Non dovrebbe mai essere usato\r\ndirettamente nel post template, ma è spesso usato in altri templates che\r\nincorporano le variabili del post template.\r\n',1070995338,NULL); +INSERT INTO international VALUES (1057,'WebGUI',8,'Le seguenti variabili di template sono disponibili nei template dei forum.\r\n

callback.url
\r\nUn URL che rimanda all\'oggetto chiamante, come un articolo o un contributo degli utenti.\r\n

callback.label
\r\nL\'etichetta di default per callback.url.\r\n

user.isVisitor
\r\nUna condizione indicante se l\'utente è un visitatore.\r\n

thread.new.url
\r\nL\'URL per cominciare un nuovo thread. \r\n

thread.new.label
\r\n L\'etichetta di default per thread.new.url.\r\n

forum.search.label
\r\nL\'etichetta di default per forum.search.url.\r\n

forum.search.url
\r\nL\'URL per accedere al motore di ricerca del forum.\r\n

forum.subscribe.label
\r\n L\'etichetta di default per forum.subscribe.url.\r\n

forum.subscribe.url
\r\nL\'URL per sottoscrivere questo forum.\r\n

forum.unsubscribe.label
\r\n L\'etichetta di default per forum.subscribe.url.\r\n

forum.unsubscribe.url
\r\nL\'URL per disiscriversi da questo forum. \r\n

user.isSubscribed
\r\nUna condizione indicante se l\'utente attuale è iscritto o meno a questo forum.\r\n

user.isModerator
\r\nUna condizione indicante se l\'utente attuale è o meno moderatore per questo forum.\r\n

user.canPost
\r\nUna condizione indicante se l\'utente attuale ha o meno i privilegi per scrivere in questo forum.\r\n

thread.sortby.date.url
\r\nUn URL per cambiare le opzioni di ordinamento in modo che i thread siano ordinati per data.\r\n

thread.sortby.lastreply.url
\r\nUn URL per cambiare le opzioni di ordinamento in modo che i thread siano ordinati in base alla data dell\'ultima risposta al thread.\r\n last reply to the thread.\r\n

thread.sortby.views.url
\r\n Un URL per cambiare le opzioni di ordinamento in modo che i thread siano ordinati per numero di viste che ha ogni thread.\r\n\r\n

thread.sortby.replies.url
\r\n Un URL per cambiare le opzioni di ordinamento in modo che i thread siano ordinati per numero di risposte al thread.\r\n

thread.sortby.rating.url
\r\n Un URL per cambiare le opzioni di ordinamento in modo che i thread siano ordinati per il punteggio medio del thread.\r\n

thread.subject.label
\r\n Una etichetta per la colonna oggetto.\r\n

thread.date.label
\r\n Una etichetta per la colonna data.\r\n

thread.user.label
\r\n Una etichetta per la colonna autore.\r\n

thread.views.label
\r\n Una etichetta per la colonna viste.\r\n

thread.replies.label
\r\n Una etichetta per la colonna risposte.\r\n

thread.rating.label
\r\n Una etichetta per la colonna punteggio.\r\n

thread.last.label
\r\n Una etichetta per la colonna ultima risposta.\r\n

firstpage
\r\nUn link alla prima pagina di una lista su più pagine.\r\n

lastpage
\r\nUn link all\'ultima pagina di una lista su più pagine.\r\n

nextpage
\r\nUn link alla prossima pagina di una lista su più pagine.\r\n

pagelist
\r\nUna serie di link alle pagine di una lista su più pagine. \r\n

previouspage
\r\nUn link alla pagina precedente di una lista su più pagine.\r\n

multiplepages
\r\nUna condizione indicante se ci sono più pagine o no.\r\n

numberOfPages
\r\nIl numero di pagine di una lista su più pagine. \r\n

pageNumber
\r\nIl numero della pagina corrente in una lista su più pagine. \r\n

thread_loop
\r\n A loop containing all of the thread data.\r\n

 \r\n

\r\n thread.views
\r\n Il numero di viste che ha avuto questo thread.\r\n

thread.replies
\r\n Il numero di risposte che ha avuto questo thread.\r\n

thread.rating
\r\n Il punteggio medio dei post in questo thread.\r\n

thread.rating_loop
\r\n

 \r\n

\r\n thread.rating_loop.count
\r\n un contatore per il punteggio. Può essere usato per "disegnare" un punteggio,\r\n ad esempio aggiungere un asterisco per ogni punto, o altri approcci visuali.\r\n

 

\r\n
\r\n thread.isSticky
\r\n Una condizione indicante se il thread è in evidenza e quindi se debba apparire in alto \r\n nell\'elenco del forum.\r\n

thread.isLocked
\r\n Una condizione indicante se il thread è chiuso a nuovi post.\r\n

thread.root.subject
\r\nL\'oggetto del post principale in questo thread.\r\n

thread.root.url
\r\nL\'URL per visualizzare il post principale. \r\n

thread.root.epoch
\r\nUna data epoch per il post principale. \r\n

thread.root.date
\r\nUna data leggibile per il post principale. \r\n

thread.root.time
\r\nUn\'ora leggibile per il post principale. \r\n

thread.root.user.id
\r\nL\'user id di chi ha postato il messaggio principale. \r\n

thread.root.user.name
\r\nLo username di chi ha postato il messaggio principale. \r\n

thread.root.user.profile
\r\nL\'URL del profilo dell\'utente che ha postato il messaggio principale. \r\n

thread.root.user.isVisitor
\r\nUna condizione indicante se chi ha postato il messaggio principale era un visitatore. \r\n

thread.root.status
\r\nLo stato del messaggio principale.\r\n

thread.last.subject
\r\nL\'oggetto dell\'ultimo post aggiunto a questo thread.\r\n

thread.last.url
\r\nL\'URL dell\'ultimo post. \r\n

thread.last.epoch
\r\nL\'ora dell\'ultimo post rappresentato come epoch.\r\n

thread.last.date
\r\nLa data leggibile dell\'ultimo post. \r\n

thread.last.time
\r\nL\'or leggibile dell\'ultimo post. \r\n

thread.last.user.profile
\r\nL\'URL del profilo dell\'ultimo utente che ha postato. \r\n

thread.last.user.id
\r\nLo user id dell\'ultimo utente che ha postato.\r\n

thread.last.user.name
\r\nLo username dell\'ultimo utente che ha postato. \r\n

thread.last.user.isVisitor
\r\nUna condizione indicante se l\'ultimo utente che ha postato era un visitatore. \r\n

thread.last.status
\r\nLo stato dell\'ultimo post. ',1070994474,NULL); +INSERT INTO international VALUES (1055,'WebGUI',8,'

WebGUI ha un sistema di discussioni integrato molto potente. Può essere attaccato a qualsiasi cosa ed è previsto per molti wobject.\r\n

I forum (o liste di discussione) hanno molte proprietà configurabili. La seguente è una lista completa:\r\n

Forum Template
\r\nUn template che controlla l\'aspetto della vista forum.\r\n

Thread Template
\r\nUn template che controlla l\'aspetto della vista thread.\r\n

Post Template
\r\nUn template che controlla l\'aspetto della vista messaggio.\r\n

Search Template
\r\nUn template che controlla l\'aspetto del motore di ricerca integrato e dei risultati della ricerca.\r\n results.\r\n

Post Form Template
\r\nUn template che controlla l\'aspetto del modulo che gli utenti vedono quando postano un nuovo messaggio.\r\n

Notification Template
\r\nUn template che controlla l\'aspetto della notifica per nuovi messaggi mandata agli utenti.\r\n

Archive After
\r\nSe un thread non ha avuto nuovi messaggi dopo questo intervallo è scaduto, e viene quindi marcato come "archiviato" e sarà accessibile solo tramite il motore di ricerca.\r\n

Edit Timeout
\r\nL\'intervallo di tempo che l\'utente ha per modificare il messaggio dopo averlo postato.\r\n

NOTA: Non mettere questo limite troppo alto. Una delle cose belle delle discussione è che sono una registrazione di chi ha detto cosa. Se consenti agli utenti di modificare i post per molto tempo, avranno la possibilità di cambiare opinione dopo molto tempo rispetto al post originale.\r\n

Add edit stamp to posts?
\r\nSe settato, viene aggiunta una data di modifica in basso nel messaggio ogni volta che è stato modificato.\r\n

Allow rich edit?
\r\nSe settato consente agli utenti di usare un rich editor per modificare i messaggi. \r\n

Allow replacements?
\r\nSe settato permette agli utenti di usare i rimpiazzi nei loro messaggi. I rimpiazzi sono gestiti nelle preferenze.\r\n

Filter Post
\r\nSeleziona che tipo di contenuto vuoi filtrare dai messaggi degli utenti.\r\n

Posts Per Page
\r\nIl numero di messaggi da visualizzare per pagina.\r\n

Who can post?
\r\nun gruppo autorizzato a postare nuovi messaggi.\r\n

Moderate posts?
\r\nSe settato mette in stato pendente tutti i post che non saranno visualizzati finchè il moderatore non li approva.\r\n

Who can moderate?
\r\nUn gruppo autorizzato a moderare i messaggi.\r\n

',1070994409,NULL); +INSERT INTO international VALUES (3,'SyndicatedContent',8,'Numero massimo di Headlines',1068896245,NULL); +INSERT INTO international VALUES (81,'Survey',8,'Risposte anonime?',1068896212,NULL); +INSERT INTO international VALUES (7,'SiteMap',8,'Alfabetico?',1068896193,NULL); +INSERT INTO international VALUES (79,'MessageBoard',8,'Il forum può contenere uno o più forum. la seguente è la lista delle\r\nproprietà collegate ad ogni forum.\r\n

Titolo
\r\nIl titolo del forum.\r\n

Descrizione
\r\nLa descrizione del forum.\r\n

NOTA: Tutte le proprietà del forum sono anche qui. Vedi quella pagina\r\ndell\'Help per dettagli.

\r\n',1068896170,NULL); +INSERT INTO international VALUES (78,'MessageBoard',8,'Forum, Aggiungi/Modifica',1068895427,NULL); +INSERT INTO international VALUES (77,'MessageBoard',8,'Edita Forum',1068895394,NULL); +INSERT INTO international VALUES (76,'MessageBoard',8,'Sei certo di voler cancellare questo forum e tutti i messaggi che contiene?',1068895361,NULL); +INSERT INTO international VALUES (75,'MessageBoard',8,'Aggiungi un forum',1068895305,NULL); +INSERT INTO international VALUES (14,'HttpProxy',8,'Ferma ricerca a',1068895268,NULL); +INSERT INTO international VALUES (13,'HttpProxy',8,'Cerca',1068895235,NULL); +INSERT INTO international VALUES (90,'DataForm',8,'Cancella questo dato.',1068895182,NULL); +INSERT INTO international VALUES (4,'PhotoGallery',8,'Ordinamento',1034022140,NULL); +INSERT INTO international VALUES (3,'PhotoGallery',8,'Carica una immagine',1034022119,NULL); +INSERT INTO international VALUES (26,'PhotoGallery',8,'Titolo',1034022101,NULL); +INSERT INTO international VALUES (25,'PhotoGallery',8,'Nome immagine',1034022071,NULL); +INSERT INTO international VALUES (23,'PhotoGallery',8,'Popolarità',1034022018,NULL); +INSERT INTO international VALUES (21,'PhotoGallery',8,'Visualizza informazioni sull\'immagine',1034021813,NULL); +INSERT INTO international VALUES (20,'PhotoGallery',8,'Spazio tra le immagini',1034021782,NULL); +INSERT INTO international VALUES (2,'PhotoGallery',8,'Aggiungi una immagine',1034021758,NULL); +INSERT INTO international VALUES (19,'PhotoGallery',8,'Carica immagine',1034021741,NULL); +INSERT INTO international VALUES (18,'PhotoGallery',8,'Testo da visualizzare con questa immagine',1034021725,NULL); +INSERT INTO international VALUES (16,'PhotoGallery',8,'Altezza anteprima',1034021680,NULL); +INSERT INTO international VALUES (15,'PhotoGallery',8,'Larghezza anteprima',1034021662,NULL); +INSERT INTO international VALUES (14,'PhotoGallery',8,'Nome Immagine',1034021635,NULL); +INSERT INTO international VALUES (13,'PhotoGallery',8,'Immagine',1034021619,NULL); +INSERT INTO international VALUES (12,'PhotoGallery',8,'Procedi aggiungendo una immagine',1034021607,NULL); +INSERT INTO international VALUES (10,'PhotoGallery',8,'Spunta questo box per aggiungere automaticamente al gestore di immagini le immagini caricate con questo wobject',1034021524,NULL); +INSERT INTO international VALUES (1,'PhotoGallery',8,'Galleria Foto',1034015638,NULL); +INSERT INTO international VALUES (61,'Poll',16,'Sonda, Dodawanie/Edycja',1076558636,NULL); +INSERT INTO international VALUES (12,'Poll',16,'Wszystkich g³osów:',1076558611,NULL); +INSERT INTO international VALUES (61,'EventsCalendar',16,'Kalendarz wydarzeñ, Dodawanie/Edycja',1076558586,NULL); +INSERT INTO international VALUES (7,'DataForm',16,'Edycja formularza poczty',1076558560,NULL); +INSERT INTO international VALUES (62,'DataForm',16,'Pola formularza poczty, Dodawanie/Edycja',1076558529,NULL); +INSERT INTO international VALUES (61,'DataForm',16,'Formularz poczty, Dodawanie/Edycja',1076558490,NULL); +INSERT INTO international VALUES (25,'DataForm',16,'Domy¶lna warto¶æ (opcjonalnie)',1076558449,NULL); +INSERT INTO international VALUES (11,'DataForm',16,'do (adres email, nazwa u¿ytkownika lub grupy)',1076558426,NULL); +INSERT INTO international VALUES (1,'DataForm',16,'Formularz poczty',1076558398,NULL); +INSERT INTO international VALUES (61,'Article',16,'Artyku³, Dodawanie/Edycja',1076558371,NULL); +INSERT INTO international VALUES (79,'DataForm',16,'Obja¶nienie',1069045567,NULL); +INSERT INTO international VALUES (77,'DataForm',16,'Etykieta',1069045506,NULL); +INSERT INTO international VALUES (76,'DataForm',16,'Dodaj pole',1069045373,NULL); +INSERT INTO international VALUES (75,'DataForm',16,'Wymagane',1069045319,NULL); +INSERT INTO international VALUES (74,'DataForm',16,'Przesy³aæ emailem?',1069045266,NULL); +INSERT INTO international VALUES (72,'DataForm',16,'Mo¿esz dodaæ do formularza dowoln± liczbê pól.\r\n

\r\nEtykieta
\r\nTo opis pola pozwalaj±cy u¿ytkownikowi zorientowaæ siê co nale¿y w nim wpisaæ.\r\n

\r\nNazwa Pola
\r\nNazwa danego pola. Musi byæ unikalna w danym formularzu.\r\n

\r\nObja¶nienie
\r\nRozszerzenie opisu zawartego w etykiecie pola formularza, zawieraj±ce dodatkowe informacje lub instrukcje.\r\n

\r\nStatus
\r\nPola Ukryte nie bêd± widoczne dla u¿ytkownika ale ich zawarto¶æ zostanie przes³ana przez email. Pola Wy¶wietlane mog± byæ dla u¿ytkownika widoczne ale bez mo¿liwo¶ci ich edycji. Pola Modyfikowalne mog± byæ przez u¿ytkownika wype³niane. Pola Wymagane musz± byæ wype³nione przez u¿ytkownika. Je¶li wybierzesz rodzaj: Ukryte lub Wy¶wietlane, upewnij siê ¿e wype³ni³e¶ tak¿e Warto¶æ Domy¶ln±.\r\n

\r\nTyp
\r\nWybierz typ dla tego pola formularza.\r\n

\r\nSzeroko¶æ
\r\nUstal liczbê znaków widocznych w tym polu.\r\n

\r\nWysoko¶æ
\r\nUstal liczbê linii (wysoko¶æ) tego pola. Stosuje siê tylko dla pól tekstowych i edycji HTML - HTMLArea.\r\n

\r\nWarto¶ci Wyboru
\r\nDo u¿ytku w polach formularza takich jak checkbox lub lista wyboru. Wpisz dostêpne warto¶ci wyboru - po jednej w ka¿dej linii.\r\n

\r\nWarto¶æ Domy¶lna (opcjonalnie)
\r\nWpisz domy¶ln± warto¶æ dla danego pola formularza. Dla pól Tak/Nie wpisz \"yes\" dla \"Tak\" lub \"no\" dla \"Nie\".\r\n',1069045196,NULL); +INSERT INTO international VALUES (71,'DataForm',16,'Tego obiektu mo¿na u¿yæ do tworzenia prostych uniwersalnych formularzy.\n

\nPotwierdzenie
\nTen tekst bêdzie wy¶wietlony u¿ytkownikowi po wype³nieniu formularza.\n

\nPrzesy³aæ emailem?
\nJe¶li wybierzesz \"tak\", zostan± dodane do formularza dodatkowe pola niezbêdne przy wysy³aniu jego zawarto¶ci przez email na wybrany przez Ciebie adres.\n

\nRADA: Pole \"Do\" dodane do formularza dziêki ustawieniu tego parametru na \"tak\" bêdzie akceptowaæ zarówno standardowy adres email jak i login lub nazwê grupy w systemie WebGUI.\n

\nSzablon
\nWybierz szablon dla formularza.\n

\nSzablon Email
\nWybierz szablon dla formatu listu email z danymi z formularza.\n

\nSzablon Potwierdzenia
\nWybierz szablon który zostanie u¿yty do wy¶wietlenia potwierdzenia.\n

\nSzablon Listy
\nWybierz szablon który zostanie u¿yty do wy¶wietlenia listy zachowanych wpisów wys³anych za pomoc± formularza.',1069043482,NULL); +INSERT INTO international VALUES (29,'DataForm',16,'jest wymagane',1069041130,NULL); +INSERT INTO international VALUES (995,'WebGUI',16,'Has³o do Bazy',1069041034,NULL); +INSERT INTO international VALUES (994,'WebGUI',16,'Nazwa U¿ytkownika Bazy',1069040943,NULL); +INSERT INTO international VALUES (28,'DataForm',16,'Opcjonalnie dla obszaru tekstowego i HTML',1069040770,NULL); +INSERT INTO international VALUES (27,'DataForm',16,'Wysoko¶æ',1069040665,NULL); +INSERT INTO international VALUES (9,'Auth/LDAP',16,'U¿ytkownik RDN',1069040586,NULL); +INSERT INTO international VALUES (71,'Article',16,'Artyku³y to najbardziej uniwersalne narzêdzie WebGUI. Wiêkszo¶æ statycznej zawarto¶ci serwisu mo¿na stworzyæ przy u¿yciu modu³u Artyku³.\r\n

\r\nRADA: mo¿esz stworzyæ wielostronicowy artyku³ przez zastosowanie w dowolnych miejscach tre¶ci specjalnego znacznika nowej strony: (^-;)\r\n

\r\nSzablon
\r\nWybierz szablon uk³adu (layout) twojego artyku³u.\r\n

\r\nObrazek
\r\nWybierz plik graficzny (.jpg, .gif, .png) ze swojego dysku lokalnego. Ten plik zostanie za³adowany na serwer i wy¶wietlony w twoim artykule.\r\n

\r\nZa³±cznik
\r\nJe¶li chcesz do³±czyæ dokument Word\'a, archiwum .zip lub jakikolwiek inny plik do ¶ci±gniêcia przez twoich go¶ci, wybierz go ze swojego lokalnego dysku.\r\n

\r\nTytu³ linku
\r\nJe¶li chcesz umie¶ciæ w swoim artykule link, wpisz w tym polu nazwê/etykietê linku.\r\n

\r\nprzyk³ad: Google\r\n

\r\nURL linku
\r\nJe¶li wpisa³e¶ tytu³ linku, tutaj wpisz jego URL.\r\n

\r\nprzyk³ad: http://www.google.com\r\n

\r\nKonwertowaæ znaki nowej linii?
\r\nJe¶li wprowadzasz pe³ny kod HTML, w zasadzie nie musisz u¿ywaæ tej funkcji, ale je¶li wprowadzasz sam tekst bez formatowania (znaczników) HTML i chcesz by nowe linie by³y widoczne wszêdzie tam gdzie podczas wpisywania u¿ywasz klawisza \"Enter\" wówczas u¿yj tej funkcji.\r\n

\r\nPozwoliæ na dyskusjê?
\r\nZaznacz ten kwadracik je¶li chcesz zezwoliæ innym na wprowadzanie online komentarzy do twojego artyku³u - podobnie jak dzia³a to w serwisach gazeta.pl lub onet.pl.\r\n',1069027149,NULL); +INSERT INTO international VALUES (73,'Article',16,'Nastêpuj±ce zmienne stosowane w szablonach s± dostêpne dla szablonów artyku³ów.\n

\nnew.template
\nArtyku³y maj± mo¿liwo¶æ zmiany swoich szablonów dziêki której twoi go¶cie mog± sami wybraæ pasuj±cy im szablon (popularnie zwany \'skinem\'). W tym celu tworzysz link z URLem jak poni¿ej (w miejscu 999 wpisz Id szablonu na który ma nast±piæ prze³±czenie widoku strony po klikniêciu):\n

\n<a href=\"<tmpl_var new.template>999\">Czytaj dalej...</a> \n

\ndescription.full
\nPe³ny opis bez ¿adnej paginacji. (Dla opisów wielostronicowych z paginacj± stosuj zamiast tego \"description\".)\n

\ndescription.first.100words
\nPierwsze 100 s³ów z opisu. Za s³owa uwa¿a siê grupy znaków oddzielone spacjami, dlatego wszelkie znaczniki HTML s± tak¿e traktowane jako s³owa.\n

\ndescription.first.75words
\nPierwsze 75 s³ów z opisu. Za s³owa uwa¿a siê grupy znaków oddzielone spacjami, dlatego wszelkie znaczniki HTML s± tak¿e traktowane jako s³owa.\n

\ndescription.first.50words
\nPierwsze 50 s³ów z opisu. Za s³owa uwa¿a siê grupy znaków oddzielone spacjami, dlatego wszelkie znaczniki HTML s± tak¿e traktowane jako s³owa.\n

\ndescription.first.25words
\nPierwsze 25 s³ów z opisu. Za s³owa uwa¿a siê grupy znaków oddzielone spacjami, dlatego wszelkie znaczniki HTML s± tak¿e traktowane jako s³owa.\n

\ndescription.first.10words
\nPierwsze 10 s³ów z opisu. Za s³owa uwa¿a siê grupy znaków oddzielone spacjami, dlatego wszelkie znaczniki HTML s± tak¿e traktowane jako s³owa.\n

\ndescription.first.paragraph
\nPierwszy paragraf z opisu. Za paragraf uwa¿a siê grupê znaków zakoñczonych znakiem nowej linii (CR) czyli \'Enter\' na klawiaturze.\n

\ndescription.first.2paragraphs
\nPierwsze 2 paragrafy z opisu. Za paragraf uwa¿a siê ka¿d± kolejn± grupê znaków zakoñczonych znakiem nowej linii (CR) czyli \'Enter\' na klawiaturze.\n

\ndescription.first.sentence
\nPierwsze zdanie z opisu. Za zdanie uwa¿a siê ka¿d± kolejn± grupê znaków zakoñczonych znakiem kropki.\n

\ndescription.first.2sentences
\nPierwsze 2 zdania z opisu. Za zdanie uwa¿a siê ka¿d± kolejn± grupê znaków zakoñczonych znakiem kropki.\n

\ndescription.first.3sentences
\nPierwsze 3 zdania z opisu. Za zdanie uwa¿a siê ka¿d± kolejn± grupê znaków zakoñczonych znakiem kropki.\n

\ndescription.first.4sentences
\nPierwsze 4 zdania z opisu. Za zdanie uwa¿a siê ka¿d± kolejn± grupê znaków zakoñczonych znakiem kropki.\n

\nattachment.box
\nGeneruje standardow± w WebGUI tabelkê zawieraj±c± ikonê, nazwê pliku oraz znacznik za³±cznika.\n

\nattachment.icon
\nURL do pliku graficznego ikony dla danego typu za³±cznika.\n

\nattachment.name
\nNazwa pliku danego za³±cznika.\n

\nattachment.url
\nURL do pliku danego za³±cznika.\n

\nimage.thumbnail
\nURL do miniatury za³±czonego obrazka.\n

\nimage.url
\nURL do za³±czonego obrazka.\n

\npost.label
\nPrzet³umaczona etykieta funkcji dodawania komentarzy do artyku³u.\n

\npost.URL
\nURL do funkcji dodawania komentarzy do artyku³u.\n

\nreplies.count
\nLiczba komentarzy dodanych do artyku³u.\n

\nreplies.label
\nPrzet³umaczony tekst informuj±cy o mo¿liwo¶ci obejrzenia odpowiedzi.\n

\nreplies.url
\nURL do funkcji przegl±dania odpowiedzi dodanych do artyku³u.\n

\nfirstPage
\nLink do pierwszej strony z powsta³ych po u¿yciu w tre¶ci znacznika paginacji.\n

\nlastPage
\nLink do ostatniej strony z powsta³ych po u¿yciu w tre¶ci znacznika paginacji.\n

\nnextPage
\nLink do nastêpnej strony z powsta³ych po u¿yciu w tre¶ci znacznika paginacji.\nr\n

\npreviousPage
\nLink do poprzedniej strony z powsta³ych po u¿yciu w tre¶ci znacznika paginacji.\n

\npageList
\nLista linków do wszystkich stron powsta³ych po u¿yciu w tre¶ci znacznika paginacji.\n

\nmultiplePages
\nZnacznik informuj±cy czy po zastosowaniu paginacji jest wiêcej ni¿ jedna strona.\n

\nisFirstPage
\nZnacznik informuj±cy czy odwiedzaj±cy znajdujê siê na pierwszej stronie.\n

\nisLastPage
\nZnacznik informuj±cy czy odwiedzaj±cy znajdujê siê na ostatniej stronie.',1069026821,NULL); +INSERT INTO international VALUES (1061,'WebGUI',16,'

W szablonach w±tków dostêpne s± do wykorzystania nastêpuj±ce zmienne:\n

\n\ncallback.url
\nAdres URL (link) do strony z której nast±pi³o wywo³anie np. do artyku³u lub wys³anej przez u¿ytkownika wiadomo¶ci (wpisu, komentarza, czy te¿ odpowiedzi).\n

\n\ncallback.label
\nWy¶wietlana na ekranie nazwa odno¶nika (linku) do strony zawartej w zmiennej callback.url.\n

\n\nuser.canpost
\nWarunek okre¶laj±cy czy bie¿±cy u¿ytkownik mo¿e wys³aæ now± wiadomo¶æ (wpis).\n

\n\nuser.isVisitor
\nWarunek okre¶laj±cy czy bie¿±cy u¿ytkownik nie jest zalogowany (anonimowy).\n

\n\nuser.isModerator
\nWarunek okre¶laj±cy czy bie¿±cy u¿ytkownik ma uprawnienia moderatora forum.\n

\n\nuser.isSubscribed
\nWarunek okre¶laj±cy czy bie¿±cy u¿ytkownik posiada subskrypcjê do danego w±tku.\n

\n\nthread.layout.nested.label
\nWy¶wietlana na ekranie nazwa odno¶nika (linku) do strony zawartej w zmiennej thread.layout.nested.url.\n

\n\nthread.layout.nested.url
\nAdres URL (link) umo¿liwiaj±cy wy¶wietlanie zagnie¿d¿one w±tku.\n

\n\nthread.layout.flat.url
\nAdres URL (link) umo¿liwiaj±cy wy¶wietlanie proste w±tku.\n

\n\nthread.layout.flat.label
\nWy¶wietlana na ekranie nazwa odno¶nika (linku) do strony zawartej w zmiennej thread.layout.flat.url.\n

\n\nthread.layout.threaded.label
\nWy¶wietlana na ekranie nazwa odno¶nika (linku) do strony zawartej w zmiennej thread.layout.threaded.url.\n

\n\nthread.layout.threaded.url
\nAdres URL (link) umo¿liwiaj±cy wy¶wietlanie \"w±tkowe\" w±tku.\n

\n\nthread.layout.isThreaded
\nwarunek okre¶laj±cy czy w±tek jest wy¶wietlany w sposób \"w±tkowy\".\n

\n\nthread.layout.isNested
\nwarunek okre¶laj±cy czy w±tek jest wy¶wietlany w sposób zagnie¿d¿ony.\n

\n\nthread.layout.isFlat
\nwarunek okre¶laj±cy czy w±tek jest wy¶wietlany w sposób prosty.\n

\n\nthread.subscribe.url
\nAdres URL (link) umo¿liwiaj±cy bie¿±cemu u¿ytkownikowi subskrypcjê danego w±tku.\n

\n\nthread.subscribe.label
\nWy¶wietlana na ekranie nazwa odno¶nika (linku) do strony zawartej w zmiennej thread.subscribe.url.\n

\n\nthread.unsubscribe.url
\nAdres URL (link) umo¿liwiaj±cy bie¿±cemu u¿ytkownikowi wypisanie siê z subskrypcji danego w±tku.\n

\n\nthread.unsubscribe.label
\nWy¶wietlana na ekranie nazwa odno¶nika (linku) do strony zawartej w zmiennej thread.unsubscribe.url.\n

\n\nthread.isSticky
\nWarunek okre¶laj±cy czy dany w±tek jest \"przyklejony\" (prezentowany jest wtedy na pocz±tku listy w±tków).\n

\n\nthread.stick.url
\nAdres URL (link) umo¿liwiaj±cy nadanie danemu w±tkowi statusu \"przyklejonego\".\n

\n\nthread.stick.label
\nWy¶wietlana na ekranie nazwa odno¶nika (linku) do strony zawartej w zmiennej thread.stick.url.\n\n

\n\nthread.unstick.url
\nAdres URL (link) umo¿liwiaj±cy \"odklejenie\" danego w±tku.\n

\n\nthread.unstick.label
\nWy¶wietlana na ekranie nazwa odno¶nika (linku) do strony zawartej w zmiennej thread.unstick.url.\n

\n\nthread.isLocked
\nWarunek okre¶laj±cy czy dany w±tek jest zablokowany.\n

\n\nthread.lock.url
\nAdres URL (link) umo¿liwiaj±cy zablokowanie danego w±tku.\n

\n\nthread.lock.label
\nWy¶wietlana na ekranie nazwa odno¶nika (linku) do strony zawartej w zmiennej thread.lock.url.\n

\n\nthread.unlock.url
\nAdres URL (link) umo¿liwiaj±cy odblokowanie danego w±tku.\n

\n\nthread.unlock.label
\nWy¶wietlana na ekranie nazwa odno¶nika (linku) do strony zawartej w zmiennej thread.unlock.url.\n

\n\npost_loop
\nLista zawieraj±ca wszystkie wiadomo¶ci (posty) w danym w±tku.\n

\n\n

\n\npost.indent_loop
\nLista informacji potrzebnych do praw\nid³owego tworzenia wciêæ wynikaj±cych z wzajemnego po³o¿enia wpisów u¿ytkowników w hierarchii.\n

\n

\ndepth
\nLiczba wskazuj±ca poziom zag³êbienia wciêcia listy (niespecjalnie u¿yteczna w praktyce)\n
\n

\n\npost.indent.depth
\nLiczba wskazuj±ca jak wiele poziomów w dó³ zag³êbiony jest wpis u¿ytkownika.\n

\n\npost.isCurrent
\nWarunek okre¶laj±cy czy dany wpis u¿ytkownika jest tym wybranym przez bie¿±cego u¿ytkownika do obejrzenia.\n

\n\nUWAGA: Wszystkie zmienne z szablonu wpisu u¿ytkownika s± tu równie¿ dostêpne do wykorzystania.\n\n

\n\n

\n\nthread.subject.label
\nNazwa opisuj±ca tematy w±tków (sformatowana do wy¶wietlenia na ekranie w/g ustawieñ).\n

\n\nthread.date.label
\nNazwa opisuj±ca daty w±tków (sformatowana do wy¶wietlenia na ekranie w/g ustawieñ - np. przet³umaczona w/g ustawieñ jêzykowych u¿ytkownika).\n

\n\nthread.user.label
\nNazwa opisuj±ca autorów w±tków (sformatowana do wy¶wietlenia na ekranie w/g ustawieñ).\n

\n\nthread.new.url
\nAdres URL (link) umo¿liwiaj±cy utworzenie nowego adresu URL w±tku.\n

\n\nthread.new.label
\nWy¶wietlana na ekranie nazwa odno¶nika (linku) do strony zawartej w zmiennej thread.new.url.\n

\n\nthread.previous.url
\nAdres URL (link) umo¿liwiaj±cy wy¶wietlenie poprzedniego w±tku.\n

\n\nthread.previous.label
\nWy¶wietlana na ekranie nazwa odno¶nika (linku) do strony zawartej w zmiennej thread.previous.url.\n

\n\nthread.next.url
\nAdres URL (link) umo¿liwiaj±cy wy¶wietlenie nastêpnego w±tku.\n

\n\nthread.next.label
\nWy¶wietlana na ekranie nazwa odno¶nika (linku) do strony zawartej w zmiennej thread.next.url.\n

\n\nthread.list.url
\nAdres URL (link) umo¿liwiaj±cy powrót u¿ytkownika do listy w±tków.\n

\n\nthread.list.label
\nWy¶wietlana na ekranie nazwa odno¶nika (linku) do strony zawartej w zmiennej thread.list.url.\n

\n\nforum.title
\nTytu³ forum zgodny z tym, z którego pochodzi wywo³ywany obiekt.\n

\n\nforum.description
\nOpis forum zgodny z tym, z którego pochodzi wywo³ywany obiekt.\n

',1068919471,NULL); +INSERT INTO international VALUES (1057,'WebGUI',16,'

W szablonach forum dostêpne s± do wykorzystania nastêpuj±ce zmienne:\n

\n\ncallback.url
\nAdres URL (link) do strony z której nast±pi³o wywo³anie np. do artyku³u lub wys³anej przez u¿ytkownika wiadomo¶ci (wpisu na forum).\n

\n\ncallback.label
\nWy¶wietlana na ekranie nazwa odno¶nika (linku) do strony zawartej w zmiennej callback.url.\n

\n\nuser.isVisitor
\nWarunek okre¶laj±cy czy dany u¿ytkownik jest niezalogowany (anonimowy).\n

\n\nthread.new.url
\nAdres URL (link) do strony umo¿liwiaj±cego otwarcie nowego w±tku na forum.\n

\n\nthread.new.label
\nWy¶wietlana na ekranie nazwa odno¶nika (linku) do strony zawartej w zmiennej thread.new.url.\n

\n\nforum.search.label
\nNazwa linku (adresu URL) zawartego w zmiennej forum.search.url (sformatowana do wy¶wietlenia na ekranie w/g ustawieñ).\n

\n\nforum.search.url
\nAdres URL (link) do strony mechanizmu wyszukiwarki informacji na forum.\n

\n\n\nforum.subscribe.label
\nNazwa linku (adresu URL) zawartego w zmiennej forum.subscribe.url (sformatowana do wy¶wietlenia na ekranie w/g ustawieñ).\n

\n\nforum.subscribe.url
\nAdres URL (link) do strony umo¿liwiaj±cej subskrypcjê informacji forum (otrzymywanie informacji o zmianach na intersuj±cym nas forum).\n

\n\nforum.unsubscribe.label
\nNazwa linku (adresu URL) zawartego w zmiennej forum.unsubscribe.url (sformatowana do wy¶wietlenia na ekranie w/g ustawieñ).\n

\n\nforum.unsubscribe.url
\nAdres URL (link) do strony umo¿liwiaj±cej wypisanie siê z subskrypcji.\n

\n\nuser.isSubscribed
\nWarunek okre¶laj±cy czy bie¿±cy u¿ytkownik ma ju¿ subskrypcjê danego forum.\n

\n\nuser.isModerator
\nWarunek okre¶laj±cy czy dany u¿ytkownik ma uprawnienia cenzora (moderatora) tego forum.\n

\n\nuser.canPost
\nWarunek okre¶laj±cy czy dany u¿ytkownik ma uprawnienia wysy³ania wpisów na dane forum.\n

\n\nthread.sortby.date.url
\nAdres URL (link) do strony z porz±dkiem sortowania w±tków wed³ug ich daty utworzenia.\n

\n\nthread.sortby.lastreply.url
\nAdres URL (link) do strony z porz±dkiem sortowania w±tków wed³ug daty ostatniej odpowiedziw w±tku.\n

\n\nthread.sortby.views.url
\nAdres URL (link) do strony z porz±dkiem sortowania w±tków wed³ug liczby wy¶wietleñ ka¿dego z w±tków.\n

\n\nthread.sortby.replies.url
\nAdres URL (link) do strony z porz±dkiem sortowania w±tków wed³ug liczby odpowiedzi w ka¿dym z w±tków.\n

\n\nthread.sortby.rating.url
\nAdres URL (link) do strony z porz±dkiem sortowania w±tków wed³ug ¶redniej oceny ka¿dego z w±tków.\n

\n\nthread.subject.label
\nNazwa kolumny wy¶wietlaj±cej tematy w±tków forum.\n

\n\nthread.date.label
\nNazwa kolumny wy¶wietlaj±cej daty w±tków forum.\n

\n\nthread.user.label
\nNazwa kolumny wy¶wietlaj±cej autorów w±tków forum.\n

\n\nthread.views.label
\nNazwa kolumny wy¶wietlaj±cej liczbê wy¶wietleñ w±tków forum.\n

\n\nthread.replies.label
\nNazwa kolumny wy¶wietlaj±cej liczbê odpowiedzi w w±tkach forum.\n

\n\nthread.rating.label
\nNazwa kolumny wy¶wietlaj±cej ¶redni± ocenê w±tków forum.\n

\n\nthread.last.label
\nNazwa kolumny wy¶wietlaj±cej ostatni± odpowied¼ w w±tkach forum.\n

\n\nfirstpage
\nAdres URL (link) do pierwszej strony listy w±tków forum (w przypadku listy wielostronicowej).\n

\n\nlastpage
\nAdres URL (link) do ostatniej strony listy w±tków forum (w przypadku listy wielostronicowej).\n

\n\nnextpage
\nAdres URL (link) do nastêpnej strony listy w±tków forum (w przypadku listy wielostronicowej).\n

\n\npagelist
\nLista wszystkich stron z list± w±tków forum (w przypadku listy wielostronicowej).\n

\n\npreviouspage
\n\nAdres URL (link) do poprzedniej strony listy w±tków forum (w przypadku listy wielostronicowej).\n

\n\nmultiplepages
\nWarunek okre¶laj±cy czy lista w±tków forum ma wiêcej ni¿ jedn± stronê.\n

\n\nnumberOfPages
\nLiczba stron listy w±tków forum (w przypadku listy wielostronicowej).\n

\n\npageNumber
\nNumer danej strony w li¶cie stron w±tków forum (w przypadku listy wielostronicowej).\n

\n\nthread_loop
\nKompletna tre¶æ listy w±tków forum.\n

\n\n

\n\nthread.views
\nLiczba wy¶wietleñ danego w±tku forum.\n

\n\nthread.replies
\nLiczba odpowiedzi (wpisów u¿ytkowników) w danym w±tku forum.\n

\n\nthread.rating
\n¦rednia ocena wszystkich wpisów u¿ytkowników w danym w±tku.\n

\n\nthread.rating_loop
\n

\n

\nthread.rating_loop.count
\nWizualna reprezentacja oceny w±tku (przyk³adowo w postaci \"gwiazdek\" lub w inny zaprojektowany sposób).\n

\n

\n\nthread.isSticky
\nWarunek okre¶laj±cy czy dany w±tek jest tzw. \"przyklejony\" (w±tki \"przyklejone\" s± prezentowane na pocz±tku listy w±tków forum).\n

\n\nthread.isLocked
\nWarunek okre¶laj±cy czy dany w±tek jest zablokowany przed mo¿liwo¶cia wysy³ania kolejnych postów.\n

\n\nthread.root.subject
\nTemat g³ównego wpisu w danym w±tku (pierwszego wpisu u¿ytkownika otwieraj±cego dany w±tek).\n

\n\nthread.root.url
\nAdres URL (link) umo¿liwiaj±cy wy¶wietlenie g³ównego wpisu w danym w±tku.\n

\n\nthread.root.epoch
\nData g³ównego wpisu w danym w±tku w formacie epoch.\n

\n\nthread.root.date
\nData g³ównego wpisu w danym w±tku (sformatowana do wy¶wietlenia na ekranie w/g ustawieñ).\n

\n\nthread.root.time
\nCzas wys³ania g³ównego wpisu w danym w±tku (sformatowana do wy¶wietlenia na ekranie w/g ustawieñ).\n

\n\nthread.root.user.id
\nIdentyfikator u¿ytkownika który wys³a³ g³ówny wpis w danym w±tku.\n

\n\nthread.root.user.name
\nNazwa u¿ytkownika który wys³a³ g³ówny wpis w danym w±tku.\n

\n\nthread.root.user.profile
\nAdres URL (link) do profilu u¿ytkownika który wys³a³ g³ówny wpis w danym w±tku.\n

\n\nthread.root.user.isVisitor
\nWarunek okre¶laj±cy czy u¿ytkownik który wys³a³ g³ówny wpis w danym w±tku nie by³ zalogowany (anonimowy).\n

\n\nthread.root.status
\nStatus okre¶laj±cy g³ówny wpis w danym w±tku.\n\n

\n\nthread.last.subject
\nTemat ostatniego wpisu dotycz±cego danego w±tku.\n

\n\nthread.last.url
\nAdres URL (link) do strony z ostatnim wpisem w danym w±tku.\n

\n\nthread.last.epoch
\nData ostatniego wpisu w danym w±tku w formacie epoch.\n

\n\nthread.last.date
\nData ostatniego wpisu w danym w±tku (sformatowana do wy¶wietlenia na ekranie w/g ustawieñ).\n

\n\nthread.last.time
\nCzas utworzenia ostatniego wpisu w danym w±tku (sformatowana do wy¶wietlenia na ekranie w/g ustawieñ).\n

\n\nthread.last.user.profile
\nAdres URL (link) do strony z profilem u¿ytkownika który wys³a³ ostatni wpis w danym w±tku.\n

\n\nthread.last.user.id
\nIdentyfikator u¿ytkownika który wys³a³ ostatni wpis w danym w±tku.\n

\n\nthread.last.user.name
\nNazwa u¿ytkownika który wys³a³ ostatni wpis w danym w±tku.\n

\n\nthread.last.user.isVisitor
\nWarunek okre¶laj±cy czy u¿ytkownik który wys³a³ ostatni wpis w danym w±tku nie by³ zalogowany (anonimowy).\n

\n\nthread.last.status
\nStatus okre¶laj±cy ostatni wpis w danym w±tku.\n

\n\nforum.title
\nTytu³ forum zgodny z tym, z którego pochodzi wywo³ywany obiekt.\n

\n\nforum.description
\nOpis forum zgodny z tym, z którego pochodzi wywo³ywany obiekt.\n

\n
',1068919452,NULL); +INSERT INTO international VALUES (1059,'WebGUI',16,'

W szablonach wpisów u¿ytkowników (wiadomo¶ci forum) dostêpne s± do wykorzystania nastêpuj±ce zmienne:\n

\n\ncallback.url
\nAdres URL (link) do strony z której nast±pi³o wywo³anie np. do artyku³u lub wys³anej przez u¿ytkownika wiadomo¶ci.\n

\n\ncallback.label
\nWy¶wietlana na ekranie nazwa odno¶nika (linku) do strony zawartej w zmiennej callback.url.\n

\n\npost.subject.label
\nNazwa pola prezentuj±cego temat wpisu u¿ytkownika (sformatowana do wy¶wietlenia na ekranie w/g ustawieñ).\n

\n\npost.subject
\nTemat danego wpisu u¿ytkownika.\n

\n\npost.message
\nTre¶æ danego wpisu u¿ytkownika.\n

\n\nuser.canPost
\nWarunek okre¶laj±cy czy dany u¿ytkownik mo¿e dokonywaæ wpisy na forum.\n

\n\npost.date.value
\nData wys³ania danego wpisu u¿ytkownika (sformatowana do wy¶wietlenia na ekranie w/g ustawieñ).\n

\n\npost.date.epoch
\nData wys³ania danego wpisu u¿ytkownika w formacie epoch (jest to liczba sekund od 1 stycznia 1970 roku do momentu zg³oszenia danego postu).\n

\n\npost.time.value
\nCzas zamieszczenia danego wpisu u¿ytkownika (sformatowana do wy¶wietlenia na ekranie w/g ustawieñ).\n

\n\npost.date.label
\nNag³ówek opisuj±cy pole z dat± wys³ania wpisu u¿ytkownika (pole post.date.value).\n

\n\npost.rating.value
\n¦rednia ocena tego wpisu.\n

\n\npost.rating.label
\nNag³ówek opisuj±cy pole prezentuj±ce ¶redni± ocenê wpisu na forum (pole post.rating.value).\n

\n\npost.views.value
\nLiczba wy¶wietleñ/odczytañ tego wpisu.\n

\n\npost.views.label
\nNag³ówek opisuj±cy pole prezentuj±ce liczbê wy¶wietleñ wpisu (pole post.views.value).\n

\n\npost.status.value
\nStatus danego wpisu.\n

\n\npost.status.label
\nNag³ówek opisuj±cy pole prezentuj±ce status danego wpisu (pole post.status.value).\n

\n\npost.isLocked
\nWarunek okre¶laj±cy czy w±tek zwi±zany z danym wpisem jest zablokowany.\n

\n\npost.isModerator
\nWarunek okre¶laj±cy czy dany u¿ytkownik ma uprawnienia cenzorskie (moderator).\n

\n\npost.canEdit
\nWarunek okre¶laj±cy czy dany u¿ytkownik ma uprawnienia do edycji danego wpisu.\n

\n\npost.user.isVisitor
\nWarunek okre¶laj±cy czy dany u¿ytkownik jest niezalogowany (anonimowy).\n

\n\npost.user.id
\nIdentyfikator u¿ytkownika który wys³a³ dany wpis na forum.\n

\n\npost.user.name
\nNazwa u¿ytkownika który wys³a³ dany wpis.\n

\n\npost.user.profile
\nAdres URL (link) do strony z profilem u¿ytkownika który wys³a³ dany wpis.\n

\n\npost.url
\nAdres URL (link) do strony wy¶wietlaj±cej dany wpis.\n

\n\npost.id
\nUnikalny identyfikator danego wpisu.\n

\n\npost.rate.label
\nNazwa linku (adresu URL) do oceny danego wpisu na 1 (sformatowana do wy¶wietlenia na ekranie w/g ustawieñ).\n

\n\npost.rate.url.1
\nAdres URL (link) do oceny danego wpisu na 1.\n

\n\npost.rate.url.2
\nAdres URL (link) do oceny danego wpisu na 2.\n

\n\n\npost.rate.url.3
\nAdres URL (link) do oceny danego wpisu na 3.\n

\n\n\npost.rate.url.4
\nAdres URL (link) do oceny danego wpisu na 4.\n

\n\n\npost.rate.url.5
\nAdres URL (link) do oceny danego wpisu na 5.\n

\n\npost.hasRated
\nWarunek okre¶laj±cy czy dany u¿ytkownik ocenia³ ju¿ ten wpis.\n

\n\npost.reply.label
\nNazwa linku (adresu URL) do strony umo¿liwiaj±cej napisanie odpowiedzi na dany wpis (sformatowana do wy¶wietlenia na ekranie w/g ustawieñ).\n

\n\npost.reply.url
\nAdres URL (link) do strony umo¿liwiaj±cej napisanie odpowiedzi na dany wpis.\n

\n\npost.reply.withquote.url
\nAdres URL (link) do strony umo¿liwiaj±cej napisanie odpowiedzi na dany wpis (do odpow\niedzi wstawiona bêdzie jednocze¶nie oryginalna tre¶æ wiadomo¶ci/wpisu).\n

\n\npost.edit.label
\nNazwa linku (adresu URL) zawartego w zmiennej post.edit.url (sformatowana do wy¶wietlenia na ekranie w/g ustawieñ).\n

\n\npost.edit.url
\nAdres URL (link) do strony umo¿liwiaj±cej edycjê danego wpisu.\n

\n\npost.delete.url
\nAdres URL (link) do strony umo¿liwiaj±cej usuniêcie danego wpisu.\n

\n\npost.delete.label
\nNazwa linku (adresu URL) zawartego w zmiennej post.delete.url (sformatowana do wy¶wietlenia na ekranie w/g ustawieñ).\n

\n\npost.approve.label
\nNazwa linku (adresu URL) zawartego w zmiennej post.approve.url (sformatowana do wy¶wietlenia na ekranie w/g ustawieñ).\n

\n\npost.approve.url
\nAdres URL (link) do strony umo¿liwiaj±cej zatwierdzenie danego wpisu u¿ytkownika do wy¶wietlenia w systemie.\n

\n\npost.deny.url
\nAdres URL (link) do strony umo¿liwiaj±cej blokadê danego wpisu u¿ytkownika i nie wy¶wietlanie go w systemie.\n

\n\npost.deny.label
\nNazwa linku (adresu URL) zawartego w zmiennej post.deny.url (sformatowana do wy¶wietlenia na ekranie w/g ustawieñ).\n

\n\npost.full
\nPe³na postaæ danego wpisu sformatowana w/g szablonu wpisu. Ta postaæ nigdy nie bêdzie u¿yta w katalogu szablonów wpisów, ale czêsto jest u¿ywana w innych szablonach, które wczytuj± zmienne szablonu wpisów.\n

\n\nforum.title
\nTytu³ forum zgodny z tym, z którego pochodzi wywo³ywany obiekt.\n

\n\nforum.description
\nOpis forum zgodny z tym, z którego pochodzi wywo³ywany obiekt.\n

',1068919407,NULL); +INSERT INTO international VALUES (82,'Survey',16,'Zakoñcz Ankietê',1068901816,NULL); +INSERT INTO international VALUES (1055,'WebGUI',16,'

System WebGUI ma wbudowany zaawansowany system forum dyskusyjnych umo¿liwiaj±cy wzajemn± wymianê informacji oraz prowadzenie uporz±dkowanej dyskusji (wpisów u¿ytkowników) na temat zamieszczonych na forum tre¶ci. Modu³ forum dyskusyjnych mo¿e byæ do³±czony w wielu miejscach serwisu i jest do³±czony do wielu innych obiektów WebGUI.\n

\nFora dyskusyjne maj± wiele ustawialnych w³a¶ciwo¶ci - oto kompletna lista:\n

\n\nSzablon forum
\nSzablon definiuj±cy sposób wy¶wietlania forum.\n

\n\nSzablon w±tku
\nSzablon definiuj±cy sposób wy¶wietlania w±tków.\n

\n\nSzablon wpisu
\nSzablon definiuj±cy sposób wy¶wietlania wpisów u¿ytkowników.\n

\n\nSzablon wyszukiwarki
\nSzablon definiuj±cy sposób wy¶wietlania wyszukiwarki i uzyskanych wyników wyszukiwania.\n

\n\nSzablon formularza wiadomo¶ci
\nSzablon definiuj±cy sposób wy¶wietlania formularza podczas wysy³ania nowych wiadomo¶ci (wpisów u¿ytkowników).\n

\n\nSzablon powiadomienia
\nSzablon definiuj±cy wygl±d stron potwierdzeñ dokonanych przez u¿ytkowników czynno¶ci (np. potwierdzenia wys³ania wiadomo¶ci).\n

\n\nArchiwizuj po
\nDefinuje maksymalny okres bezczynno¶ci w±tku (w czasie którego nie pojawi± siê nowe wpisy u¿ytkowników w ramach danego w±tku), po którym w±tek zostanie archiwizowany (w efekcie bêdzie tylko dostêpny poprzez wyszukiwarkê).\n

\n\nEdytuj czas bezczynno¶ci
\nOkres czasu w ci±gu którego u¿ytkownik ma jeszcze mo¿liwo¶æ edycji wys³anego przez siebie wpisu.\n

\nUWAGA: zaleca siê nie ustawiaæ zbyt du¿ego limitu czasu. Jedn± z najwiêkszych zalet dyskusji jest zachowanie informacji o prawdziwych wypowiedziach. Ustawiaj±c zbyt wysoki limit czasu bezczynno¶ci dajesz u¿ytkownikom szanse zmiany stanowiska du¿o pó¼niej ni¿ ono faktycznie wyst±pi³o. Tak wyedytowane dyskusje mog± byæ w efekcie niespójne i powodowaæ brak zaufania innych u¿ytkowników do Twojego forum.\n

\n\nDodawaæ datê edycji do wpisów?
\nJe¿eli ustawione na tak, informacja o dacie edycji bêdzie dodawana na koñcu wpisu u¿ytkownika, za ka¿dym razem gdy bêdzie on edytowany.\n

\n\nZaawansowana edycja?
\nJe¿eli ustawione na tak, u¿ytkownicy podczas przygotowywania swoich wpisów bêd± mogli korzystaæ z zaawansowanego edytora oferuj±cego dodatkowe mo¿liwo¶ci edycji tre¶ci.\n

\n\nZezwalaæ na zamienniki?
\nJe¿eli ustawione na tak, u¿ytkownicy bêd± mogli u¿ywaæ zamiennych zwrotów i s³ów w swoich wpisach na forum. Lista zamienników mo¿e byæ ustawiana we w³a¶ciwo¶ciach.\n

\n\nPoziom filtrowania
\nWybierz typ filtrowania tre¶ci wpisów u¿ytkowników.\n

\n\nWpisów na stronie
\nMaksymalna liczba postów prezentowana na stronie.\n

\n\nPunkty za wpis
\nIloma punktami nagradzaæ u¿ytkownika za wys³anie wpisu na forum (pole aktywne je¿eli administrator w ustawieniach u¿ytkowników aktywowa³ system punktacji u¿ytkowników za ich aktywno¶æ)?\n

\n\nKto mo¿e wysy³aæ
\nGrupa u¿ytkowników uprawniona do wysy³ania wpisów na forum.\n

\n\nModeracja wpisów?
\nJe¿eli ustawione na tak, wtedy status dokonywanych przez u¿ytkowników wpisów na forum bêdzie automatycznie ustawiany na oczekuj±cy, i takie wpisy nie bêd± wy¶wietlane a¿ do czasu ich zaaprobowania przez moderatora.\n

\n\nKto mo¿e moderowaæ?
\nGrupa u¿ytkowników uprawniona do moderacji wpisów u¿ytkowników.\n

',1068708617,NULL); +INSERT INTO international VALUES (1072,'WebGUI',16,'Taki adres email jest ju¿ zarejestrowany w systemie - proszê wybraæ inny adres email.',1068703399,NULL); +INSERT INTO international VALUES (73,'MessageBoard',16,'Szablon forum',1067651735,NULL); +INSERT INTO international VALUES (61,'MessageBoard',16,'Forum, Dodawanie/Edycja',1067651723,NULL); +INSERT INTO international VALUES (1016,'WebGUI',16,'Odp.',1067651507,NULL); +INSERT INTO international VALUES (8,'WebGUI',16,'Zobacz strony nie odnalezione.',1067651308,NULL); +INSERT INTO international VALUES (799,'WebGUI',16,'Ods³ony strony.',1067651230,NULL); +INSERT INTO international VALUES (514,'WebGUI',16,'Ods³ony',1067651193,NULL); +INSERT INTO international VALUES (430,'WebGUI',16,'Zobacz ostatni± stronê',1067651168,NULL); +INSERT INTO international VALUES (14,'WebGUI',16,'Zobacz oczekuj±ce zg³oszenia.',1067651135,NULL); +INSERT INTO international VALUES (13,'WSClient',1,'Pagination after',1072810296,NULL); +INSERT INTO international VALUES (61,'Survey',16,'Zobacz dziennik ocen.',1067651054,NULL); +INSERT INTO international VALUES (59,'Survey',16,'Zobacz przegl±d statystyczny.',1067651004,NULL); +INSERT INTO international VALUES (56,'Survey',16,'Zobacz komentarze.',1067650959,NULL); +INSERT INTO international VALUES (55,'Survey',16,'Zobacz odpowiedzi.',1067650942,NULL); +INSERT INTO international VALUES (28,'Article',16,'Zobacz odpowiedzi',1067650910,NULL); +INSERT INTO international VALUES (622,'WebGUI',16,'W celu uzyskania wiêkszej ilo¶ci informacji na temat domy¶lnych grup i zasad zarz±dzania grupami zobacz ekrany pomocy w dziale Zarz±dzaj grupami.\n

\n\nNazwa grupy
\nNazwa danej grupy. Dobrym zwyczajem jest nadawanie grupom nazw, które pozwalaj± na szybkie i trafne okre¶lenie przeznaczenia grupy.\n

\n\nOpis
\nDowolny opis grupy i ewentualnie opis celu jej utworzenia.\n

\n\nWygasa po
\nOkres czasu po którym u¿ytkownik nale¿±cy do grupy jest automatycznie blokowany lub usuwany z danej grupy. Jest to szczególnie przydatne dla systemów cz³onkowskich, gdzie u¿ytkownicy uzyskuj± okre¶lone uprawnienia przez ustalony okres czasu. \n

\nUWAGA: To ustawienie mo¿e byæ zmienione dla konkretnych u¿ytkowników.\n

\n\nPowiadomiæ u¿ytkownika o wyga¶niêciu?
\nUmo¿liwia wysy³anie przez system WebGUI powiadomieñ o zbli¿aj±cym siê koñcu przynale¿no¶ci u¿ytkownika do danej grupy.\n

\n\nIle dni wcze¶niej powiadomiæ o wyga¶niêciu
\nW polu tym definiuje siê liczbê dni przed terminem wyga¶niêcia dostêpu u¿ytkownika do danej grupy, kiedy zostanie przez WebGUI wys³ana informacja o tym fakcie. Ustawienie warto¶ci \"0\" spowoduje wys³anie tej informacji w dniu wyga¶niêcia dostêpu. Warto¶æ \"-7\" oznacza siedem dni przed up³ywem terminu, podczas gdy warto¶æ \"7\" oznacza wys³anie powiadomienia siedem dni po up³ywie terminu wyga¶niêcia.\n

\n\nWiadomo¶æ powiadomienia o wyga¶niêciu
\nTre¶æ wiadomo¶ci informuj±cej o wyga¶niêciu dostêpu u¿ytkownika do danej grupy.\n

\n\nOpó¼nienie Usuniêcia
\nW tym polu nale¿y podaæ liczbê dni od dnia up³yniêcia dostêpu u¿ytkownika do danej grupy, do dnia usuniêcia u¿ytkownikowi uprawnieñ dostêpu do grupy. Ustawienie warto¶ci \"0\" spowoduje usuniêcie dostêpu w dniu wyga¶niêcia dostêpu. Warto¶æ \"-7\" oznacza siedem dni przed up³ywem terminu, podczas gdy warto¶æ \"7\" oznacza usuniêcie dostêpu siedem dni po up³ywie terminu wyga¶niêcia.\n

\nDostêp wed³ug parametrów sesji
\nU¿ytkownik mo¿e byæ automatycznie przydzielony do grupy, na podstawie odpowiedniej zmiennej sesji. Zmienne te mog± byæ ustawione programowo lub mog± byæ ustawione poprzez parametr dodany na koñcu wywo³ywanego adresu URL, przyk³adowo:\n

\n?op=setScratch&scratchName=jakisuzytkownik&scratchValue=jakaswartosc\n

\nW wyniku wczytania przez u¿ytkownika takiego adresu (oczywi¶cie jakisuzytkownik i jakaswartosc nalezy zmieniæ na konkretne warto¶ci), utworzona zostanie zmienna sesji z nazw± www_jakisuzytkownik o warto¶ci \"jakaswartosc\". Przedrostek \"www_\" jest dodawany aby nie nadpisaæ zmiennych sesji utworzonych programowo.\n

\nAby filtrowaæ dostêp do grupy wed³ug zmiennej sesji nale¿y dodaæ w tym polu wiersze zawieraj±ce odpowiednie wpisy ? dla tego przyk³adu bêdzie to wiersz o postaci:\n

\nwww_jakisuzytkownik=jakaswartosc\n

\nAdres IP
\nPodaj adres IP u¿ytkownika lub maskê podsieci z której u¿ytkownicy bêd± automatycznie uzyskiwali przynale¿no¶æ do danej grupy. Mo¿liwe jest te¿ podanie kilku adresów IP i podsieci rozdzielonych ¶rednikami.\n

\nPrzyk³ad: 10.;192.168.;101.42.200.142\n

\n\nSystem punktacji - próg
\nTo pole jest wy¶wietlane je¿eli w systemie w³±czony jest system punktacji aktywno¶ci u¿ytkowników serwisu. Pole to definiuje minimalny poziom uzyskanych przez u¿ytkownika punktów, umo¿liwiaj±cy mu uzyskania dostêpu do danej grupy.\n

\n\n\nU¿ytkownicy mog± siê dodawaæ?
\nCzy u¿ytkownicy mog± siê samodzielnie dodawaæ do danej grupy. Po wiêcej informacji zobacz opis makra GroupAdd.\n

\nU¿ytkownicy mog± siê usuwaæ?
\nCzy u¿ytkownicy mog± siê samodzielnie usuwaæ z danej grupy. Po wiêcej informacji zobacz opis makra GroupDelete.\n

\n\nPoni¿sze opcje s± zalecane do edycji tylko przez zaawansowanych administratorów systemu WebGUI.\n

\n\nPo³±czenie do bazy danych
\nWybierz z listy nazwê po³±czenia do zewnêtrzne\nj bazy danych je¿eli ma byæ ona u¿ywana do sprawdzania uprawnieñ dostêpu u¿ytkowników tej grupy.\n

\nZapytanie SQL
\nWiele serwisów korzysta z zewnêtrznych w stosunku do serwisu baz danych, umo¿liwiaj±cych sprawdzenie uprawnieñ u¿ytkowników do dostêpu do grup - przyk³adowo baza kadrowa pracowników mo¿e byæ po³±czona identyfikatorem pracownika (u¿ytkownika) z baz± historii opieki zdrowotnej pracowników). Aby sprawdzaæ uprawnienia u¿ytkowników wed³ug danych zawartych w takich zewnêtrznych bazach danych, nale¿y skonstruowaæ zapytanie SQL do takiej bazy zwracaj±ce warto¶æ 1 je¿eli dany u¿ytkownik siê w niej znajduje i spe³nia za³o¿one warunki. Upewnij siê ¿e zapytanie SQL zwraca warto¶æ 1. W zapytaniu SQL mo¿na stosowaæ makra aby wykorzystaæ w zapytaniu dane z profilu u¿ytkownika, np. ID pracownika. Oto przyk³ad zapytania sprawdzaj±cego u¿ytkownika w fikcyjnej bazie danych pracowników (przyk³ad zak³ada ¿e w profilu u¿ytkownika jest pole nazwane pracownikId) pod k±tem posiadania przez niego \'planu opieki zdrowotnej nr 1\'.
\n
\nselect 1 from pracownicy, opieka_zdrowotna, pracownicy_do_opieka
\nwhere pracownicy.pracownik_id = ^User(\"pracownikId\");
\nand opieka_zdrowotna.nazwa_planu = \'Plan zdrowotny 1\'
\nand pracownicy.pracownik_id = pracownicy_do_opieka.pracownik_id
\nand opieka_zdrowotna.plan_id = pracownicy_do_opieka.plan_id
\n
\nTak skonstruowane zapytanie w³a¶ciwe bêdzie dla grupy, któr± bêdziemy mogli nazwaæ \'Pracownicy posiadaj±cy plan zdrowotny nr 1\' i równocze¶nie bêdziemy mogli ograniczyæ dostêp do takiej grupy tylko dla u¿ytkowników posiadaj±cych taki plan zdrowotny.\n

\nCzas przechowywania wyników zapytañ SQL
\nSerwisy posiadaj±ce du¿e zewnêtrzne bazy danych do których generowana jest du¿a liczba zapytañ, mog± ograniczyæ liczbê wykonywanych po³±czeñ poprzez pobieranie danych z zapamiêtanych wyników wcze¶niej wykonanych zapytañ SQL. W tym polu definiuje siê jak d³ugo uzyskane wcze¶niej wyniku uznaje siê za wa¿ne (po tym czasie zamiast wczytania zapamietanego wcze¶niej wyniku zapytania SQL wymusza siê jego ponowne zapytanie w celu uzyskania nowego wyniku). W przysz³ych wersjach WebGUI mechanizmy przechowywania wyników (cache) zostan± prawdopodobnie rozbudowane.',1066651479,NULL); +INSERT INTO international VALUES (1071,'WebGUI',16,'Jak zmienna HTTP_HOST',1066641511,NULL); +INSERT INTO international VALUES (1070,'WebGUI',16,'Skonfigurowana Nazwa Systemu',1066641473,NULL); +INSERT INTO international VALUES (1069,'WebGUI',16,'Nazwa serwera',1066641432,NULL); +INSERT INTO international VALUES (629,'WebGUI',16,'

U¿ywaæ wspólnego schowka?
\nUmo¿liwia to stosowanie jednego, wspólnego dla wszystkich u¿ytkowników systemu schowka, daj±c tym samym mo¿liwo¶æ korzystania wszystkich u¿ytkowników ze skopiowanych do schowka pozycji. Domy¶lnie system schowka jest osobny dla ka¿dego u¿ytkownika.\n

\n\nU¿ywaæ wspólnego kosza?
\nUmo¿liwia to stosowanie jednego, wspólnego dla wszystkich u¿ytkowników systemu kosza. Domy¶lnie system kosza jest osobny dla ka¿dego u¿ytkownika.\n

\n\nPrzez proxy pokazywaæ adres IP klienta?
\nJe¿eli ustawione na tak, to dostêpna bêdzie zmienna ¶rodowiskowa HTTP_X_FORWARDED_FOR, której to warto¶æ zostanie u¿yta zamiast REMOTE_ADDRESS, pokazuj±c adres IP przegl±darki klienta, pomimo u¿ywania przez niego serwera proxy. Takie ustawienie jest wymagane w przypadku grup u¿ytkowników bazuj±cych na adresie IP u¿ytkownika, aby umo¿liwiæ poprawne jego poprawne rozpoznanie, nawet je¿eli jego IP jest maskowane przez serwer proxy. Je¿eli nie wiesz jak masz ustawiæ ten parametr, to oznacza ¿e raczej powiniene¶ go ustawiæ na nie.\n

\n\nPomijaæ bufor serwera proxy?
\nNiektóre firmy u¿ywaj± serwerów proxy które sprawiaj± problemy w po³±czeniu z systemem opartym o WebGUI. Je¿eli jeste¶ w takiej sytuacji, to powiniene¶ ustawiæ ten parametr na Tak. Proszê mieæ na wzglêdzie, ¿e w³±czenie tej opcji spowoduje bardziej skomplikowan± budowê adresów URL serwisu.\n

\n\nPokazywaæ b³êdy?
\nCzy podczas pracy systemu WebGUI pokazywaæ ostrze¿enia i b³êdy wykonywania zadañ oraz wykonywane w systemie operacje? Jest to przydatne przy uruchamianiu serwisu, aby odnale¼æ miejsca stwarzaj±ce problemy.\n

\n\nPokazywaæ statystyki stron?
\nSystem WebGUI mo¿e zapisywaæ dodatkowe informacje statystyczne dotycz±ce odwiedzanych stron serwisu. Nale¿y mieæ jednak na wzglêdzie ¿e powoduje to dodatkowe obci±¿enie procesora oraz bazy danych systemów bêd± ros³y znacznie szybciej w objêto¶ci. Uaktywnij t± opcjê tylko w przypadku gdy nie masz ju¿ innego zewnêtrznego i poprawnie pracuj±cego systemu statystyk.\n

\n\n\nWersja nazwy serwera
\nWybierz któr± wersjê nazwy serwera chcesz u¿ywaæ w generowanych przez system adresach URL stron. U¿ycie opcji \"Nazwa z konfiguracji\" spowoduje u¿ycie nazwy serwera w postaci takiej jak w pliku konfiguracyjnym WebGUI. U¿ycie opcji \"HTTP_HOST\"spowoduje spowoduje u¿ycie nazwy serwera w postaci takiej jak w zmiennej ¶rodowiskowej serwera HTTP_HOST.\n

',1066641387,NULL); +INSERT INTO international VALUES (71,'USS',16,'

System zg³aszania propozycji to znakomite narzêdzie do aktywizacji u¿ytkowników Twojego serwisu, umo¿liwiaj±ce miêdzy innymi ich wlyw na tre¶æ serwisu i budowanie wzajemnych wiêzi. Ponadto jest to znakomite i bezp³atne ¼ród³o warto¶ciowych tre¶ci dla Twojego systemu.\n

\n\nSzablon
\nWybierz szablon prezentowania systemu zg³aszania propozycji.\n

\n\n\nFiltruj tre¶æ HTML
\nWybierz poziom filtrowania tre¶ci otrzymywanych poprzez system zg³aszania propozycji.\n

\n\nSzablon propozycji
\nWybierz szablon obs³ugi zg³aszania propozycji.\n

\n\nKto mo¿e aprobowaæ?
\nWybierz grupê u¿ytkowników która uprawniona bêdzie do akceptacji lub odrzucania zg³aszanych propozycji.\n

\n\nKto mo¿e uczestniczyæ?
\nWybierz grupê u¿ytkowników która uprawniona bêdzie do zg³aszania propozycji.\n

\n\nPropozycji na stronê
\nJaka jest maksymalna liczba zg³oszonych propozycji prezentowana na pojedyñczej stronie (dotyczy sposobu wy¶wietlania listy/indeksu zg³oszonych propozycji)?\n

\n\nSortowanie po
\nNazwa pola/kolumny wed³ug której ma byæ sortowana lista zg³aszanych propozycji.\n

\n\nPorz±dek sortowania
\nWybierz charakter sortowania listy zg³aszanych propozycji.\n

\n\nDomy¶lny Status
\nJaki jest domy¶lny poziom akceptacji zg³aszanych propozycji? Czy propozycja powinna uzyskaæ automatyczny status akceptacji: Zaaprobowany, Oczekuj±cy, czy te¿ Zablokowany?\n

\nUwaga: Je¿eli automatyczny status zostanie zdefiniowany na oczekuj±cy, nale¿y pamiêtaæ wtedy o regularnym sprawdzaniu w systemie czy nie ma oczekuj±cych zg³oszeñ do rozpatrzenia.\n

\n\nPunkty za zg³oszenie
\nIloma punktami nagradzaæ u¿ytkownika za zg³oszenie propozycji (pole aktywne je¿eli administrator w ustawieniach u¿ytkowników aktywowa³ system punktacji u¿ytkowników za ich aktywno¶æ)?\n

\n\n\nUmo¿liwiæ dyskusjê?
\nZaznaczaj±c to pole umo¿liwiamy u¿ytkownikom zg³aszanie w³asnych uwag (odpowiedzi, komentarzy) do zamieszczonej tre¶ci otrzymanej w wyniku zg³oszonej propozycji.\n

',1066637303,NULL); +INSERT INTO international VALUES (75,'USS',16,'

W szablonach systemu zg³aszania propozycji dostêpne s± do wykorzystania nastêpuj±ce zmienne:\r\n

\r\n\r\nreadmore.label
\r\nNazwa opisuj±ca link umo¿liwiaj±cy przej¶cie do dalszej czê¶ci tekstu (np. czytaj wiêcej...) sformatowana do wy¶wietlenia na ekranie w/g ustawieñ.\r\n

\r\n\r\nresponses.label
\r\nNazwa opisuj±ca link umo¿liwiaj±cy przej¶cie do przegl±dania odpowiedzi do danego zg³oszenia, sformatowana do wy¶wietlenia na ekranie w/g ustawieñ.\r\n

\r\n\r\ncanPost
\r\nWarunek okre¶laj±cy czy bie¿±cy u¿ytkownik mo¿e zg³aszaæ propozycje.\r\n

\r\n\r\npost.url
\r\nAdres URL (link) umo¿liwiaj±cy dodanie nowej propozycji.\r\n

\r\n\r\npost.label
\r\nNazwa opisuj±ca adres zawarty w post.url (sformatowana do wy¶wietlenia na ekranie w/g ustawieñ - np. przet³umaczona zgodnie z ustawieniami jêzykowymi).\r\n

\r\n\r\nsearch.label
\r\nNazwa opisuj±ca adres zawarty w search.url (sformatowana do wy¶wietlenia na ekranie w/g ustawieñ).\r\n

\r\n\r\nsearch.url
\r\nAdres URL (link) umo¿liwiaj±cy w³±czenie lub wy³±czenie wy¶wietlania formularza wyszukiwarki.\r\n

\r\n\r\nsearch.form
\r\nWy¶wietlenie Formularza wyszukiwarki.\r\n

\r\n\r\ntitle.label
\r\nNazwa opisuj±ca kolumnê tytu³ów (sformatowana do wy¶wietlenia na ekranie w/g ustawieñ).\r\n

\r\n\r\nthumbnail.label
\r\nNazwa opisuj±ca kolumnê ikonek (pomniejszeñ zdjêæ za³±czonych do propozycji, o ile by³y za³±czone), sformatowana do wy¶wietlenia na ekranie w/g ustawieñ.\r\n

\r\n\r\ndate.label
\r\nNazwa opisuj±ca kolumnê dat (sformatowana do wy¶wietlenia na ekranie w/g ustawieñ).\r\n

\r\n\r\ndate.updated.label
\r\nNazwa prezentuj±ca datê ostatniej modyfikacji danej propozycji (sformatowana do wy¶wietlenia na ekranie w/g ustawieñ).\r\n

\r\n\r\nby.label
\r\nNazwa prezentuj±ca kto zg³osi³ dan± propozycjê (sformatowana do wy¶wietlenia na ekranie w/g ustawieñ).\r\n

\r\n\r\nsubmissions_loop
\r\nLista zawieraj±ca propozycje.\r\n

\r\nsubmission.id
\r\nUnikalny identyfikator dla danej propozycji.\r\n

\r\n\r\nsubmission.url
\r\nAdres URL (link) pod którym mo¿na obejrzeæ dan± propozycjê.\r\n

\r\n\r\nsubmission.content
\r\nSkrótowa zawarto¶æ tre¶ci danej propozycji.\r\n

\r\n\r\nsubmission.responses
\r\nLiczba odpowiedzi otrzymanych do danej propozycji.\r\n

\r\n\r\nsubmission.title
\r\nTytu³ danej propozycji.\r\n

\r\n\r\nsubmission.userId
\r\nIdentyfikator u¿ytkownika, który zg³osi³ dan± propozycjê.\r\n

\r\n\r\nsubmission.username
\r\nNazwa u¿ytkownika, który zg³osi³ dan± propozycjê.\r\n

\r\n\r\nsubmission.status
\r\nStatus danej propozycji (zaakceptowana, oczekuj±ca, zablokowana).\r\n

\r\n\r\nsubmission.thumbnail
\r\nPomniejszone zdjêcie za³±czone do propozycji, o ile by³o za³±czone.\r\n

\r\n\r\nsubmission.date
\r\nData zg³oszenia danej propozycji.\r\n

\r\n\r\nsubmission.date.updated
\r\nData i czas ostatniej modyfikacji danej propozycji (sformatowana do wy¶wietlenia na ekranie w/g ustawieñ).\r\n

\r\n\r\nsubmission.currentUser
\r\nWarunek okre¶laj±cy czy bie¿±cy u¿ytkownik jest równie¿ autorem danej propozycji.\r\n

\r\n\r\nsubmission.userProfile
\r\nAdres URL (link) do profilu u¿ytkownika, który zg³osi³ dan± propozycjê.\r\n

\r\n\r\nsubmission.secondColumn
\r\nWarunek okre¶laj±cy czy dana propozycja bêdzie prezentowana w drugiej kolumnie (w przypadku wy¶wietlania propozycji w wielu kolumnach).\r\n

\r\n\r\nsubmission.thirdColumn
\r\nWarunek okre¶laj±cy czy dana propozycja bêdzie prezentowana w trzeciej kolumnie (w przypadku wy¶wietlania propozycji w wielu kolumnach).\r\n

\r\n\r\nsubmission.fourthColumn
\r\nWarunek okre¶laj±cy czy dana propozycja bêdzie prezentowana w czwartej kolumnie (w przypadku wy¶wietlania propozycji w wielu kolumnach).\r\n

\r\n\r\nsubmission.fifthColumn
\r\nWarunek okre¶laj±cy czy dana propozycja bêdzie prezentowana w pi±tej kolumnie (w przypadku wy¶wietlania propozycji w wielu kolumnach).\r\n

\r\n\r\n

\r\n

\r\n\r\n\r\nfirstPage
\r\nAdres URL (link) do pierwszej strony listy propozycji (w przypadku listy wielostronicowej).\r\n

\r\n\r\nlastPage
\r\nAdres URL (link) do ostatniej strony listy propozycji (w przypadku listy wielostronicowej).\r\n

\r\n\r\nnextPage
\r\nAdres URL (link) do nastêpnej strony listy propozycji (w przypadku listy wielostronicowej).\r\n

\r\n\r\npreviousPage
\r\nAdres URL (link) do poprzedniej strony listy propozycji (w przypadku listy wielostronicowej).\r\n

\r\n\r\npageList
\r\nLista wszystkich stron z list± propozycji (w przypadku listy wielostronicowej).\r\n

\r\n\r\nmultiplePages
\r\nWarunek okre¶laj±cy czy lista propozycji ma wiêcej ni¿ jedn± stronê.\r\n

',1066637208,NULL); +INSERT INTO international VALUES (77,'USS',16,'

Szablony propozycji definiuj± sposób wy¶wietlania poszczególnych zg³oszeñ w ca³ym systemie zg³aszania propozycji. W szablonach propozycji dostêpne s± do wykorzystania nastêpuj±ce zmienne:\r\n

\r\n\r\ntitle
\r\nTytu³ danej propozycji.\r\n

\r\n\r\ncontent
\r\nPe³na tre¶æ danej propozycji.\r\n

\r\n\r\nuser.label
\r\nEtykieta (tre¶æ sformatowana do wy¶wietlenia na stronie) informuj±ca jaki u¿ytkownik zg³osi³ dan± propozycjê.\r\n

\r\n\r\nuser.profile
\r\nAdres URL (link) do profilu u¿ytkownika, który zg³osi³ dan± propozycjê.\r\n

\r\n\r\nuser.username
\r\nNazwa u¿ytkownika, który zg³osi³ dan± propozycjê.\r\n

\r\n\r\nuser.id
\r\nUnikalny identyfikator u¿ytkownika, który zg³osi³ dan± propozycjê.

\r\n\r\ndate.label
\r\nNazwa pola daty zg³oszenia przez u¿ytkownika danej propozycji (sformatowana do wy¶wietlenia na stronie w/g ustawieñ).\r\n

\r\n\r\ndate.epoch
\r\nData zg³oszenia przez u¿ytkownika danej propozycji w formacie epoch (jest to liczba sekund od 1 stycznia 1970 roku do momentu zg³oszenia danej propozycji).\r\n

\r\n\r\ndate.human
\r\nData i godzina zg³oszenia przez u¿ytkownika danej propozycji wy¶wietlona w formacie zgodnym z ustawieniami danego u¿ytkownika.\r\n

\r\n\r\ndate.updated.label
\r\nNazwa pola data ostatniej edycji danej propozycji (sformatowana do wy¶wietlenia na stronie w/g ustawieñ).\r\n

\r\n\r\ndate.updated.epoch
\r\nData ostatniej edycji w formacie epoch (jest to liczba sekund od 1 stycznia 1970 roku do momentu zg³oszenia danej propozycji).\r\n

\r\n\r\ndate.updated.human
\r\nData i godzina ostatniej edycji danej propozycji wy¶wietlona w formacie zgodnym z ustawieniami danego u¿ytkownika.\r\n

\r\n\r\nstatus.label
\r\nStatus akceptacji danej propozycji (sformatowany do wy¶wietlenia na stronie w/g ustawieñ).\r\n

\r\n\r\nstatus.status
\r\nStatus akceptacji danej propozycji.\r\n

\r\n\r\nviews.label
\r\nLiczba ilo¶ci wy¶wietleñ na stronach danej propozycji (sformatowana do wy¶wietlenia na stronie w/g ustawieñ).\r\n

\r\n\r\nviews.count
\r\nLiczba ilo¶ci wy¶wietleñ na stronach danej propozycji.\r\n

\r\n\r\ncanPost
\r\nWarunek okre¶laj±cy czy dany u¿ytkownik ma prawo zg³aszaæ propozycje.\r\n

\r\n\r\npost.url
\r\nAdres URL (link) do strony umo¿liwiaj±cej zg³oszenie nowej propozycji.\r\n

\r\n\r\npost.label
\r\nNazwa odno¶nika (linku) do strony umo¿liwiaj±cej zg³oszenie nowej propozycji (sformatowana do wy¶wietlenia na stronie w/g ustawieñ).\r\n

\r\n\r\nprevious.more
\r\nWarunek wskazuj±cy czy s± równie¿ inne zg³oszone propozycje do przejrzenia, poprzedzaj±ce dan± propozycjê.\r\n

\r\n\r\nprevious.url
\r\nAdres URL (link) do strony z propozycj± poprzedzaj±c± dan± propozycjê.\r\n

\r\n\r\nprevious.label
\r\nNazwa odno¶nika (linku) do strony z propozycj± poprzedzaj±c± dan± propozycjê (sformatowana do wy¶wietlenia na stronie w/g ustawieñ).\r\n

\r\n\r\nnext.more
\r\nWarunek wskazuj±cy czy s± równie¿ inne zg³oszone propozycje do przejrzenia, nastêpuj±ce po danej propozycji.\r\n

\r\n\r\nnext.url
\r\nAdres URL (link) do strony z nastêpn± w stosunku do danej propozycji.\r\n

\r\n\r\nnext.label
\r\nNazwa odno¶nika (linku) do strony z nastêpn± w stosunku do danej propozycji (sformatowana do wy¶wietlenia na stronie w/g ustawieñ).\r\n

\r\n\r\ncanEdit
\r\nWarunek okre¶laj±cy czy dany u¿ytkownik ma prawo edytowaæ lub usun±æ dan± propozycje.\r\n

\r\n\r\nedit.url
\r\nAdres URL (link) do strony umo¿liwiaj±cej edycjê danej propozycji.\r\n

\r\n\r\nedit.label
\r\nNazwa odno¶nika (linku) do strony umo¿liwiaj±cej edycjê danej propozycji (sformatowana do wy¶wietlenia na stronie w/g ustawieñ).\nr\n

\r\n\r\ndelete.url
\r\nAdres URL (link) do strony umo¿liwiaj±cej usuniêcie danej propozycji.\r\n

\r\n\r\ndelete.label
\r\nNazwa odno¶nika (linku) do strony umo¿liwiaj±cej usuniêcie danej propozycji (sformatowana do wy¶wietlenia na stronie w/g ustawieñ).\r\n

\r\n\r\ncanChangeStatus
\r\nWarunek okre¶laj±cy czy dany u¿ytkownik ma prawo zmieniæ status akceptacji danej propozycji.\r\n

\r\n\r\napprove.url
\r\nAdres URL (link) do strony umo¿liwiaj±cej dokonanie akceptacji danej propozycji.\r\n

\r\n\r\napprove.label
\r\nNazwa odno¶nika (linku) do strony umo¿liwiaj±cej akceptacjê danej propozycji (sformatowana do wy¶wietlenia na stronie w/g ustawieñ).\r\n

\r\n\r\ndeny.url
\r\nAdres URL (link) do strony umo¿liwiaj±cej dokonanie odrzucenia danej propozycji.\r\n

\r\n\r\ndeny.label
\r\nNazwa odno¶nika (linku) do strony umo¿liwiaj±cej odrzucenie danej propozycji (sformatowana do wy¶wietlenia na stronie w/g ustawieñ).\r\n

\r\n\r\nleave.url
\r\nAdres URL (link) do strony umo¿liwiaj±cej pozostawienie propozycji w niezmienionym stanie akceptacji.\r\n

\r\n\r\nleave.label
\r\nNazwa odno¶nika (linku) do strony umo¿liwiaj±cej pozostawienie propozycji w niezmienionym stanie akceptacji (sformatowana do wy¶wietlenia na stronie w/g ustawieñ).\r\n

\r\n\r\ncanReply
\r\nWarunek okre¶laj±cy czy dany u¿ytkownik ma prawo wysy³aæ odpowiedzi na tre¶æ danej propozycji.\r\n

\r\n\r\nreply.url
\r\nAdres URL (link) do strony umo¿liwiaj±cej wys³anie odpowiedzi/w³asnego komentarza na dan± propozycjê.\r\n

\r\n\r\nreply.label
\r\nNazwa odno¶nika (linku) do strony umo¿liwiaj±cej wys³anie odpowiedzi/w³asnego komentarza na dan± propozycjê (sformatowana do wy¶wietlenia na stronie w/g ustawieñ).\r\n

\r\n\r\nsearch.url
\r\nAdres URL (link) umo¿liwiaj±cy wy¶wietlenie formularza wyszukiwania.\r\n

\r\n\r\nsearch.label
\r\nNazwa odno¶nika (linku) umo¿liwiaj±cego wy¶wietlenie formularza wyszukiwania (sformatowana do wy¶wietlenia na stronie w/g ustawieñ).\r\n

\r\n\r\nback.url
\r\nAdres URL (link) umo¿liwiaj±cy powrót u¿ytkownika do g³ównej listy.\r\n

\r\n\r\nback.label
\r\nNazwa odno¶nika (linku) umo¿liwiaj±cego powrót do g³ównej listy (sformatowana do wy¶wietlenia na stronie w/g ustawieñ).\r\n

\r\n\r\nreplies
\r\nKompletna lista wszystkich odpowiedzi na dan± propozycjê.\r\n

',1066637012,NULL); +INSERT INTO international VALUES (82,'USS',16,'Malej±cy',1066636432,NULL); +INSERT INTO international VALUES (81,'USS',16,'@Rosn±cy',1066636389,NULL); +INSERT INTO international VALUES (80,'USS',16,'Porz±dek sortowania',1066636329,NULL); +INSERT INTO international VALUES (79,'USS',16,'Sortowanie po',1066636255,NULL); +INSERT INTO international VALUES (78,'USS',16,'Data aktualizacji',1066636183,NULL); +INSERT INTO international VALUES (71,'MessageBoard',16,'Fora dyskusyjne to najczê¶ciej miejsca wymiany pogl±dów i informacji pomiêdzy u¿ytkownikami danego serwisu internetowego. Wiele organizacji i przedsiêbiorstw u¿ywa ich równie¿ na stronach swoich sieci wewnêtrznych - Intranetów, w celu usprawnienia wspó³pracy nad w³asnymi projektami i przedsiêwziêciami.\r\n

',1066584548,NULL); +INSERT INTO international VALUES (78,'MessageBoard',16,'Forum, Dodawanie/Edycja',1066584480,NULL); +INSERT INTO international VALUES (79,'MessageBoard',16,'

Fora dyskusyjne mog± zawieraæ wiêcej ni¿ jedno forum. Oto lista parametrów przyporz±dkowana do ka¿dego forum dyskusyjnego.\n\n

\n\nTytu³
\nNazwa danego forum.\n

\n\nOpis
\nOpis danego forum.\n

\n\nUWAGA: Wszystkie parametry dla for dyskusyjnych s± tutaj równie¿ dostêpne - zajrzyj na stronê pomocy po wiêcej informacji.',1066584480,NULL); +INSERT INTO international VALUES (74,'MessageBoard',16,'

W szablonach For dyskusyjnych dostêpne s± do wykorzystania nastêpuj±ce zmienne:\n

\n\nforum.add.url
\nAdres URL (link) pod którym dostêpna jest mo¿liwo¶æ dodania forum.\n

\n\nforum.add.label
\nEtykieta/Nazwa jaka bêdzie u¿yta do nazwania odno¶nika (linku) do strony dodawania forum.

\n\ntitle.label
\nEtykieta/Nazwa jaka bêdzie u¿yta do nazwania kolumny z nazwami for dyskusyjnych.\n

\n\nviews.label
\nEtykieta/Nazwa jaka bêdzie u¿yta do nazwania kolumny z liczb± wej¶æ u¿ytkowników do for dyskusyjnych.\n

\n\nrating.label
\nEtykieta/Nazwa jaka bêdzie u¿yta do nazwania kolumny z ocen± for dyskusyjnych.\n

\n\nthreads.label
\nEtykieta/Nazwa jaka bêdzie u¿yta do nazwania kolumny z liczb± w±tków tematycznych for dyskusyjnych.\n

\n\nreplies.label
\nEtykieta/Nazwa jaka bêdzie u¿yta do nazwania kolumny z liczb± odpowiedzi (wpisów u¿ytkowników) na forach dyskusyjnych.\n

\n\nlastpost.label
\nEtykieta/Nazwa jaka bêdzie u¿yta do nazwania kolumny z dat± zg³oszenia ostatniego wpisu na poszczególnych forach dyskusyjnych.\n

\n\n\nforum_loop
\nLista wszystkich dotychczas utworzonych for dyskusyjnych.\n

\n\n

\n\nforum.controls
\nPanel kontrolek systemu WebGUI umo¿liwiaj±cy kontrolê i administrowanie danym forum dyskusyjnym.\n

\n\nforum.count
\nLiczba porz±dkowa wskazuj±ca pozycjê danego forum na li¶cie for dyskusyjnych.\n

\n\nforum.title
\nNazwa danego forum dyskusyjnego.\n

\n\nforum.description
\nSzczegó³owy opis danego forum dyskusyjnego.\n

\n\nforum.replies
\nSumaryczna liczba wszystkich odpowiedzi (wpisów u¿ytkowników) na w±tki zawarte w danym forum dyskusyjnym.\n

\n\nforum.rating
\n¦rednia ocena wszystkich wpisów u¿ytkowników na danym forum dyskusyjnym.\n

\n\nforum.views
\nSumaryczna liczba wszystkich wy¶wietleñ wpisów u¿ytkowników na danym forum dyskusyjnym.\n\n

\n\nforum.threads
\nSumaryczna liczba wszystkich w±tków na danym forum dyskusyjnym.\n

\n\nforum.url
\nAdres URL (link) pod którym dostêpne jest dane forum dyskusyjne.\n

\n\nforum.lastpost.url
\nAdres URL (link) pod którym dostêpny jest ostatnio dodany wpis u¿ytkownika na danym forum dyskusyjnym.\n

\n\nforum.lastpost.date
\nData dokonania ostatniego wpisu na danym forum.\n

\n\nforum.lastpost.time
\nDok³adny czas dokonania ostatniego wpisu na danym forum.\n

\n\nforum.lastpost.epoch
\nData dokonania ostatniego wpisu na danym forum podana w standardzie epoch.\n\n

\n\nforum.lastpost.subject
\nTemat ostatnio dokonanego wpisu na danym forum dyskusyjnym.\n

\n\nforum.lastpost.user.id
\nIdentyfikator u¿ytkownika, który dokona³ najnowszego wpisu na danym forum dyskusyjnym.\n

\n\nforum.lastpost.user.name
\nNazwa u¿ytkownika, który dokona³ najnowszego wpisu na danym forum dyskusyjnym.\n

\n\nforum.lastpost.user.profile
\nAdres URL (link) pod którym dostêpny jest profil u¿ytkownika, który dokona³ najnowszego wpisu na danym forum dyskusyjnym.\n

\n\nforum.lastpost.user.isVisitor
\nWarunek okre¶laj±cy czy najnowszy wpis na danym forum dyskusyjnym by³ dokonany przez anonimowego u¿ytkownika, czy te¿ zalogowanego cz³onka danego forum.\n

\n\n\n

\n

\n\ndefault.listing
\nStrona startowa for dyskusyjnych wy¶wietlona zgodnie ze zdefiniowanym szablonem for dyskusyjnych.\n

\n\ndefault.description
\nOpis strony startowej for dyskusyjnych.\n

\n\ndefault.title
\nTytu³ strony startowej for dyskusyjnych.\n

\n\ndefault.controls
\nPanel kontrolek systemu WebGUI umo¿liwiaj±cy kontrolê i administrowanie stron± startow± for dyskusyjnych.\n

\n\nareMultipleForums
\nWarun\nek okre¶laj±cy, czy w systemie jest zdefiniowane wiêcej ni¿ jedno forum dyskusyjne.\n

',1066584179,NULL); +INSERT INTO international VALUES (1054,'WebGUI',16,'W³a¶ciwo¶ci Forum (Dyskusje) ',1066583000,NULL); +INSERT INTO international VALUES (1067,'WebGUI',16,'Szablon wyszukiwarki na forum',1066582842,NULL); +INSERT INTO international VALUES (1068,'WebGUI',16,'

W szablonach wyszukiwarek dostêpne s± do wykorzystania nastêpuj±ce zmienne:\n

\n\ncallback.url
\nAdres URL (link) do strony z której nast±pi³o wywo³anie np. do artyku³u lub wys³anej przez u¿ytkownika wiadomo¶ci (wpisu na forum).\n

\n\ncallback.label
\nWy¶wietlana na ekranie nazwa odno¶nika (linku) do strony zawartej w zmiennej callback.url.\n

\n\nform.begin
\nNag³ówek i otwarcie formularza (wstawienie na stronê odpowiedzialnego za to kodu HTML).\n

\n\nsearch.label
\nNazwa opisuj±ca stronê wyszukiwania.\n

\n\nall.label
\nNazwa opisuj±ca element zawarty w zmiennej all.form.\n

\n\nall.form
\nElement formularza umo¿liwiaj±cy wyszukiwanie bazuj±ce na wyst±pieniu wszystkich wprowadzonych w wyszukiwarce s³owach.\n

\n\nexactphrase.label
\nNazwa opisuj±ca element zawarty w zmiennej exactphrase.form.\n

\n\nexactphrase.form
\nElement formularza umo¿liwiaj±cy wyszukiwanie dok³adnie w/g wprowadzonego w wyszukiwarce zwrotu.\n

\n\nwithout.label
\nNazwa opisuj±ca element zawarty w zmiennej without.form.\n

\n\nwithout.form
\nElement formularza umo¿liwiaj±cy wyszukiwanie zasobów nie zawieraj±cych podanych w wyszukiwarce s³ów.\n

\n\natleastone.label
\nNazwa opisuj±ca element zawarty w zmiennej atleastone.form.\n

\n\natleastone.form
\nElement formularza umo¿liwiaj±cy wyszukiwanie bazuj±ce na wyst±pieniu przynajmniej jednego z wprowadzonych w wyszukiwarce s³ów.\n

\n\nresults.label
\nNazwa opisuj±ca element zawarty w zmiennej results.form.\n

\n\nresults.form
\nElement formularza umo¿liwiaj±cy wybór maksymalnej liczby wyszukanych postów prezentowanych na pojedyñczej stronie wyników.\n

\n\nform.search
\nPrzycisk rozpoczynaj±cy wyszukiwanie.\n

\n\nform.end
\nzamkniêcie formularza (wstawienie na stronê odpowiedzialnego za to kodu HTML) i stopka.\n

\n\nthread.list.url
\nAdres URL (link) umo¿liwiaj±cy powrót do listy w±tków.\n

\n\nthread.list.label
\nNazwa opisuj±ca adres URL/link zawarty w zmiennej thread.list.url.\n

\n\npost.subject.label
\nNazwa opisuj±ca kolumnê z informacj± o tematach wpisów u¿ytkowników.\n

\n\npost.date.label
\nNazwa opisuj±ca kolumnê z informacj± o datach wpisów u¿ytkowników.\n

\n\npost.user.label
\nNazwa opisuj±ca kolumnê z informacj± o u¿ytkownikach, którzy dokonali wpisów.\n

\n\npost_loop
\nZestaw danych zawieraj±cych listê wszystkich wyszukanych pozycji.\n

\n\n

\n\npost.subject
\nTemat danego wpisu u¿ytkownika.\n

\n\npost.url
\nAdres URL (link) do strony wy¶wietlaj±cej dany wpis u¿ytkownika.\n

\n\npost.epoch
\nData zamieszczenia danego wpisu u¿ytkownika w formacie epoch.\n

\n\npost.date
\nData zamieszczenia danego wpisu u¿ytkownika (sformatowana do wy¶wietlenia na ekranie w/g ustawieñ).\n

\n\npost.time
\nCzas zamieszczenia danego wpisu u¿ytkownika (sformatowany do wy¶wietlenia na ekranie w/g ustawieñ).\n

\n\npost.user.id
\nIdentyfikator u¿ytkownika który wys³a³ dany wpis.\n

\n\npost.user.name
\nNazwa u¿ytkownika który wys³a³ dany wpis.\n

\n\npost.user.profile
\nAdres URL (link) do strony z profilem u¿ytkownika który wys³a³ dany wpis.\n

\n\n

\n\n

\n\nfirstpage
\nAdres URL (link) do pierwszej strony wyszukanych wpisów u¿ytkowników (w przypadku listy wielostronicowej).\n

\n\nlastpage
\nAdres URL (link) do ostatniej strony wyszukanych wpisów u¿ytkowników (w przypadku listy wielostronicowej).\n

\n\nnextpage
\nAdres URL (link) do nastêpnej strony wyszukanych wpisów u¿ytkowników (w przypadku listy wielostronicowej).\n

\n\npagelist
\nLista wszystkich stron z list± wyszukanych wpisów u¿ytkowników (w przypadku listy wielostronicowej).\n

\n\npreviouspage
\nAdres URL (link) do poprzedniej strony wyszukanych wpisów u¿ytkowników (w przypadku listy wielostronicowej).\n

\n\nmultiplepages
\nWarunek okre¶laj±cy czy lista wyszukanych wpisów u¿ytkowników ma wiêcej ni¿ jedn± stronê.\n

\n\nnumberOfPages
\nLiczba stron listy wyszukanych stron (w przypadku listy wielostronicowej).\n

\n\npageNumber
\nNumer danej strony w li¶cie wyszukanych stron (w przypadku listy wielostronicowej).\n

',1066582842,NULL); +INSERT INTO international VALUES (1066,'WebGUI',16,'

W szablonach postów forum dostêpne s± do wykorzystania nastêpuj±ce zmienne:\n

\n\nnewpost.header
\nDomy¶lny nag³ówek formularza postu.\n

\n\nnewpost.isNewThread
\nWarunek okre¶laj±cy czy dany post zapocz±tkowuje nowy w±tek na forum.\n

\n\nnewpost.isReply
\nWarunek okre¶laj±cy czy dany post jest odpowiedzi± na inny post na forum.\n

\n\nUWAGA: Je¿eli dany post jest odpowiedzi±, wtedy zmienne szablonu postu s± do³aczone i zawieraj± dane z postu na który odpowiadamy.\n

\n\nnewpost.isEdit
\nWarunek okre¶laj±cy czy dany post jest edycj± istniej±cego ju¿ postu.\n

\n\nuser.isVisitor
\nWarunek okre¶laj±cy czy bie¿±cy u¿ytkownik nie jest zalogowany (anonimowy).\n

\n\nnewpost.isNewMessage
\nWarunek sprawdzaj±cy przeciwieñstwo warunku newpost.isEdit, czyli czy dany post jest nowym postem.\n

\n\nform.begin
\nnag³ówek i otwarcie formularza (wstawienie na stronê odpowiedzialnego za to kodu HTML).\n

\n\nsticky.label
\nNazwa opisuj±ca element zawarty w zmiennej sticky.form.\n

\n\nsticky.form
\nElement formularza umo¿liwiaj±cy oznaczenie w±tku jako \"przyklejonego\" (w±tek pojawia siê wtedy na pocz±tku listy postów).\n

\n\nsubscribe.label
\nNazwa opisuj±ca element zawarty w zmiennej subscribe.form.\n

\n\nsubscribe.form
\nElement formularza umo¿liwiaj±cy subskrypcjê w±tku.\n

\n\nlock.label
\nNazwa opisuj±ca element zawarty w zmiennej lock.form.\n

\n\nlock.form
\nElement formularza umo¿liwiaj±cy zablokowanie w±tku.\n

\n\ncontenttype.label
\nNazwa opisuj±ca element zawarty w zmiennej contenttype.form.\n

\n\ncontentType.form
\nElement formularza umo¿liwiaj±cy wybór typu tre¶ci postu.\n

\n\nuser.isModerator
\nWarunek okre¶laj±cy czy bie¿±cy u¿ytkownik ma uprawnienia cenzora (moderatora) forum.\n

\n\nallowReplacements
\nWarunek okre¶laj±cy czy dane forum zezwala na cenzurê postów (zamianê u¿ytych s³ów i zwrotów na inne w/g przygotowanej listy).\n

\n\n\nmessage.label
\nNazwa opisuj±ca element zawarty w zmiennej message.form.\n

\n\nmessage.form
\nElement formularza umo¿liwiaj±cy wprowadzenie tre¶ci postu.\n

\n\nvisitorName.label
\nNazwa opisuj±ca element zawarty w zmiennej visitorName.form.\n

\n\nvisitorName.form
\nElement formularza umo¿liwiaj±cy wprowdzenie nazwy u¿ytkownika, je¿eli bie¿±cy u¿ytownik nie jest zalogowany (anonimowy).\n

\n\nform.submit
\nPrzycisk wysy³aj±cy post.\n

\n\nsubject.label
\nNazwa opisuj±ca element zawarty w zmiennej subject.form.\n

\n\nsubject.form
\nElement formularza umo¿liwiaj±cy wprowadzenie tematu/tytu³u postu.\n

\n\n\nform.end
\nzamkniêcie formularza (wstawienie na stronê odpowiedzialnego za to kodu HTML) i jego stopka.\n

',1066581759,NULL); +INSERT INTO international VALUES (1065,'WebGUI',16,'Szablon formularza wiadomo¶ci forum (wpisów)',1066581759,NULL); +INSERT INTO international VALUES (1064,'WebGUI',16,'Dodaj wiadomo¶æ',1066580782,NULL); +INSERT INTO international VALUES (1063,'WebGUI',16,'

W szablonach powiadomieñ na forum dostêpne s± do wykorzystania nastêpuj±ce zmienne:\n\n

\nnotify.subscription.message
\nTre¶æ wiadomo¶ci informuj±cej, ¿e u¿ytkownik otrzyma³ niniejsz± wiadomo¶æ poniewa¿ dokona³ wcze¶niej subskrypcji tego forum lub w±tku.\n

\n\nUwaga:W szablonie powiadomieñ mo¿na równie¿ stosowaæ zmienne dostêpne w szablonie wiadomo¶ci (wpisu).\n

',1066580520,NULL); +INSERT INTO international VALUES (1062,'WebGUI',16,'Szablon powiadomieñ na forum',1066580520,NULL); +INSERT INTO international VALUES (1060,'WebGUI',16,'Szablon w±tków forum',1066578513,NULL); +INSERT INTO international VALUES (1056,'WebGUI',16,'Szablon forum',1066576831,NULL); +INSERT INTO international VALUES (1058,'WebGUI',16,'Szablon prezentowania wiadomo¶ci (wpisów) forum',1066576785,NULL); +INSERT INTO international VALUES (71,'EventsCalendar',16,'Kalendarze wydarzeñ u¿ywane s± w wielu sieciach intranetowych umo¿liwiaj±c przechowywanie i prezentowanie informacji o wydarzeniach dotycz±cych ca³ej organizacji.\nPodobnie, kalendarze zdarzeñ na stronach internetowych przedsiêbiorstw i organizacji, s± ¶wietnym sposobem informowania o maj±cych nast±piæ zdarzeniach wa¿nych z punktu widzenia klienta/u¿ytkownika tych stron - przyk³adowo o maj±cych nast±piæ promocjach, itp.\n

\n\nSzablon
\nWybór szablonu prezentowania kalendarza wydarzeñ.\n

\n\nSzablon wydarzenia
\nWybór szablonu prezentowania wydarzenia w kalendarzu.\n

\n\nMiesi±c pocz±tkowy
\nWybór miesi±ca startu kalendarza. Je¿eli wybierzesz \"Bie¿±cy\" to kalendarz zawsze bêdzie zaczyna³ prezentacjê wydarzeñ od bie¿±cego miesi±ca. Je¿eli wybierzesz \"Pierwszy w kalendarzu\", to kalendarz bêdzie rozpoczyna³ prezentacjê wydarzeñ od najwcze¶niejszej daty dostêpnej w kalendarzu.\n

\n\nMiesi±c koñcowy
\nWybór miesi±ca koñcowego kalendarza. Je¿eli wybierzesz \"Poka¿ 6 miesiêcy od pocz±tkowego\", to kalendarz bêdzie prezentowa³ tylko wydarzenia z zakresu 6 miesiêcy od miesi±ca pocz±tkowego. Je¿eli wybierzesz \"Bie¿±cy\", to kalendarz bêdzie prezentowa³ wydarzenia tylko z bie¿±cego miesi±ca. Je¿eli wybierzesz \"Ostatni w kalendarzu\", to kalendarz bêdzie prezentowa³ wydarzenia a¿ do najpó¼niejszej dostêpnej daty w kalendarzu.\n

\n\nDomy¶lny miesi±c
\nWybór miesi±ca od którego prezentowane bêd± wydarzenia przy wej¶ciu u¿ytkownika na stronê kalendarza.\n

\n\nCzy g³ówny?
\nJe¿eli pole zdefiniowane na tak, to oznacza ¿e dany kalendarz bêdzie prezentowa³ wszystkie zdarzenia z innych kalendarzy w systemie.\n

\n\nPodziel strony po
\nJe¿eli u¿ywamy stylu prezentacji wydarzeñ kalendarza w postaci listy, to jak wiele wydarzeñ ma byæ maksymalnie prezentowanych na ka¿dej stronie?\n

\nCo dalej
\nWybierz \'Dodaj nowe wydarzenie\' je¿eli po utworzeniu kalendarza chcesz przej¶æ do definiowania wydarzenia.\n

\n\nUwaga: Zdarzenia które ju¿ siê wydarzy³y nie bêd± wy¶wietlane w kalendarzu.\n

\n
\nUwaga: dla kalendarza wydarzeñ przeznaczony jest nastêpuj±cy styl CSS.\n

\n.eventTitle
\ndo prezentacji stylu tytu³u pojedyñczego wydarzenia.',1066572488,NULL); +INSERT INTO international VALUES (99,'EventsCalendar',16,'Czy g³ówny?',1066511974,NULL); +INSERT INTO international VALUES (1053,'WebGUI',16,'Definiuj zamienniki zwrotów',1066419031,NULL); +INSERT INTO international VALUES (1052,'WebGUI',16,'Edycja zamienników zwrotów',1066418983,NULL); +INSERT INTO international VALUES (1051,'WebGUI',16,'Zamieñ na',1066418940,NULL); +INSERT INTO international VALUES (1050,'WebGUI',16,'Zwrot',1066418903,NULL); +INSERT INTO international VALUES (1049,'WebGUI',16,'ID zamiennika',1066418840,NULL); +INSERT INTO international VALUES (1048,'WebGUI',16,'Lista zamienników.',1066418767,NULL); +INSERT INTO international VALUES (1047,'WebGUI',16,'Dodaj zamienniki.',1066418669,NULL); +INSERT INTO international VALUES (1046,'WebGUI',16,'Zarchiwizowany',1066406723,NULL); +INSERT INTO international VALUES (1045,'WebGUI',16,'Zagnie¿d¿ony',1066405110,NULL); +INSERT INTO international VALUES (1044,'WebGUI',16,'Szablon wyszukiwarki',1066394621,NULL); +INSERT INTO international VALUES (1043,'WebGUI',16,'Archiwizuj po',1066394455,NULL); +INSERT INTO international VALUES (1042,'WebGUI',16,'Wpisów na stronie',1066394411,NULL); +INSERT INTO international VALUES (1041,'WebGUI',16,'Odblokuj w±tek',1066073967,NULL); +INSERT INTO international VALUES (1040,'WebGUI',16,'Blokuj w±tek',1066073923,NULL); +INSERT INTO international VALUES (1039,'WebGUI',16,'Powrót',1066073289,NULL); +INSERT INTO international VALUES (1038,'WebGUI',16,'\"Odklej\" w±tek',1066065454,NULL); +INSERT INTO international VALUES (1037,'WebGUI',16,'\"Przyklej\" w±tek',1066065402,NULL); +INSERT INTO international VALUES (77,'MessageBoard',16,' Edycja Forum',1066061199,NULL); +INSERT INTO international VALUES (76,'MessageBoard',16,'Czy na pewno chcesz skasowaæ to forum i wszystkie zwi±zane z nim wpisy u¿ytkowników?',1066055963,NULL); +INSERT INTO international VALUES (75,'MessageBoard',16,'Dodaj forum',1066038194,NULL); +INSERT INTO international VALUES (1036,'WebGUI',16,'W±tków',1066038155,NULL); +INSERT INTO international VALUES (1035,'WebGUI',16,'Szablon powiadomienia',1066034661,NULL); +INSERT INTO international VALUES (1034,'WebGUI',16,'Szablon formularza wiadomo¶ci',1066034620,NULL); +INSERT INTO international VALUES (1033,'WebGUI',16,'Szablon wpisu',1066034603,NULL); +INSERT INTO international VALUES (1032,'WebGUI',16,'Szablon w±tku',1066034586,NULL); +INSERT INTO international VALUES (1031,'WebGUI',16,'Szablon Forum',1066034528,NULL); +INSERT INTO international VALUES (1028,'WebGUI',16,'Moderowaæ wpisy?',1065966284,NULL); +INSERT INTO international VALUES (1027,'WebGUI',16,'Zezwalaæ na zamienniki?',1065966244,NULL); +INSERT INTO international VALUES (1026,'WebGUI',16,'Zaawansowana edycja?',1065966219,NULL); +INSERT INTO international VALUES (1023,'WebGUI',16,'Wypisz siê z dyskusji',1065875186,NULL); +INSERT INTO international VALUES (1022,'WebGUI',16,'Zapisz siê do dyskusji',1065875027,NULL); +INSERT INTO international VALUES (1021,'WebGUI',16,'Oceñ wiadomo¶æ',1065356764,NULL); +INSERT INTO international VALUES (1020,'WebGUI',16,'Ocena',1065280882,NULL); +INSERT INTO international VALUES (1019,'WebGUI',16,'Powrót do listy w±tków',1065280160,NULL); +INSERT INTO international VALUES (1018,'WebGUI',16,'Rozpocznij nowy w±tek',1065279960,NULL); +INSERT INTO international VALUES (1013,'WebGUI',16,'\"Przykleiæ\" wpis?',1060434033,NULL); +INSERT INTO international VALUES (1012,'WebGUI',16,'Zablokowaæ ten w±tek?',1060433963,NULL); +INSERT INTO international VALUES (13,'HttpProxy',16,'Filtruj od:',1060433963,NULL); +INSERT INTO international VALUES (14,'HttpProxy',16,'Filtruj do:',1060433963,NULL); +INSERT INTO international VALUES (1010,'WebGUI',16,'Tylko tekst',1060433369,NULL); +INSERT INTO international VALUES (1011,'WebGUI',16,'Kod ¼ród³owy',1060433339,NULL); +INSERT INTO international VALUES (1009,'WebGUI',16,'Tylko HTML',1060433286,NULL); +INSERT INTO international VALUES (1008,'WebGUI',16,'Tekst i HTML',1060433234,NULL); +INSERT INTO international VALUES (1007,'WebGUI',16,'Typ tre¶ci wpisów',1060432032,NULL); +INSERT INTO international VALUES (4,'Survey',16,'

Ankiety pozwalaj± na pozyskiwanie informacji od u¿ytkowników serwisu. W przypadku ankiet WebGUI, mo¿esz je równie¿ u¿yæ w celu przetestowania wiedzy Twoich u¿ytkowników za pomoc± quizów.\r\n

\r\n\r\nPorz±dek pytañ
\r\nPorz±dek w jakim bêd± zadawane pytania. Sekwencyjny oznacza kolejno¶æ zadawania pytañ zgodn± z kolejno¶ci± tworzenia tych pytañ. Losowy oznacza losow± kolejno¶æ zadawania pytañ. Porz±dek wed³ug odpowiedzi oznacza wy¶wietlanie kolejnych pytañ stosownie do udzielanych przez u¿ytkownika odpowiedzi.\r\n

\r\n\r\nTryb
\r\nDomy¶lnym trybem jest ankieta umo¿liwiaj±ca zadawanie pytañ i uzyskiwanie na nie odpowiedzi Twoich u¿ytkowników. W trybie quizu, tylko jedna odpowied¼ na pytanie jest w³a¶ciwa - umo¿liwia to testowanie przez u¿ytkowników swojej wiedzy na zadawane w quizie pytania.\r\n

\r\n\r\nAnonimowe odpowiedzi?
\r\nWybierz czy chcesz aby by³a zapisywana informacja pozwalaj±ca na identyfikacjê u¿ytkownika bior±cego udzia³ w quizie oraz udzielonej przez niego odpowiedzi. Wybieraj±c opcjê \"Nie\" powodujemy ¿e bêdzie notowany adres IP u¿ytkownika oraz identyfikator i nazwa u¿ytkownika o ile jest zalogowany do WebGUI. Ta informacja bêdzie nastêpnie dostêpna w raportach z ankiety. Wybieraj±c opcjê \"Tak\" powodujemy, ¿e omawiane trzy pola informacji o u¿ytkowniku bêd± zablokowane i niedostêpne w raportach z ankiety .\r\n

\r\n\r\nKto mo¿e braæ udzia³ w ankiecie?
\r\nKtórzy u¿ytkownicy mog± braæ udzia³ w ankiecie?\r\n

\r\n\r\n\r\nKto mo¿e ogl±daæ wyniki?
\r\nKto mo¿e ogl±daæ rezultaty ankiety?\r\n

\r\n\r\n\r\nCo dalej?
\r\nPozostawiaj±c domy¶ln± warto¶æ pola, nastêpn± czynno¶ci± bêdzie dodanie pytania do tworzonej ankiety.\r\n

',1059069492,NULL); +INSERT INTO international VALUES (81,'Survey',16,'Anonimowe odpowiedzi?',1059069492,NULL); +INSERT INTO international VALUES (1004,'WebGUI',16,'Czas przechowywania wyników zapytañ SQL',1057208065,NULL); +INSERT INTO international VALUES (1005,'WebGUI',16,'Zapytanie SQL',1057208065,NULL); +INSERT INTO international VALUES (1006,'WebGUI',16,'Logowanie szyfrowane?',1057208065,NULL); +INSERT INTO international VALUES (7,'SiteMap',16,'Alfabetycznie?',1057208065,NULL); +INSERT INTO international VALUES (3,'SyndicatedContent',16,'Liczba Nag³ówków',1057208065,NULL); +INSERT INTO international VALUES (90,'DataForm',16,'Usuñ ten wpis.',1057208065,NULL); +INSERT INTO international VALUES (6,'WobjectProxy',16,'

Dziêki wykonaniu proxy danego obiektu (utworzeniu skrótu/dowi±zania, czy ujmuj±c rzecz inaczej, lustrzanego odbicia obiektu) mo¿esz ulokowaæ obiekt umieszczony pierwotnie na jednej stronie w serwisie na dowolnej innej stronie serwisu.\n

\n\nUwaga: Wykonanie skrótu do obiektu nie jest mo¿liwe z opcji menu \"Dodaj tre¶æ...\", ale zamiast tego poprzez ikonkê skrótu na panelach narzêdziowych obiektów. Wybieraj±c t± ikonkê obiekt jest kopiowany do schowka, umo¿liwiaj±c pó¼niejsze jego wklejenie na inn± stronê. Po wklejeniu, podczas edycji takiego obiektu dostêpne s± dodatkowe, opisane poni¿ej pola.\n

\n\nObiekt g³ówny proxy
\nAdres URL (link) do strony zawieraj±cej oryginalny obiekt do którego tworzone jest proxy (skrót).\n

\n\nNadpisaæ tytu³?
\nWybierz tak, je¿eli chcesz wykorzystaæ tytu³ kopii proxy obiektu zamiast oryginalnego tytu³u obiektu g³ównego.\n

\n\nNadpisaæ opis?
\nWybierz tak, je¿eli chcesz wykorzystaæ opis kopii proxy obiektu zamiast oryginalnego opisu obiektu g³ównego.\n

\n\nNadpisaæ wy¶wietlany tytu³?
\nWybierz tak, je¿eli chcesz wykorzystaæ ustawienia wy¶wietlania tytu³u kopii proxy obiektu zamiast ustawieñ oryginalnego obiektu.\n

\n\nNadpisaæ szablon?
\nWybierz tak, je¿eli chcesz wykorzystaæ szablon kopii proxy obiektu zamiast oryginalnego szablonu obiektu do którego wykonywane by³o proxy (obiektu g³ównego).\n

',1057091098,NULL); +INSERT INTO international VALUES (840,'WebGUI',16,'Poni¿sze makra s± zaprojektowane w celu dostarczenia funkcjonalno¶ci jêzyka programowania podczas tworzenia serwisu. S± one bardzo u¿yteczne je¿eli poprawnie zostan± u¿yte, natomiast mog± byæ niebezpieczne gdy s± u¿yte nieodpowiednio - nale¿y uwa¿aæ i starannie planowaæ u¿ywanie makr. \n\n

\nUWAGA: Makra te zawarte s± w systemie WebGUI aby znacznie zwiêkszyæ funkcjonalno¶æ mechanizmów wy¶wietlania zawarto¶ci serwisu. Pomimo tego ¿e mo¿na dziêki nim pisaæ nawet proste aplikacje dla serwisu, nie s± one do tego przeznaczone - je¿eli zamierzasz tworzyæ takie aplikacje, po prostu napisz makro. =) Domy¶lnie makra s± zablokowane przed u¿yciem aby chroniæ bezpieczeñstwo twojego serwisu - tylko administrator mo¿e odblokowaæ mo¿liwo¶æ ich u¿ywania.\n\n

\n\n^D; or ^D(); - Date
\nBie¿±ca data i czas.\n

\n\nDatê mo¿na skonfigurowaæ u¿ywaj±c dodatkowo symboli definiowania formatu. Przyk³adowo, je¿eli zdefiniowa³e¶ makro w postaci ^D(\"%c %D, %y\"); to wy¶wietli ono datê w przyk³adowej postaci Luty 26, 2004. Oto dostêpne symbole definiowania formatu daty:\n

\n\n
%%%
%yrok w postaci czterocyfrowej liczby
%Yrok w postaci dwucyfrowej liczby
%mmiesi±c w postaci dwucyfrowej liczby
%Mliczba oznaczaj±ca numer miesi±ca
%cnazwa miesi±ca
%ddzieñ miesi±ca w postaci dwucyfrowej liczby
%Dliczba oznaczaj±ca dzieñ miesi±ca
%wnazwa dnia tygodnia
%hdwucyfrowa liczba oznaczaj±ca godzinê dnia (w zakresie 0-12)
%Hliczba oznaczaj±ca godzinê dnia (w zakresie 0-12)
%jdwucyfrowa liczba oznaczaj±ca godzinê dnia (w zakresie 0-24)
%Jliczba oznaczaj±ca godzinê dnia (w zakresie 0-24)
%ppisane ma³± liter± s³owo am/pm (oznaczaj±cê porê przed i po po³udniu)
%Ppisane du¿± liter± s³owo AM/PM (oznaczaj±ce porê przed i po po³udniu)
%zustawiony przez u¿ytkownika format prezentowania daty
%Zustawiony przez u¿ytkownika format prezentowania czasu
\n

\n\n^Env()
\nWy¶wietla warto¶æ zmiennej ¶rodowiskowej serwera podanej jako parametr. Na ka¿dym serwerze dostêpny jest inny zestaw i warto¶ci zmiennych ¶rodowiskowych ? zestaw zmiennych w³asnego serwera mo¿esz obejrzeæ wywo³uj±c w katalogu g³ównym twojego serwisu plik o nazwie env.pl (http://www.adrestwojegoserwisu.pl/env.pl)\n

\n\nMakro powinno byæ wywo³ywane w przyk³adowej postaci ^Env(\"REMOTE_ADDR\");\n

\n\n^Execute();
\nUmo¿liwia wykonanie przez administratora lub mened¿era zawarto¶ci, programu dostêpnego na serwerze ? przyk³adowe wywo³anie: ^Execute(\"/podkatalog/plik.sh\");.\n

\n\n\n^FormParam();
\nTo makro g³ównie jest wykorzystywane do generowania dynamicznych zapytañ do bazy danych w raportach SQL Reports. Dziêki temu makro mo¿esz uzyskaæ warto¶æ dowolnego pola formularza, podaj±c jako parametr nazwê tego pola, przyk³adowo: ^FormParam(\"Numertelefonu\");\n

\n\n\n^If();
\nProsta instrukcja warunkowa (IF/THEN/ELSE ? ?Je¿eli warunek jest spe³niony to wykonaj pierwsz± instrukcji, w przeciwnym wypadku wykonaj drug± instrukcjê?) umo¿liwiaj±ca kontrolê wygl±du strony i wy¶wietlanych wiadomo¶ci.\n

\nPrzyk³ady:
\nWy¶wietla napis Szczê¶liwego Nowego Roku w dniu 1 stycznia:\n ^If(\'^D(\"%m%d\");\' eq \'0101\' , Szczê¶liwego Nowego Roku);\n

\nWy¶wietla wiadomo¶æ dla u¿ytkowników z podsieci 192.168.1.* oraz dla u¿ytkowników spoza tej sieci:
\n^If(\'^Env(\"REMOTE_ADDR\");\' =~ /^192.168.1/,\"Witaj u¿ytkowniku naszej sieci 192.168.1.*\",\"Witaj obcy przybyszu\");\n

\nWy¶wietla wiadomo¶æ dla u¿ytkowników korzystaj±cych z systemu Windows:
\n ^If(\'^Env(\"HTTP_USER_AGENT\");\' =~ /windows/i,\"Czy wiesz ¿e system Linux jest bezp³atny?\");\n

\nWy¶wietla wiadomo¶æ dla u¿ytkowników korzystaj±cych z dostêpu poprzez serwer proxy:
\n ^If(\'^Env(\"HTTP_VIA\");\' ne \"\", Korzystasz z serwera proxy, Nie korzystasz z serwera proxy...);\n

\nWy¶wietla wiadomo¶æ dla u¿ytkowników zale¿n± od pory dnia:
\n ^If(^D(\"%J\");<=12,Witaj o poranku,^If(^D(\"%J\");<=18,Witaj po po³udniu,Dobry wieczór););\n

\n\n^Include();
\nUmo¿liwia administratorowi lub mened¿erowi zawarto¶ci wstawienie w tre¶æ pliku dostêpnego na serwerze. \n

\nPrzyk³ad: ^Include(\"/pdkatalog/plik.html\");\n

\n\n^International();
\nWy¶wietla przet³umaczony zwrot podany jako parametr, wed³ug t³umaczeñ dostêpnych w systemie WebGUI.\n

\nPrzyk³ad: ^International(45,\"Article\");\n

\n\n\n^Quote();
\nFormatuje podany tekst jako tekst zapytania do bazy danych, dziêki czemu bêdzie ono mog³o byæ pó¼niej u¿yte do wykonania zapytania SQL.\n

\n\n\n^Page();
\nTo makro pozwala uzyskaæ informacje o bie¿±cej stronie. Przyk³adowo mo¿na uzyskaæ w ten sposób adres URL strony, podaj±c makro w postaci ^Page(\"urlizedTitle\"); lub wy¶wietliæ tytu³ menu podaj±c makro w postaci ^Page(\"menuTitle\");.\n

\n\n^SQL();
\nRaport SQL sk³adaj±cy siê z nie wiêcej ni¿ jednej linii danych, umo¿liwiaj±cy szybki dostêp do konkretnej informacji z bazy danych. To makro skutecznie poszerza mo¿liwo¶ci obiektu raportu SQL. Dane mog± byæ pozycjonowane na stronie za pomoc± numerycznych makr (^0; ^1; ^2; etc) oraz mo¿liwe jest równie¿ u¿ycie makra ^rownum; dostêpnego równie¿ w obiektach raportów SQL. Przyk³ady:

\n ^SQL(\"select count(*) from users\",\"W systemie istnieje ^0; u¿ytkowników.\");\n

\n^SQL(\"select userId,username from users order by username\",\"<a href=\'^/;?op=viewProfile&uid=^0;\'>^1;</a><br>\");\n

\n^URLEncode();
\nTo makro g³ównie jest u¿yteczne w raportach SQL, ale mo¿e byæ równie¿ dowolnie u¿yte w innych miejscach. Podany jako parametr tekst, jest przetwarzany do postaci jaka mo¿e byæ wykorzystywana w adresie URL (przyk³adowo do definiowania warto¶ci parametrów wywo³ywanego adresu). Sk³adnia tego makro jest nastêpuj±ca: ^URLEncode(\"oto mój tekst\");\n

\n\n\n^User();
\nTo makro umo¿liwia wy¶wietlenie dowolnej informacji dostêpnej w profilu lub danych konta u¿ytkownika. Przyk³adowo, je¿eli chcesz wy¶wietliæ adres email u¿ytkownika, to makro bêdzie mia³o postaæ:: ^User(\"email\");\n

\n\n^*; or ^*(); - Random Number
\nLosowo generowany numer. Taki numer jest czêsto u¿ywany dla obrazków (takich jak tre¶ci banerów reklamowych), dla których chcesz zapewniæ nie korzystanie przez system z pamiêci cache (ka¿de wywo³anie takiego banera jest wtedy traktowane jako nowy adres URL). Dodatkowo mo¿esz ograniczyæ zakres generowanych liczb - przyk³adowe makro o postaci ^*(100); bêdzie generowaæ losowo liczby z zakresu od 0 do 100.\n

\n\n^-;,^0;,^1;,^2;,^3;, etc.
\nTe makra s± zarezerwowane dla funcji zwi±zanych z systemem/obiektami, przyk³adowo w raportach SQL i mened¿erze zawarto¶ci lub stylu.\n

',1057090848,NULL); +INSERT INTO international VALUES (606,'WebGUI',16,'Pomy¶l o stronach jak o zasobnikach na tre¶æ. Przyk³adowo kiedy piszesz list na komputerze, to otwierasz edytor i w okienku wpisujesz tre¶æ listu. Podobnie jest w systemie WebGUI - tworzysz stronê, a nastêpnie dodajesz do niej zawarto¶æ.\n

\n\nTytu³
\nTytu³ strony jest wyznacznikiem tre¶ci w niej zawartej i jest podstaw± wyboru stron przegl±danych przez u¿ytkowników serwisu. Tytu³y powinny dobrze opisywaæ tre¶æ strony, ale nie powinny byæ za d³ugie.\n

\n\n\nTytu³ w menu
\nKrótsza lub odpowiednio zmodyfikowana wersja tytu³u jaka ma siê pojawiaæ w nawigacji stron. Je¿eli pole to nie zostanie zdefiniowane, to zostanie u¿yta tre¶æ z pola Tytu³.\n

\n\nAdres strony
\nKiedy strona jest tworzona, adres URL strony w systemie generowany jest na podstawie tytu³u strony. Je¿eli tak utworzony adres strony nie jest dla Ciebie odpowiedni, mo¿esz to zmieniæ wpisuj±c po¿±dana nazwê w tym polu.\n

\n\nPrzekierowanie URL
\nJe¿eli w polu podany zostanie adres URL, to ka¿da wizyta na tej stronie spowoduje przekierowanie u¿ytkownika pod wpisany adres. \n

\nUWAGA: Wykonywanie przekierowañ jest zablokowane w trybie administracji serwisu aby umo¿liwiæ i u³atwiæ edycjê w³a¶ciwo¶ci strony.\n

\n\n\nUkryæ z nawigacji?
\nWybierz opcjê \'tak\' je¿eli chcesz aby strona nie by³a wy¶wietlana w menu nawigacyjnym i spisach tre¶ci serwisu.\n

\nUWAGA: Strona nadal bêdzie wy¶wietlana podczas zarz±dzania g³ównymi katalogami w trybie administracji serwisu.\n

\nOtworzyæ w nowym oknie?
\nWybierz opcjê \'tak\', je¿eli chcesz aby strona otwiera³a siê w nowym oknie przegl±darki. Z regu³y do tego definiuje siê parametr Przekierowanie URL.\n

\n\nJêzyk
\nWybierz domy¶lny jêzyk dla tej strony. Wszystkie komunikaty i tre¶ci generowane przez WebGUI bêd± wy¶wietlane w podanym jêzyku, ponadto zestaw znaków strony (charset) zostanie ustawiony do postaci zdefiniowanej dla tego jêzyka.\n

\n\n

Czas bezczynno¶ci zalogowanych
Okres czasu jaki maksymalnie mo¿e up³yn±æ od ostatniej wizyty na stronie zarejestrowanego u¿ytkownika, po której nastêpuje ponowne wygenerowanie tre¶ci strony (do tego czasu wygenerowana wcze¶niej postaæ strony jest przechowywana w pamiêci cache i wy¶wietlana u¿ytkownikowi). \n\n

Czas bezczynno¶ci niezalogowanych
Analogicznie jak wy¿ej zdefiniowany, okres czasu dla u¿ytkowników anonimowych (niezarejestrowanych). \n\n

UWAGA: Przechowywanie tre¶ci stron w pamiêci cache jest mo¿liwe tylko gdy administrator systemu zainstalowa³ modu³ PERL Cache::FileCache. Ta technika znacznie przyspiesza wydajno¶æ pracy serwisu, o blisko 1000%.\n\n\n

Szablon
\nDomy¶lnie system WebGUI posiada jeden du¿y obszar na którym lokalizuje siê kolejne obiekty. Poprzez zdefiniowanie w³asnej wersji szablonu mo¿liwe jest podzielenie tego obszaru na kilka czê¶ci.\n

\n\nStreszczenie
\nKrótki opis strony. Jest on miêdzy innymi u¿ywany do zdefiniowania Meta Tagu strony opisuj±cego jej tre¶æ oraz u¿ywany jest do opisania stron w spisach tre¶ci stron.\n

\n\nZnaczniki (Meta Tags)
\nMeta Tagi u¿ywane s± przez wyszukiwarki internetowe do oznaczenia zawarto¶ci przeszukiwanych stron. W³a¶ciwe zdefiniowanie Meta Tagów umo¿liwia dobre wypozycjonowanie w³asnych stron w wyszukiwarkach. Bardzo dobry serwis na temat budowania stron pod k±tem wyszukiwarek znajduje siê pod adresem searchengines.pl.\n

\n\nUwaga dla zaawansowanych u¿ytkowników: Je¿eli do strony chcesz do³±czyæ tre¶ci takie jak przyk³adowo skrypty Java, to mo¿esz je wpisaæ w³a¶nie do tego pola.\n

\n\nU¿yæ domy¶lnych znaczników?
\nJe¿eli nie chcesz podawaæ w³asnych ustawieñ Meta Tagów, zaznacz to pole aby system WebGUI automatycznie generowa³ zestaw Meta Tagów bazuj±cy na tytule strony oraz na nazwie firmy/organizacji bêd±cej w³a¶cicielem serwisu.\n

\n\n\nStyl
\nKa¿da tworzona strona domy¶lnie dziedziczy niektóre cechy stron nadrzêdnych. Jedn± z takich cech jest styl. Je¿eli chcesz wybraæ indywidualny styl dla tej strony, to wybierz go z wy¶wietlonej listy. Po wiêcej informacji zobacz ekran pomocy w dziale Dodaj nowy styl.\n

\n\nJe¿eli wybierzesz \'Tak\' poni¿ej menu wyboru stylów, to wszystkie strony dla których ta strona bêdzie nadrzêdn± bêd± domy¶lnie dziedziczyæ ten styl.\n

\n\nData pocz±tkowa
\nData od której strona bêdzie wy¶wietlana w systemie, dziêki czemu u¿ytkownicy bêd± mogli j± ogl±daæ. Oczywi¶cie niezale¿nie od tej daty, mened¿erowie zawarto¶ci z uprawnieniami edycji tej strony maj± do niej dostêp przez ca³y czas.\n

\n\nData koñcowa
\nData do kiedy strona bêdzie wy¶wietlana w systemie. Dostêp do strony po tej dacie bêd± posiadali tylko mened¿erowie zawarto¶ci z uprawnieniami edycji tej strony.\n

\n\n\nW³a¶ciciel
\nW³a¶cicielem strony jest z regu³y u¿ytkownik, który utworzy³ stronê. Taki u¿ytkownik z regu³y ma pe³ne prawa edycji i ogl±dania strony.\n

\nUWAGA: Tylko administrator ma mo¿liwo¶æ zmiany w³a¶ciciela strony.\n

\n\n\nKto mo¿e ogl±daæ?
\nWybierz grupê u¿ytkowników uprawnionych do ogl±dania danej strony. Je¿eli chcesz aby dostêp do strony mieli wszyscy u¿ytkownicy niezale¿nie czy s± zalogowani czy anonimowi, to wybierz grupê \"Wszyscy\".\n

\n\nKto mo¿e edytowaæ?
\nWybierz grupê u¿ytkowników uprawnionych do edycji danej strony. Taka grupa ma te¿ praw do ogl±dania strony.\n

\n\nOpcjonalnie mo¿esz rekursywnie nadaæ ten sam zakres czasowy prezentacji dla wszystkich stron dla których dana strona jest nadrzêdn±.\n

\n\nCo dalej?
\nPo utworzeniu danej strony mo¿esz wybraæ przej¶cie do trybu jej edycji lub przej¶æ do definiowania kolejnej nowej strony.\n

',1056293101,NULL); +INSERT INTO international VALUES (896,'WebGUI',16,'Czas bezczynno¶ci niezalogowanych',1056292980,NULL); +INSERT INTO international VALUES (895,'WebGUI',16,'Czas bezczynno¶ci zalogowanych',1056292971,NULL); +INSERT INTO international VALUES (634,'WebGUI',16,'Domy¶lna strona g³ówna
Niektóre naprawdê ma³e serwisy nie posiadaj± strony g³ównej, natomiast zamiast niej u¿ywaj± jednej z dalszych stron serwisu, przyk³adowo takich jak \'O Nas\', \'Kontakt\', itp. Z tego te¿ powodu mo¿esz przyporz±dkowaæ dowoln± stronê serwisu jako jego stronê g³ówn±. Taka strona bêdzie wy¶wietlana gdy u¿ytkownik wpisze adres twojego serwisu lub gdy wybierze w serwisie adres URL (link) wygenerowany przez makro ^H;.\n

Nie znaleziono strony
Mo¿liwe jest tu podanie strony na któr± zostanie przekierowany u¿ytkownik który wpisa³ adres strony, która nie istnieje w serwisie. Mo¿na tu podaæ zarówno stronê domow±, inne strony serwisu, jak i typow± stronê o b³êdzie. \n

Deklaracja typu dokumentu
Obecnie wiele przegl±darek i automatów internetowych takich jak mechanizmy wyszukiwarek internetowych, korzysta z informacji zawartych w tagu HTML strony o nazwie DOCTYPE, który opisuje typ zawarto¶ci strony. Domy¶lnie WebGUI generuje zawarto¶æ stron zgodn± z definicjami HTML wersji 4.0. \n

Ikonka w \"Ulubionych\"
Ikonka jaka pojawia siê przy skrótach do zapamiêtanych stron w przegl±darkach Internet Explorer (np. przy pozycjach w \'Ulubionych\'). Wiêcej informacji na ten temat znajdziesz tutaj. \n

Ikonka przy adresie
Ikonka jaka jest wy¶wietlana w wiêkszo¶ci nowoczesnych przegl±darek internetowych przy adresie bie¿±cej strony. Mo¿e równie¿ siê pojawiaæ w zak³adkach przegl±darki. Ikonka powinna mieæ rozmiar 16x16 pikseli. \n

Dodawaæ datê edycji do postów?
Kiedy u¿ytkownik zmieni tre¶æ wiadomo¶ci wys³anej przez siebie na forum, to domy¶lnie wy¶wietlana jest informacja kto i kiedy dokona³ zmiany w danej wiadomo¶ci. W tym polu jest mo¿liwo¶æ w³±czenia lub wy³±czenia wy¶wietlania tej informacji. \n

Filtruj otrzymane teksty HTML
Jest to funkcja przydatna w serwisach gdzie u¿ytkownicy maj± uprawnienia do zamieszczania przygotowanych przez siebie tre¶ci. W³a¶ciwe ustawienie filtra chroni przed niepo¿±dan± zawarto¶ci± w zg³aszanych tre¶ciach, a w niektórych przypadkach zapewnia wrêcz ochronê przed wyst±pieniem problemów zwi±zanych z bezpieczeñstwem serwisu. \n

Maksymalny rozmiar za³±cznika
Podaj rozmiar w kilobitach maksymalnej wielko¶ci pliku jaki mo¿e byæ za³adowany do serwisu. \n

Maksymalny rozmiar obrazka
Maksymalny rozmiar obrazka podany jest w pikselach i dotyczy najd³u¿szego boku obrazka. Je¿eli obrazek ³adowany do systemu jest wiêkszy ni¿ zdefiniowany maksymalny rozmiar obrazka, to nast±pi automatyczne przeskalowanie obrazka do tego rozmiaru.\n

Rozmiar miniaturki
Rozmiar ten podaje siê w pikselach. Podczas ³adowania obrazków do systemu, automatycznie generowane s± miniaturki tych obrazków wed³ug podanego tu rozmiaru (chyba ¿e rozmiar zostanie zdefiniowany inaczej dla konkretnego obrazka). \n

D³ugo¶æ Podgl±du Fragmentu
Jak d³ugi fragment kodu ma byæ wy¶wietlany w systemie zarz±dzania zasobami podczas wy¶wietlania listy fragmentów zawartych w zasobach serwisu. \n

Wiersze obszaru tekstowego
Pozwala zdefiniowaæ liczbê wierszy okien tekstowych wy¶wietlanych w formularzach w serwisie. \n

Kolumny obszaru tekstu
Pozwala zdefiniowaæ liczbê kolumn okien tekstowych wy¶wietlanych w formularzach w serwisie (tym samym definiuje siê liczbê znaków w wierszu).\n

Rozmiar obszaru tekstowego
Pozwala zdefiniowaæ rozmiar wy¶wietlanych okien tekstowych w formularzach w serwisie (tym samym definiuje ile znaków naraz mo¿na wpisaæ w takie okienko zanim nie nast±pi konieczno¶æ \'przesuwania siê\' tre¶ci w okienku). \n\n

Prezentacja obiektu?
Domy¶lnie obiekty dziedzicz± czas prezentacji zdefiniowany dla strony na której siê znajduj±. Odpowied¼ \'Tak\' powoduje ¿e brany bêdzie pod uwagê czas prezentacji samego obiektu.

',1056292957,NULL); +INSERT INTO international VALUES (71,'SQLReport',16,'

Raporty SQL s± prawdopodobnie najbardziej funkcjonalnymi obiektami w ca³ym arsenale narzêdzi WebGUI. Pozwalaj± one odczytywaæ i we w³a¶ciwy sposób spo¿ytkowaæ (raporty, podsumowania, analizy, interpretacje, itp.) zasoby baz danych do których mamy dostêp. Zastosowanie raportów jest bardzo szerokie - od tworzenia zestawieñ i podliczeñ z posiadanej bazy ksiêgowej, a¿ do przyk³adowej prezentacji podsumowañ aktywno¶ci wszystkich posiadanych forum dyskusyjnych.\n

\n\n\nPrzetwarzaæ makra w zapytaniu?
Zaznacz to pole je¿eli w zapytaniach do bazy danych u¿ywasz zdefiniowanych makr WebGUI.\n

\n\n\nTesty?
\nZaznacz t± opcjê je¿eli chcesz aby podczas uruchamiania raportów by³y wy¶wietlane informacje o wykonywanych operacjach oraz o b³êdach i problemach.\n

\n\n\nZapytanie
\nJest to standardowe zapytanie do bazy danych napisane za pomoc± sk³adni SQL. Twoje zapytania mog± byæ bardziej dynamiczne poprzez zastosowanie makra ^FormParam(); .\n

\n\n\nSzablon raportu
\nSzablon definiuj±cy sposób prezentacji raportu. Najczê¶ciej do generowania raportów u¿ywane s± tablice HTML (przyk³ad tego znajduje siê poni¿ej). Je¿eli pozostawisz to pole puste, to szablon zostanie wygenerowany automatycznie na podstawie wygenerowanego raportem zestawu danych.\n

\n\nDo generowania raportów SQL mo¿na u¿yæ specjalnie przygotowanych makr (je¶li u¿yte, bêd± one wykonane niezale¿nie od definicji pola \"Przetwarzaæ makra w zapytaniu?\"). Te makra to: ^-;, ^0;, ^1;, ^2;, ^3;, itd. Makro ^- oznacza punkty podzia³u dokumentu, gdzie raport rozpoczyna i koñczy generowanie. Makra z liczb± reprezentuj± pola danych, które powinny byæ w zestawie danych uzyskanych zapytaniem SQL. Dodatkowe makro, ^rownum; liczy wiersze raportu pocz±wszy od liczby 1 (powinno byæ u¿ywane w raportach w których wygenerowane wiersze powinny byæ ponumerowane).\n

\n\nPo³±czenie do bazy danych
\nAdministrator systemu mo¿e wcze¶niej skonfigurowaæ dla Ciebie po³±czenia do bazy danych, na których mo¿esz pracowaæ za pomoc± Raportów SQL, dziêki czemu nie jest wymagane ju¿ w³asnorêczne podawanie parametrów DSN oraz has³a i u¿ytkownika bazy danych. Je¿eli baza danych wybrana zostanie z dostêpnej listy, to pola omawianych parametrów bêd± pominiête.
\n
\nJe¿eli nie ma zdefiniowanych po³±czeñ do baz danych, wtedy powiniene¶ wprowadziæ w³asnorêcznie zarówno DSN jak i nazwê oraz has³o u¿ytkownika uprawnionego do korzystania z bazy danych.\n

\n\nDSN
\n\"Data Source Name\" (nazwa ¼ród³a danych), to unikalny identyfikator Twojej bazy danych u¿ywany przez Perl. Identyfikator ten powinien mieæ postaæ: DBI:[sterownik bazy danych]:[nazwa bazy danych]:[serwer bazy danych]. \n

\n\n\nPrzyk³adowo: DBI:mysql:WebGUI:localhost\n

\n\n\nU¿ytkownik bazy\nNazwa u¿ytkownika jakiego u¿ywasz do dostêpu do Twojego DSN.\n

\n\n\nHas³o bazy\nHas³o jakiego u¿ywasz do dostêpu do Twojego DSN.\n

\n\n\nPodziel na strony po\nIle maksymalnie wierszy raportu ma siê mie¶ciæ na pojedyñczej stronie?\n

\n\n\nKonwertowaæ znak nastêpnej linii?Czy chcesz aby w wygenerowanym raporcie, znak nowego wiersza by³ zamieniany na odpowiadaj±cy mu znak nowego wiersza HTML (<br>)?\n

',1056151382,NULL); +INSERT INTO international VALUES (981,'WebGUI',16,'Zarz±dzaj bazami danych.',1056151382,NULL); +INSERT INTO international VALUES (982,'WebGUI',16,'Dodaj po³±czenie',1056151382,NULL); +INSERT INTO international VALUES (983,'WebGUI',16,'Edytuj to po³±czenie.',1056151382,NULL); +INSERT INTO international VALUES (984,'WebGUI',16,'Kopiuj to po³±czenie.',1056151382,NULL); +INSERT INTO international VALUES (985,'WebGUI',16,'Usuñ to po³±czenie.',1056151382,NULL); +INSERT INTO international VALUES (986,'WebGUI',16,'Powrót do strony z po³±czeniami do baz danych',1056151382,NULL); +INSERT INTO international VALUES (987,'WebGUI',16,'Usuwanie po³±czeñ do baz danych',1056151382,NULL); +INSERT INTO international VALUES (988,'WebGUI',16,'Czy na pewno chcesz usun±æ to po³±czenie do bazy danych? W wyniku tego nastêpuj±ce pozycje nie bêd± wiêcej ju¿ dostêpne:',1056151382,NULL); +INSERT INTO international VALUES (989,'WebGUI',16,'na stronie',1056151382,NULL); +INSERT INTO international VALUES (990,'WebGUI',16,'Edycja po³±czeñ do bazy danych.',1056151382,NULL); +INSERT INTO international VALUES (991,'WebGUI',16,'ID po³±czenia',1056151382,NULL); +INSERT INTO international VALUES (992,'WebGUI',16,'Tytu³',1056151382,NULL); +INSERT INTO international VALUES (993,'WebGUI',16,'Nazwa DSN',1056151382,NULL); +INSERT INTO international VALUES (996,'WebGUI',16,'Edycja po³±czeñ do bazy danych',1056151382,NULL); +INSERT INTO international VALUES (997,'WebGUI',16,'Zarz±dzanie po³±czeniami do bazy danych.',1056151382,NULL); +INSERT INTO international VALUES (998,'WebGUI',16,'Po³±czenia do bazy danych, Dodawanie/Edycja',1056151382,NULL); +INSERT INTO international VALUES (999,'WebGUI',16,'Po³±czenia do bazy danych, Usuwanie',1056151382,NULL); +INSERT INTO international VALUES (1000,'WebGUI',16,'

Modu³ Po³±czeñ z baz± danych umo¿liwia administratorowi WebGUI definiowanie baz danych dostêpnych dla modu³u raportów SQL. Dziêki temu, podczas definiowania raportów SQL, u¿ytkownik nie jest zmuszany do wprowadzania, czy te¿ posiadania wiedzy na temat parametrów DSN, u¿ytkownika i has³a do baz danych.
\r\n
\r\nNale¿y mieæ ¶wiadomo¶æ, ¿e utworzone po³±czenia do bazy danych bêd± dostêpne dla wszystkich autorów tre¶ci dla systemu. Nie bêd± oni oczywi¶cie znaæ parametrów dostêpu do baz danych, ale bed± mieæ mo¿liwo¶æ wykonywania zapytañ do bazy danych zarówno w stosunku do jej zawarto¶ci jak i struktury.\r\n

',1056151382,NULL); +INSERT INTO international VALUES (1001,'WebGUI',16,'

\nPodczas definiowania po³±czeñ z bazami danych wy¶wietlane s± nastêpuj±ce pola:\n

\n\nTytu³
\nNazwa jaka zostanie przyporz±dkowana do danego po³±czenia.\n

\n\nNazwa DSN
\nDSN to unikalny identyfikator lokalizacji bazy danych podany w formacie DBI:[sterownik]:[nazwa bazy danych]:[serwer].
\n

\n\n\nPrzyk³ad: DBI:mysql:WebGUI:localhost\n

\n\nOto kilka przyk³adów dla innych baz danych.
\nOracle:\n

    DBI:Oracle:SID
    \nMusi byæ zainstalowany DBD::Oracle.
    \nMusi byæ aktywny mod_perl i ustawiona definicja PerlSetEnv ORACLE_HOME /home/oracle/product/8.1.7 w pliku httpd.conf. Bez ustawienia ORACLE_HOME, mo¿liwe jest zdefiniowanie po³±czenia do bazy danych Oracle poprzez DBI:Oracle:host=mojserwer.pl;sid=SID\n
\n\nPostgreSQL:\n
    DBI:PgPP:dbname=DBNAME[;host=hOST]
    \nMusi byæ zainstalowany DBD::PgPP.\n
\n\n\nSybase:\n
    DBI:Sybase:[server=SERVERNAME][database=DATABASE]
    \nMusi byæ zainstalowany DBD::Sybase.
    \nMusi byæ aktywny mod_perl i ustawiona definicja PerlSetEnv SYBASE /opt/sybase/11.0.2 w pliku httpd.conf.\n
\n\n

\nNazwa U¿ytkownika Bazy
\nNazwa u¿ytkownika u¿ywanego do dostêpu do bazy danych poprzez definiowane po³±czenie.\n

\n\n\nHas³o do Bazy
\nHas³o dostêpu do bazy danych poprzez definiowane po³±czenie.\n

\n',1056151382,NULL); +INSERT INTO international VALUES (1002,'WebGUI',16,'

\nJe¿eli usuwasz po³±czenie do bazy danych, wszystkie raporty SQL u¿ywaj±cego tego po³±czenia przestan± pracowaæ. Na ekranie potwierdzenia usuwania po³±czenia, wy¶wietlona zostanie lista raportów których to dotyczy.\n

\n\nJak w ka¿dej operacji zwi±zanej z usuwaniem, bêdziesz poproszony o potwierdzenie. Je¿eli potwierdzisz usuniêcie to operacja zostanie bezpowrotnie wykonana. Je¿eli wybierzesz \'Nie\', to nast±pi powrót do poprzedniego ekranu z którego funkcja usuniêcia zosta³a wywo³ana.\n

',1056151382,NULL); +INSERT INTO international VALUES (1075,'WebGUI',16,'Po³±czenie do bazy danych',1056151382,NULL); +INSERT INTO international VALUES (632,'WebGUI',16,'

Obiekty mo¿na dodawaæ do systemu poprzez wybór opcji \"Dodaj tre¶æ...\" z menu w górnym lewym rogu ekranu. Pó¼niejsz± ich edycjê dokonuje siê wybieraj±c opcjê \"Edycja\" z menu wy¶wietlanego bezpo¶rednio nad zdefiniowanym na stronie obiektem. \n

Prawie wszystkie obiekty wspó³dziel± t± sam± grupê nastêpuj±cych typów parametrów: \n

ID obiektu
jest to unikalny identyfikator nadawany przez system WebGUI umo¿liwiaj±cy kontrolê wywo³añ obiektów. Typowy u¿ytkownik nie wykorzystuje tej informacji, natomiast zaawansowani u¿ytkownicy mog± wykorzystywaæ ten parametr, przyk³adowo dla potrzeb generowania raportów SQL.\n

Tytu³ Tytu³ obiektu, który typowo wy¶wietlany jest na górze ka¿dego obiektu. \n

Uwaga: Powinno siê zawsze definiowaæ tytu³ obiektu, nawet je¿eli planuje siê wy³±czenie jego wy¶wietlania na stronie. Zalecane jest to z powodu tego, ¿e nazwa obiektu pojawia siê schowku lub koszu WebGUI i dziêki nazwie mo¿liwe jest wtedy rozró¿nienie poszczególnych obiektów. \n

Wy¶wietlaæ tytu³?
Czy chcesz aby zdefiniowany przez ciebie tytu³ obiektu by³ wy¶wietlany? W niektórych serwisach nie wymaga siê wy¶wietlania tytu³ów. \n

Wykonywaæ makra?
Czy chcesz wykonywaæ makra zawarte w tre¶ci niektórych obiektów? czasami mo¿esz chcieæ mieæ tak± mo¿liwo¶æ, jednak w wiêkszo¶ci przypadków bêdziesz raczej wybiera³ \'nie\'. Blokowanie wykonywañ makr zmniejsza równie¿ trochê zapotrzebowanie na zasoby procesora serwera. \n

Pozycja w szablonie
Pozycja w szablonie liczona jest od zera wzwy¿. Jak wiele jest pozycji zale¿y od szablonu zwi±zanego z dan± stron±. Domy¶lnie, szablon ma tylko jedn± zdefiniowan± pozycjê, ale mo¿e byæ te¿ i kilka dostêpnych pozycji. Poprzez wybór pozycji w szablonie definiujemy gdzie obiekt bêdzie zlokalizowany wzglêdem szablonu. \n

Data startu
Data ta definiuje od jakiego momentu ma byæ widoczny obiekt w serwisie. Przed t± dat± obiekt bêdzie widoczny tylko dla menad¿erów zawarto¶ci stron. \n

Data zakoñczenia
data ta definiuje do jakiego momentu ma byæ widoczny obiekt w serwisie. Po tej dacie obiekt bêdzie widoczny tylko dla menad¿erów zawarto¶ci stron. \n

W³a¶ciciel
W³a¶cicielem obiektu jest zwyczajowo osoba która go utworzy³a. Taki u¿ytkownik ma pe³ne mo¿liwo¶ci edycji i ogl±dania obiektu, chyba ¿e cofniête zosta³y uprawnienia do edycji strony na której znajduje siê obiekt. \n

UWAGA: W³a¶ciciela obiektu mo¿e zmieniæ tylko administrator.\n

Kto mo¿e ogl±daæ?
Wybiera grupê u¿ytkowników uprawnionych do ogl±dania danego obiektu. Je¿eli chcesz aby zarówno zarejestrowani, jak i anonimowi u¿ytkownicy mogli ogl±daæ obiekt, to nale¿y wybraæ grupê \"Wszyscy\". \n

Kto mo¿e edytowaæ?
Wybiera grupê u¿ytkowników uprawnionych do edycji danego obiektu. Taka grupa ma jednocze¶nie uprawnienia do ogl±dania obiektu.

\n

Opis
Pole w którym mo¿emy zmie¶ciæ dowolny zakres tre¶ci, z regu³y opisuj±cej tre¶æ obiektu. Przyk³adowo, zanim wy¶wietlony zostaje system pytañ i odpowiedzi (FAQ), z regu³y wy¶wietlany jest paragraf opisuj±cy przeznaczenie danego FAQ.\n

',1056055106,NULL); +INSERT INTO international VALUES (1003,'WebGUI',16,'Prezentacja obiektu?',1056041703,NULL); +INSERT INTO international VALUES (979,'WebGUI',16,'Czy na pewno chcesz usun±æ wszystkie pozycje w tym folderze? Raz usuniête nie mog± byæ ju¿ odzyskane. Pozycje w podfolderach nie bêd± usuniête.',1055908341,NULL); +INSERT INTO international VALUES (980,'WebGUI',16,'Opró¿nij ten folder.',1055908341,NULL); +INSERT INTO international VALUES (12,'HttpProxy',16,'Maskowaæ adresy?',1055908341,NULL); +INSERT INTO international VALUES (83,'DataForm',16,'

W szablonach formularzy dostêpne s± do wykorzystania nastêpuj±ce zmienne:\n

\n\n

\nacknowledgement
\nTre¶æ potwierdzenia w/g specyfikacji u¿ytej we w³a¶ciwo¶ciach obiektu. Tre¶æ potwierdzenia wy¶wietlana jest po zatwierdzeniu przez u¿ytkownika zawarto¶ci formularza.\n

\n

\nexport.tab.url
\nAdres URL pod którym dostêpny bêdzie do ¶ci±gniêcia plik zawieraj±cy wiersze z danymi utworzonymi poprzez ten formularz (zawarto¶æ poszczególnych pól w pliku rozdzielona jest znakiem tabulatora).\n

\n

\nexport.tab.label
\nEtykieta/Nazwa jaka bêdzie u¿yta do nazwania odno¶nika (linku) do adresu zawartego w zmiennej export.tab.url.\n

\n

\nentryList.url
\nAdres URL pod którym wy¶wietlona zostanie lista wierszy z danymi utworzonymi poprzez ten formularz. \n

\n

\nentryList.label
\nEtykieta/Nazwa jaka bêdzie u¿yta do nazwania odno¶nika (linku) do adresu zawartego w zmiennej entryList.url.\n

\n

\ncanEdit\nWarunek definiuj±cy czy dany u¿ytkownik korzystaj±cy z formularza ma uprawnienia do edycji i/lub exportu tre¶ci pól formularza.\n

\n

\nback.url
\nAdres URL umo¿liwiaj±cy powrót do strony g³ównej formularza.\n

\n

\nback.label
\nEtykieta/Nazwa jaka bêdzie u¿yta do nazwania odno¶nika (linku) do adresu zawartego w zmiennej back.url.\n

\n

\nusername*
\nNazwa u¿ytkownika który u¿y³ formularza do wprowadzenia danych.\n

\n

\nuserId*
\nIdentyfikator u¿ytkownika który u¿y³ formularza do wprowadzenia danych.\n

\n

\ndate*
\nData wprowadzenia lub ostatniej modyfikacji danych poprzez formularz. Data jest sformatowana w/g preferencji u¿ytkownika który u¿y³ formularza do wprowadzenia lub edycji danych.\n

\n

\nepoch*
\nDatê wprowadzenia lub ostatniej modyfikacji danych poprzez formularz. Data jest w formacie epoch.\n

\n

\nipAddress*
\nAdres IP u¿ytkownika który u¿y³ formularza do wprowadzenia lub edycji danych.\n

\n

\nedit.url*
\nAdres URL pod którym mo¿liwa bêdzie edycja bie¿±co wprowadzonego lub modyfikowanego poprzez ten formularz rekordu danych. \n

\n

\nerror_loop*
\nInformacja zwrotna o b³êdzie - przyk³adowo gdy nie zosta³o wype³nione które¶ z wymaganych w formularzu pól.

\n\n

\n\nerror.message*
\nTre¶æ b³êdu wskazuj±cego na b³±d pope³niony przez u¿ytkownika podczas wprowadzania lub edycji rekordu danych poprzez formularz.\n\n
\n\n

\n

addField.url
\nAdres URL pod którym mo¿liwe bêdzie dodanie nowego pola do formularza. \n

\n

\naddField.label
\nEtykieta/Nazwa jaka bêdzie u¿yta do nazwania odno¶nika (linku) do adresu zawartego w zmiennej addField.url.\n

\n

\nform.start
\nOznaczenie pocz±tku formularza.\n

\n

\nfield_loop
\nZmienna zawiera informacjê o wszystkich polach formularza.\n

\n

\n

\n\nfield.form
\nElement formularza zwi±zany z danym polem w formularzu.\n

\n

\nfield.name
\nNazwa danego pola formularza.\n

\n\nfield.value
\nWarto¶æ danego pola formularza. Podczas wprowadzania nowego rekordu danych ustawiona zostanie warto¶æ domy¶lna danego pola.\n

\n\nfield.label
\nNazwa pola jaka zostanie wy¶wietlona w formularzu.\n

\n\nfield.isHidden
\nWarunek definiuj±cy czy dane pole formularza powinno pojawiaæ siê w formularzu jako tzw. ukryte (typu \"hidden\"). \n

\n\nfield.isDisplayed
\nWarunek definiuj±cy czy dane pole formularza powinno byæ wy¶wietlane w formularzu. \n

\n

\nfield.isEditable
\nWarunek definiuj±cy czy dane pole formularza mo¿e byæ edytowane w formularzu.\n

\n

\nfield.isRequired
\nWarunek definiuj±cy czy wype³nienie danego pola formularza jest wymagane.\n

\n

\nfield.isMailField
\nWarunek definiuj±cy czy dane pole s³u¿y do definiowania adresu email.\n

\n

\nfiel\nd.subtext
\nOpis pola s³u¿±cy dostarczeniu podpowiedzi umo¿liwiaj±cej w³a¶ciwe wprowadzenie tre¶ci danego pola.\n

\n

\nfield.controls
\nPanel kontrolek systemu WebGUI umo¿liwiaj±cy kontrolê i administrowanie danym polem.\n

\n

\n\n

\nform.send
\nPrzycisk z napisem \"wy¶lij\" do wys³ania zdefiniowanej lub edytowanej zawarto¶ci formularza.\n

\n

\nform.save
\nPrzycisk z napisem \"zapisz\".\n

\n

\nform.end
\nOznaczenie koñca formularza.\n

\n\n* Zmienne oznaczone gwiazdk± s± zdefiniowane i dostêpne dopiero po wys³aniu tre¶ci formularza przez u¿ytkownika.',1053948922,NULL); +INSERT INTO international VALUES (98,'EventsCalendar',16,'Teraz!',1053888477,NULL); +INSERT INTO international VALUES (82,'DataForm',16,'Szablon formularza',1053885798,NULL); +INSERT INTO international VALUES (88,'DataForm',16,'Szablon strony z list± rekordów formularza',1053885702,NULL); +INSERT INTO international VALUES (89,'DataForm',16,'

W szablonach stron które wy¶wietlaj± listê zdefiniowanych poprzez formularz rekordów (utworzonych kompletów tre¶ci pól formularza), dostêpne s± do wykorzystania nastêpuj±ce zmienne:\n\n

\n\nback.url
\nAdres URL umo¿liwiaj±cy powrót do strony g³ównej formularza.\n

\n\nback.label
\nEtykieta/Nazwa jaka bêdzie u¿yta do nazwania odno¶nika (linku) do adresu zawartego w zmiennej back.url.\n

\n\nfield_loop
\nZmienna zawiera informacjê o wszystkich polach formularza.\n

\n

\n\nfield.name
\nNazwa danego pola formularza wy¶wietlana w formularzu.\n

\n\nfield.label
\nEtykieta/nazwa danego pola formularza.\n

\n\nfield.id
\nUnikalny identyfikator reprezentuj±cy dane pole w bazie danych.\n

\n\nfield.isMailField
\nWarunek definiuj±cy czy dane pole s³u¿y do definiowania adresu email.\n

\n\nfield.type
\nTyp danych zwi±zany z danym polem formularza.\n

\n\n

\n\nrecord_loop
\nZawarto¶æ rekordów danego formularza do wy¶wietlenia.\n

\n\n

\n\nrecord.entryId
\nUnikalny identyfikator danego rekordu danych.\n

\n\nrecord.ipAddress
\nAdres IP u¿ytkownika który utworzy³ dany rekord danych.\n

\n\nrecord.edit.url
\nAdres URL pod którym mo¿liwa bêdzie edycja danego rekordu danych. \n

\n\nrecord.username
\nNazwa u¿ytkownika który utworzy³ dany rekord danych.\n

\n\nrecord.userId
\nIdentyfikator u¿ytkownika który utworzy³ dany rekord danych.\n

\n\nrecord.submissionDate.epoch
\nData utworzenia danego rekordu danych w formacie epoch.\n

\n\nrecord.submissionDate.human
\nData utworzenia danego rekordu danych w formacie zgodnym z ustawieniami danego u¿ytkownika.\n

\n\nrecord.data_loop
\nZawarto¶æ danego rekordu danych.\n

\n\n

\n\nrecord.data.value
\nZawarto¶æ danego pola w bie¿±cym rekordzie danych.\n

\n\nrecord.data.name
\nWy¶wietlana nazwa danego pola w bie¿±cym rekordzie danych.\n\n

\n\nrecord.data.label
\nEtykieta/nazwa danego pola w bie¿±cym rekordzie danych.\n

\n\nrecord.data.isMailField
\nWarunek definiuj±cy czy dane pole w bie¿±cym rekordzie danych s³u¿y do definiowania adresu email.\n

\n\n\n

\n\n
',1053885702,NULL); +INSERT INTO international VALUES (87,'DataForm',16,'Szablon listy',1053884753,NULL); +INSERT INTO international VALUES (86,'DataForm',16,'Wy¶wietl dokonane wpisy.',1053882548,NULL); +INSERT INTO international VALUES (85,'DataForm',16,'Uwaga: wpisuj tylko po jednej warto¶ci w wierszu.',1053855146,NULL); +INSERT INTO international VALUES (978,'WebGUI',16,'U¿ytkownik zosta³ dopisany.',1053804577,NULL); +INSERT INTO international VALUES (977,'WebGUI',16,'Czy ma uprawnienia administratora grupy?',1053803387,NULL); +INSERT INTO international VALUES (976,'WebGUI',16,'Dodaj u¿ytkowników',1053800614,NULL); +INSERT INTO international VALUES (844,'WebGUI',16,'Poni¿sze makra s± u¿yteczne g³ównie w operacjach zwi±zanych z u¿ytkownikami i logowaniami w systemie WebGUI.\n\n

\n\n^a; or ^a(); - My Account Link
\nMakro wy¶wietla link (odno¶nik) do informacji o koncie u¿ytkownika. Mo¿liwe jest dodatkowo zdefiniowanie wy¶wietlanej nazwy linku, przyk³adowo ^a(\"Informacja o koncie\");. \n

\n\nUWAGI: Mo¿esz równie¿ u¿yæ specjalnej wersji tego makra ^a(linkonly); zwracaj±cej sam tylko link do konta bez jego opisu. Z tym makro zwi±zana jest klasa stylu CSS .myAccountLink.\n

\n\n\n^AdminText();
\nWy¶wietla krótki tekst informuj±cy u¿ytkownika zalogowanego jako administrator o pozostawaniu w trybie administracji - przyk³adowo: ^AdminText(\"Jeste¶ w trybie administracji!\");\n

\n\n^AdminToggle; or ^AdminToggle();
\nUmieszcza na stronie link (odno¶nik) umo¿liwiaj±cy w³±czenie lub wy³±czenie trybu administracji ? link widoczny bêdzie tylko dla administratorów i mened¿erów zawarto¶ci serwisu. Dodatkowo mo¿liwe jest zdefiniowanie wy¶wietlanej nazwy linku, przyk³adowo: ^AdminToggle(\"W³±cz/Wy³±cz tryb edycji\");\n

\n\n^CanEditText();
\nWy¶wietla u¿ytkownikowi informacjê ¿e mo¿e on edytowaæ dan± stronê.\n

\nPrzyk³ad: ^CanEditText(^AdminToggle;);\n

\n\n^EditableToggle; or ^EditableToggle();
\nJest to odpowiednik makra AdminToggle, z t± ró¿nic± ¿e informacja jest wy¶wietlana tylko gdy u¿ytkownik ma uprawnienia do edycji danej strony.\n

\n\n^GroupAdd();
\nMakro wy¶wietla link umo¿liwiaj±cy u¿ytkownikom samodzielne dodanie siê do danej grupy u¿ytkowników. Pierwszym parametrem jest nazwa grupy, drugim nazwa linku do dodania siê do grupy.\n

\nUWAGA: Je¿eli u¿ytkownik nie jest zalogowany lub nale¿y ju¿ do danej grupy lub ustawienia grupy nie zezwalaj± na samodzielne dodawanie siê do nich u¿ytkowników, to link nie zostanie wy¶wietlony.\n

\n\n\n^GroupDelete();
\nMakro wy¶wietla link umo¿liwiaj±cy u¿ytkownikom samodzielne usuniêcie siê z danej grupy u¿ytkowników. Pierwszym parametrem jest nazwa grupy, drugim nazwy linku jaka zostanie wy¶wietlona.\n\n

\nUWAGA: Je¿eli u¿ytkownik nie jest zalogowany lub nie nale¿y do danej grupy lub ustawienia grupy nie zezwalaj± na samodzielne usuwanie siê z nich u¿ytkowników, to link nie zostanie wy¶wietlony.\n

\n\n^GroupText();
\nWy¶wietla krótki tekst informuj±cy u¿ytkownika je¿eli nale¿y on do danej grupy. Mo¿na równie¿ zdefiniowaæ alternatywny tekst wy¶wietlany dla u¿ytkowników którzy nie nale¿± do danej grupy.\n

\nPrzyk³ad: ^GroupText(\"Visitors\",\"Za³ó¿ konto w naszym systemie aby móc korzystaæ z wszystkich jego funkcji!\",\"Doceniamy naszych zarejestrowanych u¿ytkowników!\");\n

\n\n^L; or ^L(); - Login Box
\nWy¶wietla niewielki blok formularza umo¿liwiaj±cego zalogowanie siê. Mo¿na ustawiæ szeroko¶æ bloku logowania - przyk³adowo ^L(20);. Mo¿esz równie¿ zdefiniowaæ tre¶æ wiadomo¶ci jaka zostanie wy¶wietlona u¿ytkownikowi po zalogowaniu siê - przyk³adowo ^L(20,Witaj ^a(^@;);. Kliknij %here% je¿eli chcesz siê wylogowaæ!)\n

\n\nUWAGA: Do tego makro przyporz±dkowana jest klasa stylu CSS .loginBox.\n

\n\n^LoginToggle; or ^LoginToggle();
\nWy¶wietla link (odno¶nik) umo¿liwiaj±cy zalogowanie lub wylogowania siê, w zale¿no¶ci czy u¿ytkownik jest czy te¿ nie jest zalogowany. Opcjonalnie mo¿na zdefiniowaæ swoj± w³asn± wersjê nazwy takiego linku - przyk³adowo: ^LoginToggle(\"Kliknij tutaj aby siê zalogowaæ.\",\"Kliknij tutaj aby siê zalogowaæ.\");. Dostêpna jest równie¿ specjalna forma wywo³ania tego makro ^LoginToggle(linkonly); zwracaj±ca sam adres URL linku bez jego opisu.\n

\n\n^@; - Username
\nWy¶wietla nazwê u¿ytkownika który bie¿±co jest zalogowany.\n

\n\n\n^#; - User ID
\nWy¶wietla identyfikator (ID) u¿ytkownika który bie¿±co jest zalogowa\nny.\n

\n',1053779917,NULL); +INSERT INTO international VALUES (975,'WebGUI',16,'U¿ytkownicy mog± siê usuwaæ?',1053778962,NULL); +INSERT INTO international VALUES (974,'WebGUI',16,'U¿ytkownicy mog± siê dodawaæ?',1053778912,NULL); +INSERT INTO international VALUES (11,'HttpProxy',16,'

Obiekt Proxy HTTP to narzêdzie o potê¿nych mo¿liwo¶ciach. Umo¿liwia ono w³±czenie tre¶ci zewnêtrznych stron www i aplikacji, w jedn± ca³o¶æ z w³asnym systemem stron stworzonych poprzez system WebGUI. Przyk³adowo, je¿eli posiadasz w³asny, dotychczasowy system obs³ugi poczty przez www i chcesz go w³±czyæ dla u¿ytkowników systemu stworzonego przez WebGUI, to dziêki obiektowi Proxy HTTP zrobisz to szybko i profesjonalnie.\n\n

\n\nAdres URL
\nAdres startowy serwisu www który zostanie w³±czony poprzez Proxy HTTP.\n

\n\nPrzekierowania?
\nCzasami adres strony wczytywanej przez Proxy HTTP jest przekierowaniem do kolejnej innej strony. Czy w takim wypadku mechanizm Proxy HTTP ma pod±¿aæ za przekierowaniem, czy te¿ nie?\n

\n\nMaskowaæ adresy?
\nMaskowanie adresów umo¿liwia transformacjê adresów www zawartych we wczytywanych przez mechanizm Proxy HTTP stronach, tak aby ich wywo³ania równie¿ by³y wczytywane poprzez Proxy HTTP. W przeciwnym wypadku, je¿eli nie ma ustawionego maskowania adresów URL, to adresy www zawarte we wczytywanych przez Proxy HTTP stronach pozostan± niezmienione (je¿eli bêdzie to adres zewnêtrznego serwisu www, to jego wybór spowoduje przej¶cie do tego serwisu).\n

\n\n\nCzas oczekiwania
\nMaksymalny czasu oczekiwania, zdefiniowany w sekundach, przez jaki system WebGUI ma oczekiwaæ na po³±czenie z wczytywan± przez Proxy HTTP stron±.\n

\n\n\nUsuwaæ style?
\nCzy usuwaæ style CSS zawarte we wczytywanych poprzez Proxy HTTP stronach i zastêpowaæ je stylami u¿ywanymi w ramach w³asnych stron w systemie WebGUI?\n

\n\n\nFiltruj tre¶æ HTML
\nWybierz poziom filtrowania elementów stron wczytywanych przez Proxy HTTP.\n

\n\n\nFiltruj od:
\nPodaj tre¶æ strony od której pokazana zostanie zawarto¶æ wczytywanej strony przez Proxy HTTP. Umo¿liwia to wczytywanie stron i prezentowanie tre¶ci od wybranego znacznika w tych stronach - np. zdefiniowanego przez siebie komentarza w tre¶ci strony lub wybranego tagu HTML. Zawarto¶æ strony przed zdefiniowanym znacznikiem nie bêdzie wy¶wietlona przez Proxy HTTP.\n

\n\n\nFiltruj do:
\nStosownie do znacznika startowego, podaj tre¶æ znacznika koñcowego zawartego we wczytywanych stronach przez Proxy HTTP, do którego ma byæ wy¶wietlana tre¶æ stron. Zawarto¶æ strony po zdefiniowanym znaczniku nie bêdzie wy¶wietlona przez Proxy HTTP.\n

\n\nUwaga: znaczniki zawarte w polach Filtruj od i Filtruj do s± do³±czane do wczytywanych przez Proxy HTTP stron. Aby to zmieniæ nale¿y odpowiednio zmodyfikowaæ u¿ywany szablon dla Proxy HTTP.\n

\n\n\nCzy stosowaæ Proxy dla innych domen?
\nW przypadku wczytywania przez Proxy HTTP stron zawieraj±cych odno¶niki (linki) do domen innych ni¿ w startowym adresie, czy mechanizm Proxy HTTP ma umo¿liwiaæ przej¶cia u¿ytkownikowi do tych stron, czy te¿ blokowaæ tak± mo¿liwo¶æ?\n

',1053774887,NULL); +INSERT INTO international VALUES (828,'WebGUI',16,'Wiêkszo¶æ obiektów posiada zdefiniowane szablony, które umo¿liwiaj± zmianê sposobu ich prezentacji w serwisie. Wszystkie takie obiekty posiadaj± w³asne zmienne szablonów oraz pewien wspólny zestaw zmiennych szablonów, które mog± byæ wykorzystywane w definicjach sposobu wy¶wietlania obiektów. Oto lista zmiennych szablonów wspólnych dla obiektów:\n

\nTytu³
\nTytu³ danego obiektu.\n

\n\nWy¶wietlaæ tytu³?
\nWarunek okre¶laj±cy czy ma byæ wy¶wietlany tytu³ obiektu.\n

\n\nOpis
\nOpis obiektu.\n

\n\nID obiektu
\nUnikalny identyfikator danego obiektu nadany przez WebGUI.\n

\n\nSkrót?
\nWarunek okre¶laj±cy czy dany obiekt jest skrótem/dowi±zaniem do innego obiektu (czy jest tzw. obiektem proxy).\n

\n\nURL skrótu
\nJe¿eli dany obiekt jest skrótem do innego obiektu (kopi± typu proxy), to podany adres URL jest adresem oryginalnego obiektu.\n

',1053469640,NULL); +INSERT INTO international VALUES (973,'WebGUI',16,'Przez proxy pokazywaæ adres IP klienta?',1053459227,NULL); +INSERT INTO international VALUES (972,'WebGUI',16,'Data i czas',1053278234,NULL); +INSERT INTO international VALUES (971,'WebGUI',16,'Czas',1053278208,NULL); +INSERT INTO international VALUES (970,'WebGUI',16,'ustawienie czasu',1053278089,NULL); +INSERT INTO international VALUES (10,'WobjectProxy',16,'Nadpisaæ szablon?',1053183837,NULL); +INSERT INTO international VALUES (9,'WobjectProxy',16,'Nadpisaæ opis?',1053183804,NULL); +INSERT INTO international VALUES (8,'WobjectProxy',16,'Nadpisaæ wy¶wietlany tytu³?',1053183719,NULL); +INSERT INTO international VALUES (7,'WobjectProxy',16,'Nadpisaæ tytu³?',1053183682,NULL); +INSERT INTO international VALUES (953,'WebGUI',16,'Poprzednia lokalizacja',1052850265,NULL); +INSERT INTO international VALUES (946,'WebGUI',16,'U¿ywaæ wspólnego kosza?',1052850265,NULL); +INSERT INTO international VALUES (947,'WebGUI',16,'U¿ywaæ wspólnego schowka?',1052850265,NULL); +INSERT INTO international VALUES (952,'WebGUI',16,'Data',1052850265,NULL); +INSERT INTO international VALUES (951,'WebGUI',16,'Czy jeste¶ pewien ¿e chcesz opró¿niæ schowek do kosza?',1052850265,NULL); +INSERT INTO international VALUES (948,'WebGUI',16,'Zarz±dzaj schowkiem',1052850265,NULL); +INSERT INTO international VALUES (961,'WebGUI',16,'Kosz to specjalne miejsce w systemie gdzie tymczasowo przetrzymywana jest usuniêta zawarto¶æ serwisu (odpowiednik kosza tymczasowego w systemie operacyjnym Windows). Ka¿dy element w koszu mo¿e byæ indywidualnie zarz±dzany - mo¿esz go bezpowrotnie usun±æ lub wkleiæ na powrót do schowka, dziêki czemu mo¿na go bêdzie ponownie u¿yæ w systemie. Mo¿liwe jest równie¿ jednorazowe usuniêcie ca³ej zawarto¶ci kosza poprzez wybranie opcji menu Opró¿nij kosz.\n

Tytu³
Nazwa danego elementu usuniêtego do kosza. Klikaj±c na tej nazwie mo¿na obejrzeæ element.\n

Typ
Charakter usuniêtego elementu, z jakiego funkcjonalnie obszaru pochodzi³ dany element ? przyk³adowo czy by³a to strona, artyku³, kalendarz, itp.\n

Data
Data i czas kiedy element zosta³ usuniêty do kosza.\n

Poprzednia lokalizacja
Lokalizacja w której znajdowa³ siê dany element przed usuniêciem. T± lokalizacjê mo¿na obejrzeæ klikaj±c na nazwie lokalizacji.

U¿ytkownik
Nazwa u¿ytkownika który usun±³ element do kosza. To pole jest widoczne tylko gdy w systemie ustawione jest korzystanie ze wspólnego kosza dla wszystkich u¿ytkowników, lub w trybie zarz±dzania koszem systemowym.',1052850265,NULL); +INSERT INTO international VALUES (960,'WebGUI',16,'Zarz±dzaj koszem',1052850265,NULL); +INSERT INTO international VALUES (950,'WebGUI',16,'Opró¿nij schowek.',1052850265,NULL); +INSERT INTO international VALUES (955,'WebGUI',16,'Zarz±dzanie schowkiem systemowym',1052850265,NULL); +INSERT INTO international VALUES (956,'WebGUI',16,'Czy na pewno chcesz usun±æ ten element ze schowka do ¶mietnika?',1052850265,NULL); +INSERT INTO international VALUES (957,'WebGUI',16,'Schowek systemowy, Zarz±dzanie',1052850265,NULL); +INSERT INTO international VALUES (959,'WebGUI',16,'Opró¿nij schowek.',1052850265,NULL); +INSERT INTO international VALUES (949,'WebGUI',16,'Zarz±dzaj schowkiem.',1052850265,NULL); +INSERT INTO international VALUES (962,'WebGUI',16,'Zarz±dzaj koszem',1052850265,NULL); +INSERT INTO international VALUES (963,'WebGUI',16,'Data',1052850265,NULL); +INSERT INTO international VALUES (964,'WebGUI',16,'Zarz±dzaj koszem systemowym.',1052850265,NULL); +INSERT INTO international VALUES (966,'WebGUI',16,'Czy jeste¶ pewien ¿e chcesz nieodwracalnie usun±æ ten element z kosza?',1052850265,NULL); +INSERT INTO international VALUES (967,'WebGUI',16,'Opró¿nij kosz systemowy.',1052850265,NULL); +INSERT INTO international VALUES (968,'WebGUI',16,'Schowek, Usuwanie',1052850265,NULL); +INSERT INTO international VALUES (969,'WebGUI',16,'Je¿eli wybierzesz opró¿nienie schowka, to wszystkie znajduj±ce siê w nim elementy zostan± przesuniête do kosza systemowego.',1052850265,NULL); +INSERT INTO international VALUES (954,'WebGUI',16,'Zarz±dzaj schowkiem systemowym.',1052850265,NULL); +INSERT INTO international VALUES (965,'WebGUI',16,'Zarz±dzaj Koszem Systemowym',1052850265,NULL); +INSERT INTO international VALUES (945,'WebGUI',16,'Dostêp wed³ug parametrów sesji',1052560369,NULL); +INSERT INTO international VALUES (84,'DataForm',16,'Eksport (separatorem pól jest tabulator).',1052088598,NULL); +INSERT INTO international VALUES (81,'DataForm',16,'Szablon Potwierdzenia',1052064282,NULL); +INSERT INTO international VALUES (80,'DataForm',16,'Szablon Email',1052044326,NULL); +INSERT INTO international VALUES (944,'WebGUI',16,'Kod pocztowy',1051962797,NULL); +INSERT INTO international VALUES (943,'WebGUI',16,'Pole wyboru (checkbox)',1051464272,NULL); +INSERT INTO international VALUES (942,'WebGUI',16,'Pola wyboru (jedno z kilku)',1051464141,NULL); +INSERT INTO international VALUES (941,'WebGUI',16,'Lista pól wyboru (checkbox)',1051464113,NULL); +INSERT INTO international VALUES (846,'WebGUI',16,'Poni¿sze makra s± u¿yteczne g³ównie w stylach definiowanych w systemie WebGUI.\n

\n\n^AdminBar;
\nUmieszcza na stronie pasek narzêdzi administratora. Jest to wymagany element w zawarto¶ci Mened¿era Stylu.\n

\n\n\n^c; - Company Name
\nUmieszcza nazwê twojej firmy podan± wcze¶niej w ustawieniach przez administratora.\n

\n\n\n^e; - Company Email Address
\nUmieszcza adres e-mail twojej firmy podany wcze¶niej w ustawieniach przez administratora.\n

\n\n^Extras;
\nUmieszcza ¶cie¿kê do folderu \'dodatków\' WebGUI, który zawiera elementy takie jak np. ikony WebGUI.\n

\n\n^LastModified; or ^LastModified();
\nUmieszcza datê ostatniej modyfikacji danej strony bazuj±c± na obiektach znajduj±cych siê na stronie. Data jest domy¶lnie wy¶wietlana wed³ug preferencji danego u¿ytkownika. Opcjonalnie, makro mo¿e przyjmowaæ dwa parametry - pierwszy to tekst jaki ma byæ umieszczony przed wy¶wietlan± dat±, drugi oznacza format wy¶wietlanej daty - po wiêcej szczegó³ów zobacz opis makra D (data).\n

\nPrzyk³ad: ^LastModified(\"Ostatnia aktualizacja strony: \",\"%c %D, %y\");\n

\n\n\n^PageTitle;
\nUmieszcza tytu³ danej strony.\n

\n\nUWAGA: Je¿eli jeste¶ w trybie administracji lub u¿yjesz funkcjê obiektu zag³êbiaj±c± siê do kolejnych podstron, to zamiast tytu³u strony wy¶wietlony zostanie link (odno¶nik) powrotu do tej strony.\n

\n\n^r; or ^r(); - Make Page Printable
\nUmieszcza na stronie link (odno¶nik), którego wybór powoduje wy¶wietlenie strony sformatowanej do wydruku. Opis odno¶nika mo¿e byæ zdefiniowany w tym makro, przyk³adowo ^r(\"Wersja strony do wydruku\");.\n

\n\nStyl strony wy¶wietlonej do wydruku bêdzie domy¶lnie zamieniony na styl \"Make Page Printable\" zdefiniowany w Mened¿erze Stylów. Poprzez to makro mo¿na równie¿ zdefiniowaæ inny styl wed³ug którego strona ta zostanie wy¶wietlona, przyk³adowo: ^r(\"Wersja strony do wydruku\",\"WebGUI\");\n

\n\nUWAGI: Mo¿esz równie¿ u¿yæ specjalnego wariantu tego makro ^r(linkonly); które zwraca tylko sam link (odno¶nik) adresu URL tworz±cego wersjê strony do wydruku i nic ponadto. Do tego makro przyporz±dkowana jest klasa stylu CSS .makePrintableLink.\n

\n\n^RootTitle;
\nUmieszcza tytu³ katalogu g³ównego (nadrzêdnej strony g³ównej) dla danej strony. Przyk³adowo, katalogiem g³ównym WebGUI jest katalog \"Strona g³ówna\". Wiele bardziej zaawansowanych stron posiada kilkana¶cie takich katalogów g³ównych, st±d potrzeba wy¶wietlania na stronach informacji dla u¿ytkowników w jakim znajduj± siê katalogu.\n

\n\n^u; - Company URL
\nUmieszcza adres URL twojej firmy podany wcze¶niej w ustawieniach przez administratora.\n

\n\n\n\n^?; - Search
\nUmieszcza na stronie okienko wyszukiwarki, które zwi±zane jest z wbudowanym mechanizmem wyszukiwarki WebGUI.\n

\n\nUWAGA: Do tego makro przyporz±dkowana jest klasa stylu CSS .searchBox.\n

\n\n^Spacer();
\nUmieszcza na stronie odstêp (pusty blok tre¶ci), który przyk³adowo wykorzystywany jest do tworzenia kolorowych obszarów na stronie z tagami DIV i TABLE. Makro wymaga podania dwóch parametrów ? szeroko¶ci i wysoko¶ci bloku.\n

\nPrzyk³ad: ^Spacer(\"100\",\"50\");\n

\n\n^-;
\nJest to makro zwane separatorem. Musi ono wystêpowaæ dok³adnie raz w ka¿dym stylu strony ? oznacza ono miejsce od którego umieszczona bêdzie w³a¶ciwa zawarto¶æ ka¿dej strony.\n

',1051223157,NULL); +INSERT INTO international VALUES (842,'WebGUI',16,'Makra nawigacyjne s³u¿± do tworzenia nawigacji po stronach serwisu.\n

\n\n^C; or ^C(); - Crumb Trail
\nWy¶wietla pasek z dynamicznie generowan± ¶cie¿k± do danej strony, pocz±wszy od katalogu g³ównego zwi±zanego z dan± stron±. Opcjonalnie mo¿esz zdefiniowaæ w³asn± formê rozdzielenia wy¶wietlanych elementów ¶cie¿ki - przyk³adowo ^C(::); (domy¶lnie jest to znak >).\n

\n\nUWAGA: Z tym makro zwi±zana jest klasa stylu CSS .crumbTrail.\n

\n\n^FlexMenu;
\nWy¶wietla menu zawieraj±ce strony menu g³ównego stron, rozwijaj±ce siê kolejno po wybraniu przez u¿ytkownika pozycji w menu.\n

\n\n^H; or ^H(); - Home Link
\nWy¶wietla link do strony g³ównej serwisu. Dodatkowo mo¿liwe jest zdefiniowanie nazwy tego linku, przyk³adowo: ^H(\"Strona g³ówna\");.\n

\n\nUWAGI: Mo¿esz u¿yæ specjalnej wersji tego makra ^H(linkonly); zwracaj±cej sam link bez jego nazwy. Z tym makro zwi±zana jest klasa stylu CSS .homeLink.\n

\n\n^M; or ^M(); - Current Menu (Vertical)
\nWy¶wietla pionowe menu zawieraj±ce podstrony w stosunku do bie¿±cego poziomu. Dodatkowo mo¿liwe jest zdefiniowanie liczby poziomów na które menu bêdzie mog³o siê zag³êbiæ. Domy¶lnie wy¶wietla tylko pierwszy podpoziom. Przyk³adowo, aby umo¿liwiæ zej¶cie maksymalnie do trzeciego podpoziomu, nale¿y podaæ makro w postaci ^M(3); - podaj±c w makro warto¶æ \"0\", umo¿liwi to rozwijanie menu do dowolnego podpoziomu stron.\n

\n\n^m; - Current Menu (Horizontal)
\nWy¶wietla horyzontalne menu zawieraj±ce strony z danego podpoziomu stron. Opcjonalnie mo¿na zdefiniowaæ separator wy¶wietlanych w menu stron, przyk³adowo ^m(:--:); - domy¶nym separatorem jest ·.\n

\n\n^PreviousDropMenu;
\nWy¶wietla rozwijane w dó³ menu zawieraj±ce podstrony na poprzednim poziomie stron.\n

\nPrzyk³ad: ^PreviousDropMenu;\n

\n\n^P; or ^P(); - Previous Menu (Vertical)
\nWy¶wietla pionowe menu zawieraj±ce podstrony na poprzednim poziomie stron. Dodatkowo mo¿liwe jest zdefiniowanie maksymalnej liczby podpoziomów do jakiej menu to bêdzie siê rozwija³o ? domy¶lnie jest to jeden poziom. Przyk³adowo, aby zag³êbiaæ siê maksymalnie trzy podpoziomy, makro powinno mieæ postaæ: ^P(3);. - podaj±c tê warto¶æ w makro na \"0\", umo¿liwi to rozwijanie menu do dowolnego podpoziomu stron.\n

\n\n^p; - Previous Menu (Horizontal)
\nWy¶wietla horyzontalne menu zawieraj±ce strony na poprzednim podpoziomie stron. Opcjonalnie mo¿na zdefiniowaæ separator wy¶wietlanych w menu stron, przyk³adowo ^p(:--:); - domy¶lnym separatorem jest ·.\n

\n\n^rootmenu; or ^rootmenu(); (Horizontal)
\nWy¶wietla horyzontalne menu nazw wszystkich katalogów g³ównych systemu (oprócz katalogu WebGUI). Opcjonalnie mo¿na zdefiniowaæ separator wy¶wietlanych w menu stron, przyk³adowo: ^rootmenu(|);\n

\n\n^RootTab;
\nWy¶wietla menu z nazwami wszystkich katalogów g³ównych systemu (oprócz katalogu WebGUI), w którym przemieszczanie siê po pozycjach menu jest podobne jak nawigacja po formularzach.\n

\nUWAGA: Z tym makro zwi±zane s± dwie klasy stylów CSS: .RootTabOn{} i .RootTabOff{}.\n

\nPrzyk³ad:
\n<style>\n.rootTabOn {\n line-height: 17px;\n font-size: 16px;\n spacing: 3px;\n border: 1px solid black;\n border-bottom-width: 0px;\n background-color: #333333;\n z-index: 10000;\n padding: 3px 9px 5px 9px;\n color: white;\n}\n\n.rootTabOn A, .rootTabOn A:visited {\n color: white;\n font-weight: bold;\n text-decoration: none;\n}\n\n.rootTabOff {\n line-height: 15px;\n font-size: 14px;\n border: 1px solid black;\n border-bottom-width: 0px;\n background-color: #c8c8c8;\n z-index: 1000;\n padding: 2px 9px 2px 9px;\n}\n\n.rootTabOff A, .rootTabOff A:visited {\n color: black;\n text-decoration: underline;\n}\n\n.rootTabOff A:hover {\n font-weight: bold;\n}\n</style>\n^Root\nTab;\n

\n\n\n^SpecificDropMenu();
\nWy¶wietla rozwijalne w dó³ menu zaczynaj±ce siê od wybranego punktu w hierarchii stron menu nawigacyjnego. Podaje siê przy tym dwa parametry ? pierwszy parametr to przetworzony do nazwy adresu URL tytu³ strony od której menu ma siê zaczynaæ, drugi podaje maksymaln± liczbê podpoziomów do jakiego bêdzie siê rozwijaæ dane menu.\n

\nPrzyk³ad: ^SpecificDropMenu(\"home\",3);\n

\n\n^S(); - Specific SubMenu (Vertical)
\nTo makro pozwala na wy¶wietlenie pionowego podmenu strony podanej w makro jako parametr. Przyk³adowo mo¿esz utworzyæ podmenu strony g³ównej poprzez podania makra w postaci: ^S(\"indeks\",0);. Pierwszy parametr to przetworzony do nazwy adresu URL tytu³ strony (w tym przyk³adzie strona o nazwie ?indeks?), drugi parametr wskazuje na liczbê kolejnych podpoziomów na które menu mo¿e siê zag³êbiaæ, domy¶lnie jest to jeden podpoziom (warto¶æ ?0? oznacza brak ograniczeñ). Aby przyk³adowo zag³êbiaæ siê maksymalnie do trzech podpoziomów, nale¿y u¿yæ makra w postaci ^S(\"nazwa_strony\",3);.\n

\n\n\n^s(); - Specific SubMenu (Horizontal)
\nTo makro pozwala na wy¶wietlenie poziomego podmenu strony podanej w makro jako parametr (tytu³ strony przetworzony do nazwy adresu URL). Przyk³adowo mo¿esz wy¶wietliæ podmenu strony ?nazwastronyserwisu? podaj±c makro w postaci: ^s(\"nazwastronyserwisu\");. Opcjonalnie mo¿liwe jest zdefiniowanie separatora stron w menu, przyk³adowo podaj±c makro w postaci: ^s(\"nazwastronyserwisu\",\":--:\");. Domy¶lnym separatorem jest znak ·.\n

\n\n^Synopsis; or ^Synopsis(); Menu
\nTo makro wy¶wietla podmenu strony razem z krótkim opisem ka¿dej z pozycji. Mo¿na w tym makro zdefiniowaæ liczbê okre¶laj±c± dopuszczalny poziom zag³êbiania siê w kolejne podpoziomy menu.\n

\n\nUWAGI: Z tym makro zwi±zane s± nastêpuj±ce klasy stylów CSS: .synopsis_sub, .synopsis_summary, oraz .synopsis_title.\n

\n\n^TopDropMenu;
\nWy¶wietla rozwijane w dó³ menu najwy¿szego poziomu stron.\n

\nPrzyk³ad: ^TopDropMenu;\n

\n\n^T; or ^T(); - Top Level Menu (Vertical)
\nWy¶wietla pionowe menu g³ównych stron serwisu (podstrony katalogu g³ównego). Dodatkowo mo¿na zdefiniowaæ liczbê poziomów o jakie maksymalnie mo¿e siê zag³êbiæ to menu ? domy¶lnie jest to jeden poziom. Przyk³adowo, aby ograniczyæ wy¶wietlanie menu do maksimum trzech kolejnych poziomów, makro powinno mieæ postaæ: ^T(3); - warto¶æ ?0? oznacza brak ograniczenia.\n

\n\n^t; - Top Level Menu (Horizontal)
\nWy¶wietla pionowe menu g³ównych stron serwisu (podstrony katalogu g³ównego). Opcjonalnie mo¿liwe jest zdefiniowanie separatora stron w menu, przyk³adowo podaj±c makro w postaci: ^t(:--:);. Domy¶lnym separatorem jest znak ·.\n

\n\n^/; - System URL
\nAdres URL g³ównego skryptu systemu (który wywo³ywany z parametrami generuje odpowiednie strony serwisu), przyk³adowo: /index.pl/.\n

\n\n^\\; - Page URL
\nAdres URL bie¿±cej strony, przyk³adowo: /index.pl/nazwastrony).\n

',1051222723,NULL); +INSERT INTO international VALUES (832,'WebGUI',16,'System zarz±dzania zasobami posiada nastêpuj±cy zestaw makr do wykorzystania.\n

\n\n^File();
\nTo makro buduje link do pliku umo¿liwiaj±cy jego ¶ci±gniêcie z serwera - do linku tworzona jest odpowiednia ikonka zwi±zana z plikiem oraz tworzona jest nazwa linku.\n

\n\n^I();
\nTo makro buduje link do podanego wed³ug nazwy obrazka, ³±cznie z tagiem HTML umo¿liwiaj±cym wy¶wietlenie takiego obrazka na stronie.\n

\nPrzyk³ad: ^I(\"logo\");\n

\n\n^i();
\nTo makro zwraca adres URL do podanego pliku w zasobach.\n

\nPrzyk³ad: ^i(\"status raportu\");\n

\n\n\n^RandomImage();
\nTo makro wybiera losowo obrazek z folderu podanego jako parametr makro i wy¶wietla je podobnie jak makro ^I();. Je¿eli nazwa folderu nie zostanie podana, to domy¶lnie u¿yty zostanie g³ówny folder.\n

\nPrzyk³ad: ^RandomImage(\"loga serwisu\");\n

\n\n^RandomSnippet();
\nTo makro wybiera losowo jeden z fragmentów z folderu podanego jako parametr tego makro i prezentuje go podobnie jak makro ^Snippet();. Je¿eli nazwa folderu nie zostanie podana, to domy¶lnie u¿yty zostanie g³ówny folder.\n

\nPrzyk³ad: ^RandomSnippet(\"humoreski\");\n

\n\n\n^SI();
\nJest to makro umo¿liwiaj±ce skalowanie (po stronie serwera) obrazków z zasobów, z mo¿liwo¶ci± zachowania oryginalnych proporcji zdjêæ lub wed³ug nowych podanych rozmiarów. \n

\nMakro wymaga podanie czterech parametrów. Pierwszym parametrem jest nazwa obrazka i ewentualnie opcjonalny identyfikator tego obrazka w zasobach (ID zasobu). Drugi parametr to szeroko¶æ obrazka - ustawiona na zero powoduje ¿e proporcje bêd± zachowywane wzglêdem wysoko¶ci obrazka. Trzeci parametr to wysoko¶æ - ustawiona na zero powoduje ¿e proporcje bêd± zachowywane wzglêdem szeroko¶ci obrazka. Czwarty parametr umo¿liwia zdefiniowanie dodatkowych parametrów dla obrazka.\n

\nPrzyk³ady:
\nPrezentacja samego obrazka wed³ug podanej jego nazwy (bez skalowania)
\n^SI(obrazek);\n

\nPrezentacja samego obrazka wed³ug podanego jego ID zasobu (bez skalowania)
\n^SI(66);\n

\nSkalowanie obrazków wed³ug szeroko¶ci, z zachowaniem pierwotnego stosunku boków obrazka
\n^SI(66,25);\n

\nSkalowanie obrazków wed³ug wysoko¶ci, z zachowaniem pierwotnego stosunku boków obrazka
\n^SI(66,0,25);\n

\nSkalowanie z podaniem swoich w³asnych rozmiarów boków
\n^SI(66,148,25);\n

\nPrzyk³ad u¿ycia dodatkowych parametrów
\n^SI(66,0,0,\'border=\"0\"\');\n

\n\n\n^Snippet();
\nTo makro wybiera dany fragment z zasobów i umieszcza go na stronie.\n

\nPrzyk³ad: ^Snippet(\"kod flash\");\n

\n\n^Thumbnail();
\nTo makro podaje adres URL miniaturki obrazka z zasobów.\n

\nPrzyk³ad: ^Thumbnail(\"logo\");\n

\n\n^ThumbnailLinker();
\nTo makro tworzy przegl±darkê obrazków zawartych w zasobach. Tworzona jest miniaturka obrazka z jego nazw± umieszczon± poni¿ej obrazka oraz oba te elementy s± linkiem do obrazka w pe³nym wymiarze. Je¿eli podamy \"1\" jako drugi parametr makra, to linki do obrazka bêd± siê otwiera³y w nowym oknie.\n

\nPrzyk³ad: ^ThumbnailLinker(\"logo\");\n

',1051221379,NULL); +INSERT INTO international VALUES (940,'WebGUI',16,'Otworzyæ w nowym oknie?',1050438829,NULL); +INSERT INTO international VALUES (931,'WebGUI',16,'Zarz±dzanie projektem graficznym serwisu',1050437240,NULL); +INSERT INTO international VALUES (932,'WebGUI',16,'

Projekty graficzne s± mechanizmem umo¿liwiaj±cym szybk± instalacjê nowych stylów stron, szablonów oraz wdro¿enia pozosta³ych zasobów i elementów sk³adowych interfejsu systemu WebGUI. Umo¿liwiaj± one równie¿ przeniesienie wszystkich elementów zwi±zanych z danym projektem do innego systemu WebGUI.\r\n

\r\nUwaga: Podczas tworzenia projektu graficznego, dobrym zwyczajem jest stosowanie unikalnego nazewnictwa elementów projektu (stylów, szablonów i innych plików i wykorzystywanych zasobów). Dziêki temu uniknie siê konfliktu nazw oraz Twoi u¿ytkownicy ³atwiej zidentyfikuj± te elementy w projekcie.\r\n

',1050437240,NULL); +INSERT INTO international VALUES (938,'WebGUI',16,'Projekt graficzny, Usuwanie',1050437207,NULL); +INSERT INTO international VALUES (939,'WebGUI',16,'Kiedy usuwany jest projekt graficzny strony który sam stworzy³e¶, to usuwane s± tylko podstawowe w³a¶ciwo¶ci projektu. Jednak¿e, kiedy usuwany jest zaimportowany projekt graficzny strony, usuwane s± równie¿ wszystkie jego sk³adniki (style CSS, szablony oraz do³±czone do niego pliki i zasoby). Nale¿y sprawdziæ w takim wypadku czy ¿aden z usuwanych sk³adników nie jest przez Ciebie wykorzystywany.',1050437207,NULL); +INSERT INTO international VALUES (936,'WebGUI',16,'Projekt graficzny, Import',1050436484,NULL); +INSERT INTO international VALUES (937,'WebGUI',16,'Aby móc zaimportowaæ projekt graficzny, wymagany jest plik utworzony poprzez eksport projektu graficznego z innego systemu WebGUI. Wybierz tak przygotowany plik z dysku Twojego komputera i naci¶nij przycisk importu. Pojawi siê nastêpnie ekran potwierdzenia upewniaj±cy siê czy na pewno chcesz zaimportowaæ wybrany plik projektu. Aby potwierdziæ, nale¿y ponownie nacisn±æ przycisk importu - projekt zostanie zaimportowany. Po wykonaniu importu mo¿na rozpocz±æ wdra¿anie projektu graficznego do Twojego serwisu, podobnie jak siê to czyni dla stylów, szablonów oraz innych do³±czonych plików i zasobów.\r\n

\r\nNie jest mo¿liwy dwukrotny import projektu graficznego. Je¿eli chcesz zaimportowaæ now± wersjê projektu, musisz najpierw usun±æ jego poprzedni± wersjê z systemu WebGUI. \r\n

\r\nNie mo¿na równie¿ zaimportowaæ projektu graficznego utworzonego w nowszej ni¿ u¿ywana wersji systemu WebGUI. W takim wypadku nale¿y najpierw zaktualizowaæ posiadan± wersjê systemu WebGUI i dopiero wtedy mo¿liwy bêdzie import takiego projektu.',1050436484,NULL); +INSERT INTO international VALUES (935,'WebGUI',16,'Wczytany plik nie jest poprawnym plikiem projektu graficznego dla systemu WebGUI.',1050431137,NULL); +INSERT INTO international VALUES (933,'WebGUI',16,'Projekt graficzny, Edycja',1050430737,NULL); +INSERT INTO international VALUES (934,'WebGUI',16,'

Tworzenie i edycja projektów graficznych dla serwisu utworzonego poprzez WebGUI jest stosunkowo prostym procesem. W pierwszej kolejno¶ci nale¿y zdefiniowaæ podstawowe w³a¶ciwo¶ci projektu, a nastêpnie rozpocz±æ dodawanie do projektu kolejnych elementów graficznych. \r\n

\r\nPodstawowe w³a¶ciwo¶ci projektu nie mog± byæ zmienione przez nikogo spoza serwisu, jedynie poprzez administratora danego systemu webGUI. Podstawowe w³a¶ciwo¶ci sk³adaj± siê z nastêpuj±cych danych:\r\n

\r\nID projektu graficznego
\r\nUnikalny identyfikator tego projektu graficznego w systemie WebGUI. Ten identyfikator ulegnie zmianie je¿eli dany projekt zostanie zaimportowany do innego systemu WebGUI.\r\n

\r\n\r\nNazwa projektu graficznego
\r\nUnikalna nazwa tego projektu. Nazwa musi byæ unikalna w ramach ka¿dego systemu WebGUI do którego ten projekt zostanie ewentualnie zaimportowany, poniewa¿ podczas eksportu-importu nazwa projektu nie ulega zmianie.\r\n

\r\n\r\nProjektant
\r\nDane osoby lub firmy, która utworzy³a ten projekt. \r\n

\r\n\r\nAdres URL projektanta
\r\nadres URL strony domowej twórcy danego projektu. Je¿eli Twoja dzia³alno¶æ zwi±zana jest z tworzeniem projektów dla serwisów opartych o WebGUI, to dziêki podanemu adresowi mo¿esz przyci±gn±æ uwagê potencjalnych klientów do Twojej oferty.\r\n

',1050430737,NULL); +INSERT INTO international VALUES (638,'WebGUI',16,'Szablony s³u¿± do definiowania rozmieszczenia zawarto¶ci stron. W systemie jest ju¿ wiele gotowych szablonów, natomiast mo¿esz równie¿ dodawaæ swoje w³asne szablony, aby uzyskaæ wygl±d serwisu ca³kowicie zgodny z twoimi oczekiwaniami. \n',1050430164,NULL); +INSERT INTO international VALUES (930,'WebGUI',16,'Obejrzyj projekt graficzny',1050270912,NULL); +INSERT INTO international VALUES (929,'WebGUI',16,'Importuj!',1050265357,NULL); +INSERT INTO international VALUES (928,'WebGUI',16,'Czy chcesz importowaæ ten projekt graficzny?',1050265284,NULL); +INSERT INTO international VALUES (927,'WebGUI',16,'Importowanie projektu graficznego strony',1050265139,NULL); +INSERT INTO international VALUES (926,'WebGUI',16,'Ten projekt graficzny zosta³ zainstalowany za pomoc± nowszej wersji systemu WebGUI ni¿ ta której obecnie u¿ywasz. Musisz zaktualizowaæ wersjê systemu WebGUI zanim zainstalujesz ten projekt graficzny.',1050264990,NULL); +INSERT INTO international VALUES (925,'WebGUI',16,'Masz ju¿ zainstalowan± inn± wersjê tego projektu graficznego. Musisz j± usun±æ przed ponownym zainstalowaniem.',1050264954,NULL); +INSERT INTO international VALUES (924,'WebGUI',16,'Importuj projekt.',1050262993,NULL); +INSERT INTO international VALUES (923,'WebGUI',16,'Wersja projektu graficznego',1050262964,NULL); +INSERT INTO international VALUES (922,'WebGUI',16,'Utworzony z',1050262917,NULL); +INSERT INTO international VALUES (921,'WebGUI',16,'Plik pakietu projektu graficznego ',1050260403,NULL); +INSERT INTO international VALUES (920,'WebGUI',16,'Eksportuj ten projekt.',1050247169,NULL); +INSERT INTO international VALUES (919,'WebGUI',16,'Edytuj ten projekt.',1050247154,NULL); +INSERT INTO international VALUES (918,'WebGUI',16,'Usuñ ten projekt.',1050247144,NULL); +INSERT INTO international VALUES (917,'WebGUI',16,'Dodaj nowy element.',1050232824,NULL); +INSERT INTO international VALUES (916,'WebGUI',16,'Wstawka/fragment',1050232301,NULL); +INSERT INTO international VALUES (915,'WebGUI',16,'Plik',1050232294,NULL); +INSERT INTO international VALUES (914,'WebGUI',16,'Obrazek',1050232286,NULL); +INSERT INTO international VALUES (913,'WebGUI',16,'Szablon',1050232279,NULL); +INSERT INTO international VALUES (911,'WebGUI',16,'Element',1050232236,NULL); +INSERT INTO international VALUES (909,'WebGUI',16,'Dodaj element projektu graficznego',1050232207,NULL); +INSERT INTO international VALUES (908,'WebGUI',16,'Czy na pewno chcesz usun±æ ten element z tego projektu graficznego?',1050230878,NULL); +INSERT INTO international VALUES (907,'WebGUI',16,'Czy jeste¶ pewny ¿e chcesz usun±æ ten projekt graficzny?',1050230443,NULL); +INSERT INTO international VALUES (906,'WebGUI',16,'Adres URL projektanta',1050191766,NULL); +INSERT INTO international VALUES (905,'WebGUI',16,'Projektant',1050191749,NULL); +INSERT INTO international VALUES (904,'WebGUI',16,'Nazwa projektu graficznego',1050190959,NULL); +INSERT INTO international VALUES (903,'WebGUI',16,'ID projektu',1050190880,NULL); +INSERT INTO international VALUES (902,'WebGUI',16,'Edycja projektu graficznego',1050190716,NULL); +INSERT INTO international VALUES (901,'WebGUI',16,'Dodaj nowy projekt graficzny.',1050190107,NULL); +INSERT INTO international VALUES (900,'WebGUI',16,'Zarz±dzaj projektami.',1050189066,NULL); +INSERT INTO international VALUES (899,'WebGUI',16,'Zarz±dzanie projektami graficznymi',1050189012,NULL); +INSERT INTO international VALUES (71,'Poll',16,'Dziêki sondom mo¿emy zorientowaæ siê w opiniach naszych u¿ytkowników na ró¿ne interesuj±ce nas i u¿ytkowników tematy.\n

\nAktywna
\nJe¿eli pole zaznaczone, to u¿ytkownicy mog± nadal zg³aszaæ swoje g³osy w ramach danej sondy. W przeciwnym wypadku mog± tylko obejrzeæ dotychczasowe rezultaty g³osowañ.\n

\n\nKto mo¿e g³osowaæ?
\nWybierz grupê, która uprawniona jest do brania udzia³u w tej sondzie.\n

\n\nPunkty za g³osowanie
\nIloma punktami nagradzaæ u¿ytkownika za zag³osowanie (pole aktywne je¿eli administrator w ustawieniach u¿ytkowników aktywowa³ system punktacji u¿ytkowników za ich aktywno¶æ)?\n

\n\nSzeroko¶æ wykresu
\nSzeroko¶æ graficznej belki reprezentuj±cej procentowy udzia³ danej odpowiedzi w g³osowaniach u¿ytkowników. Szeroko¶æ jest podana w pikselach.\n

\n\nPytanie
\nPodaj pytanie sondy na które u¿ytkownicy bêd± wybieraæ odpowiedzi.\n

\n\nOdpowiedzi
\nWpisz listê dostêpnych do wyboru odpowiedzi na pytanie sondy. Wpisuj tylko po jednej odpowiedzi w wierszu - maksymalnie mo¿esz zdefiniowaæ do 20 odpowiedzi.\n

\n\nLosowaæ odpowiedzi?
\nAby nie sugerowaæ u¿ytkownikowi wyboru odpowiedzi bazuj±cego na ich kolejno¶ci na ekranie, mo¿esz wybraæ losowanie odpowiedzi, co spowoduje ka¿dokrotne losowe ustawianie listy odpowiedzi.\n

\n\nResetuj g³osowanie
\nZerowanie dotychczas zliczonych rezultatów g³osowania w danej sondzie.\n

',1050183732,NULL); +INSERT INTO international VALUES (73,'Poll',16,'Szablon sondy',1050183668,NULL); +INSERT INTO international VALUES (74,'Poll',16,'

W szablonach Sond dostêpne s± do wykorzystania nastêpuj±ce zmienne:\r\n

\r\ncanVote
\r\nWarunek okre¶laj±cy czy dany u¿ytkownik ma prawo uczestniczenia w danej sondzie.\r\n

\r\n\r\nquestion
\r\nPytanie danej sondy, na któr± u¿ytkownicy bêd± wybierali zdefiniowane odpowiedzi.\r\n

\r\n\r\nform.start
\r\nPocz±tek formularza zawieraj±cego tre¶æ sondy.\r\n

\r\n\r\nanswer_loop
\r\nLista zawieraj±ca wybór odpowiedzi na dan± sondê.\r\n

\r\n\r\n

\r\n\r\nanswer.form
\r\nPrzycisk wyboru danej odpowiedzi sondy.\r\n

\r\n\r\nanswer.text
\r\nTre¶æ danej odpowiedzi sondy.\r\n

\r\n\r\nanswer.number
\r\nNumer porz±dkowy danej odpowiedzi sondy (kolejne liczby ca³kowite - 1, 2, 3, itd.).\r\n

\r\n\r\nanswer.graphWidth
\r\nD³ugo¶æ graficznej belki reprezentuj±cej procentowy udzia³ danej odpowiedzi w g³osowaniach u¿ytkowników. \r\n

\r\n\r\n\r\nanswer.percent
\r\nLiczba reprezentuj±ca procentowy udzia³ danej odpowiedzi w g³osowaniach u¿ytkowników.\r\n

\r\n\r\nanswer.total
\r\nSumaryczna liczba wszystkich g³osowañ u¿ytkowników.\r\n

\r\n\r\n

\r\n\r\n\r\nform.submit
\r\nPrzycisk umo¿liwiaj±cy zag³osowanie w ramach danej sondy.\r\n

\r\n\r\nform.end
\r\nKoniec formularza zawieraj±cego tre¶æ sondy.\r\n

\r\n\r\nresponses.label
\r\nTre¶æ etykiety opisuj±cej liczbê wszystkich g³osowañ u¿ytkowników w danej sondzie.\r\n

\r\n\r\nresponses.total
\r\nLiczba wszystkich g³osowañ u¿ytkowników w danej sondzie.\r\n

',1050183668,NULL); +INSERT INTO international VALUES (898,'WebGUI',16,'Ikonka przy adresie',1050172395,NULL); +INSERT INTO international VALUES (897,'WebGUI',16,'Ikonka w \"Ulubionych\"',1050170767,NULL); +INSERT INTO international VALUES (897,'WebGUI/Profile',16,'Edytowalny?',1050167573,NULL); +INSERT INTO international VALUES (669,'WebGUI',16,'Makra, U¿ywanie',1049279249,NULL); +INSERT INTO international VALUES (668,'WebGUI',16,'Arkusze Stylów, U¿ywanie',1049279215,NULL); +INSERT INTO international VALUES (664,'WebGUI',16,'Obiekt (wobject), Usuwanie',1049279140,NULL); +INSERT INTO international VALUES (61,'WebGUI',16,'Uaktualnij Ustawienia Konta',1049278878,NULL); +INSERT INTO international VALUES (585,'WebGUI',16,'Zarz±dzanie t³umaczeniami.',1049278764,NULL); +INSERT INTO international VALUES (586,'WebGUI',16,'Zarz±dzanie T³umaczeniami',1049278734,NULL); +INSERT INTO international VALUES (835,'WebGUI',16,'Fragment, Dodawanie/Edycja',1049278599,NULL); +INSERT INTO international VALUES (801,'WebGUI',16,'Interakcje obiektu',1049278421,NULL); +INSERT INTO international VALUES (793,'WebGUI',16,'Zawarto¶æ Zasobów',1049278328,NULL); +INSERT INTO international VALUES (789,'WebGUI/Profile',16,'Edytuj t± kategoriê profilu.',1049278282,NULL); +INSERT INTO international VALUES (782,'WebGUI',16,'Którykolwiek',1049278111,NULL); +INSERT INTO international VALUES (781,'WebGUI',16,'Fragment',1049278033,NULL); +INSERT INTO international VALUES (774,'WebGUI',16,'Na pewno chcesz usun±æ t± pozycjê zasobów? Nie bêdzie mo¿na jej odzyskaæ!',1049277994,NULL); +INSERT INTO international VALUES (771,'WebGUI',16,'Fragment',1049277890,NULL); +INSERT INTO international VALUES (770,'WebGUI',16,'Edytuj Fragment',1049277857,NULL); +INSERT INTO international VALUES (77,'WebGUI',16,'To nazwa konta jest zajêta przez innego u¿ytkownika serwisu. Spróbuj z inn± nazw±. Oto kilka sugestii:',1049277812,NULL); +INSERT INTO international VALUES (769,'WebGUI',16,'Organizuj w Folderze',1049277737,NULL); +INSERT INTO international VALUES (767,'WebGUI',16,'Id zasobu',1049277677,NULL); +INSERT INTO international VALUES (766,'WebGUI',16,'Lista zawarto¶ci zasobów.',1049277637,NULL); +INSERT INTO international VALUES (765,'WebGUI',16,'Usuñ t± pozycjê zasobów.',1049277592,NULL); +INSERT INTO international VALUES (764,'WebGUI',16,'Edytuj t± pozycjê zasobów.',1049277108,NULL); +INSERT INTO international VALUES (763,'WebGUI',16,'Dodaj fragment.',1049277063,NULL); +INSERT INTO international VALUES (760,'WebGUI',16,'Usuñ ten folder.',1049276915,NULL); +INSERT INTO international VALUES (757,'WebGUI',16,'Zarz±dzaj Zasobami',1049276861,NULL); +INSERT INTO international VALUES (753,'WebGUI',16,'Edytuj t± grupê.',1049276509,NULL); +INSERT INTO international VALUES (750,'WebGUI',16,'Usuñ tego u¿ytkownika.',1049276468,NULL); +INSERT INTO international VALUES (748,'WebGUI',16,'Pozycja U¿ytkownika',1049276424,NULL); +INSERT INTO international VALUES (745,'WebGUI',16,'Przej¶cie do strony z tym obiektem.',1049276330,NULL); +INSERT INTO international VALUES (863,'WebGUI',16,'Opó¼nienie Usuniêcia',1049276092,NULL); +INSERT INTO international VALUES (856,'WebGUI',16,'Nie masz obecnie edytowalnych ustawieñ konta.',1049275962,NULL); +INSERT INTO international VALUES (1,'WobjectProxy',16,'Obiekt g³ówny proxy',1049275830,NULL); +INSERT INTO international VALUES (2,'WobjectProxy',16,'Edycja Obiektu typu Proxy',1049273703,NULL); +INSERT INTO international VALUES (888,'WebGUI',16,'D³ugo¶æ Podgl±du Fragmentu',1049273669,NULL); +INSERT INTO international VALUES (5,'WobjectProxy',16,'Obiekt typu Proxy, Dodawanie/Edycja',1049273484,NULL); +INSERT INTO international VALUES (4,'WobjectProxy',16,'Obiekt Proxy nie mo¿e wykonaæ zadania. Prawdpodobnie g³ówny obiekt do którego dany obiekt jest skrótem zosta³ usuniêty.',1049273424,NULL); +INSERT INTO international VALUES (3,'WobjectProxy',16,'Obiekt Proxy',1049273309,NULL); +INSERT INTO international VALUES (885,'WebGUI',16,'Zezwalaæ na deaktywacjê w³asnych kont?',1049273245,NULL); +INSERT INTO international VALUES (626,'WebGUI',16,'Obiekty stanowi± o prawdziwej sile i funkcjonalno¶ci WebGUI. Obiekty to przygotowane dla systemu WebGUI modu³y, które mo¿na do³±czaæ i dostosowywaæ do serwisu zbudowanego w oparciu o WebGUI. Przyk³adem s± tu Fora dyskusyjne i sondy.\n

\n\nAby dodaæ obiekt do strony, nale¿y najpierw przej¶æ do danej strony, nastêpnie wybraæ opcjê \"Dodaj tre¶æ...\" z menu w lewym górnym rogu ekranu. Ka¿dy obiekt ma swój w³asny system pomocy opisuj±cy dok³adnie sposób u¿ycia oraz definiowania jego poszczególnych parametrów.\n

\n\n\nPliki stylów stron: Wszystkie obiekty maj± swoj± w³asn± klasê stylu CSS oznaczon± odpowiednim identyfikatorem. \n

\n\nNazwy klas stylów CSS sk³adaj± siê ze s³owa \"wobject\" plus okre¶lenia typu obiektu - np. dla obiektu obs³ugi sond bêdzie to s³owo \"wobjectPoll\". Taka klasa stylów CSS odnosi siê do wszystkich obiektów danego typu w systemie WebGUI. \n

\n\nIdentyfikatorem klasy stylów CSS jest s³owo \"wobjectId\" plus identyfikator danego obiektu. Przyk³adowo wiêc je¿eli artyku³ ma Id obiektu równe 94, to identyfikatorem bêdzie s³owo \"wobjectId94\".\n

',1047858549,NULL); +INSERT INTO international VALUES (10,'HttpProxy',16,'Proxy HTTP, Dodawanie/Edycja',1047858432,NULL); +INSERT INTO international VALUES (71,'SyndicatedContent',16,'

Kana³y informacji to ¼ród³a regularnie aktualizowanych informacji, które otrzymywane s± w wyniku automatycznego wczytywania specjalnie przygotowanych plików (w tzw. standardzie RDF/RSS), przygotowanych do udostêpnienia przez inne serwisy www. Technologia ta jest najczê¶ciej wykorzystywana do wczytywania nag³ówków najnowszych wiadomo¶ci z interesuj±cych nas stron www, przyk³adowo CNN i Slashdot. Mo¿e byæ równie¿ wykorzystywana do wczytywania innych typów informacji, takich jak notowania gie³dowe czy rezultaty sportowe, itp. (oczywi¶cie odpowiedni serwis musi w tym celu udostêpniaæ pliki w formacie RDF/RSS).\n

\n\nURL do pliku RSS
\nPodaj dok³adny adres URL (zaczynaj±cy siê od http://) do pliku RDF/RSS zawieraj±cego informacje udostêpniane przez intersuj±cy nas serwis w ramach kana³u informacyjnego. Informacje udostêpniane poprzez taki kana³, bêd± wczytywane i aktualizowane co godzina.\n

\nPrzyk³adowe adresy serwisów www udostêpniaj±cych kana³y informacyjne:\n

\n\n

\nAby utworzyæ ³±czn± grupê informacji z kana³ów informacyjnych ró¿nych serwisów www, nale¿y w tym polu podaæ listê adresów plików RDF/RSS tych serwisów rozdzielonych spacj±. W takim wypadku wy¶wietlana bêdzie ta sama liczba nag³ówków informacji z ka¿dego podanego serwisu www i sortowana bêdzie wed³ug kolejno¶ci otrzymania/wczytania informacji.\n

\n\nSzablon
\nWybierz sposób prezentacji informacji z kana³ów informacyjnych.\n

Liczba Nag³ówków
\nWprowad¼ maksymaln± liczbê nag³ówków informacji wczytanych z pliku RDF/RSS, jakie mog± byæ wy¶wietlone. Podanie cyfry zero oznacza brak ograniczeñ na liczbê prezentowanych nag³ówków. W przypadku ³±cznej grupy informacji wczytanych z ró¿nych serwisów www, system wy¶wietli t± sam± liczbê informacji z ka¿dego serwisu i nie bêdzie tu brane pod uwagê ograniczenie liczby nag³ówków.\n

',1047855741,NULL); +INSERT INTO international VALUES (72,'SyndicatedContent',16,'Szablon kana³ów informacji',1047855526,NULL); +INSERT INTO international VALUES (73,'SyndicatedContent',16,'

W szablonach kana³ów informacji dostêpne s± do wykorzystania nastêpuj±ce zmienne:\n\n

\n\nchannel.title
\nTytu³ danego kana³u informacyjnego.\n

\n\nchannel.description
\nOpis rodzaju informacji otrzymywanego z danego kana³u.\n

\n\nchannel.link
\nAdres URL do strony z której pochodzi dany kana³ informacyjny.\n

\n\nitem_loop
\nLista informacji w tre¶ci danego kana³u informacyjnego.\n\n

\n\ntitle
\nTytu³ danej informacji.\n

\n\ndescription
\nOpis danej informacji.\n

\n\nlink\nAdres URL (link) do oryginalnej strony z której pochodzi dana informacja.\n

\n
',1047855526,NULL); +INSERT INTO international VALUES (73,'SiteMap',16,'

W szablonach Spisów tre¶ci dostêpne s± do wykorzystania nastêpuj±ce zmienne:\n

\n\npage_loop
\nZawiera listê wszystkich stron w danym spisie tre¶ci.\n

\n\npage.indent
\nLiczba znaków spacji o jak± przesuniêta jest dana strona w spisie tre¶ci, co wynika z jej po³o¿enia w hierarchii stron.\n

\n\npage.url
\nAdres URL (link) do tej strony.\n

\n\npage.id
\nUnikalny identyfikator tej strony (dla wewnêtrznych potrzeb systemu WEBGUI).\n

\n\npage.title
\nTytu³ tej strony.\n

\n\npage.menutitle
\nTytu³ tej strony, jaki pojawia siê w nawigacji spisu tre¶ci.\n

\n\npage.synopsis
\nOpis tre¶ci strony (je¿eli istnieje).\n

\n\npage.isRoot
\nWarunek definiuj±cy czy dana strona jest stron± g³ówn± (nadrzêdna w hierarchii w stosunku do innych stron).\n

\n\npage.isTop
\nwarunek definiuj±cy czy dana strona jest na szczycie hierarchii stron.\n

\n\n\n

\n

',1047855100,NULL); +INSERT INTO international VALUES (1030,'WebGUI',16,'przez',1047842270,NULL); +INSERT INTO international VALUES (1029,'WebGUI',16,'Edytowano',1047842180,NULL); +INSERT INTO international VALUES (891,'WebGUI',16,'Usuñ tylko makra.',1047838859,NULL); +INSERT INTO international VALUES (4,'HttpProxy',16,'Czas oczekiwania',1047837283,NULL); +INSERT INTO international VALUES (8,'HttpProxy',16,'Przekierowania?',1047837255,NULL); +INSERT INTO international VALUES (6,'HttpProxy',16,'Usuwaæ style?',1047837230,NULL); +INSERT INTO international VALUES (9,'HttpProxy',16,'Pliki Cookie, Jar',1047835842,NULL); +INSERT INTO international VALUES (5,'HttpProxy',16,'Czy stosowaæ Proxy dla innych domen?',1047835817,NULL); +INSERT INTO international VALUES (864,'WebGUI',16,'Ile dni wcze¶niej powiadomiæ o wyga¶niêciu',1046963705,NULL); +INSERT INTO international VALUES (367,'WebGUI',16,'Wygasa po',1046963575,NULL); +INSERT INTO international VALUES (352,'WebGUI',16,'Data pozycji',1046958568,NULL); +INSERT INTO international VALUES (422,'WebGUI',16,'

B³±d logowania

Nieprawid³owy u¿ytkownik/has³o.',1046957261,NULL); +INSERT INTO international VALUES (417,'WebGUI',16,'

Naruszenie bezpieczeñstwa

\r\nPróbujesz uzyskaæ dostêp do obiektu nie zwi±zanego z t± stron±. Ten incydent zosta³ zanotowany.',1046957222,NULL); +INSERT INTO international VALUES (76,'USS',16,'Szablon propozycji',1046955644,NULL); +INSERT INTO international VALUES (74,'USS',16,'Szablon systemu propozycji u¿ytkowników',1046955627,NULL); +INSERT INTO international VALUES (73,'USS',16,'Szablon propozycji',1046955453,NULL); +INSERT INTO international VALUES (6,'USS',16,'Propozycji na stronê',1046955350,NULL); +INSERT INTO international VALUES (59,'USS',16,'Nastêpna propozycja',1046955331,NULL); +INSERT INTO international VALUES (58,'USS',16,'Poprzednia propozycja',1046955317,NULL); +INSERT INTO international VALUES (57,'USS',16,'Odpowiedzi',1046955307,NULL); +INSERT INTO international VALUES (53,'USS',16,'Uk³ad',1046955296,NULL); +INSERT INTO international VALUES (52,'USS',16,'Miniaturka',1046955270,NULL); +INSERT INTO international VALUES (51,'USS',16,'Wy¶wietlaæ miniaturki?',1046955254,NULL); +INSERT INTO international VALUES (5,'USS',16,'Twoja propozycja zosta³a odrzucona.',1046955241,NULL); +INSERT INTO international VALUES (48,'USS',16,'Umo¿liwiæ dyskusjê?',1046955195,NULL); +INSERT INTO international VALUES (41,'USS',16,'Data',1046955185,NULL); +INSERT INTO international VALUES (47,'USS',16,'Odpowiedz',1046955005,NULL); +INSERT INTO international VALUES (46,'USS',16,'Wiêcej...',1046954962,NULL); +INSERT INTO international VALUES (4,'USS',16,'Twoja propozycja zosta³a zaaprobowana.',1046954848,NULL); +INSERT INTO international VALUES (39,'USS',16,'Odpowiedz',1046954831,NULL); +INSERT INTO international VALUES (88,'USS',1,'Sequence',1070027660,'A type of ordering in the USS that will allow the admin to specify (or sequence) the order of the results.'); +INSERT INTO international VALUES (37,'USS',16,'Usuñ',1046954792,NULL); +INSERT INTO international VALUES (35,'USS',16,'Tytu³',1046954767,NULL); +INSERT INTO international VALUES (33,'USS',16,'Za³±cznik',1046954740,NULL); +INSERT INTO international VALUES (32,'USS',16,'Obrazek',1046954731,NULL); +INSERT INTO international VALUES (31,'USS',16,'Tre¶æ',1046954723,NULL); +INSERT INTO international VALUES (30,'USS',16,'Punkty za zg³oszenie',1046954704,NULL); +INSERT INTO international VALUES (3,'USS',16,'Masz propozycjê u¿ytkownika do zaaprobowania',1046954697,NULL); +INSERT INTO international VALUES (29,'USS',16,'System zg³aszania propozycji',1046954659,NULL); +INSERT INTO international VALUES (28,'USS',16,'Powrót do listy propozycji',1046954425,NULL); +INSERT INTO international VALUES (27,'USS',16,'Edycja',1046954408,NULL); +INSERT INTO international VALUES (21,'USS',16,'Zaproponowa³',1046954401,NULL); +INSERT INTO international VALUES (20,'USS',16,'Wy¶lij now± propozycjê',1046954377,NULL); +INSERT INTO international VALUES (2,'USS',16,'Kto mo¿e uczestniczyæ?',1046954356,NULL); +INSERT INTO international VALUES (19,'USS',16,'Edycja propozycji',1046954333,NULL); +INSERT INTO international VALUES (18,'USS',16,'Edycja systemu propozycji u¿ytkowników',1046954323,NULL); +INSERT INTO international VALUES (17,'USS',16,'Na pewno chcesz usun±æ ta propozycjê?',1046954304,NULL); +INSERT INTO international VALUES (16,'USS',16,'Bez tytu³u',1046954285,NULL); +INSERT INTO international VALUES (15,'USS',16,'Edycja/Usuwanie',1046954265,NULL); +INSERT INTO international VALUES (14,'USS',16,'Status',1046954254,NULL); +INSERT INTO international VALUES (13,'USS',16,'Data wys³ania',1046954249,NULL); +INSERT INTO international VALUES (12,'USS',16,'Odznacz, je¿eli piszesz propozycjê w HTML',1046954215,NULL); +INSERT INTO international VALUES (1,'USS',16,'Kto mo¿e aprobowaæ?',1046954183,NULL); +INSERT INTO international VALUES (80,'Survey',16,'sekund',1046954163,NULL); +INSERT INTO international VALUES (77,'Survey',16,'Czas koñcowy',1046954108,NULL); +INSERT INTO international VALUES (78,'Survey',16,'Czas ca³kowity',1046954101,NULL); +INSERT INTO international VALUES (79,'Survey',16,'minut',1046954092,NULL); +INSERT INTO international VALUES (9,'Survey',16,'Ankieta',1046954056,NULL); +INSERT INTO international VALUES (8,'Survey',16,'Porz±dek pytañ',1046954049,NULL); +INSERT INTO international VALUES (76,'Survey',16,'Czas pocz±tkowy',1046954002,NULL); +INSERT INTO international VALUES (75,'Survey',16,'Edycja pytania.',1046953982,NULL); +INSERT INTO international VALUES (74,'Survey',16,'Na pewno chcesz usun±æ wszystkie odpowiedzi uczestników?',1046953970,NULL); +INSERT INTO international VALUES (73,'Survey',16,'Usuñ wszystkie odpowiedzi uczestników.',1046953581,NULL); +INSERT INTO international VALUES (72,'Survey',16,'Na pewno chcesz usun±æ odpowiedzi tego uczestnika?',1046953562,NULL); +INSERT INTO international VALUES (71,'Survey',16,'Dziennik z wynikami',1046953537,NULL); +INSERT INTO international VALUES (70,'Survey',16,'Indywidualne odpowiedzi uczestników.',1046953522,NULL); +INSERT INTO international VALUES (7,'Survey',16,'Wed³ug odpowiedzi',1046953505,NULL); +INSERT INTO international VALUES (69,'Survey',16,'Usuñ odpowiedzi uczestnika.',1046953470,NULL); +INSERT INTO international VALUES (67,'Survey',16,'U¿ytkownik',1046953399,NULL); +INSERT INTO international VALUES (66,'Survey',16,'Odpowiedzi uczestników',1046953389,NULL); +INSERT INTO international VALUES (65,'Survey',16,'Eksportuj ³±czne podsumowanie.',1046953376,NULL); +INSERT INTO international VALUES (64,'Survey',16,'Eksportuj odpowiedzi uczestników.',1046953351,NULL); +INSERT INTO international VALUES (63,'Survey',16,'Eksportuj pytania.',1046953334,NULL); +INSERT INTO international VALUES (62,'Survey',16,'Eksportuj odpowiedzi.',1046953324,NULL); +INSERT INTO international VALUES (60,'Survey',16,'Powrót do ankiety.',1046953303,NULL); +INSERT INTO international VALUES (6,'Survey',16,'Losowy',1046952400,NULL); +INSERT INTO international VALUES (58,'Survey',16,'Przegl±d statystyki',1046952323,NULL); +INSERT INTO international VALUES (57,'Survey',16,'Komentarze',1046952296,NULL); +INSERT INTO international VALUES (54,'Survey',16,'Procentowo',1046952246,NULL); +INSERT INTO international VALUES (53,'Survey',16,'Odpowiedzi',1046952240,NULL); +INSERT INTO international VALUES (52,'Survey',16,'Wynik',1046952221,NULL); +INSERT INTO international VALUES (51,'Survey',16,'Komentarze?',1046952205,NULL); +INSERT INTO international VALUES (50,'Survey',16,'Nastêpny',1046952190,NULL); +INSERT INTO international VALUES (5,'Survey',16,'Sekwencyjny',1046952136,NULL); +INSERT INTO international VALUES (49,'Survey',16,'Nie mo¿esz wzi±æ udzia³u w tymi quizie w tej chwili.',1046952101,NULL); +INSERT INTO international VALUES (48,'Survey',16,'Nie masz prawa do uczestnictwa w tej ankiecie.',1046952071,NULL); +INSERT INTO international VALUES (47,'Survey',16,'Zakoñczy³e¶ quiz',1046952037,NULL); +INSERT INTO international VALUES (46,'Survey',16,'Dziêkujemy za po¶wiêcenie czasu na wype³nienie ankiety.',1046951986,NULL); +INSERT INTO international VALUES (45,'Survey',16,'Na pewno chcesz usun±æ t± odpowied¼ i reakcje na ni±?',1046951948,NULL); +INSERT INTO international VALUES (44,'Survey',16,'Na pewno chcesz usun±æ to pytanie wraz z odpowiedziami i reakcjami',1046951920,NULL); +INSERT INTO international VALUES (43,'Survey',16,'Nigdy',1046951870,NULL); +INSERT INTO international VALUES (42,'Survey',16,'Czasami',1046951863,NULL); +INSERT INTO international VALUES (41,'Survey',16,'Czêstotliwo¶æ',1046951839,NULL); +INSERT INTO international VALUES (40,'Survey',16,'Zawsze',1046951831,NULL); +INSERT INTO international VALUES (39,'Survey',16,'Nieodpowiedni',1046951757,NULL); +INSERT INTO international VALUES (38,'Survey',16,'Zdecydowany brak zgody',1046951739,NULL); +INSERT INTO international VALUES (37,'Survey',16,'Brak zgody',1046951727,NULL); +INSERT INTO international VALUES (36,'Survey',16,'Czê¶ciowy brak zgody',1046951718,NULL); +INSERT INTO international VALUES (35,'Survey',16,'Czê¶ciowa zgoda',1046951706,NULL); +INSERT INTO international VALUES (34,'Survey',16,'Zgoda',1046951684,NULL); +INSERT INTO international VALUES (33,'Survey',16,'Zdecydowana zgoda',1046951678,NULL); +INSERT INTO international VALUES (32,'Survey',16,'Fa³sz',1046951660,NULL); +INSERT INTO international VALUES (31,'Survey',16,'Prawda',1046951654,NULL); +INSERT INTO international VALUES (30,'Survey',16,'Dodaj nowe pytanie.',1046951647,NULL); +INSERT INTO international VALUES (3,'Survey',16,'Ankieta, Dodawanie/Edycja',1046951636,NULL); +INSERT INTO international VALUES (29,'Survey',16,'Dodaj tekst odpowiedzi.',1046951623,NULL); +INSERT INTO international VALUES (28,'Survey',16,'Dodaj pytanie.',1046951612,NULL); +INSERT INTO international VALUES (27,'Survey',16,'Dodaj skalê odpowiedzi (zgoda/brak zgody).',1046951603,NULL); +INSERT INTO international VALUES (26,'Survey',16,'Dodaj skalê czestotliwo¶ci (zawsze/nigdy).',1046951570,NULL); +INSERT INTO international VALUES (25,'Survey',16,'Dodaj prawdziw±/fa³szyw± odpowied¼.',1046951527,NULL); +INSERT INTO international VALUES (24,'Survey',16,'Dodaj wybór wielokrotnej odpowiedzi.',1046951447,NULL); +INSERT INTO international VALUES (23,'Survey',16,'Dodaj now± odpowied¼.',1046951374,NULL); +INSERT INTO international VALUES (22,'Survey',16,'Typ odpowiedzi',1046951360,NULL); +INSERT INTO international VALUES (21,'Survey',16,'Id¼ do',1046951343,NULL); +INSERT INTO international VALUES (20,'Survey',16,'Odpowied¼ jest poprawna?',1046951337,NULL); +INSERT INTO international VALUES (2,'Survey',16,'Edycja ankiety',1046951317,NULL); +INSERT INTO international VALUES (19,'Survey',16,'Odpowied¼',1046951309,NULL); +INSERT INTO international VALUES (18,'Survey',16,'Edycja odpowiedzi',1046951303,NULL); +INSERT INTO international VALUES (17,'Survey',16,'Edycja pytania',1046951293,NULL); +INSERT INTO international VALUES (16,'Survey',16,'Losowe odpowiedzi?',1046951285,NULL); +INSERT INTO international VALUES (15,'Survey',16,'Umo¿liwiæ komentowanie?',1046951267,NULL); +INSERT INTO international VALUES (14,'Survey',16,'Pytanie',1046951253,NULL); +INSERT INTO international VALUES (13,'Survey',16,'Kto mo¿e ogl±daæ wyniki?',1046951247,NULL); +INSERT INTO international VALUES (12,'Survey',16,'Kto mo¿e braæ udzia³ w ankiecie?',1046951235,NULL); +INSERT INTO international VALUES (11,'Survey',16,'Tryb',1046951214,NULL); +INSERT INTO international VALUES (10,'Survey',16,'Quiz',1046951207,NULL); +INSERT INTO international VALUES (1,'Survey',16,'Ankieta',1046951196,NULL); +INSERT INTO international VALUES (8,'SQLReport',16,'Edycja raportu SQL',1046951032,NULL); +INSERT INTO international VALUES (61,'SQLReport',16,'Raport SQL, Dodawanie, Edycja',1046950968,NULL); +INSERT INTO international VALUES (26,'WSClient',1,'Could not connect to SOAP server.',1055349311,NULL); +INSERT INTO international VALUES (4,'SQLReport',16,'Zapytanie',1046950939,NULL); +INSERT INTO international VALUES (18,'SQLReport',16,'To zapytanie nie zwróci³o ¿adnych wyników.',1046950924,NULL); +INSERT INTO international VALUES (17,'SQLReport',16,'Testy: Zapytanie do bazy:',1046950897,NULL); +INSERT INTO international VALUES (16,'SQLReport',16,'Testy?',1046950886,NULL); +INSERT INTO international VALUES (15,'SQLReport',16,'Przetwarzaæ makra w zapytaniu?',1046950874,NULL); +INSERT INTO international VALUES (14,'SQLReport',16,'Podziel na strony po',1046950843,NULL); +INSERT INTO international VALUES (12,'SQLReport',16,'B³±d przy wykonywaniu: Nie mo¿na siê po³±czyæ z baz± danych.',1046950718,NULL); +INSERT INTO international VALUES (11,'SQLReport',16,'B³±d przy wykonywaniu: Nast±pi³ problem przy wykonywaniu zapytania do bazy danych.',1046950707,NULL); +INSERT INTO international VALUES (10,'SQLReport',16,'B³±d przy wykonywaniu: Podane zapytanie SQL do bazy ma nieprawid³owy format.',1046950701,NULL); +INSERT INTO international VALUES (1,'SQLReport',16,'Raport SQL',1046950689,NULL); +INSERT INTO international VALUES (58,'Product',16,'Edycja szablonu produktu',1046950654,NULL); +INSERT INTO international VALUES (8,'DataForm',16,'Szeroko¶æ',1046950592,NULL); +INSERT INTO international VALUES (73,'DataForm',16,'Wy¶lij',1046950584,NULL); +INSERT INTO international VALUES (6,'DataForm',16,'Modyfikowalny',1046950384,NULL); +INSERT INTO international VALUES (5,'DataForm',16,'Pokazywany',1046950375,NULL); +INSERT INTO international VALUES (4,'DataForm',16,'Ukryty',1046950363,NULL); +INSERT INTO international VALUES (3,'DataForm',16,'Dziêkujemy za Twoj± opiniê!',1046950356,NULL); +INSERT INTO international VALUES (24,'DataForm',16,'Mo¿liwe warto¶ci (tylko rozwijana lista)',1046950260,NULL); +INSERT INTO international VALUES (23,'DataForm',16,'Typ',1046950059,NULL); +INSERT INTO international VALUES (22,'DataForm',16,'Status',1046950053,NULL); +INSERT INTO international VALUES (21,'DataForm',16,'Nazwa pola',1046950047,NULL); +INSERT INTO international VALUES (20,'DataForm',16,'Edycja pola',1046949991,NULL); +INSERT INTO international VALUES (2,'DataForm',16,'Temat maila tutaj',1046949984,NULL); +INSERT INTO international VALUES (19,'DataForm',16,'Na pewno chcesz usun±æ to pole?',1046949966,NULL); +INSERT INTO international VALUES (18,'DataForm',16,'Wróæ!',1046949950,NULL); +INSERT INTO international VALUES (17,'DataForm',16,'Wys³ano pocztê',1046949935,NULL); +INSERT INTO international VALUES (16,'DataForm',16,'Potwierdzenie',1046949925,NULL); +INSERT INTO international VALUES (14,'DataForm',16,'Temat',1046949886,NULL); +INSERT INTO international VALUES (13,'DataForm',16,'Duw',1046949880,NULL); +INSERT INTO international VALUES (12,'DataForm',16,'Dw',1046949870,NULL); +INSERT INTO international VALUES (10,'DataForm',16,'Od',1046949767,NULL); +INSERT INTO international VALUES (83,'USS',16,'Dodaj nowe pytanie.',1046949360,NULL); +INSERT INTO international VALUES (86,'USS',16,'Odpowied¼',1046949161,NULL); +INSERT INTO international VALUES (85,'USS',16,'Pytanie',1046949014,NULL); +INSERT INTO international VALUES (96,'EventsCalendar',16,'Kalendarz wydarzeñ',1046948838,NULL); +INSERT INTO international VALUES (94,'EventsCalendar',16,'Szablon kalendarza wydarzeñ',1046948822,NULL); +INSERT INTO international VALUES (93,'EventsCalendar',16,'Nastêpne wydarzenie',1046948805,NULL); +INSERT INTO international VALUES (92,'EventsCalendar',16,'Poprzednie wydarzenie',1046948794,NULL); +INSERT INTO international VALUES (91,'EventsCalendar',16,'Dodaj nowe wydarzenie.',1046948785,NULL); +INSERT INTO international VALUES (90,'EventsCalendar',16,'Domy¶lny miesi±c',1046948773,NULL); +INSERT INTO international VALUES (9,'EventsCalendar',16,'do',1046948764,NULL); +INSERT INTO international VALUES (89,'EventsCalendar',16,'Poka¿ 3 miesi±ce od pocz±tkowego.',1046948729,NULL); +INSERT INTO international VALUES (88,'EventsCalendar',16,'Poka¿ 6 miesiêcy od pocz±tkowego.',1046948677,NULL); +INSERT INTO international VALUES (87,'EventsCalendar',16,'Poka¿ 9 miesiêcy od pocz±tkowego.',1046948665,NULL); +INSERT INTO international VALUES (86,'EventsCalendar',16,'Poka¿ 12 miesiêcy od pocz±tku.',1046948583,NULL); +INSERT INTO international VALUES (85,'EventsCalendar',16,'Ostatni w kalendarzu.',1046948568,NULL); +INSERT INTO international VALUES (84,'EventsCalendar',16,'Miesi±c koñcowy',1046948557,NULL); +INSERT INTO international VALUES (83,'EventsCalendar',16,'Pierwszy w kalendarzu.',1046948541,NULL); +INSERT INTO international VALUES (82,'EventsCalendar',16,'Bie¿±cy.',1046948529,NULL); +INSERT INTO international VALUES (81,'EventsCalendar',16,'Miesi±c pocz±tkowy',1046948521,NULL); +INSERT INTO international VALUES (80,'EventsCalendar',16,'Szablon wydarzenia',1046948509,NULL); +INSERT INTO international VALUES (8,'EventsCalendar',16,'Powtarzaj co',1046948498,NULL); +INSERT INTO international VALUES (78,'EventsCalendar',16,'Nie usuwaj niczego, pope³niono pomy³kê.',1046948476,NULL); +INSERT INTO international VALUES (77,'EventsCalendar',16,'Usuñ to wydarzenie i jego wszystkie powtórzenia.',1046948456,NULL); +INSERT INTO international VALUES (76,'EventsCalendar',16,'Usuñ tylko to zdarzenie.',1046948404,NULL); +INSERT INTO international VALUES (75,'EventsCalendar',16,'Co dalej?',1046948390,NULL); +INSERT INTO international VALUES (72,'EventsCalendar',16,'Wydarzenie, Dodawanie/Edycja',1046948372,NULL); +INSERT INTO international VALUES (4,'EventsCalendar',16,'Jednokrotne.',1046948283,NULL); +INSERT INTO international VALUES (20,'EventsCalendar',16,'Dodaj wydarzenie.',1046948266,NULL); +INSERT INTO international VALUES (2,'EventsCalendar',16,'Kalendarz wydarzeñ',1046948257,NULL); +INSERT INTO international VALUES (19,'EventsCalendar',16,'Podziel strony po',1046948247,NULL); +INSERT INTO international VALUES (15,'EventsCalendar',16,'Data koñcowa',1046948232,NULL); +INSERT INTO international VALUES (14,'EventsCalendar',16,'Data pocz±tkowa',1046948225,NULL); +INSERT INTO international VALUES (13,'EventsCalendar',16,'Edycja wydarzenia',1046948215,NULL); +INSERT INTO international VALUES (12,'EventsCalendar',16,'Edycja kalendarza',1046948198,NULL); +INSERT INTO international VALUES (4,'SyndicatedContent',16,'Edycja kana³ów informacji',1046786664,NULL); +INSERT INTO international VALUES (2,'SyndicatedContent',16,'Kana³ informacyjny',1046786653,NULL); +INSERT INTO international VALUES (1,'SyndicatedContent',16,'URL do pliku RSS',1046786641,NULL); +INSERT INTO international VALUES (99,'WebGUI',16,'Tytu³',1046785770,NULL); +INSERT INTO international VALUES (95,'WebGUI',16,'Spis tre¶ci pomocy',1046785761,NULL); +INSERT INTO international VALUES (94,'WebGUI',16,'Zobacz tak¿e',1046785749,NULL); +INSERT INTO international VALUES (93,'WebGUI',16,'Pomoc',1046785741,NULL); +INSERT INTO international VALUES (92,'WebGUI',16,'Nastêpna strona',1046785735,NULL); +INSERT INTO international VALUES (91,'WebGUI',16,'Poprzednia strona',1046785727,NULL); +INSERT INTO international VALUES (90,'WebGUI',16,'Dodaj now± grupê.',1046785717,NULL); +INSERT INTO international VALUES (9,'WebGUI',16,'Poka¿ schowek.',1046785675,NULL); +INSERT INTO international VALUES (89,'WebGUI',16,'Grupy',1046785653,NULL); +INSERT INTO international VALUES (884,'WebGUI',16,'W wyskakuj±cym oknie',1046785627,NULL); +INSERT INTO international VALUES (883,'WebGUI',16,'Na stronie (gdy obs³ugiwany)',1046785614,NULL); +INSERT INTO international VALUES (882,'WebGUI',16,'Tryb edytora',1046785572,NULL); +INSERT INTO international VALUES (881,'WebGUI',16,'¯aden',1046785560,NULL); +INSERT INTO international VALUES (880,'WebGUI',16,'Edytor ostatniej szansy',1046785539,NULL); +INSERT INTO international VALUES (88,'WebGUI',16,'U¿ytkownicy w grupie',1046785489,NULL); +INSERT INTO international VALUES (879,'WebGUI',16,'Klasyczny edytor (Internet Explorer 5+)',1046785477,NULL); +INSERT INTO international VALUES (872,'WebGUI',16,'Kto mo¿e ogl±daæ?',1046785336,NULL); +INSERT INTO international VALUES (871,'WebGUI',16,'Kto mo¿e edytowaæ?',1046785327,NULL); +INSERT INTO international VALUES (870,'WebGUI',16,'Witamy',1046785317,NULL); +INSERT INTO international VALUES (87,'WebGUI',16,'Edycja grupy',1046785264,NULL); +INSERT INTO international VALUES (869,'WebGUI',16,'Wiadomo¶æ powitalna',1046785256,NULL); +INSERT INTO international VALUES (868,'WebGUI',16,'Wysy³aæ wiadomo¶æ powitaln±?',1046785246,NULL); +INSERT INTO international VALUES (867,'WebGUI',16,'Utrata uprawnieñ',1046785229,NULL); +INSERT INTO international VALUES (866,'WebGUI',16,'Wiadomo¶æ powiadomienia o wyga¶niêciu',1046785221,NULL); +INSERT INTO international VALUES (865,'WebGUI',16,'Powiadomiæ u¿ytkownika o wyga¶niêciu?',1046785201,NULL); +INSERT INTO international VALUES (862,'WebGUI',16,'Profil u¿ytkownika nie jest publicznie dostêpny.',1046785133,NULL); +INSERT INTO international VALUES (861,'WebGUI',16,'Upubliczniæ profil?',1046785085,NULL); +INSERT INTO international VALUES (860,'WebGUI',16,'Upubliczniæ adres email?',1046785068,NULL); +INSERT INTO international VALUES (859,'WebGUI',16,'Podpis',1046785007,NULL); +INSERT INTO international VALUES (858,'WebGUI',16,'Alias',1046785001,NULL); +INSERT INTO international VALUES (857,'WebGUI',16,'Adres IP',1046784995,NULL); +INSERT INTO international VALUES (855,'WebGUI',16,'Lista wszystkich szablonów.',1046784955,NULL); +INSERT INTO international VALUES (854,'WebGUI',16,'Lista wszystkich szablonów podobnych do tego.',1046784942,NULL); +INSERT INTO international VALUES (853,'WebGUI',16,'Usuñ szablon.',1046784924,NULL); +INSERT INTO international VALUES (852,'WebGUI',16,'Kopiuj szablon.',1046784914,NULL); +INSERT INTO international VALUES (85,'WebGUI',16,'Opis',1046784874,NULL); +INSERT INTO international VALUES (848,'WebGUI',16,'W tym szablonie jest b³±d sk³adniowy. Proszê poprawiæ.',1046784867,NULL); +INSERT INTO international VALUES (847,'WebGUI',16,'Powróæ do bie¿±cej strony.',1046784835,NULL); +INSERT INTO international VALUES (851,'WebGUI',16,'Edytuj szablon.',1046784783,NULL); +INSERT INTO international VALUES (845,'WebGUI',16,'Makra stylu',1046784767,NULL); +INSERT INTO international VALUES (843,'WebGUI',16,'Makra u¿ytkownika',1046784738,NULL); +INSERT INTO international VALUES (841,'WebGUI',16,'Makra nawigacyjne',1046784725,NULL); +INSERT INTO international VALUES (84,'WebGUI',16,'Nazwa grupy',1046784666,NULL); +INSERT INTO international VALUES (837,'WebGUI',16,'Folder, Dodawanie/Edycja',1046784641,NULL); +INSERT INTO international VALUES (833,'WebGUI',16,'Plik, Dodawanie/Edycja',1046784546,NULL); +INSERT INTO international VALUES (829,'WebGUI',16,'Szablon strony',1046784456,NULL); +INSERT INTO international VALUES (825,'WebGUI',16,'Szablony, Jêzyk',1046784415,NULL); +INSERT INTO international VALUES (824,'WebGUI',16,'Stopka emaila',1046784404,NULL); +INSERT INTO international VALUES (823,'WebGUI',16,'Przejd¼ do nowej strony.',1046784377,NULL); +INSERT INTO international VALUES (821,'WebGUI',16,'¯aden',1046784362,NULL); +INSERT INTO international VALUES (820,'WebGUI',16,'Twoje konto nie jest aktywne, nie mo¿esz wiêc siê na nie zalogowaæ, dopóki nie zostanie aktywowane przez administratora.',1046784351,NULL); +INSERT INTO international VALUES (82,'WebGUI',16,'Funkcje administracyjne...',1046784197,NULL); +INSERT INTO international VALUES (819,'WebGUI',16,'Deaktywowane samodzielnie',1046784183,NULL); +INSERT INTO international VALUES (818,'WebGUI',16,'Deaktywowano',1046784161,NULL); +INSERT INTO international VALUES (817,'WebGUI',16,'Aktywne',1046784145,NULL); +INSERT INTO international VALUES (816,'WebGUI',16,'Status',1046784137,NULL); +INSERT INTO international VALUES (815,'WebGUI',16,'Plik, który chcesz umie¶ciæ jest zbyt wielki.',1046784124,NULL); +INSERT INTO international VALUES (813,'WebGUI',16,'Grupy w tej grupie',1046784036,NULL); +INSERT INTO international VALUES (812,'WebGUI',16,'Twoja wiadomo¶æ zosta³a wys³ana.',1046784015,NULL); +INSERT INTO international VALUES (811,'WebGUI',16,'Od',1046783999,NULL); +INSERT INTO international VALUES (810,'WebGUI',16,'wy¶lij',1046783993,NULL); +INSERT INTO international VALUES (81,'WebGUI',16,'Pomy¶lnie uaktualniono konto!',1046783889,NULL); +INSERT INTO international VALUES (809,'WebGUI',16,'Grupa emailowa.',1046783871,NULL); +INSERT INTO international VALUES (808,'WebGUI',16,'Powiadom t± grupê emailem.',1046783862,NULL); +INSERT INTO international VALUES (807,'WebGUI',16,'Zarz±dzaj grupami w tej grupie.',1046783795,NULL); +INSERT INTO international VALUES (806,'WebGUI',16,'Usuñ grupê.',1046783740,NULL); +INSERT INTO international VALUES (802,'WebGUI',16,'WebGUI ma wy³±czon± funkcjê zbierania statystyk. Mo¿na j± w³±czyæ w ustawieniach.',1046783701,NULL); +INSERT INTO international VALUES (800,'WebGUI',16,'Pojedyñczy Odwiedzaj±cy',1046783630,NULL); +INSERT INTO international VALUES (80,'WebGUI',16,'Utworzono konto!',1046783553,NULL); +INSERT INTO international VALUES (798,'WebGUI',16,'Tytu³ strony',1046783505,NULL); +INSERT INTO international VALUES (797,'WebGUI',16,'Poka¿ statystykê ruchu.',1046783496,NULL); +INSERT INTO international VALUES (796,'WebGUI',16,'Poka¿ statystykê stron.',1046783481,NULL); +INSERT INTO international VALUES (795,'WebGUI',16,'Katalogi g³ówne',1046783466,NULL); +INSERT INTO international VALUES (794,'WebGUI',16,'Pakiety',1046783427,NULL); +INSERT INTO international VALUES (792,'WebGUI',16,'Szablony',1046783402,NULL); +INSERT INTO international VALUES (791,'WebGUI',16,'Usuñ t³umaczenie',1046783395,NULL); +INSERT INTO international VALUES (790,'WebGUI/Profile',16,'Usuñ t± kategoriê profilu.',1046783376,NULL); +INSERT INTO international VALUES (788,'WebGUI/Profile',16,'Usuñ to pole profilu.',1046783350,NULL); +INSERT INTO international VALUES (787,'WebGUI/Profile',16,'Edytuj to pole profilu.',1046783339,NULL); +INSERT INTO international VALUES (784,'WebGUI',16,'Miniaturka',1046783247,NULL); +INSERT INTO international VALUES (783,'WebGUI',16,'Typ',1046783238,NULL); +INSERT INTO international VALUES (780,'WebGUI',16,'Plik',1046783143,NULL); +INSERT INTO international VALUES (779,'WebGUI',16,'Obrazek',1046783135,NULL); +INSERT INTO international VALUES (778,'WebGUI',16,'Opis folderu',1046783127,NULL); +INSERT INTO international VALUES (777,'WebGUI',16,'ID folderu',1046783121,NULL); +INSERT INTO international VALUES (776,'WebGUI',16,'Edycja folderu',1046783112,NULL); +INSERT INTO international VALUES (775,'WebGUI',16,'Na pewno chcesz usun±æ ten folder i przenie¶æ jego zawarto¶æ do folderu wy¿ej?',1046783106,NULL); +INSERT INTO international VALUES (773,'WebGUI',16,'Plik',1046783044,NULL); +INSERT INTO international VALUES (772,'WebGUI',16,'Edytuj plik',1046783039,NULL); +INSERT INTO international VALUES (768,'WebGUI',16,'Nazwa',1046782884,NULL); +INSERT INTO international VALUES (762,'WebGUI',16,'Dodaj plik.',1046782765,NULL); +INSERT INTO international VALUES (761,'WebGUI',16,'Dodaj obrazek.',1046782759,NULL); +INSERT INTO international VALUES (76,'WebGUI',16,'Tego adresu email nie ma w naszych bazach.',1046782704,NULL); +INSERT INTO international VALUES (759,'WebGUI',16,'Edytuj ten folder.',1046782679,NULL); +INSERT INTO international VALUES (758,'WebGUI',16,'Dodaj folder.',1046782667,NULL); +INSERT INTO international VALUES (756,'WebGUI',16,'Lista grup.',1046782643,NULL); +INSERT INTO international VALUES (744,'WebGUI',16,'Co dalej?',1046782631,NULL); +INSERT INTO international VALUES (754,'WebGUI',16,'Zarz±dzaj u¿ytkownikami w tej grupie.',1046782596,NULL); +INSERT INTO international VALUES (752,'WebGUI',16,'Poka¿ profil tego u¿ytkownika.',1046782557,NULL); +INSERT INTO international VALUES (751,'WebGUI',16,'Stañ siê tym u¿ytkownikiem',1046782538,NULL); +INSERT INTO international VALUES (75,'WebGUI',16,'Informacje o Twoim koncie zosta³y wys³ane na Twój adres email',1046782511,NULL); +INSERT INTO international VALUES (749,'WebGUI',16,'Tworzyæ statystki stron?',1046782486,NULL); +INSERT INTO international VALUES (747,'WebGUI',16,'Nazwa u¿ytkownika musi zawieraæ wy³±cznie znaki alfanumeryczne.',1046782450,NULL); +INSERT INTO international VALUES (746,'WebGUI',16,'Zestaw ikon belki narzêdziowej',1046782411,NULL); +INSERT INTO international VALUES (743,'WebGUI',16,'W celu odzyskania has³a nale¿y podaæ prawid³owy adres email',1046782339,NULL); +INSERT INTO international VALUES (1084,'WebGUI',1,'Default',1077472740,'A label indicating that the user should use the default setting.'); +INSERT INTO international VALUES (27,'IndexedSearch',1,'\r\n

The Search adds advanced search capabilities to your WebGUI site.

\r\n

Index to use
The Search uses an index to retrieve it\'s \r\nresults from. Indexes are created with the scheduler. You can create more then one index. Choose here which index to use.

\r\n

Search through
By default all pages are searched. You can \r\nlimit the search to certain page roots. Multiple choices are allowed.

\r\n

Only results created by
You can limit the results to \r\nitems created by certain users. By default items from any user are returned.

\r\n

Only results in namespace
By default all namespaces are \r\nsearched. You can limit the search to certain namespaces. An example of usage is \r\nto search only in products.

\r\n

Only results in language
If you have a multi-lingual \r\nsite, you can use this option to limit the search results to a certain \r\nlanguage.

\r\n

Only results of type
You can limit the search to certain \r\ntypes of content.

\r\n
\r\n

Discussion: Messages on the forums, discussions on \r\narticles or USS.
Help: Content in the online WebGUI help \r\nsystem
Page: Page title and \r\nsynopsis
Profile: User Profiles
Wobject: Wobject Title \r\nand Description
Wobject details: All other wobject data. For example \r\nFAQ question, Calendar item, etc.

\r\n

Template
Select a template to layout \r\nyour Search. The different templates have different functionality.

\r\n

Paginate after
The number of results \r\nyou\'d like to display on a page.

\r\n

Context preview length
The maximum \r\nnumber of characters in each of the context sections. Default is 130 characters. \r\nA negative length gives the complete body, while a preview length of null gives \r\nno preview.

\r\n

Highlight results ?
If you want to \r\nhighlight the search results in the preview you\'ll want to check this box.

\r\n

Highlight color n
The colors that are \r\nused to highlight the corresponding words in the query. 

',1070195783,''); +INSERT INTO international VALUES (74,'WebGUI',16,'Informacje o koncie',1046782281,NULL); +INSERT INTO international VALUES (739,'WebGUI',16,'Poziom UI',1046782273,NULL); +INSERT INTO international VALUES (738,'WebGUI',16,'9 Guru',1046782264,NULL); +INSERT INTO international VALUES (737,'WebGUI',16,'8 Mistrz',1046782257,NULL); +INSERT INTO international VALUES (736,'WebGUI',16,'7 Ekspert',1046782251,NULL); +INSERT INTO international VALUES (735,'WebGUI',16,'6 Profesjonalista',1046782244,NULL); +INSERT INTO international VALUES (734,'WebGUI',16,'5 Bardzo do¶wiadczony',1046782236,NULL); +INSERT INTO international VALUES (733,'WebGUI',16,'4 Do¶wiadczony',1046782220,NULL); +INSERT INTO international VALUES (66,'WebGUI',16,'Zaloguj',1046782139,NULL); +INSERT INTO international VALUES (374,'WebGUI',16,'Zarz±dzaj pakietami.',1046782100,NULL); +INSERT INTO international VALUES (732,'WebGUI',16,'3 Zaawansowany',1046774713,NULL); +INSERT INTO international VALUES (731,'WebGUI',16,'2 Wykwalifikowany',1046774451,NULL); +INSERT INTO international VALUES (730,'WebGUI',16,'1 Nowicjusz',1046774431,NULL); +INSERT INTO international VALUES (73,'WebGUI',16,'Zaloguj siê.',1046774422,NULL); +INSERT INTO international VALUES (729,'WebGUI',16,'0 Pocz±tkuj±cy',1046774410,NULL); +INSERT INTO international VALUES (728,'WebGUI',16,'Na pewno chcesz usun±æ ten plik?',1046774398,NULL); +INSERT INTO international VALUES (725,'WebGUI',16,'Nazwa u¿ytkownika nie mo¿e byæ pusta.',1046774382,NULL); +INSERT INTO international VALUES (724,'WebGUI',16,'Nazwa u¿ytkownika nie mo¿e zaczynaæ siê lub koñczyæ od spacji.',1046774367,NULL); +INSERT INTO international VALUES (723,'WebGUI',16,'Niezaaprobowano',1046771944,NULL); +INSERT INTO international VALUES (722,'WebGUI',16,'Id',1046771779,NULL); +INSERT INTO international VALUES (721,'WebGUI',16,'Przestrzeñ nazw',1046771774,NULL); +INSERT INTO international VALUES (720,'WebGUI',16,'OK',1046771762,NULL); +INSERT INTO international VALUES (72,'WebGUI',16,'odzyskaj',1046771757,NULL); +INSERT INTO international VALUES (719,'WebGUI',16,'Przeterminowane',1046771751,NULL); +INSERT INTO international VALUES (718,'WebGUI',16,'Eksportuj t³umaczenie.',1046771735,NULL); +INSERT INTO international VALUES (717,'WebGUI',16,'Wyloguj',1046771709,NULL); +INSERT INTO international VALUES (716,'WebGUI',16,'Login',1046771669,NULL); +INSERT INTO international VALUES (715,'WebGUI',16,'Przekierowanie URL',1046771653,NULL); +INSERT INTO international VALUES (71,'WebGUI',16,'Odzyskanie has³a',1046771640,NULL); +INSERT INTO international VALUES (707,'WebGUI',16,'Pokazywaæ b³êdy?',1046771631,NULL); +INSERT INTO international VALUES (706,'WebGUI',16,'Godzina/y',1046771566,NULL); +INSERT INTO international VALUES (705,'WebGUI',16,'Minuta/y',1046771559,NULL); +INSERT INTO international VALUES (704,'WebGUI',16,'Sekunda/y',1046771552,NULL); +INSERT INTO international VALUES (703,'WebGUI',16,'Rok/Lata',1046771540,NULL); +INSERT INTO international VALUES (702,'WebGUI',16,'Miesi±c/e',1046771488,NULL); +INSERT INTO international VALUES (701,'WebGUI',16,'Tydzieñ/Tygodnie',1046771478,NULL); +INSERT INTO international VALUES (700,'WebGUI',16,'Dzieñ/Dni',1046771466,NULL); +INSERT INTO international VALUES (70,'WebGUI',16,'B³±d',1046771458,NULL); +INSERT INTO international VALUES (7,'WebGUI',16,'Zarz±dzaj u¿ytkownikami.',1046771450,NULL); +INSERT INTO international VALUES (699,'WebGUI',16,'Pierwszy dzieñ tygodnia',1046771419,NULL); +INSERT INTO international VALUES (697,'WebGUI',16,'System punktacji u¿ytkowników, U¿ywanie',1046771396,NULL); +INSERT INTO international VALUES (696,'WebGUI',16,'Kosz, Opró¿nianie',1046771385,NULL); +INSERT INTO international VALUES (69,'WebGUI',16,'Zwróæ siê o pomoc do administratora.',1046771239,NULL); +INSERT INTO international VALUES (685,'WebGUI',16,'Szablony, Usuwanie',1046771175,NULL); +INSERT INTO international VALUES (684,'WebGUI',16,'Szablony, Dodawanie/Edycja',1046771160,NULL); +INSERT INTO international VALUES (682,'WebGUI',16,'Profil u¿ytkownika, Edycja',1046771127,NULL); +INSERT INTO international VALUES (681,'WebGUI',16,'Pakiety, Tworzenie',1046771111,NULL); +INSERT INTO international VALUES (680,'WebGUI',16,'Pakiet, Dodawanie',1046771086,NULL); +INSERT INTO international VALUES (68,'WebGUI',16,'Podane konto nie istnieje lub kobminacja u¿ytkownik/has³o jest nieprawid³owa.',1046771070,NULL); +INSERT INTO international VALUES (679,'WebGUI',16,'Ustawienia zawarto¶ci, Edycja',1046770875,NULL); +INSERT INTO international VALUES (678,'WebGUI',16,'G³ówne katalogi, Zarz±dzanie',1046770828,NULL); +INSERT INTO international VALUES (675,'WebGUI',16,'Mechanizm wyszukiwania, U¿ycie',1046770788,NULL); +INSERT INTO international VALUES (674,'WebGUI',16,'Ró¿ne ustawienia, Edycja',1046770733,NULL); +INSERT INTO international VALUES (672,'WebGUI',16,'Ustawienia profilu, Edycja',1046770720,NULL); +INSERT INTO international VALUES (670,'WebGUI',16,'Obrazek, Dodawanie/Edycja',1046770646,NULL); +INSERT INTO international VALUES (67,'WebGUI',16,'Utwórz nowe konto.',1046770633,NULL); +INSERT INTO international VALUES (667,'WebGUI',16,'Grupa, Dodawanie/Edycja',1046770514,NULL); +INSERT INTO international VALUES (665,'WebGUI',16,'Grupa, Usuwanie',1046770482,NULL); +INSERT INTO international VALUES (663,'WebGUI',16,'Ustawienia wiadomo¶ci, Edycja',1046770445,NULL); +INSERT INTO international VALUES (662,'WebGUI',16,'Ustawienia, Zarz±dzanie',1046770423,NULL); +INSERT INTO international VALUES (661,'WebGUI',16,'Ustawienia plików, Edycja',1046770408,NULL); +INSERT INTO international VALUES (660,'WebGUI',16,'Grupy, Zarz±dzanie',1046770393,NULL); +INSERT INTO international VALUES (658,'WebGUI',16,'U¿ytkownicy, Zarz±dzanie',1046770332,NULL); +INSERT INTO international VALUES (657,'WebGUI',16,'U¿ytkownik, Usuwanie',1046770317,NULL); +INSERT INTO international VALUES (656,'WebGUI',16,'Informacje o firmie, Edycja',1046770307,NULL); +INSERT INTO international VALUES (655,'WebGUI',16,'U¿ytkownik, Dodawanie/Edycja',1046770292,NULL); +INSERT INTO international VALUES (653,'WebGUI',16,'Strona, Usuwanie',1046770266,NULL); +INSERT INTO international VALUES (652,'WebGUI',16,'Ustawienia u¿ytkownika, Edycja',1046770252,NULL); +INSERT INTO international VALUES (65,'WebGUI',16,'Proszê zdeaktywowaæ moje konto na zawsze.',1046770229,NULL); +INSERT INTO international VALUES (64,'WebGUI',16,'Wyloguj.',1046770143,NULL); +INSERT INTO international VALUES (63,'WebGUI',16,'W³±cz funkcje administracyjne.',1046769994,NULL); +INSERT INTO international VALUES (62,'WebGUI',16,'Zapisz',1046769951,NULL); +INSERT INTO international VALUES (605,'WebGUI',16,'Dodaj grupy',1046769828,NULL); +INSERT INTO international VALUES (601,'WebGUI',16,'ID t³umaczenia',1046769778,NULL); +INSERT INTO international VALUES (60,'WebGUI',16,'Na pewno chcesz zdeaktywowaæ to konto?. Je¶li to zrobisz informacje o nim zostan± nieodwracalnie usuniête.',1046769759,NULL); +INSERT INTO international VALUES (595,'WebGUI',16,'Komunikaty miêdzynarodowe',1046769659,NULL); +INSERT INTO international VALUES (598,'WebGUI',16,'Edytuj to t³umaczenie.',1046769597,NULL); +INSERT INTO international VALUES (597,'WebGUI',16,'Edycja wielojêzycznych komunikatów',1046769586,NULL); +INSERT INTO international VALUES (596,'WebGUI',16,'BRAKUJ¡CY',1046769570,NULL); +INSERT INTO international VALUES (594,'WebGUI',16,'T³umacz komunikaty.',1046769530,NULL); +INSERT INTO international VALUES (593,'WebGUI',16,'Wy¶lij t³umaczenie.',1046769517,NULL); +INSERT INTO international VALUES (592,'WebGUI',16,'Zestaw znaków',1046769497,NULL); +INSERT INTO international VALUES (591,'WebGUI',16,'Jêzyk',1046769488,NULL); +INSERT INTO international VALUES (590,'WebGUI',16,'ID jêzyka',1046769481,NULL); +INSERT INTO international VALUES (59,'WebGUI',16,'Zapomnia³em has³a.',1046769435,NULL); +INSERT INTO international VALUES (589,'WebGUI',16,'Edytuj t³umaczenia',1046769425,NULL); +INSERT INTO international VALUES (588,'WebGUI',16,'Czy na pewno chcesz wys³aæ to t³umaczenie do Plain Black do zamieszczenia go w oficjalnej wersji WebGUI? Klikaj± na tak, uprawniasz tym samym Plain Black do nielimitowanej licencji na u¿ycie tego t³umaczenia w oprogramowaniu PlainBlack.',1046769410,NULL); +INSERT INTO international VALUES (587,'WebGUI',16,'Na pewno chcesz usun±æ ten jêzyk wraz z ca³ym helpem oraz przet³umaczonymi komunikatami?',1046769394,NULL); +INSERT INTO international VALUES (584,'WebGUI',16,'Dodaj nowe t³umaczenie.',1046769216,NULL); +INSERT INTO international VALUES (583,'WebGUI',16,'Maksymalny rozmiar obrazka',1046769195,NULL); +INSERT INTO international VALUES (582,'WebGUI',16,'Pozostaw puste',1046769150,NULL); +INSERT INTO international VALUES (581,'WebGUI',16,'Dodaj now± warto¶æ',1046769141,NULL); +INSERT INTO international VALUES (580,'WebGUI',16,'Twoja wiadomo¶æ zosta³a odrzucona.',1046769129,NULL); +INSERT INTO international VALUES (58,'WebGUI',16,'Posiadam ju¿ konto.',1046769073,NULL); +INSERT INTO international VALUES (579,'WebGUI',16,'Twoja wiadomo¶æ zosta³a zaaprobowana.',1046769057,NULL); +INSERT INTO international VALUES (578,'WebGUI',16,'Musisz poczekaæ na zaaprobowanie wiadomo¶ci.',1046769041,NULL); +INSERT INTO international VALUES (577,'WebGUI',16,'Odpowiedz',1046769001,NULL); +INSERT INTO international VALUES (576,'WebGUI',16,'Usuñ',1046768987,NULL); +INSERT INTO international VALUES (575,'WebGUI',16,'Edytuj',1046768981,NULL); +INSERT INTO international VALUES (574,'WebGUI',16,'Odmów',1046768976,NULL); +INSERT INTO international VALUES (572,'WebGUI',16,'Zaaprobuj',1046768898,NULL); +INSERT INTO international VALUES (57,'WebGUI',16,'jest to potrzebne tylko je¶li chcesz u¿ywaæ cech wymagaj±cych korzystania z poczty elektronicznej.',1046768875,NULL); +INSERT INTO international VALUES (566,'WebGUI',16,'Edytuj czas bezczynno¶ci',1046768779,NULL); +INSERT INTO international VALUES (565,'WebGUI',16,'Kto mo¿e moderowaæ?',1046768533,NULL); +INSERT INTO international VALUES (556,'WebGUI',16,'Wielko¶æ',1046768472,NULL); +INSERT INTO international VALUES (564,'WebGUI',16,'Kto mo¿e publikowaæ?',1046768461,NULL); +INSERT INTO international VALUES (563,'WebGUI',16,'Domy¶lny status',1046768446,NULL); +INSERT INTO international VALUES (562,'WebGUI',16,'Oczekuj±cy',1046768437,NULL); +INSERT INTO international VALUES (561,'WebGUI',16,'Zablokowany',1046768430,NULL); +INSERT INTO international VALUES (560,'WebGUI',16,'Zaaprobowany',1046768422,NULL); +INSERT INTO international VALUES (56,'WebGUI',16,'Adres email',1046768414,NULL); +INSERT INTO international VALUES (559,'WebGUI',16,'Uruchom w czasie rejestracji',1046768404,NULL); +INSERT INTO international VALUES (558,'WebGUI',16,'Edycja systemu punktacji u¿ytkowników.',1046768365,NULL); +INSERT INTO international VALUES (557,'WebGUI',16,'Opis',1046768355,NULL); +INSERT INTO international VALUES (555,'WebGUI',16,'Edytuj poziom punktów tego u¿ytkownika.',1046768313,NULL); +INSERT INTO international VALUES (554,'WebGUI',16,'Podejmij dzia³anie',1046768304,NULL); +INSERT INTO international VALUES (553,'WebGUI',16,'Status',1046768282,NULL); +INSERT INTO international VALUES (552,'WebGUI',16,'Oczekuj±cy',1046768277,NULL); +INSERT INTO international VALUES (551,'WebGUI',16,'Uwaga',1046768266,NULL); +INSERT INTO international VALUES (543,'WebGUI',16,'Dodaj now± grupê obrazków.',1046768237,NULL); +INSERT INTO international VALUES (542,'WebGUI',16,'Poprzednia...',1046768219,NULL); +INSERT INTO international VALUES (541,'WebGUI',16,'Punkty za wpis',1046768206,NULL); +INSERT INTO international VALUES (540,'WebGUI',16,'Punkty za zalogowanie',1046768193,NULL); +INSERT INTO international VALUES (54,'WebGUI',16,'Utwórz konto',1046768182,NULL); +INSERT INTO international VALUES (886,'WebGUI',16,'Ukryæ z nawigacji?',1046731287,NULL); +INSERT INTO international VALUES (539,'WebGUI',16,'Uaktywniæ system punktacji?',1046731150,NULL); +INSERT INTO international VALUES (538,'WebGUI',16,'System punktacji - próg ',1046731131,NULL); +INSERT INTO international VALUES (537,'WebGUI',16,'System punktacji',1046731106,NULL); +INSERT INTO international VALUES (536,'WebGUI',16,'Nowy u¿ytkownik - ^@; do³±czy³ do serwisu.',1046731087,NULL); +INSERT INTO international VALUES (535,'WebGUI',16,'Grupa do powiadomienia o nowym u¿ytkowniku',1046731051,NULL); +INSERT INTO international VALUES (534,'WebGUI',16,'Powiadomiæ o nowym u¿ytkowniku?',1046731028,NULL); +INSERT INTO international VALUES (533,'WebGUI',16,'bez s³ów',1046730995,NULL); +INSERT INTO international VALUES (532,'WebGUI',16,'z co najmniej jednym ze s³ów',1046727841,NULL); +INSERT INTO international VALUES (531,'WebGUI',16,'z dok³adnie takim zwrotem ',1046727814,NULL); +INSERT INTO international VALUES (530,'WebGUI',16,'ze wszystkimi s³owami',1046727744,NULL); +INSERT INTO international VALUES (53,'WebGUI',16,'Uczyñ stronê drukowaln±',1046727681,NULL); +INSERT INTO international VALUES (528,'WebGUI',16,'Nazwa szablonu',1046727657,NULL); +INSERT INTO international VALUES (527,'WebGUI',16,'Domy¶lna strona g³ówna.',1046727648,NULL); +INSERT INTO international VALUES (525,'WebGUI',16,'Edycja ustawieñ tre¶ci',1046727615,NULL); +INSERT INTO international VALUES (1025,'WebGUI',16,'Dodawaæ datê edycji do wpisów?\n',1046727597,NULL); +INSERT INTO international VALUES (523,'WebGUI',16,'Powiadomienie',1046727587,NULL); +INSERT INTO international VALUES (522,'WebGUI',16,'Chcê byæ powiadamiany prze ICQ.',1046727578,NULL); +INSERT INTO international VALUES (521,'WebGUI',16,'Chcê byæ powiadamiany przez email na pager.',1046727561,NULL); +INSERT INTO international VALUES (520,'WebGUI',16,'Chcê byæ powiadamiany emailem.',1046727539,NULL); +INSERT INTO international VALUES (52,'WebGUI',16,'login',1046727522,NULL); +INSERT INTO international VALUES (519,'WebGUI',16,'Nie chcê byæ powiadamiana/y.',1046727463,NULL); +INSERT INTO international VALUES (518,'WebGUI',16,'Powiadomienia skrzynki pocztowej',1046727441,NULL); +INSERT INTO international VALUES (517,'WebGUI',16,'Wy³±cz funkcje administracji!',1046727425,NULL); +INSERT INTO international VALUES (516,'WebGUI',16,'W³±cz funkcje administracji!',1046727410,NULL); +INSERT INTO international VALUES (515,'WebGUI',16,'Dodawaæ datê edycji do wpisów?',1046727383,NULL); +INSERT INTO international VALUES (511,'WebGUI',16,'Z w±tkami',1046727331,NULL); +INSERT INTO international VALUES (510,'WebGUI',16,'P³aski',1046727299,NULL); +INSERT INTO international VALUES (51,'WebGUI',16,'Has³o',1046727289,NULL); +INSERT INTO international VALUES (509,'WebGUI',16,'Uk³ad forum',1046727201,NULL); +INSERT INTO international VALUES (508,'WebGUI',16,'Zarz±dzaj szablonami.',1046727184,NULL); +INSERT INTO international VALUES (507,'WebGUI',16,'Edycja szablonu',1046727172,NULL); +INSERT INTO international VALUES (506,'WebGUI',16,'Zarz±dzaj szablonami',1046727161,NULL); +INSERT INTO international VALUES (505,'WebGUI',16,'Dodaj nowy szablon.',1046727148,NULL); +INSERT INTO international VALUES (504,'WebGUI',16,'Szablon',1046727137,NULL); +INSERT INTO international VALUES (503,'WebGUI',16,'ID Szablonu',1046727131,NULL); +INSERT INTO international VALUES (502,'WebGUI',16,'Na pewno chcesz usun±æ ten szablon i prze³±czyæ strony go u¿ywaj±ce do domy¶lnego profilu?',1046727116,NULL); +INSERT INTO international VALUES (500,'WebGUI',16,'ID strony',1046727037,NULL); +INSERT INTO international VALUES (50,'WebGUI',16,'U¿ytkownik',1046727029,NULL); +INSERT INTO international VALUES (5,'WebGUI',16,'Zarz±dzaj grupami.',1046727020,NULL); +INSERT INTO international VALUES (499,'WebGUI',16,'ID obiektu',1046726960,NULL); +INSERT INTO international VALUES (498,'WebGUI',16,'Data koñcowa',1046726948,NULL); +INSERT INTO international VALUES (497,'WebGUI',16,'Data pocz±tkowa',1046726938,NULL); +INSERT INTO international VALUES (496,'WebGUI',16,'U¿ywany edytor',1046726926,NULL); +INSERT INTO international VALUES (495,'WebGUI',16,'Edycja HTML (Internet Explorer 5.5+)',1046726908,NULL); +INSERT INTO international VALUES (494,'WebGUI',16,'RealObjects edit-on Pro 2.x',1046726894,NULL); +INSERT INTO international VALUES (493,'WebGUI',16,'Powrót do strony g³ównej.',1046726881,NULL); +INSERT INTO international VALUES (492,'WebGUI',16,'Lista pól profile.',1046726842,NULL); +INSERT INTO international VALUES (491,'WebGUI/Profile',16,'Dodaj pole profilu.',1046726829,NULL); +INSERT INTO international VALUES (490,'WebGUI/Profile',16,'Dodaj kategoriê profilu.',1046726815,NULL); +INSERT INTO international VALUES (49,'WebGUI',16,'Kliknij tutaj by siê wylogowaæ',1046726793,NULL); +INSERT INTO international VALUES (489,'WebGUI/Profile',16,'Kategorie profilu',1046726669,NULL); +INSERT INTO international VALUES (488,'WebGUI',16,'Domy¶lne warto¶ci',1046726657,NULL); +INSERT INTO international VALUES (487,'WebGUI',16,'Mo¿liwe warto¶ci',1046726644,NULL); +INSERT INTO international VALUES (486,'WebGUI',16,'Typ danych',1046726633,NULL); +INSERT INTO international VALUES (485,'WebGUI',16,'0/1 (Checkbox)',1046726619,NULL); +INSERT INTO international VALUES (484,'WebGUI',16,'Wybierz listê',1046726589,NULL); +INSERT INTO international VALUES (483,'WebGUI',16,'Tak lub Nie',1046726570,NULL); +INSERT INTO international VALUES (482,'WebGUI',16,'Numer (liczba ca³kowita)',1046726562,NULL); +INSERT INTO international VALUES (481,'WebGUI',16,'Numer telefonu',1046726542,NULL); +INSERT INTO international VALUES (480,'WebGUI',16,'Adres email',1046726529,NULL); +INSERT INTO international VALUES (48,'WebGUI',16,'Witaj',1046726515,NULL); +INSERT INTO international VALUES (479,'WebGUI',16,'Data',1046726466,NULL); +INSERT INTO international VALUES (478,'WebGUI',16,'URL',1046726460,NULL); +INSERT INTO international VALUES (477,'WebGUI',16,'Obszar HTML',1046726454,NULL); +INSERT INTO international VALUES (476,'WebGUI',16,'Obszar tekstu',1046726445,NULL); +INSERT INTO international VALUES (475,'WebGUI',16,'Tekst',1046726430,NULL); +INSERT INTO international VALUES (474,'WebGUI/Profile',16,'Wymagane?',1046726424,NULL); +INSERT INTO international VALUES (473,'WebGUI/Profile',16,'Widoczny?',1046726407,NULL); +INSERT INTO international VALUES (472,'WebGUI',16,'Etykieta',1046726392,NULL); +INSERT INTO international VALUES (471,'WebGUI/Profile',16,'Edycja pól profilu u¿ytkownika',1046726385,NULL); +INSERT INTO international VALUES (470,'WebGUI',16,'Nazwisko',1046726360,NULL); +INSERT INTO international VALUES (47,'WebGUI',16,'Strona g³ówna',1046726353,NULL); +INSERT INTO international VALUES (469,'WebGUI',16,'Id',1046726288,NULL); +INSERT INTO international VALUES (468,'WebGUI/Profile',16,'Edycja kategorii profilu u¿ytkownika',1046726282,NULL); +INSERT INTO international VALUES (467,'WebGUI/Profile',16,'Na pewno chcesz skasowaæ to pole wraz ze wszystkimi zawartymi w nim danymi u¿ytkowników?',1046726242,NULL); +INSERT INTO international VALUES (466,'WebGUI/Profile',16,'Na pewno chcesz skasowaæ to kategoriê i przenie¶æ wszystkie jej pola do kategorii Ró¿ne?',1046726197,NULL); +INSERT INTO international VALUES (465,'WebGUI',16,'Rozmiar obszaru tekstowego',1046726147,NULL); +INSERT INTO international VALUES (464,'WebGUI',16,'Kolumny obszaru tekstu',1046726114,NULL); +INSERT INTO international VALUES (463,'WebGUI',16,'Wiersze obszaru tekstowego',1046726109,NULL); +INSERT INTO international VALUES (462,'WebGUI',16,'Format Czasu',1046725999,NULL); +INSERT INTO international VALUES (461,'WebGUI',16,'Format daty',1046725986,NULL); +INSERT INTO international VALUES (460,'WebGUI',16,'Przesuniêcie czasowe',1046725977,NULL); +INSERT INTO international VALUES (46,'WebGUI',16,'Moje konto',1046725948,NULL); +INSERT INTO international VALUES (459,'WebGUI',16,'Edycja profilu u¿ytkownika.',1046725896,NULL); +INSERT INTO international VALUES (458,'WebGUI',16,'Edycja grupy u¿ytkowników.',1046725880,NULL); +INSERT INTO international VALUES (457,'WebGUI',16,'Edycja konta u¿ytkownika.',1046725859,NULL); +INSERT INTO international VALUES (456,'WebGUI',16,'Lista u¿ytkowników.',1046725843,NULL); +INSERT INTO international VALUES (455,'WebGUI',16,'Edycja profilu u¿ytkownika',1046725824,NULL); +INSERT INTO international VALUES (454,'WebGUI',16,'Ostatnie uaktualnienie',1046725811,NULL); +INSERT INTO international VALUES (453,'WebGUI',16,'Data utworzenia',1046725797,NULL); +INSERT INTO international VALUES (452,'WebGUI',16,'Proszê czekaæ...',1046725788,NULL); +INSERT INTO international VALUES (451,'WebGUI',16,'jest wymagane.',1046725768,NULL); +INSERT INTO international VALUES (450,'WebGUI',16,'Nazwa miejsca pracy',1046725756,NULL); +INSERT INTO international VALUES (45,'WebGUI',16,'Nie, pomyli³em siê.',1046725744,NULL); +INSERT INTO international VALUES (446,'WebGUI',16,'Strona WWW miejsca pracy',1046725731,NULL); +INSERT INTO international VALUES (449,'WebGUI',16,'Ró¿ne informacje',1046725664,NULL); +INSERT INTO international VALUES (448,'WebGUI',16,'Struktura stron',1046725653,NULL); +INSERT INTO international VALUES (447,'WebGUI',16,'Zarz±dzaj struktur± stron.',1046725635,NULL); +INSERT INTO international VALUES (445,'WebGUI',16,'Preferencje',1046725604,NULL); +INSERT INTO international VALUES (444,'WebGUI',16,'Informacje demograficzne',1046725597,NULL); +INSERT INTO international VALUES (443,'WebGUI',16,'Informacje o domu',1046725585,NULL); +INSERT INTO international VALUES (442,'WebGUI',16,'Informacje o pracy',1046725570,NULL); +INSERT INTO international VALUES (441,'WebGUI',16,'Wy¶lij maila na bramkê pagera',1046725558,NULL); +INSERT INTO international VALUES (440,'WebGUI',16,'Informacje kontaktowe',1046725528,NULL); +INSERT INTO international VALUES (44,'WebGUI',16,'Tak, jestem pewien.',1046725517,NULL); +INSERT INTO international VALUES (439,'WebGUI',16,'Informacje osobiste',1046725466,NULL); +INSERT INTO international VALUES (438,'WebGUI',16,'Twoja Nazwa',1046725454,NULL); +INSERT INTO international VALUES (437,'WebGUI',16,'Statystyki',1046725381,NULL); +INSERT INTO international VALUES (436,'WebGUI',16,'Zabij sesjê',1046725372,NULL); +INSERT INTO international VALUES (435,'WebGUI',16,'Sygnatura sesji',1046725364,NULL); +INSERT INTO international VALUES (434,'WebGUI',16,'Status',1046725355,NULL); +INSERT INTO international VALUES (433,'WebGUI',16,'Przegl±darka u¿ytkownika',1046725349,NULL); +INSERT INTO international VALUES (432,'WebGUI',16,'Wygasa',1046725339,NULL); +INSERT INTO international VALUES (431,'WebGUI',16,'Adres IP',1046725329,NULL); +INSERT INTO international VALUES (43,'WebGUI',16,'Czy na pewno chcesz usun±æ ten obiekt ze strony?',1046725305,NULL); +INSERT INTO international VALUES (429,'WebGUI',16,'Czas logowania',1046725242,NULL); +INSERT INTO international VALUES (428,'WebGUI',16,'U¿ytkownik (ID)',1046725232,NULL); +INSERT INTO international VALUES (427,'WebGUI',16,'Style',1046725222,NULL); +INSERT INTO international VALUES (426,'WebGUI',16,'Historia logowañ',1046725216,NULL); +INSERT INTO international VALUES (425,'WebGUI',16,'Aktywne sesje',1046725206,NULL); +INSERT INTO international VALUES (424,'WebGUI',16,'Poka¿ historiê logowañ',1046725196,NULL); +INSERT INTO international VALUES (423,'WebGUI',16,'Poka¿ aktywne sesje.',1046725170,NULL); +INSERT INTO international VALUES (421,'WebGUI',16,'Usuñ wszystko poza podstawowym formatowaniem',1046725000,NULL); +INSERT INTO international VALUES (420,'WebGUI',16,'Pozostaw jak jest.',1046724980,NULL); +INSERT INTO international VALUES (42,'WebGUI',16,'Proszê potwierdziæ',1046724930,NULL); +INSERT INTO international VALUES (419,'WebGUI',16,'Usuñ wszystkie znaczniki',1046724917,NULL); +INSERT INTO international VALUES (418,'WebGUI',16,'Filtruj tre¶æ HTML',1046724904,NULL); +INSERT INTO international VALUES (416,'WebGUI',16,'

Problem z wykonaniem zadania

Nast±pi³ b³±d zwi±zany z realizacj± tego zadania. Proszê wybraæ klawisz powrotu do strony i spróbowaæ ponownie. Je¿eli problem siê ponowi, prosimy o kontakt (prosze zanotowaæ opis sytuacji oraz datê i godzinê wyst±pienia problemu).',1046724714,NULL); +INSERT INTO international VALUES (412,'WebGUI',16,'Streszczenie',1046723151,NULL); +INSERT INTO international VALUES (411,'WebGUI',16,'Tytu³ w menu',1046723134,NULL); +INSERT INTO international VALUES (410,'WebGUI',16,'Zarz±dzaj g³ównymi katalogami.',1046723115,NULL); +INSERT INTO international VALUES (41,'WebGUI',16,'Próbujesz usun±æ istotny sk³adnik systemu WebGUI. Wykonanie tej czynno¶ci mog³oby doprowadziæ do zaprzestania dzia³ania WebGUI.',1046723098,NULL); +INSERT INTO international VALUES (409,'WebGUI',16,'Dodaj nowy g³ówny katalog.',1046722805,NULL); +INSERT INTO international VALUES (408,'WebGUI',16,'Zarz±dzaj g³ównymi katalogami',1046722788,NULL); +INSERT INTO international VALUES (407,'WebGUI',16,'Kliknij tu by zarejestrowaæ siê.',1046722742,NULL); +INSERT INTO international VALUES (406,'WebGUI',16,'Rozmiar miniaturki',1046722688,NULL); +INSERT INTO international VALUES (405,'WebGUI',16,'Ostatnia strona',1046722643,NULL); +INSERT INTO international VALUES (404,'WebGUI',16,'Pierwsza strona',1046722630,NULL); +INSERT INTO international VALUES (403,'WebGUI',16,'Nie bêdzie podane',1046722616,NULL); +INSERT INTO international VALUES (401,'WebGUI',16,'Na pewno chcesz usun±æ t± wiadomo¶æ oraz wszystkie poni¿ej?',1046722373,NULL); +INSERT INTO international VALUES (400,'WebGUI',16,'Pomijaæ bufor serwera proxy?',1046721672,NULL); +INSERT INTO international VALUES (40,'WebGUI',16,'Zasadniczy sk³adnik',1046720804,NULL); +INSERT INTO international VALUES (4,'WebGUI',16,'Zarz±dzaj ustawieniami.',1046720783,NULL); +INSERT INTO international VALUES (399,'WebGUI',16,'Sprawd¼ poprawno¶æ tej strony.',1046720727,NULL); +INSERT INTO international VALUES (395,'WebGUI',16,'Dodaj nowy obrazek',1046720451,NULL); +INSERT INTO international VALUES (394,'WebGUI',16,'Zarz±dzaj zasobami.',1046720441,NULL); +INSERT INTO international VALUES (391,'WebGUI',16,'Usuñ za³±czony plik.',1046719790,NULL); +INSERT INTO international VALUES (39,'WebGUI',16,'Nie masz wystarczaj±cych uprawnieñ do dostêpu do tej strony',1046719778,NULL); +INSERT INTO international VALUES (388,'WebGUI',16,'Data wys³ania',1046719720,NULL); +INSERT INTO international VALUES (387,'WebGUI',16,'Wys³any przez',1046719712,NULL); +INSERT INTO international VALUES (386,'WebGUI',16,'Edytuj obrazek',1046719681,NULL); +INSERT INTO international VALUES (385,'WebGUI',16,'Parametry',1046719667,NULL); +INSERT INTO international VALUES (384,'WebGUI',16,'Plik',1046719659,NULL); +INSERT INTO international VALUES (381,'WebGUI',16,'WebGUI odebra³ nieprawid³owe zapytanie, nie ma mo¿liwo¶ci kontynuacji. Naci¶nij przycisk Cofnij i spróbuj ponownie.',1046719654,NULL); +INSERT INTO international VALUES (38,'WebGUI',16,'Brak wystarczaj±cych uprawnieñ do wykonania tej operacji. Nale¿y zalogowaæ siê na konto posiadaj±ce odpowiednie uprawnienia do wykonania tej operacji.',1046719470,NULL); +INSERT INTO international VALUES (379,'WebGUI',16,'ID grupy',1046719230,NULL); +INSERT INTO international VALUES (378,'WebGUI',16,'ID u¿ytkownika',1046719221,NULL); +INSERT INTO international VALUES (376,'WebGUI',16,'Pakiet',1046719159,NULL); +INSERT INTO international VALUES (14,'Navigation',1,'generation',1077079203,'Option on question \"return a loop with\".'); +INSERT INTO international VALUES (372,'WebGUI',16,'Edycja grup u¿ytkownika',1046719092,NULL); +INSERT INTO international VALUES (371,'WebGUI',16,'Dodaj grupê',1046719075,NULL); +INSERT INTO international VALUES (370,'WebGUI',16,'Edycja grup',1046719064,NULL); +INSERT INTO international VALUES (37,'WebGUI',16,'Dostêp zabroniony!',1046719049,NULL); +INSERT INTO international VALUES (369,'WebGUI',16,'Data wyga¶niêcia',1046707793,NULL); +INSERT INTO international VALUES (368,'WebGUI',16,'Dodaj tego u¿ytkownika do nowej grupy',1046707782,NULL); +INSERT INTO international VALUES (364,'WebGUI',16,'Szukaj',1046707693,NULL); +INSERT INTO international VALUES (363,'WebGUI',16,'Pozycja szablonu strony',1046707685,NULL); +INSERT INTO international VALUES (362,'WebGUI',16,'Dwie kolumny',1046707661,NULL); +INSERT INTO international VALUES (361,'WebGUI',16,'Trzy nad jedn±',1046707585,NULL); +INSERT INTO international VALUES (360,'WebGUI',16,'Jedna nad trzema',1046707576,NULL); +INSERT INTO international VALUES (359,'WebGUI',16,'Prawa kolumna',1046707424,NULL); +INSERT INTO international VALUES (358,'WebGUI',16,'Lewa kolumna',1046707416,NULL); +INSERT INTO international VALUES (357,'WebGUI',16,'Informacje',1046707408,NULL); +INSERT INTO international VALUES (356,'WebGUI',16,'Szablon',1046707379,NULL); +INSERT INTO international VALUES (355,'WebGUI',16,'Domy¶lne',1046707370,NULL); +INSERT INTO international VALUES (354,'WebGUI',16,'Poka¿ skrzynkê odbiorcz±.',1046707360,NULL); +INSERT INTO international VALUES (353,'WebGUI',16,'W tej chwili nie ma ¿adnych wiadomosci.',1046707333,NULL); +INSERT INTO international VALUES (351,'WebGUI',16,'Wiadomo¶æ',1046707284,NULL); +INSERT INTO international VALUES (350,'WebGUI',16,'Zakoñczono',1046707278,NULL); +INSERT INTO international VALUES (35,'WebGUI',16,'Funkcje administracyjne',1046707269,NULL); +INSERT INTO international VALUES (349,'WebGUI',16,'Najnowsza wersja jest dostêpna',1046707208,NULL); +INSERT INTO international VALUES (348,'WebGUI',16,'Nazwa',1046707178,NULL); +INSERT INTO international VALUES (347,'WebGUI',16,'Poka¿ profil dla',1046707170,NULL); +INSERT INTO international VALUES (346,'WebGUI',16,'Ten u¿ytkownik nie jest ju¿ u¿ytkowniki naszych stron. Nie posiadamy ¿adnych dalszych informacji o nim.',1046707159,NULL); +INSERT INTO international VALUES (345,'WebGUI',16,'Nie jest cz³onkiem',1046707103,NULL); +INSERT INTO international VALUES (343,'WebGUI',16,'Poka¿ profil',1046707088,NULL); +INSERT INTO international VALUES (342,'WebGUI',16,'Edycja informacji o koncie.',1046707072,NULL); +INSERT INTO international VALUES (341,'WebGUI',16,'Edycja profilu.',1046707044,NULL); +INSERT INTO international VALUES (340,'WebGUI',16,'Kobieta',1046707033,NULL); +INSERT INTO international VALUES (339,'WebGUI',16,'Mê¿czyzna',1046707008,NULL); +INSERT INTO international VALUES (338,'WebGUI',16,'Edycja profilu',1046706997,NULL); +INSERT INTO international VALUES (337,'WebGUI',16,'Adres strony domowej',1046706988,NULL); +INSERT INTO international VALUES (336,'WebGUI',16,'Data urodzenia',1046706934,NULL); +INSERT INTO international VALUES (335,'WebGUI',16,'P³eæ',1046706926,NULL); +INSERT INTO international VALUES (334,'WebGUI',16,'Telefon do pracy',1046706920,NULL); +INSERT INTO international VALUES (333,'WebGUI',16,'Kraj miejsca pracy',1046706908,NULL); +INSERT INTO international VALUES (332,'WebGUI',16,'Kod pocztowy miejsca pracy',1046706896,NULL); +INSERT INTO international VALUES (331,'WebGUI',16,'Województwo, w którym pracujesz',1046706879,NULL); +INSERT INTO international VALUES (330,'WebGUI',16,'Miasto, w którym pracujesz',1046706865,NULL); +INSERT INTO international VALUES (33,'WebGUI',16,'Sobota',1046706845,NULL); +INSERT INTO international VALUES (329,'WebGUI',16,'Adres miejsca pracy',1046706792,NULL); +INSERT INTO international VALUES (328,'WebGUI',16,'Telefon domowy',1046706782,NULL); +INSERT INTO international VALUES (327,'WebGUI',16,'Kraj',1046706774,NULL); +INSERT INTO international VALUES (326,'WebGUI',16,'Kod pocztowy',1046706760,NULL); +INSERT INTO international VALUES (325,'WebGUI',16,'Województwo/Stan',1046706746,NULL); +INSERT INTO international VALUES (324,'WebGUI',16,'Miasto zamieszkania',1046706712,NULL); +INSERT INTO international VALUES (323,'WebGUI',16,'Adres domowy',1046706699,NULL); +INSERT INTO international VALUES (322,'WebGUI',16,'Pager',1046706686,NULL); +INSERT INTO international VALUES (321,'WebGUI',16,'Numer komórkowy',1046706679,NULL); +INSERT INTO international VALUES (320,'WebGUI',16,'Yahoo! Messenger Id',1046706660,NULL); +INSERT INTO international VALUES (32,'WebGUI',16,'Pi±tek',1046706634,NULL); +INSERT INTO international VALUES (319,'WebGUI',16,'MSN Messenger Id',1046706585,NULL); +INSERT INTO international VALUES (318,'WebGUI',16,'AIM Id',1046706568,NULL); +INSERT INTO international VALUES (317,'WebGUI',16,'UIN ICQ',1046706530,NULL); +INSERT INTO international VALUES (316,'WebGUI',16,'Nazwisko',1046706485,NULL); +INSERT INTO international VALUES (315,'WebGUI',16,'Drugie imiê',1046706480,NULL); +INSERT INTO international VALUES (314,'WebGUI',16,'Imiê',1046706468,NULL); +INSERT INTO international VALUES (313,'WebGUI',16,'Udostêpniæ ró¿ne informacje?',1046706461,NULL); +INSERT INTO international VALUES (312,'WebGUI',16,'Udostêpniæ informacji biznesowe?',1046706448,NULL); +INSERT INTO international VALUES (311,'WebGUI',16,'Udostêpniæ miejsce zamieszkania?',1046706428,NULL); +INSERT INTO international VALUES (310,'WebGUI',16,'Udostêpniæ dodatkowe informacje kontaktowe?',1046706408,NULL); +INSERT INTO international VALUES (31,'WebGUI',16,'Czwartek',1046706384,NULL); +INSERT INTO international VALUES (309,'WebGUI',16,'Pokazaæ imiê i nazwisko?',1046706319,NULL); +INSERT INTO international VALUES (308,'WebGUI',16,'Edycja ustawieñ profilu',1046706273,NULL); +INSERT INTO international VALUES (307,'WebGUI',16,'U¿yæ domy¶lnych znaczników?',1046706258,NULL); +INSERT INTO international VALUES (304,'WebGUI',16,'Jêzyk',1046706243,NULL); +INSERT INTO international VALUES (30,'WebGUI',16,'¦roda',1046706237,NULL); +INSERT INTO international VALUES (10,'Navigation',1,'self and sisters',1077078879,'Option on question \"return a loop with\"'); +INSERT INTO international VALUES (29,'WebGUI',16,'Wtorek',1046706187,NULL); +INSERT INTO international VALUES (28,'WebGUI',16,'Poniedzia³ek',1046706179,NULL); +INSERT INTO international VALUES (27,'WebGUI',16,'Niedziela',1046706171,NULL); +INSERT INTO international VALUES (26,'WebGUI',16,'Grudzieñ',1046706163,NULL); +INSERT INTO international VALUES (25,'WebGUI',16,'Listopad',1046706157,NULL); +INSERT INTO international VALUES (245,'WebGUI',16,'Data',1046706148,NULL); +INSERT INTO international VALUES (244,'WebGUI',16,'Autor',1046706140,NULL); +INSERT INTO international VALUES (240,'WebGUI',16,'ID wiadomo¶ci:',1046706135,NULL); +INSERT INTO international VALUES (24,'WebGUI',16,'Pa¼dziernik',1046706125,NULL); +INSERT INTO international VALUES (233,'WebGUI',16,'(eom)',1046706031,NULL); +INSERT INTO international VALUES (232,'WebGUI',16,'bez tematu',1046706017,NULL); +INSERT INTO international VALUES (231,'WebGUI',16,'Publikowanie nowej wiadomo¶ci',1046706010,NULL); +INSERT INTO international VALUES (230,'WebGUI',16,'Wiadomo¶æ',1046705994,NULL); +INSERT INTO international VALUES (23,'WebGUI',16,'Wrzesieñ',1046705985,NULL); +INSERT INTO international VALUES (229,'WebGUI',16,'Temat',1046705933,NULL); +INSERT INTO international VALUES (22,'WebGUI',16,'Sierpieñ',1046705916,NULL); +INSERT INTO international VALUES (21,'WebGUI',16,'Lipiec',1046705908,NULL); +INSERT INTO international VALUES (20,'WebGUI',16,'Czerwiec',1046705896,NULL); +INSERT INTO international VALUES (2,'WebGUI',16,'Strona',1046705881,NULL); +INSERT INTO international VALUES (19,'WebGUI',16,'Maj',1046705845,NULL); +INSERT INTO international VALUES (18,'WebGUI',16,'Kwiecieñ',1046705840,NULL); +INSERT INTO international VALUES (175,'WebGUI',16,'Przetwarzaæ makra?',1046705831,NULL); +INSERT INTO international VALUES (174,'WebGUI',16,'Wy¶wietlaæ tytu³?',1046705800,NULL); +INSERT INTO international VALUES (171,'WebGUI',16,'edycja wizualna',1046705784,NULL); +INSERT INTO international VALUES (170,'WebGUI',16,'wyszukiwanie',1046705730,NULL); +INSERT INTO international VALUES (17,'WebGUI',16,'Marzec',1046705698,NULL); +INSERT INTO international VALUES (169,'WebGUI',16,'Dodaj u¿ytkownika.',1046705659,NULL); +INSERT INTO international VALUES (168,'WebGUI',16,'Edycja u¿ytkownika',1046705645,NULL); +INSERT INTO international VALUES (167,'WebGUI',16,'Na pewno usun±æ tego u¿ytkownika? Pamiêtaj, ¿e wszystkie informacje dotycz±ce go zostan± nieodwracalnie usuniête.',1046705635,NULL); +INSERT INTO international VALUES (164,'WebGUI',16,'Metoda uwierzytelnienia',1046705582,NULL); +INSERT INTO international VALUES (163,'WebGUI',16,'Dodaj u¿ytkownika',1046705571,NULL); +INSERT INTO international VALUES (162,'WebGUI',16,'Czy na pewno opró¿niæ kosz usuwaj±c wszystkie strony i obiekty WWW w nim siê znajduj±ce?',1046705561,NULL); +INSERT INTO international VALUES (161,'WebGUI',16,'Opublikowa³(a)',1046705512,NULL); +INSERT INTO international VALUES (160,'WebGUI',16,'Data opublikowania',1046705497,NULL); +INSERT INTO international VALUES (16,'WebGUI',16,'Luty',1046705462,NULL); +INSERT INTO international VALUES (159,'WebGUI',16,'Przychodz±ce',1046705422,NULL); +INSERT INTO international VALUES (15,'WebGUI',16,'Styczeñ',1046705303,NULL); +INSERT INTO international VALUES (149,'WebGUI',16,'U¿ytkownicy',1046705261,NULL); +INSERT INTO international VALUES (148,'WebGUI',16,'Obiekty WWW',1046705247,NULL); +INSERT INTO international VALUES (147,'WebGUI',16,'Strony',1046705232,NULL); +INSERT INTO international VALUES (146,'WebGUI',16,'Aktywne sesje',1046705225,NULL); +INSERT INTO international VALUES (145,'WebGUI',16,'Wersja WebGUI Build',1046705215,NULL); +INSERT INTO international VALUES (144,'WebGUI',16,'Poka¿ statystyki.',1046705192,NULL); +INSERT INTO international VALUES (143,'WebGUI',16,'Zarz±dzaj ustawieniami',1046705180,NULL); +INSERT INTO international VALUES (142,'WebGUI',16,'Czas wyga¶niêcia sesji',1046705168,NULL); +INSERT INTO international VALUES (141,'WebGUI',16,'Nie znaleziono strony',1046705129,NULL); +INSERT INTO international VALUES (140,'WebGUI',16,'Edycja ró¿nych ustawieñ',1046705118,NULL); +INSERT INTO international VALUES (139,'WebGUI',16,'Nie',1046705026,NULL); +INSERT INTO international VALUES (138,'WebGUI',16,'Tak',1046705020,NULL); +INSERT INTO international VALUES (135,'WebGUI',16,'Serwer SMTP',1046705013,NULL); +INSERT INTO international VALUES (134,'WebGUI',16,'Wiadomo¶æ odzyskuj±ca has³o',1046705006,NULL); +INSERT INTO international VALUES (133,'WebGUI',16,'Edycja ustawienia wiadomo¶ci',1046704962,NULL); +INSERT INTO international VALUES (130,'WebGUI',16,'Maksymalny rozmiar za³±cznika',1046704950,NULL); +INSERT INTO international VALUES (13,'WebGUI',16,'Zobacz indeks pomocy.',1046704938,NULL); +INSERT INTO international VALUES (118,'WebGUI',16,'Anonimowa rejestracja',1046704922,NULL); +INSERT INTO international VALUES (127,'WebGUI',16,'Adres URL firmy',1046704876,NULL); +INSERT INTO international VALUES (126,'WebGUI',16,'adres e-mail firmy',1046704864,NULL); +INSERT INTO international VALUES (125,'WebGUI',16,'Nazwa firmy',1046704850,NULL); +INSERT INTO international VALUES (124,'WebGUI',16,'Edycja informacji o firmie',1046704843,NULL); +INSERT INTO international VALUES (12,'WebGUI',16,'Wy³±cz administracjê.',1046704829,NULL); +INSERT INTO international VALUES (119,'WebGUI',16,'Metoda uwierzytelnienia (domy¶lna)',1046704801,NULL); +INSERT INTO international VALUES (117,'WebGUI',16,'Edycja ustawieñ u¿ytkownika',1046704781,NULL); +INSERT INTO international VALUES (11,'WebGUI',16,'Opró¿nij kosz.',1046704721,NULL); +INSERT INTO international VALUES (108,'WebGUI',16,'W³a¶ciciel',1046704657,NULL); +INSERT INTO international VALUES (107,'WebGUI',16,'Prezentacja',1046704647,NULL); +INSERT INTO international VALUES (106,'WebGUI',16,'Wybierz \"Tak\", by prze³±czyæ wszystkie strony potomne do tego stylu',1046704630,NULL); +INSERT INTO international VALUES (105,'WebGUI',16,'Styl',1046704572,NULL); +INSERT INTO international VALUES (104,'WebGUI',16,'Adres strony',1046704566,NULL); +INSERT INTO international VALUES (103,'WebGUI',16,'Specyficzne dla strony',1046704558,NULL); +INSERT INTO international VALUES (102,'WebGUI',16,'Edytuj stronê',1046704538,NULL); +INSERT INTO international VALUES (101,'WebGUI',16,'Na pewno chcesz usun±æ t± stronê, jej zawarto¶æ oraz pozycje do niej nale¿±ce?',1046704530,NULL); +INSERT INTO international VALUES (100,'WebGUI',16,'Znaczniki (Meta Tags)',1046704486,NULL); +INSERT INTO international VALUES (10,'WebGUI',16,'Zarz±dzaj koszem.',1046704472,NULL); +INSERT INTO international VALUES (1,'WebGUI',16,'Dodaj tre¶æ...',1046704461,NULL); +INSERT INTO international VALUES (75,'SiteMap',16,'Wszystkie korzenie',1046704348,NULL); +INSERT INTO international VALUES (74,'SiteMap',16,'Ta strona',1046704315,NULL); +INSERT INTO international VALUES (61,'SiteMap',16,'Spis tre¶ci, Dodawanie/Edycja',1046704293,NULL); +INSERT INTO international VALUES (6,'SiteMap',16,'Akapit',1046704278,NULL); +INSERT INTO international VALUES (5,'SiteMap',16,'Edytuj spis tre¶ci',1046704257,NULL); +INSERT INTO international VALUES (4,'SiteMap',16,'Umie¶ciæ do g³êboko¶ci',1046704247,NULL); +INSERT INTO international VALUES (3,'SiteMap',16,'Rozpocznij od',1046704203,NULL); +INSERT INTO international VALUES (2,'SiteMap',16,'Spis tre¶ci',1046704187,NULL); +INSERT INTO international VALUES (59,'Product',16,'Nazwa',1046704092,NULL); +INSERT INTO international VALUES (57,'Product',16,'Na pewno usun±æ ten szablon i prze³±czyæ wszystkie produkty oparte na nim na domy¶lny szablno?',1046704064,NULL); +INSERT INTO international VALUES (56,'Product',16,'Dodaj szablon produktu',1046703970,NULL); +INSERT INTO international VALUES (55,'Product',16,'Dodaj korzy¶æ',1046703932,NULL); +INSERT INTO international VALUES (8,'Auth/LDAP',16,'LDAP Password Name',1046703892,NULL); +INSERT INTO international VALUES (9,'Auth/SMB',16,'Has³o NT',1046703856,NULL); +INSERT INTO international VALUES (8,'Auth/SMB',16,'Login NT',1046703848,NULL); +INSERT INTO international VALUES (7,'Auth/SMB',16,'Domena NT',1046703838,NULL); +INSERT INTO international VALUES (6,'Auth/SMB',16,'BDC',1046703830,NULL); +INSERT INTO international VALUES (5,'Auth/SMB',16,'PDC',1046703824,NULL); +INSERT INTO international VALUES (4,'Auth/SMB',16,'B³±d przy logowaniu SMB(3)
\r\nPodano nieprawid³owe has³o lub nazwê u¿ytkownika. Popraw i spróbuj ponownie\r\n',1046703819,NULL); +INSERT INTO international VALUES (3,'Auth/SMB',16,'B³±d protoko³u SMB(2)
\r\nSkontaktuj siê z administratorem',1046703755,NULL); +INSERT INTO international VALUES (2,'Auth/SMB',16,'B³±d serwera SMB
\r\nCo¶ nie tak posz³o przy dostêpie do kontrolera domeny.',1046703518,NULL); +INSERT INTO international VALUES (1,'Auth/SMB',16,'Opcje autentykacji SMB',1046703469,NULL); +INSERT INTO international VALUES (6,'Product',16,'Edytuj produkt',1046703418,NULL); +INSERT INTO international VALUES (60,'Product',16,'Szablon',1046703403,NULL); +INSERT INTO international VALUES (62,'Product',16,'Szablon produktu',1046703375,NULL); +INSERT INTO international VALUES (7,'Product',16,'Zdjêcie produktu 1',1046703358,NULL); +INSERT INTO international VALUES (8,'Product',16,'Zdjêcie produktu 2',1046703343,NULL); +INSERT INTO international VALUES (9,'Product',16,'Zdjêcie produktu 3',1046703328,NULL); +INSERT INTO international VALUES (1017,'WebGUI',16,'Ostatnia odpowied¼',1046703138,NULL); +INSERT INTO international VALUES (6,'MessageBoard',16,'Edytuj forum',1046703091,NULL); +INSERT INTO international VALUES (2,'MessageBoard',16,'Forum',1046703059,NULL); +INSERT INTO international VALUES (54,'Product',16,'Korzy¶ci',1046702887,NULL); +INSERT INTO international VALUES (53,'Product',16,'Edycja korzy¶ci',1046702879,NULL); +INSERT INTO international VALUES (52,'Product',16,'Dodaæ nastêpn± korzy¶æ?',1046702871,NULL); +INSERT INTO international VALUES (51,'Product',16,'Korzy¶æ',1046702852,NULL); +INSERT INTO international VALUES (46,'Product',16,'Produkt (powi±zany), Dodawanie/Edycja',1046699214,NULL); +INSERT INTO international VALUES (3,'Product',16,'Na pewno chcesz usun±æ t± cechê?',1046699188,NULL); +INSERT INTO international VALUES (50,'Product',16,'Korzy¶ci to zazwyczaj efekty cech produktu. Okre¶laj± dlaczego produkt jest tak dobry. Je¶li dodajesz korzy¶ci, warto tak¿e rozwa¿yæ dodanie cech produktu.\n
\n
\nKorzy¶æ
\nMo¿esz wpisaæ korzy¶æ, lub wybraæ jedn± z wcze¶niej wpisanych.\n
\n
\nDodaæ nastêpn± korzy¶æ?
\nJe¶li chcesz natychmiat dodaæ nastêpn± korzy¶æ, wybierz \"Tak\"\n\n\n',1046699160,NULL); +INSERT INTO international VALUES (5,'Product',16,'Na pewno usun±æ ten parametr?',1046698968,NULL); +INSERT INTO international VALUES (49,'Product',16,'Korzy¶ci, Dodawanie/Edycja',1046698943,NULL); +INSERT INTO international VALUES (48,'Product',16,'Na pewno usun±æ t± korzy¶æ? Zostanie usuniêta nieodwracalnie.',1046698887,NULL); +INSERT INTO international VALUES (44,'Product',16,'Akcesoria produktu, Dodawanie/Edycja',1046698808,NULL); +INSERT INTO international VALUES (42,'Product',16,'Dane produktu, Dodawanie/Edycja',1046698789,NULL); +INSERT INTO international VALUES (40,'Product',16,'Cechy produktu, Dodawanie/Edycja',1046698740,NULL); +INSERT INTO international VALUES (4,'Product',16,'Na pewno usun±æ powi±zanie do tego produktu?',1046698724,NULL); +INSERT INTO international VALUES (39,'Product',16,'WebGUI posiada wbudowany system zarz±dzania produktami pozwalaj±cy na proste i szybkie publikowanie produktów i us³ug.\r\n
\r\n
\r\nSzablon
\r\nWybierz uk³ad dla tego produktu\r\n
\r\n
\r\nCena
\r\nCena produktu. Mo¿na opcjonalnie wpisaæ tekst, np.\r\n\"by poznaæ cenê, zadzwoñ\" lub pozostawiæ puste.\r\n
\r\n
\r\nNumer produktu
\r\nNumer produktu,np ISBN lub inny identyfikator produktu\r\n
\r\n
\r\nZdjêcie produktu 1
\r\nZdjêcie produktu\r\n
\r\n
\r\nZdjêcie produktu 2
\r\nZdjêcie produktu\r\n
\r\n
\r\nZdjêcie produktu 3
\r\nZdjêcie produktu\r\n
\r\n
\r\nProspekt
\r\nProspekt produktu\r\n
\r\n
\r\nPodrêcznik
\r\nInstrukcja u¿ywania lub obs³ugi produktu.\r\n
\r\n
\r\nGwarancja
\r\nGwarancja produktu\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n',1046698692,NULL); +INSERT INTO international VALUES (38,'Product',16,'Produkt, Dodawanie/Edycja',1046698212,NULL); +INSERT INTO international VALUES (37,'Product',16,'Dodaj powi±zany produkt',1046698195,NULL); +INSERT INTO international VALUES (36,'Product',16,'Dodaj akcesoria',1046698179,NULL); +INSERT INTO international VALUES (35,'Product',16,'Dodaj parametr',1046698098,NULL); +INSERT INTO international VALUES (34,'Product',16,'Dodaj cechê',1046698088,NULL); +INSERT INTO international VALUES (33,'Product',16,'Powi±zane produkty',1046698079,NULL); +INSERT INTO international VALUES (32,'Product',16,'Akcesoria',1046698070,NULL); +INSERT INTO international VALUES (31,'Product',16,'Warto¶æ',1046698064,NULL); +INSERT INTO international VALUES (30,'Product',16,'Cechy',1046698056,NULL); +INSERT INTO international VALUES (29,'Product',16,'Jednostki',1046698049,NULL); +INSERT INTO international VALUES (28,'Product',16,'Dodaæ nastêpny parametr?',1046698042,NULL); +INSERT INTO international VALUES (27,'Product',16,'Parametry',1046698029,NULL); +INSERT INTO international VALUES (26,'Product',16,'Typ',1046698019,NULL); +INSERT INTO international VALUES (25,'Product',16,'Edycja parametrów',1046698000,NULL); +INSERT INTO international VALUES (24,'Product',16,'Dodaæ nastêpne cechy?',1046697971,NULL); +INSERT INTO international VALUES (23,'Product',16,'Cechy',1046697959,NULL); +INSERT INTO international VALUES (22,'Product',16,'Edytuj cechy',1046697954,NULL); +INSERT INTO international VALUES (21,'Product',16,'Dodaæ powi±zany produkt?',1046697935,NULL); +INSERT INTO international VALUES (20,'Product',16,'Powi±zany produkt',1046697922,NULL); +INSERT INTO international VALUES (2,'Product',16,'Na pewno chcesz usun±æ powi±zanie z tym akcesoriem',1046697854,NULL); +INSERT INTO international VALUES (19,'Product',16,'Dodaj powi±zane produkty',1046697825,NULL); +INSERT INTO international VALUES (18,'Product',16,'Dodaæ nastêpne akcesoria?',1046697811,NULL); +INSERT INTO international VALUES (17,'Product',16,'Akcesoria',1046697799,NULL); +INSERT INTO international VALUES (16,'Product',16,'Dodaj akcesoria',1046697791,NULL); +INSERT INTO international VALUES (15,'Product',16,'Gwarancja',1046697781,NULL); +INSERT INTO international VALUES (14,'Product',16,'Podrêcznik',1046697767,NULL); +INSERT INTO international VALUES (13,'Product',16,'Prospekt',1046697756,NULL); +INSERT INTO international VALUES (11,'Product',16,'Numer produktu',1046697742,NULL); +INSERT INTO international VALUES (10,'Product',16,'Cena',1046697732,NULL); +INSERT INTO international VALUES (1,'Product',16,'Produkt',1046697709,NULL); +INSERT INTO international VALUES (9,'Poll',16,'Edycja sondy',1046697606,NULL); +INSERT INTO international VALUES (8,'Poll',16,'(Wpisuj jedno pytanie w ka¿dej linii, nie wiêcej jednak ni¿ 20)',1046697592,NULL); +INSERT INTO international VALUES (72,'Poll',16,'Losowaæ odpowiedzi?',1046697549,NULL); +INSERT INTO international VALUES (7,'Poll',16,'Odpowiedzi',1046697507,NULL); +INSERT INTO international VALUES (6,'Poll',16,'Pytanie',1046697486,NULL); +INSERT INTO international VALUES (5,'Poll',16,'Szeroko¶æ wykresu',1046697480,NULL); +INSERT INTO international VALUES (4,'Poll',16,'Kto mo¿e g³osowaæ?',1046697467,NULL); +INSERT INTO international VALUES (3,'Poll',16,'Aktywna',1046697453,NULL); +INSERT INTO international VALUES (20,'Poll',16,'Punkty za g³osowanie',1046697392,NULL); +INSERT INTO international VALUES (11,'Poll',16,'G³osuj!',1046697232,NULL); +INSERT INTO international VALUES (10,'Poll',16,'Resetuj g³osowanie',1046697225,NULL); +INSERT INTO international VALUES (1,'Poll',16,'Sonda',1046697204,NULL); +INSERT INTO international VALUES (91,'USS',16,'URL',1046696925,NULL); +INSERT INTO international VALUES (92,'USS',16,'Otworzyæ w nowym oknie?',1046696463,NULL); +INSERT INTO international VALUES (89,'USS',16,'Dodaj nowy link',1046696450,NULL); +INSERT INTO international VALUES (90,'USS',16,'Edytuj link',1046696442,NULL); +INSERT INTO international VALUES (93,'USS',1,'Submission Form Template',1070199365,NULL); +INSERT INTO international VALUES (94,'USS',1,'The following template variables are available to you when building your submission form templates.\r\n

\r\n\r\nsubmission.isNew
\r\nA condition indicating whether this is a new submission being contributed.\r\n

\r\n\r\nlink.header.label
\r\nA header telling the user they are editing a link.\r\n

\r\n\r\nquestion.header.label
\r\nA header telling the user they are editing a question.\r\n

\r\n\r\nsubmission.header.label
\r\nA header telling the user they are editing a submission.\r\n

\r\n\r\nuser.isVisitor
\r\nA condition indicating whether the current user is a visitor.\r\n

\r\n\r\nvisitorName.label
\r\nA label for the visitorName.form variable.\r\n

\r\n\r\nvisitorName.form
\r\nA text box that allows a visitor (non-logged in user) to enter their own name instead of submitting completely anonymously.\r\n

\r\n\r\nform.header
\r\nAll the information necessary to route the form contents back to WebGUI.\r\n

\r\n\r\nurl.label
\r\nA generic label for a URL field.\r\n

\r\n\r\nnewWindow.label
\r\nA generic label for a field asking the user whether they would like links to pop up new windows.\r\n

\r\n\r\nuserDefined1.form - userDefined5.form
\r\nA series of generic text fields that can be used to extend the functionality of the USS.\r\n

\r\n\r\nuserDefined1.form.yesNo - userDefined5.form.yesNo
\r\nYes / No versions of the user defined fields.\r\n

\r\n\r\nuserDefined1.form.textarea - userDefined5.form.textarea
\r\nTextarea versions of the user defined fields.\r\n

\r\n\r\nuserDefined1.value - userDefined5.value
\r\nThe raw values of the user defined fields.\r\n

\r\n\r\nquestion.label
\r\nA label prompting the user to enter a question.\r\n

\r\n\r\ntitle.label
\r\nA label prompting the user to enter a title.\r\n

\r\n\r\ntitle.form
\r\nA text field for titles or headers for each submission.\r\n

\r\n\r\ntitle.form.textarea
\r\nA textarea version of the title.form field.\r\n

\r\n\r\ntitle.value
\r\nThe raw value of the title field.\r\n

\r\n\r\nbody.label
\r\nA label for the body.form variable.\r\n

\r\n\r\nanswer.label
\r\nAnother label for the body.form variable.\r\n

\r\n\r\ndescription.label
\r\nAnother label for the body.form variable.\r\n

\r\n\r\nbody.form
\r\nAn HTML Area field allowing the user to enter descriptive content of this submission.\r\n

\r\n\r\nbody.value
\r\nThe raw content of the body.form field.\r\n

\r\n\r\nbody.form.textarea
\r\nA textarea version of body.form.\r\n

\r\n\r\nimage.label
\r\nA label for the image.form variable.\r\n

\r\n\r\nimage.form
\r\nA field allowing the user to pick an image from his/her hard drive.\r\n

\r\n\r\nattachment.label
\r\nA label for the attachment.form variable.\r\n

\r\n\r\nattachment.form
\r\nA field allowing the user to pick a file from his/her hard drive to attach to this submission.\r\n

\r\n\r\ncontentType.label
\r\nA label for the contentType.form variable.\r\n

\r\n\r\ncontentType.form
\r\nA field allowing the user to select the type of content contained in the form.body field.\r\n

\r\n\r\nform.submit
\r\nA submit button.\r\n

\r\n\r\nform.footer
\r\nThe bottom of the form.\r\n

\r\n',1070199365,NULL); +INSERT INTO international VALUES (9,'FileManager',16,'Edycja mened¿era plików',1046695133,NULL); +INSERT INTO international VALUES (8,'FileManager',16,'Zwiêz³y opis',1046695116,NULL); +INSERT INTO international VALUES (75,'FileManager',16,'Szablon mened¿era plików',1046695065,NULL); +INSERT INTO international VALUES (74,'FileManager',16,'Dodaj nowy plik',1046695045,NULL); +INSERT INTO international VALUES (72,'FileManager',16,'Plik, Dodawanie/Edycja',1046694953,NULL); +INSERT INTO international VALUES (71,'FileManager',16,'Mened¿er plików zaprojektowano w celu u³atwienia\nzarz±dzania dystrybucj± plików. Umo¿liwia okre¶lenie, kto mo¿e ogl±daæ/pobieraæ pliki.\n

\n\nSzablon
\nWybierz wygl±d mened¿era plików\n

\n\nPodziel stronê po
\nJak wiele plików ma byæ wy¶wietlane przed \npodzia³em wyników na oddzielne strony.\nInnymi s³owy, jak wiele plików ma byæ wy¶wietlane na stronie.\n

\n\nCo dalej?
\nJe¶li chcesz rozpocz±æ dodawanie plików natychmiast, pozostaw to pole zaznaczone',1046694915,NULL); +INSERT INTO international VALUES (20,'FileManager',16,'Podziel stronê po',1046694720,NULL); +INSERT INTO international VALUES (7,'FileManager',16,'Pobieranie dla grupy',1046694398,NULL); +INSERT INTO international VALUES (61,'FileManager',16,'Mened¿er plików, Dodawanie/Edycja',1046694323,NULL); +INSERT INTO international VALUES (6,'FileManager',16,'Plik',1046694289,NULL); +INSERT INTO international VALUES (5,'FileManager',16,'Tytu³ pliku',1046694251,NULL); +INSERT INTO international VALUES (3,'FileManager',16,'Przyst±piæ do dodawania pliku?',1046693224,NULL); +INSERT INTO international VALUES (19,'FileManager',16,'Brak dostêpnych plików',1046693028,NULL); +INSERT INTO international VALUES (18,'FileManager',16,'Wersja zastêpcza #2',1046692983,NULL); +INSERT INTO international VALUES (17,'FileManager',16,'Wersja zastêpcza #1',1046692252,NULL); +INSERT INTO international VALUES (16,'FileManager',16,'Data zamieszczenia',1046692207,NULL); +INSERT INTO international VALUES (15,'FileManager',16,'Opis',1046692162,NULL); +INSERT INTO international VALUES (14,'FileManager',16,'Plik',1046691368,NULL); +INSERT INTO international VALUES (12,'FileManager',16,'Na pewno chcesz usun±æ ten plik?',1046691355,NULL); +INSERT INTO international VALUES (11,'FileManager',16,'Dodaj nowy plik.',1046691330,NULL); +INSERT INTO international VALUES (10,'FileManager',16,'Edytuj plik',1046691308,NULL); +INSERT INTO international VALUES (1,'FileManager',16,'Mened¿er plików',1046691290,NULL); +INSERT INTO international VALUES (842,'WebGUI',1,'The navigation macro is used to create menus on your site. It works like this:\r\n\r\n^Navigation(navId);

\r\n\r\nThe navId is the name you\'ve identified in the navigation management screen.',1078243564,NULL); +INSERT INTO international VALUES (5,'Auth/WebGUI',16,'Has³em nie mo¿e byæ \"password\"',1046690012,NULL); +INSERT INTO international VALUES (4,'Auth/WebGUI',16,'Has³o nie mo¿e byæ puste',1046689985,NULL); +INSERT INTO international VALUES (3,'Auth/WebGUI',16,'Has³a nie zgadzaj± siê. Spróbuj ponownie',1046689955,NULL); +INSERT INTO international VALUES (2,'Auth/WebGUI',16,'Has³o (potwierdzenie)',1046689928,NULL); +INSERT INTO international VALUES (1,'Auth/WebGUI',16,'Opcje autentykacji WebGUI',1046689902,NULL); +INSERT INTO international VALUES (7,'Auth/LDAP',16,'Nazwa identyfikatora LDAP',1046689817,NULL); +INSERT INTO international VALUES (6,'Auth/LDAP',16,'Identyfikator LDAP (domy¶lny)',1046689792,NULL); +INSERT INTO international VALUES (5,'Auth/LDAP',16,'URL serwera LDAP (domy¶lny)',1046689765,NULL); +INSERT INTO international VALUES (4,'Auth/LDAP',16,'Po³±czenie z DN',1046689742,NULL); +INSERT INTO international VALUES (3,'Auth/LDAP',16,'URL serwera LDAP',1046689720,NULL); +INSERT INTO international VALUES (2,'Auth/LDAP',16,'Nie mo¿na po³±czyæ z serwerm LDAP',1046689696,NULL); +INSERT INTO international VALUES (1,'Auth/LDAP',16,'Opcje autentykacji LDAP',1046689662,NULL); +INSERT INTO international VALUES (9,'Article',16,'Za³±cznik',1046689436,NULL); +INSERT INTO international VALUES (8,'Article',16,'Adres URL',1046689421,NULL); +INSERT INTO international VALUES (72,'Article',16,'Szablon artyku³u',1046689359,NULL); +INSERT INTO international VALUES (7,'Article',16,'Tytu³ linku',1046689298,NULL); +INSERT INTO international VALUES (6,'Article',16,'Obrazek',1046689217,NULL); +INSERT INTO international VALUES (4,'Article',16,'Data koñcowa',1046689199,NULL); +INSERT INTO international VALUES (3,'Article',16,'Data pocz±tkowa',1046689186,NULL); +INSERT INTO international VALUES (24,'Article',16,'Opublikuj odpowied¼',1046689125,NULL); +INSERT INTO international VALUES (23,'Article',16,'Data',1046689061,NULL); +INSERT INTO international VALUES (22,'Article',16,'Autor',1046689048,NULL); +INSERT INTO international VALUES (894,'WebGUI',16,'Umo¿liwiæ dyskusjê?',1046689035,NULL); +INSERT INTO international VALUES (13,'Article',16,'Usuñ',1046689008,NULL); +INSERT INTO international VALUES (12,'Article',16,'Edytuj Artyku³',1046688347,NULL); +INSERT INTO international VALUES (11,'Article',16,'(Wybierz \"Tak\" tylko je¶li nie dodajesz
rêcznie)',1046688327,NULL); +INSERT INTO international VALUES (10,'Article',16,'Konwertowaæ znak nowego wiersza (CR)?',1046688283,NULL); +INSERT INTO international VALUES (1,'Article',16,'Artyku³',1046688225,NULL); +INSERT INTO international VALUES (624,'WebGUI',16,'Makra WebGUI umo¿liwiaj± tworzenie dynamicznej zawarto¶ci serwisu, zmiennej w zale¿no¶ci od istniej±cych lub zdefiniowanych podczas jej wywo³ywania warunków. Przyk³adowo mo¿esz chcieæ wy¶wietlaæ na stronach informacjê o zalogowanych u¿ytkownikach, lub prezentowaæ na stronach menu nawigacyjne zale¿ne od wywo³ywanej strony. \n

\n\nMakra zawsze zaczynaj± siê znakiem (^) po którym wystêpuje przynajmniej jeden inny znak i koñcz± siê znakiem (;). Niektóre makra mog± byæ rozbudowywane/konfigurowane poprzez definiowanie formatu ^x(\"tekst konfiguracji\");. \n

\n\nUWAGA: Nastêpuj±ce makra s± zarezerwowane dla funkcji zwi±zanych z systemem i obiektami jak np. dla SQL Report oraz menad¿era zawarto¶ci i mened¿era stylów: \n^-;,^0;,^1;,^2;,^3;, etc.
\n

',1046656837,NULL); +INSERT INTO international VALUES (893,'WebGUI',16,'W³a¶ciwo¶ci',1046638419,NULL); +INSERT INTO international VALUES (892,'WebGUI',16,'Dyskusja',1046637952,NULL); +INSERT INTO international VALUES (1024,'WebGUI',16,'Poziom filtrowania',1046607477,NULL); +INSERT INTO international VALUES (623,'WebGUI',16,'

Kaskadowe Pliki Stylów (CSS) s± znakomitym sposobem kontroli i tworzenia wygl±du posiadanego serwisu - s± one szeroko wykorzystywane przez system WebGUI.\n

\n\n\n\n\nOto lista klas stylów CSS u¿ywanych do kontroli wygl±du systemu WebGUI:\n

\n\n\nA
\nDefiniowanie wygl±du odno¶ników (linków) na stronach serwisu.\n

\n\n\nBODY
\nDefinicja domy¶lnych parametrów klas CSS obowi±zuj±ca dla wszystkich stron zwi±zanych z danym stylem CSS.\n

\n\n\nH1
\nDefinicja prezentacji nag³ówków na ka¿dej stronie.\n

\n\n\n.accountOptions
\nSposób wy¶wietlania adresu URL (linku) jaki wy¶wietlany jest poni¿ej formularza logowania siê lub aktualizacji konta.\n

\n\n\n.adminBar
\nSposób wy¶wietlania paska z opcjami administracyjnymi na górze strony (gdy w³±czony jest tryb administracji strony).\n

\n\n\n.content
\nSposób wy¶wietlania g³ównej tre¶ci strony obowi±zuj±cy dla wszystkich stron zwi±zanych z danym stylem CSS.\n

\n\n\n.formDescription
\nSposób wy¶wietlania tagów HTML wystêpuj±cych po niektórych elementach formularzy.\n

\n\n\n.formSubtext
\nSposób wy¶wietlania tagów HTML wystêpuj±cych poni¿ej niektórych elementów formularzy.\n

\n\n\n.highlight
\nSposób wy¶wietlania tre¶ci wyró¿nionych, przyk³adowo takich jak wiadomo¶æ w li¶cie któr± bie¿±co przegl±damy.\n

\n\n\n.horizontalMenu
\nSposób wy¶wietlania menu poziomego (o ile wykorzystujemy makro menu poziomego).\n

\n\n\n.pagination
\nSposób wy¶wietlania linków do nastêpnej i poprzedniej strony listy wielostronicowej.\n

\n\n\n.selectedMenuItem
\nS³u¿y do wyró¿niania bie¿±cej strony w makrach menu.\n

\n\n\n.tableData
\nSposób wy¶wietlania wierszy danych w obiektach takich jak forum dyskusyjne, czy te¿ w systemie zg³aszania propozycji.\n

\n\n\n.tableHeader
\nSposób wy¶wietlania nag³ówków kolumn opisuj±cych poszczególne pola wierszy danych w obiektach takich jak forum dyskusyjne czy te¿ system zg³aszania propozycji.\n

\n\n\n.tableMenu
\nSposób wy¶wietlania menu w obiektach takich jak forum dyskusyjne czy te¿ w systemie zg³aszania propozycji.\n

\n\n\n.verticalMenu
\nSposób wy¶wietlania menu pionowego (o ile wykorzystujemy makro menu pionowego).\n

\n\n\nUWAGA: Niektóre obiekty maj± swoje w³asne klasy CSS, które s± opisane na zwi±zanych z nimi stronami pomocy.\n

',1046067403,NULL); +INSERT INTO international VALUES (890,'WebGUI',16,'WebGUI posiada podsystem umo¿liwiaj±cy tworzenie interfejsów stron zawieraj±cych tzw. elementy zak³adek (na stronie prezentowane jest menu nawigacyjne zawieraj±ce nag³ówki powi±zanych ze sob± stron umo¿liwiaj±c szybkie wybranie interesuj±cej nas strony) ? przyk³adem mo¿e tu byæ formularz edycji strony. W wiêkszo¶ci przypadków, aby uzyskaæ atrakcyjny i zgodny z zamierzeniem projektanta wygl±d takiego menu nawigacyjnego, nale¿y dodaæ odpowiednie wpisy do u¿ywanych stylów CSS ? oto dostêpne w tym celu klasy CSS:\n

\n\n.tab
\nDomy¶lny wygl±d ka¿dej zak³adki (nag³ówka strony przypominaj±cego zak³adkê).\n

\n\ndiv.tabs
\ndefiniuje niektóre w³a¶ciwo¶ci zak³adek i powinno byæ u¿yte do definiowania zwi±zanych z nimi etykiet tekstowych.\n

\n\n\n.tabBody
\nDefinuje w³a¶ciwo¶ci wy¶wietlania zawarto¶ci ka¿dej z zak³adek ? to jest w³a¶nie obszar gdzie prezentowany bêdzie formularz. Nale¿y zauwa¿yæ ¿e najlepszy rezultat uzyskuje siê ustawiaj±c ten sam kolor t³a jak w klasie CSS .tabActive.\n

\n\n\n.tabHover
\nDefinuje sposób wy¶wietlania zak³adek podczas operowania po nich kursorem za pomoc± myszki komputera.\n

\n\n.tabActive
\nSposób wy¶wietlania aktywnej (ogl±danej) w danej chwili zak³adki.\n

\n\n\nPrzyk³ady
\nMo¿esz u¿yæ poni¿sze gotowe ju¿ definicje klass CSS lub u¿yæ je jako wskazówek.\n

\n
\nStyle bia³e i w jasnych kolorach\n
\n.tab {\n  border: 1px solid black;\n   background-color: #eeeeee;\n}\n.tabBody {\n   border: 1px solid black;\n   border-top: 1px solid black;\n   border-left: 1px solid black;\n   background-color: #dddddd; \n}\ndiv.tabs {\n    line-height: 15px;\n    font-size: 14px;\n}\n.tabHover {\n   background-color: #cccccc;\n}\n.tabActive { \n   background-color: #dddddd; \n}\n
\n
\nStyle czarne lub w ciemnych kolorach\n
\n.tab {\n  border: 1px solid white;\n   background-color: #333333;\n}\n.tabBody {\n   border: 1px solid white;\n   border-top: 1px solid white;\n   border-left: 1px solid white;\n   background-color: #444444; \n}\ndiv.tabs {\n    line-height: 15px;\n    font-size: 14px;\n}\n.tabHover {\n   background-color: #555555;\n}\n.tabActive { \n   background-color: #444444; \n}\n
\n
',1046067380,NULL); +INSERT INTO international VALUES (889,'WebGUI',16,'Style CSS, Zak³adki (Tabs)',1046067380,NULL); +INSERT INTO international VALUES (618,'WebGUI',16,'Serwer SMTP
\nTo jest adres twojego lokalnego serwera poczty. Serwer poczty jest wymagany do realizacji wszystkich zadañ wymagaj±cych korzystania z mo¿liwo¶ci wysy³ania poczty email poprzez Internet (przyk³adowo przy odzyskiwaniu hase³ kont u¿ytkowników).\n

\nOpcjonalnie, je¿eli posiadasz uruchomiony sendmail na tym samym serwerze co system WebGUI, to mo¿esz tu podaæ ¶cie¿kê do plików uruchamiaj±cych sendmail. Na wiêkszo¶ci systemów opartych o Linux jest to ¶cie¿ka \"/usr/lib/sendmail\".\n\n

\nStopka emaila
\nStopka bêdzie do³±czana do ka¿dego e-maila wysy³anego przez WebGUI. W stopce mog± byæ zawarte makra.\n

\n\nPowiadomiæ o nowym u¿ytkowniku?
\nCzy wysy³aæ powiadomienia gdy w systemie zarejestruje siê nowy u¿ytkownik?\n

\n\nGrupa do powiadomienia o nowym u¿ytkowniku
\nJaka grupa ma byæ zawiadamiana o nowozarejestrowanych u¿ytkownikach?\n

\n',1044709143,NULL); +INSERT INTO international VALUES (607,'WebGUI',16,'

Czy rejestrowaæ u¿ytkowników?
\nCzy umo¿liwiæ nowym u¿ytkownikom Twojego serwisu na rejestrowanie siê w serwisie?\n

\n\nKomenda po zarejestrowaniu
\nJe¿eli wpiszesz komendê systemow±, to zostanie ona wykonana ka¿dorazowo kiedy rejestrowaæ siê bêdzie nowy u¿ytkownik w systemie.\n

\n\nW³±czyæ system punktacji?
\nCzy chcesz w³±czyæ system punktowania u¿ytkowników za ich aktywno¶æ?\n

\n\nPunkty za zalogowanie
\nLiczba punktów jak± otrzymywaæ bêdzie u¿ytkownik za zalogowanie siê, oczywi¶cie o ile system punktowania jest w³±czony.\n

\n\nCzas bezczynno¶ci sesji
\nOkres czasu przez jaki uwa¿a siê ¿e dany u¿ytkownik jest zalogowany na stronach serwisu pomimo braku jego ruchu po stronach - po up³yniêciu tego czasu, u¿ytkownik bêdzie zmuszony ponownie zalogowaæ sie do serwisu. Czas bezczynno¶ci sesji jest zerowany dla ka¿dego u¿ytkownika, po ka¿dym wczytaniu przez niego strony serwisu. St±d je¿eli czas bezczynno¶ci sesji ustawimy na 8 godzin, to zalogowany u¿ytkownik który powróci do serwisu po 8 godzinach bêdzie musia³ ponownie zalogowaæ siê.\n

\n\nZezwalaæ na deaktywacjê w³asnych kont?
\nCzy chcesz zezwoliæ u¿ytkownikom na mo¿liwo¶æ samodzielnej deaktywacji w³asnych, posiadanych przez nich kont, bez potrzeby interwencji ze strony administratora?\n

\n\nDomy¶lna metoda autoryzacji
\nJaka powinna byæ domy¶lna metoda sprawdzania danych dostêpu nowych u¿ytkowników do serwisu? Dostêpne s± dwie metody: bazuj±ca na mechani¼mie WebGUI oraz na serwerze LDAP. Pierwsza metoda oznacza ¿e dane dostêpu u¿ytkowników sprawdzane s± wed³ug nazw i hase³ u¿ytkowników przechowywanych w bazie danych WebGUI. W przypadku metody LDAP, dane dostêpu u¿ytkowników sprawdzane s± poprzez zewnêtrzny serwer LDAP.\n

\n\nUWAGA: ustawienia autoryzacji mog± byæ definiowane na poziomie poszczególnych u¿ytkowników.\n\n\n

\nUWAGA: W zale¿no¶ci od wybranej metody autoryzacji pojawi± siê ró¿ne zestawy opcji do dalszego zdefiniowania. Oto komplet tych opcji dla obu domy¶lnych typów autoryzacji:\n

\n\nLogowanie szyfrowane?
\nCzy podczas logowania system powinien u¿ywaæ szyfrowane po³±czenie protoko³u HTTPS? Prosze pamiêtaæ ¿e szyfrowanie bêdzie dotyczyæ tylko samego procesu logowania i nie dotyczy czynno¶ci przed i po logowaniu siê.\n

\n\n

Opcje autoryzacji WebGUI

\n\nWysy³aæ wiadomo¶æ powitaln±?
\nCzy chcesz aby system WebGUI automatycznie wysy³a³ do ka¿dego nowozarejestrowanego u¿ytkownika zdefiniowane wcze¶niej powitanie? \n

\nUWAGA: Oprócz samej tre¶ci powitania, wys³ana równie¿ zostanie informacja o za³o¿onym koncie u¿ytkownika.\n

\n\nWiadomo¶æ powitalna
\nWpisz tre¶æ powitania jakie bêdzie automatycznie wysy³ane do nowozarejestrowanego w systemie u¿ytkownika.\n

\n\nWiadomo¶æ przy odzyskiwaniu hase³
\nWpisz tre¶æ wiadomo¶ci jaka automatycznie zostanie wys³ana do u¿ytkownika, po tym jak zg³osi do systemu chêæ odtworzenia straconego has³a swojego konta.\n

\n\n

Opcje autoryzacji WebGUI

\n\nDomy¶lny adres URL LDAP
\nPodaj domy¶lny adres Twojego serwera LDAP. Taki adres ma formê: ldap://[serwer]:[port]/[bazowa DN]. Przyk³adowo: ldap://ldap.mojafirma.com:389/o=MojaFirma.\n

\n\n\n\nIdentyfikator LDAP u¿ytkownika
\nJest to unikalny identyfikator u¿ytkownika w ramach serwera LDAP. Czêsto pole to ma charakter nazwy skróconej, która przyjmuje sw± postaæ od pierwszej litery imienia plus ca³ego nazwiska - przyk³adowo: akowalski. St±d je¿eli przyjmiesz, ¿e LDAP ID ma mieæ formê nazwy skróconej, wtedy przyk³adowy Adam Kowalski powinien wpisaæ akowalski podczas rejestracji.\n

\n\nNazwa LDAP u¿ytkownika
\nJest to nazwa identyfikuj±ca identyfikator LDAP u¿ytkownika. Przyk³adowo niektóre firmy wykorzystuj± serwer LDAP do autoryzacji u¿ytkowników swoich serwerów proxy, gdzie\n czêsto przyjmuje siê ¿e identyfikator LDAP u¿ytkownika to jego Nazwa u¿ytkownika w systemie
. Dla spójno¶ci z takim podej¶ciem mo¿na wprowadziæ tutaj tak± nazwê u¿ytkownika.\n

\n\nHas³o LDAP u¿ytkownika
\nPodobnie jak nazwa identyfikatora LDAP u¿ytkownika, wprowad¼ równie¿ nazwê has³a LDAP u¿ytkownika.\n

',1044708602,NULL); +INSERT INTO international VALUES (617,'WebGUI',16,'

Ustawienia to konfigurowalne parametry umo¿liwiaj±ce dostosowanie systemu WebGUI do Twoich potrzeb.\n

\n\n\nEdycja informacji o firmie
\nUstawienia dotycz±ce szczegó³owych danych Twojej firmy lub osoby zarz±dzaj±cej instalacj± WebGUI.\n

\n\n\nEdycja ustawieñ tre¶ci
\nUstawienia zwi±zane z tre¶ci± i jej zarz±dzaniem.\n

\n\n\nEdycja ustawienia wiadomo¶ci
\nUstawienia zwi±zane z e-mailem i zwi±zanymi z nim funkcjami komunikacyjnymi.\n

\n\n\nEdycja ró¿nych ustawieñ
\nUstawienia parametrów nie powi±zanych z pozosta³ymi grupami parametrów.\n

\n\n\nEdycja ustawieñ profilu
\nZdefiniuj parametry profilu u¿ytkownika (mo¿na dodawaæ w³asne pola) oraz zakres jego uprawnieñ edytorskich.\n

\n\n\nEdycja ustawieñ u¿ytkownika
\nUstawienia zwi±zane z u¿ytkownikiem (ale poza zakresem profilu), takie jak informacja autoryzacyjna i opcje rejestracji.\n

',1044139325,NULL); +INSERT INTO international VALUES (47,'Product',16,'

Produkty powi±zane to produkty, które s± w/g naszych kryteriów powi±zane lub podobne do innych produktów.\n

\n\n\nPowi±zane produkty
\nWybierz nazwê produktu z listy wpisanych ju¿ produktów.\n

\n\n\nDodaæ powi±zany produkt?
\nWybierz \"tak\", je¿eli bêdziesz chcia³ dodaæ zaraz kolejny powi±zany produkt.\n

',1041876679,NULL); +INSERT INTO international VALUES (71,'SiteMap',16,'

Spisy Tre¶ci u¿ywane s± w celu zapewnienia dodatkowych u³atwieñ w nawigacji w¶ród stron utworzonego poprzez WebGUI serwisu. Mo¿esz zdefiniowaæ tradycyjny spis tre¶ci prezentuj±cy hierarchiczn± listê wszystkich Twoich stron. Mo¿esz równie¿ u¿ywaæ spisów tre¶ci na niektórych tylko poziomach swojego serwisu, aby w tych szczególnych miejscach zapewniæ dodatkowe u³atwienia w nawigacji i dostêpie do stron.\n

\n\nSzablon
\nWybierz szablon prezentacji tego spisu tre¶ci.\n

\n\nRozpocznij od
\nWybierz stronê od której bêdzie siê rozpoczyna³ ten spis tre¶ci.\n

\n\nUmie¶ciæ do g³êboko¶ci
\nJak wiele kolejnych poziomów stron powinien prezentowaæ ten spis tre¶ci. Warto¶æ zero oznacza pokazanie wszystkich poziomów.\n

\n\nAkapit
\nPodaj liczbê znaków o jak± przesuwane bêd± listy stron kolejnych poziomów w stosunku do poziomów nadrzêdnych (tzw. wciêcie).\n

\n\nAlfabetycznie?
\nWybierz czy strony w spisie tre¶ci maj± byæ sortowane alfabetycznie, czy te¿ sortowanie ma wynikaæ z kolejno¶ci stron ustawionej przez u¿ytkownika - edycja pozycji strony w spisie tre¶ci mo¿liwa jest przyciskami \"góra\" i \"dó³\" dostêpnymi na stronie.\n

',1039908464,NULL); +INSERT INTO international VALUES (639,'WebGUI',16,'Nazwa szablonu
\nNazwa szablonu powinna byæ czytelna i opisowa, tak aby umo¿liwiæ pó¼niejszy ³atwy wybór w³a¶ciwego szablonu podczas definiowania szablonów dla poszczególnych tre¶ci serwisu.\n

\n\nPrzestrzeñ nazw
\nDo jakiej funkcjonalnie czê¶ci serwisu przeznaczony jest dany szablon?\n

\n\nSzablon
\nW³a¶ciwa tre¶æ szablonu utworzona z wykorzystaniem dostêpnych poleceñ i zmiennych, makr oraz sk³adni HTML.\n

\n\nUWAGA: Nigdy nie powiniene¶ edytowaæ domy¶lnych szablonów WebGUI, poniewa¿ mog± siê one zmieniæ w kolejnych wersjach WebGUI. Zamiast tego nale¿y skopiowaæ domy¶lny szablon pod now± nazw± i edytowaæ tak utworzon± kopiê.',1038890615,NULL); +INSERT INTO international VALUES (1073,'WebGUI',1,'Style Template',1070027660,NULL); +INSERT INTO international VALUES (1074,'WebGUI',1,'Style templates are a special kind of template in WebGUI. They allow you to keep your content seperated from the look and feel of your site. The following are the template variables available in style templates:\r\n\r\n

\r\n\r\nbody.content
\r\nThe the content on the current page.\r\n

\r\n\r\nhead.tags
\r\nTags that WebGUI automatically generates for you so that caching works the way it should, search engines can find you better, and other useful automated functionality. This should go in the <head> </head> section of your style.\r\n\r\n

\r\nIn addition to the above tags all of the session variables are made available to you just like any other template. We suggest using something like this in the <title> </title> portion of your style:\r\n

\r\n\r\n<tmpl_var session.page.title> - <tmpl_var session.setting.companyName>\r\n\r\n

\r\nFollowing a guide like the above will help you get good ranking on search engines.\r\n\r\n',1070027660,NULL); +INSERT INTO international VALUES (612,'WebGUI',16,'W praktyce usuwanie u¿ytkowników nie jest konieczne. Je¿eli chcesz zablokowaæ u¿ytkownika, po prostu zmieñ jego has³o dostêpu. Je¿eli naprawdê chcesz usun±æ u¿ytkownika powiniene¶ zdawaæ sobie sprawê z wynikaj±cych z tego konsekwencji. Je¿eli usuniesz u¿ytkownika, to w systemie WebGUI pozostan± tre¶ci które doda³ on do systemu (przyk³adowo poprzez system forum lub przez system zg³aszania propozycji). W takim wypadku innym u¿ytkownikom bêdzie wy¶wietlany b³±d za ka¿dym razem gdy bêd± chcieli wy¶wietliæ profil takiego u¿ytkownika. Podobnie gdy nast±pi sytuacja ¿e bêdziemy chcieli na powrót zezwoliæ u¿ytkownikowi na dostêp do systemu, bêdziemy zmuszeni ponownie dodaæ go do systemu, zamiast prostej operacji zezwolenia na dostêp.\n

\n\n\nJak w ka¿dej operacji zwi±zanej z usuwaniem, bêdziesz poproszony o potwierdzenie. Je¿eli potwierdzisz usuniêcie to operacja zostanie bezpowrotnie wykonana. Je¿eli wybierzesz \'Nie\', to nast±pi powrót do poprzedniego ekranu z którego funkcja usuniêcia zosta³a wywo³ana.\n

',1038890195,NULL); +INSERT INTO international VALUES (636,'WebGUI',16,'

Aby utworzyæ pakiet nale¿y poczyniæ nastêpuj±ce czynno¶ci:\n\n

    \n
  1. Z menu administracji wybierz pozycjê \"Zarz±dzaj pakietami.\"\n
  2. \n\n
  3. Dodaj stronê i jej nazwê. Nazwa strony bêdzie równocze¶nie nazw± pakietu.\n
  4. \n\n
  5. Przejd¼ do utworzonej strony (pakietu) i zacznij dodawaæ strony i obiekty. Ka¿da tak dodana strona i obiekt bêdzie tworzony za ka¿dym razem gdy dany pakiet bêdzie w u¿yciu. \n
  6. \n
\n\nUwagi:
\nAby móc dokonywaæ dodawania, edycji i usuwania pakietów, jako u¿ytkownik musisz nale¿eæ do grupy mened¿erów pakietów lub byæ w grupie administratorów.\n

\n\nJe¿eli dodasz dowoln± zawarto¶æ do którego¶ z obiektów, to zawarto¶æ ta bêdzie automatycznie kopiowana za ka¿dym razem gdy pakiet bêdzie u¿ywany.\n

\n\nStyle przyporz±dkowane do stron w pakiecie oraz zakres czasowy ich prezentacji nie bêd± kopiowane gdy pakiet bêdzie w u¿yciu. Zamiast tego, strony bêd± mia³y style i czas prezentacji zgodny z obszarem w którym zostanie u¿yty dany pakiet.\n

',1038889481,NULL); +INSERT INTO international VALUES (635,'WebGUI',16,'Pakiety to grupy stron i obiektów zdefiniowanych do wspólnego zamieszczania. Mened¿er pakietów mo¿e tworzyæ takie pakiety zawieraj±ce np. niektóre strony forum, strony systemu pytañ i odpowiedzi (FAQ), czy te¿ sond i quizów, poniewa¿ te czynno¶ci s± stosunkowo czêsto wykonywane. Pakiety s± równie¿ wykorzystywane, aby zmniejszyæ czasoch³onno¶æ czêsto powtarzanych zadañ.\r\n

\r\nJednym z pakietów czêsto wykorzystywanych jest pakiet typu strona z artyku³em gdy wystêpuje potrzeba dodania strony zawieraj±cej w sobie artyku³. Zamiast przechodziæ kolejne kroki tworzenia takiej strony, przechodzenia do utworzonej strony i dopiero nastêpnie dodawania artyku³u do strony, mo¿na utworzyæ stosowny pakiet umo¿liwiaj±cy wykonanie wszystkich tych czynno¶ci w jednym kroku.',1038889471,NULL); +INSERT INTO international VALUES (630,'WebGUI',16,'System WebGUI posiada w sobie niewielki, ale wydajny i funkcjonalny mechanizm wyszukiwania. Je¿eli chcesz wykorzystaæ ten wewnêtrzny mechanizm wyszukiwarki, mo¿esz u¿yæ makro ^?; lub dodawaæ ?op=search na koñcu adresów URL Twoich stron. Oczywi¶cie mo¿esz te¿ zbudowaæ swoj± w³asn± wersjê formularza przez któr± mechanizm ten bêdzie dostêpny.\r\n

\r\nW przypadku potrzeby posiadania bardziej zaawansowanego (ni¿ wbudowany w system WebGUI) systemu wyszukiwarki , umo¿liwiaj±cego indeksowanie swojego serwisu i inne dodatkowe funkcje, polecamy rozwi±zania takie jak MnoGo Search lub ht://Dig.\r\n

',1038888957,NULL); +INSERT INTO international VALUES (73,'EventsCalendar',16,'

Tytu³
\nNazwa wydarzenia.\n

\n\nOpis
\nOpisz czynno¶ci zwi±zane z wydarzeniem i/lub informacje dotyczace miejsca jego wyst±pienia, itp. \n

\n\nData pocz±tkowa
\nOd jakiej daty nast±pi wydarzenie?\n

\n\nData koñcowa
\nDo jakiej daty bêdzie trwa³o wydarzenie?\n

\n\nPowtarzaj co
\nWybierz okres po którym wydarzenie bêdzie ponawiane. \n\n

\n\nCo dalej?
\nWybierz \"Dodaj nowe wydarzenie\" je¿eli bêdziesz chcia³ dodaæ kolejne wydarzenie.\n

',1038887363,NULL); +INSERT INTO international VALUES (73,'FileManager',16,'

\nTytu³ pliku
\nNazwa jaka zostanie wy¶wietlona dla tego pliku. Je¿eli niezdefiniowana to zostanie wy¶wietlona nazwa pliku.\n

\n\nPlik
\nWybór pliku jaki chcesz za³adowaæ z dysku Twojego komputera.\n

\n\nWersja zastêpcza #1
\nAlternatywna pierwsza wersja dla tego pliku. Przyk³adowo je¿eli by³ to plik typu JPEG, byæ mo¿e jego alternatywn± wersjê bêdzie stanowi³ plik TIFF lub BMP.\n

\n\nWersja zastêpcza #2
\nAlternatywna druga wersja dla tego pliku. Przyk³adowo je¿eli by³ to plik typu JPEG, byæ mo¿e jego alternatywn± wersjê bêdzie stanowi³ plik TIFF lub BMP.\n

\n\nZwiêz³y opis
\nKrótki opis tego pliku. Upewnij siê aby ten opis zawiera³ s³owa kluczowe w/g których u¿ytkownicy bêd± mogli go ³atwiej wyszukaæ.\n

\n\nPobieranie dla grupy
\nWybór grupy która mo¿e pobieraæ ten plik.\n

\n\nCo dalej?
\nWybierz \"Dodaj nowy plik\" je¿eli bêdziesz chcia³ dodaæ kolejny plik po dodaniu bie¿±cego.\n

',1038883174,NULL); +INSERT INTO international VALUES (611,'WebGUI',16,'Nazwa firmy
\r\nNazwa Twojej firmy, czy te¿ organizacji. Nazwa ta bêdzie umieszczana w tre¶ci wszystkich e-maili oraz wszêdzie tam gdzie bêdzie u¿ywane makro nazwy firmy.\r\n

\r\n\r\nAdres e-mail firmy
\r\nG³ówny adres e-mail Twojej firmy, czy te¿ organizacji. Nazwa ta bêdzie umieszczana w polu Od: (informuj±cej o nadawcy e-maila)wszystkich automatycznie wysy³anych z systemu WebGUI e-maili oraz wszêdzie tam gdzie bêdzie u¿ywane makro adresu e-mail firmy.\r\n

\r\n\r\nAdres URL firmy
\r\nG³ówny adres URL Twojej firmy, czy te¿ organizacji. Adres ten bêdzie umieszczany we wszystkich automatycznie wysy³anych z systemu WebGUI e-maili oraz wszêdzie tam gdzie bêdzie u¿ywane makro adresu URL firmy.',1038872019,NULL); +INSERT INTO international VALUES (838,'WebGUI',16,'Foldery s³u¿± do przechowywania powi±zanych ze sob± materia³ów/plików serwisu, podobnie jak katalogi na dysku twardym twojego komputera.\n

\nOrganizuj w Folderze
\nFoldery mog± znajdowaæ siê wewn±trz innych folderów. Wybierz tutaj folder w którym bêdzie umieszczony bie¿±cy folder.\n

\n\nNazwa
\nNazwa folderu która powinna byæ tak zdefiniowana, aby u³atwia³a ³atwe rozpoznanie jego zawarto¶ci.\n

\n\nOpis folderu
\nOpis folderu ? z regu³y zawiera informacjê na temat zawarto¶ci i ewentualnie celu jego utworzenia.\n

',1038871918,NULL); +INSERT INTO international VALUES (836,'WebGUI',16,'Fragmenty to przygotowane przez ciebie elementy kodu, które mog± byæ wielokrotnie wykorzystywane w ró¿nych miejscach serwisu. Mog± to przyk³adowo byæ skrypty Java, style CSS, animacje flash, a nawet gotowe teksty. Poza tym chc±c w przysz³o¶ci zmodyfikowaæ dany fragment kodu, wystarczy zmieniæ go tylko w jednym miejscu.\n

\nNazwa
\nNazwa fragmentu, który bêdzie pó¼niej wykorzystywany do jego wczytywania.\n

\n\nOrganizuj w Folderze
\nPrzyporz±dkuj dany fragment kodu do odpowiedniego folderu.\n

\n\nFragment
\nWpisz lub wkopiuj tutaj tre¶æ kodu danego fragmentu.\n

',1038871744,NULL); +INSERT INTO international VALUES (625,'WebGUI',16,'

Za³aduj te obrazki, które prawdopodobnie bêdziesz u¿ywa³ w wiêcej ni¿ jednym miejscu Twojego systemu.\r\n

\r\n\r\nNazwa obrazka
\r\nNazwa obrazka do jakiej bêd± siê odwo³ywaæ elementy stron wczytuj±ce dany obrazek.\r\n

\r\n\r\nGrupowaæ w katalogu
\r\nW jakim katalogu wspólnym ma byæ zlokalizowany dany obrazek.\r\n

\r\n\r\nPlik
\r\nWybierz plik obrazka z dysku Twojego komputera, jaki ma byæ za³adowany na serwer.\r\n

\r\n\r\nParametry
\r\nDodaj wszelkie parametry HTML <img&rt; jakie chcesz aby by³y stosowane domy¶lnie dla tego obrazka.\r\n

\r\n\r\nPrzyk³ad:
\r\nalign=\"right\"
\r\nalt=\"To jest obrazek\"
\r\n

\r\n\r\nRozmiar miniaturki
\r\nPodaj w pikselach jak du¿y maj± byæ rozmiar miniaturki obrazka.\r\n

',1038871530,NULL); +INSERT INTO international VALUES (834,'WebGUI',16,'Do swoich zasobów przeznaczonych dla serwisu mo¿esz za³adowaæ dowolny typ pliku do pó¼niejszego u¿ycia.\n

\n\nNazwa
\nNazwa pliku, któr± bêdziesz pó¼niej wykorzystywa³ do jego wczytywania.\n

\n\nOrganizuj w folderze
\nPrzyporz±dkuj dany plik do odpowiedniego folderu.\n

\n\nPlik
\nWybierz plik do za³adunku z zasobów twojego komputera.\n

\n',1038871497,NULL); +INSERT INTO international VALUES (830,'WebGUI',16,'Szablony stron s³u¿± w³a¶ciwemu organizowaniu obiektów na stronie. Aby tego dokonaæ nale¿y utworzyæ pozycje szablonu. Mo¿esz mieæ dowoln± liczbê pozycji w szablonie strony, ale te¿ musi byæ przynajmniej jedna pozycja. Zmienne pozycji szablonu wygl±daj± nastêpuj±co: \n

\n<tmpl_var page.position1>\n<tmpl_var page.position2>\n<tmpl_var page.position3>\n<tmpl_var page.position4>\n<tmpl_var page.position5>\n<tmpl_var page.position6>\n<tmpl_var page.position7>\n<tmpl_var ...>\n\n
\n\nLiczba pozycji szablonu mo¿e siêgaæ do jednego miliarda, co z regu³y powinno z nadmiarem wystarczyæ dla typowego serwisu :-)',1038870260,NULL); +INSERT INTO international VALUES (826,'WebGUI',16,'System WebGUI ma wbudowany zaawansowany jêzyk definiowania szablonów aby umo¿liwiæ jak najdok³adniejsz± kontrolê podczas tworzenia wygl±du prezentacji tre¶ci serwisu. Poni¿ej podany jest opis sk³adni tego jêzyka.\n\n

\nUWAGA: Proszê pamiêtaæ ¿e s³owa foo and bar s± u¿yte poni¿ej jako nazwy przyk³adowych zmiennych i nie s± czê¶cia tego jêzyka.\n\n

\nZmienne
\nZmienne s± podstaw± komend u¿ytych w szablonach. S± one u¿ywane po to aby odpowiednio wypozycjonowaæ fragmenty zawarto¶ci stron.\n\n

\nSk³adnia: <tmpl_var foo> or <tmpl_var name=\"foo\">\n

\n\nPrzyk³ad: <tmpl_var name>\n

\n\nWarunki logiczne
\nWarunki logiczne nie s± niczym nowym dla wiêkszo¶ci programistów, ale nie s± oczywiste w pierwszej chwili dla wiêkszo¶ci projektantów stron. Warunki logiczne to po prostu pytania na które odpowied¼ jest tak lub nie (prawda lub fa³sz) - je¿eli bêdziesz o nich my¶la³ w ten sposób, to nie bedziesz mia³ problemów z ich poprawnym u¿yciem.\n

\n\nSk³adnia: <tmpl_if foo> <tmpl_else> </tmpl_if>\n
\nSk³adnia: <tmpl_unless foo> <tmpl_else> </tmpl_unless>\n

\n\nPrzyk³ad: <tmpl_if isTrue> To by³a prawda!<tmpl_else> To by³ fa³sz! </tmpl_if>\n

\n\nPêtle
\nPêtle s³u¿± do iteracyjnego prezentowania zestawów danych (po zakoñczeniu pêtli jest ona ponownie wykonywana od pocz±tku). S± one bardziej zaawansowane ni¿ zwyk³e zmienne, ale maj± one dziêki temu znacznie wiêksze mo¿liwo¶ci.\n

\nSk³adnia: <tmpl_loop foo> </tmpl_loop>\n

\n\nPrzyk³ad:
\n<tmpl_loop klienci>
\n   Imiê: <tmpl_var first_name><br/>
\n</tmpl_loop>\n

\n\nWarunki logiczne pêtli
\nPêtle maj± zdefiniowane swoje w³asne warunki logiczne. S± to __FIRST__, __ODD__, __INNER__, oraz __LAST__.\n

\n\nPrzyk³ady:
\n

\n   <TMPL_LOOP FOO>\n      <TMPL_IF __FIRST__>\n        Warunek ten realizowany jest tylko podczas pierwszego przej¶cia przez pêtlê.\n      </TMPL_IF>\n\n      <TMPL_IF __ODD__>\n                Warunek ten realizowany jest tylko podczas ka¿dego nieparzystego przej¶cia przez pêtlê.\n      </TMPL_IF>\n\n      <TMPL_UNLESS __ODD__>\n        Warunek ten realizowany jest tylko podczas ka¿dego parzystego przej¶cia przez pêtlê.\n      </TMPL_UNLESS>\n\n      <TMPL_IF __INNER__>\n       Warunek ten realizowany jest tylko podczas ka¿dego przej¶cia przez pêtlê oprócz pierwszej i ostatniej pêtli.\n      </TMPL_IF>\n\n      <TMPL_IF __LAST__>\n        Warunek ten realizowany jest tylko podczas ostatniego przej¶cia przez pêtlê.\n      <TMPL_IF>\n   </TMPL_LOOP>\n
\n\n

\nUWAGA:zarówno jêzyk szablonów jak i zmienne szablonów nie rozró¿niaj± du¿ych i ma³ych liter w sk³adni.',1038865669,NULL); +INSERT INTO international VALUES (63,'Product',16,'

W szablonach Produktów dostêpne s± do wykorzystania nastêpuj±ce zmienne:\r\n

\r\n\r\nbrochure.icon
\r\nAdres URL (link) pod którym dostêpna jest ikona reprezentuj±ca prospekt produktu.\r\n

\r\n\r\n\r\nbrochure.url
\r\nAdres URL (link) pod którym dostêpny jest do ¶ci±gniêcia prospekt produktu.\r\n

\r\n\r\nbrochure.label
\r\nEtykieta/Nazwa jaka bêdzie u¿yta do nazwania odno¶nika (linku) do ¶ci±gniêcia prospektu produktu.\r\n

\r\n\r\nwarranty.icon
\r\nAdres URL (link) pod którym dostêpna jest ikona reprezentuj±ca gwarancjê dotycz±c± produktu.\r\n

\r\n\r\n\r\nwarranty.url
\r\nAdres URL (link) pod którym dostêpna jest do ¶ci±gniêcia gwarancja dotycz±c± produktu.\r\n

\r\n\r\nwarranty.label
\r\nEtykieta/Nazwa jaka bêdzie u¿yta do nazwania odno¶nika (linku) do ¶ci±gniêcia gwarancji dotycz±cej produktu.\r\n

\r\n\r\nimage1
\r\nAdres URL (link) pod którym dostêpny jest pierwszy za³adowany obrazek zwi±zany z produktem.\r\n

\r\n\r\nthumbnail1
\r\nAdres URL (link) pod którym dostêpny jest pomniejszony (thumb) pierwszy obrazek zwi±zany z produktem.\r\n

\r\n\r\nimage2
\r\nAdres URL (link) pod którym dostêpny jest drugi za³adowany obrazek zwi±zany z produktem.\r\n

\r\n\r\nthumbnail2
\r\nAdres URL (link) pod którym dostêpny jest pomniejszony (thumb) drugi obrazek zwi±zany z produktem.\r\n

\r\n\r\nimage3
\r\nAdres URL (link) pod którym dostêpny jest trzeci za³adowany obrazek zwi±zany z produktem.\r\n

\r\n\r\nthumbnail3
\r\nAdres URL (link) pod którym dostêpny jest pomniejszony (thumb) trzeci obrazek zwi±zany z produktem.\r\n

\r\n\r\n\r\naddfeature.url
\r\nAdres URL (link) pod którym mo¿liwe jest dodanie cechy danego produktu.\r\n

\r\n\r\naddfeature.label
\r\nEtykieta/Nazwa jaka bêdzie u¿yta do nazwania odno¶nika (linku) umo¿liwiaj±cego dodanie cechy danego produktu.\r\n

\r\n\r\nfeature_loop
\r\nLista wszystkich dotychczas zdefiniowanych cech danego produktu.\r\n

\r\nfeature.controls
\r\nPanel kontrolek systemu WebGUI umo¿liwiaj±cy kontrolê i administrowanie dan± cech± produktu.\r\n

\r\n\r\nfeature.feature
\r\nOpis danej cechy produktu.\r\n

\r\n

\r\n

\r\n\r\naddbenefit.url
\r\nAdres URL (link) pod którym mo¿liwe jest dodanie korzy¶ci zwi±zanej z danym produktem.\r\n

\r\n\r\naddbenefit.label
\r\nEtykieta/Nazwa jaka bêdzie u¿yta do nazwania odno¶nika (linku) umo¿liwiaj±cego dodanie korzy¶ci zwi±zanej z danym produktem.\r\n

\r\n\r\nbenefit_loop
\r\nLista wszystkich dotychczas zdefiniowanych korzy¶ci dla danego produktu.\r\n

\r\n\r\nbenefit.benefit
\r\nOpis danej korzy¶ci produktu.\r\n

\r\n\r\nbenefit.controls
\r\nPanel kontrolek systemu WebGUI umo¿liwiaj±cy kontrolê i administrowanie dan± korzy¶ci± zwi±zan± z produktem.\r\n

\r\n\r\n

\r\n

\r\n\r\naddspecification.url
\r\nAdres URL (link) pod którym mo¿liwe jest dodanie parametru danego produktu.\r\n

\r\n\r\naddspecification.label
\r\nEtykieta/Nazwa jaka bêdzie u¿yta do nazwania odno¶nika (linku) umo¿liwiaj±cego dodanie parametru danego produktu.\r\n

\r\n\r\nspecification_loop
\r\nLista dotychczas zdefiniowanych parametrów zwi±zanych z danym produktem.\r\n

\r\n\r\nspecification.controls
\r\nPanel kontrolek systemu WebGUI umo¿liwiaj±cy kontrolê i administrowanie danym parametrem zwi±zanym z produktem.\r\n

\r\n\r\nspecification.specification
\r\nOpis danego parametru.\r\n

\r\n\r\nspecification.units
\r\njednostka miary danego parametru np. metry, sztuki, itp.\r\n

\r\n\r\nspecification.label
\r\nNazwa zwi±zana z danym parametrem, np. wysoko¶æ.\r\n

\r\n\r\n

\r\n\n

\r\n\r\naddaccessory.url
\r\nAdres URL (link) pod którym mo¿liwe jest dodanie akcesorii do danego produktu.\r\n

\r\n\r\naddaccessory.label
\r\nEtykieta/Nazwa jaka bêdzie u¿yta do nazwania odno¶nika (linku) umo¿liwiaj±cego dodanie akcesorii do danego produktu.\r\n

\r\n\r\naccessory_loop
\r\nLista dotychczas zdefiniowanych akcesorii zwi±zanych z danym produktem.\r\n

\r\n\r\naccessory.url
\r\nAdres URL (link) pod którym dostêpna jest dana akcesoria produktu.\r\n

\r\n\r\naccessory.title
\r\nEtykieta/Nazwa jaka bêdzie u¿yta do nazwania odno¶nika (linku) do danej akcesorii produktu.\r\n

\r\n\r\naccessory.controls
\r\nPanel kontrolek systemu WebGUI umo¿liwiaj±cy kontrolê i administrowanie dan± akcesori± produktu.\r\n

\r\n\r\n

\r\n

\r\n\r\naddRelatedProduct.url
\r\nAdres URL (link) pod którym mo¿liwe jest dodanie produktu powi±zanego z danym produktem.\r\n

\r\n\r\naddRelatedProduct.label
\r\nEtykieta/Nazwa jaka bêdzie u¿yta do nazwania odno¶nika (linku) umo¿liwiaj±cego dodanie produktu powi±zanego z danym produktem.\r\n

\r\n\r\nrelatedproduct.url
\r\nAdres URL (link) pod którym dostêpny jest dany powi±zany produkt.\r\n \r\n

\r\n\r\nrelatedproduct.title
\r\nEtykieta/Nazwa jaka bêdzie u¿yta do nazwania odno¶nika (linku) do produktu powi±zanego z danym produktem.\r\n

\r\n\r\nrelatedproduct.controls
\r\nPanel kontrolek systemu WebGUI umo¿liwiaj±cy kontrolê i administrowanie informacj± o danym powi±zanym produkcie.\r\n

\r\n',1038864092,NULL); +INSERT INTO international VALUES (76,'FileManager',16,'

W szablonach Mened¿era plików dostêpne s± do wykorzystania nastêpuj±ce zmienne:\r\n

\r\n\r\ntitleColumn.url
\r\nAdres URL (link) umo¿liwiaj±cy sortowanie w/g tytu³ów.\r\n

\r\n\r\ntitleColumn.label
\r\nEtykieta/Nazwa jaka bêdzie u¿yta do nazwania odno¶nika (linku) do sortowanie w/g tytu³ów.\r\n

\r\n\r\ndescriptionColumn.label
\r\nEtykieta/Nazwa jaka bêdzie u¿yta do nazwania odno¶nika (linku) do sortowanie w/g opisów.\r\n

\r\n\r\ndescriptionColumn.url
\r\nAdres URL (link) umo¿liwiaj±cy sortowanie w/g opisów.\r\n

\r\n\r\ndateColumn.label
\r\nEtykieta/Nazwa jaka bêdzie u¿yta do nazwania odno¶nika (linku) do sortowanie w/g dat za³adunku plików.\r\n

\r\n\r\ndateColumn.url
\r\nAdres URL (link) umo¿liwiaj±cy sortowanie w/g dat za³adunu plików.\r\n

\r\n\r\nsearch.form
\r\nFormatka zaawansowanego wyszukiwania systemu WebGUI.\r\n

\r\n\r\nsearch.url
\r\nAdres URL (link) umo¿liwiaj±cy w³±czenie lub wy³±czenie trybu wyszukiwania.\r\n

\r\n\r\nsearch.label
\r\nEtykieta/Nazwa jaka bêdzie u¿yta do nazwania odno¶nika (linku) do trybu wyszukiwania.\r\n

\r\n\r\naddfile.url
\r\nAdres URL (link) umo¿liwiaj±cy za³adunek pliku.\r\n

\r\n\r\naddfile.label
\r\nEtykieta/Nazwa jaka bêdzie u¿yta do nazwania odno¶nika (linku) do za³adunku pliku.\r\n

\r\n\r\nfile_loop
\r\nList± dotychczas za³adowanych plików.\r\n

\r\nfile.canView
\r\nWarunek okre¶laj±cy czy u¿ytkownik ma uprawnienia do wgl±du do danego pliku.\r\n

\r\nfile.controls
\r\nPanel kontrolek systemu WebGUI umo¿liwiaj±cy kontrolê i administrowanie danym plikiem.\r\n

\r\nfile.title
\r\nTytu³ danego pliku.\r\n

\r\nfile.version1.name
\r\nAlternatywna pierwsza wersja nazwy danego pliku.\r\n

\r\nfile.version1.url
\r\nAdres URL (link) umo¿liwiaj±cy ¶ci±gniêcie pliku dla pierwszej jego alternatywnej wersji.\r\n

\r\nfile.version1.icon
\r\nAdres URL (link) do ikonki typu pliku zdefiniowanego dla pierwszej jego alternatywnej wersji.\r\n

\r\nfile.version1.size
\r\nRozmiar dyskowy pliku dla pierwszej jego alternatywnej wersji.\r\n

\r\nfile.version1.type
\r\nTyp pliku (lub rozszerzenie nazwy dyskowej pliku) dla pierwszej jego alternatywnej wersji.\r\n

\r\nfile.version1.thumbnail
\r\nAdres URL (link) do obrazka prezentuj±cego tre¶æ pierwszej alternatywnej wersji pliku.\r\n

\r\nfile.version1.isImage
\r\nWarunek definiuj±cy czy pierwsza alternatywna wersja pliku jest plikiem graficznym czy te¿ nie.\r\n

\r\nfile.version2.name
\r\nAlternatywna pierwsza wersja nazwy danego pliku.\r\n

\r\nfile.version2.url
\r\nAdres URL (link) umo¿liwiaj±cy ¶ci±gniêcie pliku dla drugiej jego alternatywnej wersji.\r\n

\r\nfile.version2.icon
\r\nAdres URL (link) do ikonki typu pliku zdefiniowanego dla drugiej jego alternatywnej wersji.\r\n

\r\nfile.version2.size
\r\nRozmiar dyskowy pliku dla drugiej jego alternatywnej wersji.\r\n

\r\nfile.version2.type
\r\nTyp pliku (lub rozszerzenie nazwy dyskowej pliku) dla drugiej jego alternatywnej wersji.\r\n

\r\nfile.version2.thumbnail
\r\nAdres URL (link) do obrazka prezentuj±cego tre¶æ drugiej alternatywnej wersji pliku.\r\n

\r\nfile.version2.isImage
\r\nWarunek definiuj±cy czy druga alternatywna wersja pliku jest plikiem graficznym czy te¿ nie.

\r\nfile.version3.name
\r\nAlternatywna trzecia wersja nazwy danego pliku.\r\n

\r\nfile.version3.url
\r\nAdres URL (link) umo¿liwiaj±cy ¶ci±gniêcie pliku dla trzeciej jego alternatywnej wersji.\r\n

\r\nfile.version3.icon
\r\nAdres URL (link) do ikonki typu pliku zdefiniowanego dla trzeciej jego alternatywnej wersji.\r\n

\r\nnfile.version3.size
\r\nRozmiar dyskowy pliku dla trzeciej jego alternatywnej wersji.\r\n

\r\nfile.version3.type
\r\nTyp pliku (lub rozszerzenie nazwy dyskowej pliku) dla trzeciej jego alternatywnej wersji.\r\n

\r\nfile.version3.thumbnail
\r\nAdres URL (link) do obrazka prezentuj±cego tre¶æ trzeciej alternatywnej wersji pliku.\r\n

\r\nfile.version3.isImage
\r\nWarunek definiuj±cy czy trzecia alternatywna wersja pliku jest plikiem graficznym czy te¿ nie.

\r\n

\r\nfile.description
\r\nSzczegó³owy opis dla danego pliku.\r\n

\r\nfile.date
\r\nData dnia za³adunku danego pliku do mened¿era plików.\r\n

\r\nfile.time
\r\nDok³adny czas za³adunku danego pliku do mened¿era plików.\r\n

\r\n

\r\n

\r\nnoresults.message
\r\nTre¶æ informacji o braku plików do wy¶wietlenia dla danego u¿ytkownika.\r\n

\r\nnoresults
\r\nWarunek okre¶laj±cy czy dla danego u¿ytkownika s± dostêpne pliki do wy¶wietlenie w menad¿erze plików.\r\n

\r\n\r\nfirstPage
\r\nAdres URL (link) do pierwszej strony stronicowanej listy prezentowanych plików.\r\n

\r\n\r\nlastPage
\r\nAdres URL (link) do ostatniej strony stronicowanej listy prezentowanych plików.\r\n

\r\n\r\nnextPage
\r\nAdres URL (link) do nastêpnej strony stronicowanej listy prezentowanych plików.\r\n

\r\n\r\npreviousPage
\r\nAdres URL (link) do poprzedniej strony stronicowanej listy prezentowanych plików.\r\n

\r\n\r\npageList
\r\nLista adresów URL (linków) do wszystkich stron stronicowanej listy prezentowanych plików.\r\n

\r\n\r\nmultiplePages
\r\nWarunek okre¶laj±cy czy lista plików zawiera wiêcej ni¿ jedn± stronê.\r\n

',1038853712,NULL); +INSERT INTO international VALUES (97,'EventsCalendar',16,'

W szablonach wydarzeñ dostêpne s± do wykorzystania nastêpuj±ce zmienne:\r\n

\r\n\r\ntitle
\r\nTytu³ danego wydarzenia.\r\n

\r\n\r\nstart.label
\r\nEtykieta/Nazwa jaka bêdzie u¿yta do nazwania odno¶nika (przycisku) definiowania startu danego wydarzenia.\r\n

\r\n\r\nstart.date
\r\nData od którego rozpocznie siê dane wydarzenie.\r\n

\r\n\r\nend.date
\r\nData zakoñczenia siê danego wydarzenie.\r\n

\r\n\r\nend.label
\r\nEtykieta/Nazwa jaka bêdzie u¿yta do nazwania odno¶nika (przycisku) definiowania daty koñcowej danego wydarzenia.\r\n

\r\n\r\ncanEdit
\r\nWarunek definiuj±cy czy dany u¿ytkownik korzystaj±cy z kalendarza ma uprawnienia do edycji danego wydarzenia.\r\n

\r\n\r\nedit.url
\r\nAdres URL pod którym mo¿liwa jest edycja bie¿±cego wydarzenia. \r\n

\r\n\r\nedit.label
\r\nEtykieta/Nazwa jaka bêdzie u¿yta do nazwania odno¶nika (linku) do adresu edycji danego wydarzenia.\r\n

\r\n\r\ndelete.url
\r\nAdres URL pod którym dostêpne jest usuniêcie bie¿±cego wydarzenia. \r\n

\r\n\r\ndelete.label
\r\nEtykieta/Nazwa jaka bêdzie u¿yta do nazwania odno¶nika (linku) do adresu usuwania danego wydarzenia.\r\n

\r\n\r\nprevious.url
\r\nAdres URL pod którym dostêpne jest zdarzenie poprzedzaj±ce bie¿±ce wydarzenie. \r\n

\r\n\r\nprevious.label
\r\nEtykieta/Nazwa jaka bêdzie u¿yta do nazwania odno¶nika (linku) do adresu przej¶cia do wydarzenia poprzedaj±cego bie¿±ce wydarzenie.\r\n

\r\n\r\nnext.label
\r\nEtykieta/Nazwa jaka bêdzie u¿yta do nazwania odno¶nika (linku) do adresu przej¶cia do nastêpuj±cego w kolejno¶ci wydarzenia.\r\n

\r\n\r\nnext.url
\r\nAdres URL pod którym dostêpne jest zdarzenie nastêpuj±ce po bie¿±cym wydarzeniu. \r\n

\r\n\r\ndescription
\r\nopis szczegó³owy wydarzenia.\r\n

',1038852164,NULL); +INSERT INTO international VALUES (95,'EventsCalendar',16,'

W szablonach kalendarzy dostêpne s± do wykorzystania nastêpuj±ce zmienne:\r\n

\r\naddevent.url
\r\nAdres URL pod którym dostêpna jest mo¿liwo¶æ dodania zdarzenia do kalendarza. \r\n

\r\n\r\naddevent.label
\r\nEtykieta/Nazwa jaka bêdzie u¿yta do nazwania odno¶nika (linku) do adresu dodania zdarzenia do kalendarza. \r\n

\r\n\r\ncalendar.big
\r\nKalendarz w postaci szczegó³owej na ca³± stronê.\r\n

\r\n\r\ncalendar.small
\r\nKalendarz w okrojonej wersji prezentuj±cej tylko daty.\r\n

\r\n\r\ncalendar.firstPage
\r\nAdres URL pod którym dostêpna jest pierwsza strona w przypadku prezentacji wydarzeñ za pomoc± stronicowanej listy.\r\n

\r\n\r\ncalendar.lastPage
\r\nAdres URL pod którym dostêpna jest ostatnia strona w przypadku prezentacji wydarzeñ za pomoc± stronicowanej listy.\r\n

\r\n\r\ncalendar.nextPage
\r\nAdres URL pod którym dostêpna jest nastêpna strona w przypadku prezentacji wydarzeñ za pomoc± stronicowanej listy.\r\n

\r\n\r\ncalendar.previousPage
\r\nAdres URL pod którym dostêpna jest poprzednia strona w przypadku prezentacji wydarzeñ za pomoc± stronicowanej listy.\r\n

\r\n\r\ncalendar.pageList
\r\nLista odno¶ników (linków) do wszystkich stron w przypadku prezentacji wydarzeñ za pomoc± stronicowanej listy.\r\n

\r\n\r\ncalendar.multiplePages
\r\nWarunek wskazuj±cy czy w przypadku prezentacji wydarzeñ za pomoc± stronicowanej listy dostêpna jest wiêcej ni¿ jedna strona.\r\n

\r\n\r\nlist_loop
\r\nLista zawieraj±ca wybrane wydarzenia kalendarza.\r\n

\r\nlist.date
\r\nData danego zdarzenia.\r\n

\r\nlist.title
\r\nTytu³ danego zdarzenia.\r\n

\r\nlist.description
\r\nSzczegó³owy opis danego zdarzenia.\r\n

\r\nlist.sameAsPrevious
\r\nWarunek wskazuj±cy czy dane wydarzenie jest ostatnim terminowo wydarzeniem w kalendarzu.\r\n

\r\nlist.url
\r\nAdres URL pod którym dostêpny jest szczegó³owy ekran z danymi dotycz±cymi danego wydarzenia.\r\n\r\n

\r\nlist.controls
\r\nPanel kontrolek systemu WebGUI umo¿liwiaj±cy kontrolê i administrowanie danym wydarzeniem.\r\n

\r\n\r\n

\r\n

\r\n\r\nlist.firstPage
\r\nAdres URL pod którym dostêpna jest pierwsza strona w przypadku prezentacji wybranych wydarzeñ za pomoc± stronicowanej listy.\r\n

\r\n\r\nlist.lastPage
\r\nAdres URL pod którym dostêpna jest ostatnia strona w przypadku prezentacji wybranych wydarzeñ za pomoc± stronicowanej listy.\r\n

\r\n\r\nlist.nextPage
\r\nAdres URL pod którym dostêpna jest nastêpna strona w przypadku prezentacji wybranych wydarzeñ za pomoc± stronicowanej listy.\r\n

\r\n\r\nlist.previousPage
\r\nAdres URL pod którym dostêpna jest poprzednia strona w przypadku prezentacji wybranych wydarzeñ za pomoc± stronicowanej listy.\r\n

\r\n\r\nlist.pageList
\r\nLista odno¶ników (linków) do wszystkich stron w przypadku prezentacji wybranych wydarzeñ za pomoc± stronicowanej listy.\r\n

\r\n\r\nlist.multiplePages
\r\nWarunek wskazuj±cy czy w przypadku prezentacji wybranych wydarzeñ za pomoc± stronicowanej listy dostêpna jest wiêcej ni¿ jedna strona.\r\n

\r\n',1038795945,NULL); +INSERT INTO international VALUES (640,'WebGUI',16,'Nie powiniene¶ usuwaæ szablonów, poniewa¿ mo¿e to powodowaæ niezamierzone problemy (czê¶æ zawarto¶ci serwisu mo¿e nadal u¿ywaæ danego szablonu). \n

\n',1038791020,NULL); +INSERT INTO international VALUES (84,'USS',16,'Edytuj pytanie',1031514049,NULL); +INSERT INTO international VALUES (86,'WebGUI',16,'Pamiêtaj ¿e usuniêcie grupy jest nieodwracalne i usuwa równie¿ uprawnienia zwi±zane z t± grup±. Czy na pewno chcesz usun±æ tê grupê? ',1031514049,NULL); +INSERT INTO international VALUES (651,'WebGUI',16,'

Je¿eli opró¿nisz swój kosz, to wszystkie zawarte w nim pozycje bêd± bezpowrotnie utracone. Je¿eli nie jeste¶ pewien co do niektórych pozycji, to najlepszym rozwi±zaniem bêdzie skopiowanie tych pozycji do schowka systemu, przed wykonaniem opró¿nienia kosza.\r\n

\r\n',1031514049,NULL); +INSERT INTO international VALUES (627,'WebGUI',16,'

Profile u¿ytkownika umo¿liwiaj± rozszerzanie posiadanych o u¿ytkowniku informacji. W niektórych systemach taka funkcjonalno¶æ jest przydatna, w innych nie jest potrzebna. System profili u¿ytkownika mo¿e byæ rozbudowywany w nieograniczony sposób - do profilów tych mo¿na dodawaæ dowoln± ilo¶æ informacji o u¿ytkownikach.\r\n

',1031514049,NULL); +INSERT INTO international VALUES (616,'WebGUI',16,'

¦cie¿ka do dodatków WebGUI
\nPe³na ¶cie¿ka fizycznego katalogu na dysku do katalogu zawieraj±cego dodatki WebGUI, takie jak pliki graficzne i skrypty java.\n

\n\nMaksymalny rozmiar za³±cznika?
\nMaksymalny rozmiar pliku jaki mo¿na za³adowaæ na serwer. Ten limit bêdzie dotyczy³ wszystkich obiektów, które ³aduj± na serwer pliki (jak np. w systemie artyku³ów czy te¿ zg³aszanych przez u¿ytkowników tre¶ci). Podana liczba oznacza rozmiar w kilobitach.\n

\n\nRozmiar miniaturki
\nPodany w pikselach maksymalny rozmiar boku miniaturek obrazków. Podczas generowania miniaturek zachowywany jest stosunek boków oryginalnego zdjêcia, st±d je¿eli warto¶æ tego parametru ustawimy na 100, to obrazek o wymiarach 400x200 pixeli uzyska miniaturkê o rozmiarach 100x50 pikseli.\n

\nUwaga: Miniaturki generowane s± ju¿ podczas za³adunku obrazków do systemu.\n

\n\nKatalog www dla za³±czników
\n¦cie¿ka www do katalogu w którym zapisywane s± za³±czniki.\n

\n\n¦cie¿ka do za³±czników serwera
\nPe³na ¶cie¿ka fizycznego katalogu na dysku do katalogu w którym zapisywane s± za³±czniki. Nale¿y upewniæ siê czy serwer ma prawa zapisu do tego katalogu.\n

',1031514049,NULL); +INSERT INTO international VALUES (620,'WebGUI',16,'

Funkcja ta s³u¿y do usuwania grup u¿ytkowników, ³±cznie z usuniêciem przydzia³u samych u¿ytkowników do danej grupy. Nale¿y przy tym uwa¿aæ aby nie doprowadziæ do sytuacji, w której u¿ytkownicy pozbawieni bêd± dostêpu do swoich stron poprzez usuniêcie grupy do której s± przydzieleni.\n

\n\nJak w ka¿dej operacji usuwania, zostaniesz poproszony o potwierdzenie swego zamiaru. Potwierdzaj±c usuniêcie, grupa zostanie bezpowrotnie usuniêta. Je¿eli nie potwierdzisz operacji, to nast±pi powrót do strony nadrzêdnej.\n

',1031514049,NULL); +INSERT INTO international VALUES (619,'WebGUI',16,'

Funkcja ta s³u¿y do usuwania obiektów ze strony. Je¿eli nie jeste¶ do koñca pewny czy usun±æ dany obiekt, lepiej przemie¶ciæ go do schowka systemowego. \n

\n\n\nJak w ka¿dej operacji usuwania, zostaniesz poproszony o potwierdzenie swego zamiaru. Potwierdzaj±c usuniêcie, obiekt zostanie bezpowrotnie usuniêty. Je¿eli nie potwierdzisz operacji, to nast±pi powrót do strony nadrzêdnej.\n

',1031514049,NULL); +INSERT INTO international VALUES (613,'WebGUI',16,'U¿ytkownicy to konta w systemie które, po zalogowaniu siê na nie, daj± uprawnienia do wykonywania ró¿nych czynno¶ci w serwisie. W systemie wbudowanych jest domy¶lnie dwóch u¿ytkowników: Administrator i anonimowy.\n

\n\nAdministrator
\nAdministrator to u¿ytkownik z nieograniczonymi uprawnieniami dostêpu do systemu WeBGUI. Je¿eli jakie¶ zadanie jest mo¿liwe do wykonania w systemie, to administrator bêdzie zawsze uprawniony do jego wykonania.\n

\n\nAnonimowy
\nAnonimowy u¿ytkownik to dok³adne przeciwieñstwo administratora. Taki u¿ytkownik z definicji do niczego nie jest uprawniony. Wszyscy niezalogowani u¿ytkownicy maj± zawsze status u¿ytkownika anonimowego.\n

\n\nDodaj nowego u¿ytkownika.
\nWy¶wietlenie ekranu umo¿liwiaj±cego dodanie do systemu nowego u¿ytkownika.\n

\n\nSzukaj
\nMo¿esz wyszukaæ u¿ytkowników wed³ug ich nazwy lub adresu e-mail, oczywi¶cie z mo¿liwo¶ci± podania dodatkowych szczegó³ów wyszukiwania.',1031514049,NULL); +INSERT INTO international VALUES (45,'Product',16,'

Akcesoria to dodatkowe produkty, które wzbogacaj± mo¿liwo¶ci innych produktów.\n

\n\nAkcesoria
\nWybierz nazwê z listy ju¿ wprowadzonych akcesorii.\n

\n\nDodaæ nastêpne akcesoria?
\nWybierz \"tak\", je¿eli bêdziesz chcia³ zaraz dodaæ kolejne akcesoria dla produktu.\n

',1031514049,NULL); +INSERT INTO international VALUES (41,'Product',16,'Cechy produktu s± kluczowym powodem decyduj±cym o powodzeniu sprzeda¿y produktu - opisuj± one jego mo¿liwo¶ci i ewentualne korzy¶ci p³yn±ce z jego zakupu. Dobrze dobrane cechy stanowi± w efekcie powód zakupu produktu.\n

\n\nCechy
\nMo¿esz wprowadziæ now± cechê lub wybraæ j± z listy dotychczas wprowadzonych.\n

\n\nDodaæ nastêpne cechy?
\nWybierz tak, je¿eli bêdziesz chcia³ zaraz dodaæ kolejn± cechê produktu.\n

',1031514049,NULL); +INSERT INTO international VALUES (43,'Product',16,'

Parametry to szczegó³y techniczne i konstrukcyjne produktów.\r\n

\r\n\r\n\r\nTyp
\r\nJest to typ parametru. Przyk³adowo wysoko¶æ, waga, kolor itp. Mo¿esz dopisaæ nowy typ lub wybraæ go z listy dotychczas wprowadzonych.\r\n

\r\n\r\n\r\nWarto¶æ
\r\nWarto¶æ danego parametru dla produktu zgodna z wybranym typem parametru.\r\n

\r\n\r\n\r\nJednostki
\r\nJednostki miary dotycz±ce danego parametru. Przyk³adowo, je¿eli typem parametru jest waga to jednostk± mo¿e byæ \"kilogram\".\r\n

',1031514049,NULL); +INSERT INTO international VALUES (698,'WebGUI',16,'System punktacji umo¿liwia motywowanie i analizê aktywno¶ci u¿ytkowników twojego serwisu, oraz potencjalnie nagradzanie ich lub karanie za wykazywany przez nich poziom aktywno¶ci. Po w³±czeniu systemu punktacji, zauwa¿ysz ¿e w wielu miejscach menu systemu pojawi± siê nowe pozycje z nim zwi±zane.\n

\n\nDziêki temu systemowi bêdziesz wiedzia³ czy u¿ytkownicy loguj± siê do twojego serwisu i jak wiele tre¶ci jest przez nich tworzonych (artyku³y, itp.). Bazuj±c na zdobytym przez u¿ytkowników poziomie punktów bêdziesz im móg³ zezwalaæ na dostêp do poszczególnych funkcji twojego systemu oraz grup u¿ytkowników, motywuj±c ich tym samym i nagradzaj±c do dalszej aktywno¶ci.\n

',1031514049,NULL); +INSERT INTO international VALUES (637,'WebGUI',16,'Imiê
\nPierwsze imiê u¿ytkownika.\n

\n\nDrugie Imiê
\nDrugie imiê u¿ytkownika.\n

\n\nNazwisko
\nNazwisko lub nazwisko rodowe u¿ytkownika.\n

\n\nAdres email
\nAdres e-mail u¿ytkownika. Musi on byæ podany je¿eli u¿ytkownik bêdzie korzysta³ z funkcji serwisu, które wymagaj± adresu email u¿ytkownika.\n

\n\nICQ UIN
\nKomunikator ICQ, UIN jest numerem ID u¿ytkownika w sieci ICQ.\n

\n\nAIM Id
\nIdentyfikator konta w systemie AOL Instant Messenger.\n

\n\nMSN Messenger Id
\nIdentyfikator konta w systemie Microsoft Network Instant Messenger
.\n

\n\nYahoo! Messenger Id
\nIdentyfikator konta w systemie
Yahoo! Instant Messenger.\n

\n\nNumer komórkowy
\nNumer telefonu komórkowego u¿ytkownika.\n

\n\nPager
\nNumer urz±dzenia typu Pager u¿ytkownika.\n

\n\nWy¶lij maila na bramkê pagera
\nAdres e-mail bramki wiadomo¶ci do urz±dzenia typu Pager u¿ytkownika.\n

\n\nAdres domowy
\nKod pocztowy i ulica adresu domowego u¿ytkownika.\n

\n\nAdres miejsca pracy
\nKod pocztowy i ulica adresu miejsca pracy u¿ytkownika.\n

\n\nP³eæ
\nP³eæ u¿ytkownika.\n

\n\nData urodzenia
\nData urodzenia u¿ytkownika.\n\nJêzyk
\nW jakim jêzyku maj± byæ wy¶wietlane informacje i tre¶ci systemu.\n

\n\nPrzesuniêcie czasowe
\nLiczba godzin (na plus lub na minus) ró¿nicy strefy czasowej u¿ytkownika. Umo¿liwia to dostrojenie prezentacji czasu dla u¿ytkowników z ró¿nych stref czasowych.\n

\n\nPierwszy dzieñ tygodnia
\nPierwszy dzieñ tygodnia w obszarze zamieszkania u¿ytkownika. Przyk³adowo w Stanach Zjednoczonych jest to niedziela, podczas gdy np. W Polsce i Europie jest to poniedzia³ek.\n

\n\nFormat daty
\nW jakim formacie powinna byæ prezentowana data na stronach serwisu podczas wizyt tego u¿ytkownika?\n

\n\nFormat czasu
\nW jakim formacie powinna byæ prezentowana pora dnia na stronach serwisu podczas wizyt tego u¿ytkownika?\n

\n\nUk³ad forum
\nJaki jest domy¶lny sposób prezentowania dyskusji (odpowiedzi) na forum - z w±tkami czy te¿ p³aski? Styl p³aski wy¶wietla wszystkie odpowiedzi na dany w±tek na jednej stronie forum, w kolejno¶ci w jakiej by³y one utworzone. Styl z w±tkami wy¶wietla hierarchiczn± listê odpowiedzi w kolejno¶ci w jakiej by³y utworzone.\n

\n\nPowiadomienia skrzynki
\nJak u¿ytkownik powinien byæ powiadamiany o nowej wiadomo¶ci dla niego?',1031514049,NULL); +INSERT INTO international VALUES (610,'WebGUI',16,'Po wiêcej informacji zajrzyj do odno¶nika na dole stronyU¿ytkownicy, Zarz±dzanie.\n

\n\nU¿ytkownik
\nPole to jest unikaln± nazw± identyfikuj±c± danego u¿ytkownika. Nazwa ta jest unikalnym wska¼nikiem u¿ytkownika i pod t± nazw± bêdzie on znany w systemie. (Uwaga: Administratorzy maj± nieograniczone mo¿liwo¶ci w systemie WebGUI, co oznacza jednocze¶nie ¿e s± oni równie¿ w stanie uszkodziæ system poprzez niepoprawne operacje. Je¿eli tworzysz u¿ytkownika lub zmieniasz jego nazwê, pamiêtaj aby nie u¿yæ nazwy u¿ytkownika który ju¿ istnieje w systemie.)\n

\n\n\nHas³o
\nHas³o jakie bêdzie u¿ywane podczas operacji logowania siê u¿ytkownika.\n

\n\n\nMetoda uwierzytelnienia
\nPo wiêcej informacji zobacz ekran pomocy w dziale Edycja konta u¿ytkownika.\n

\n\n\nURL serwera LDAP
\nPo wiêcej informacji zobacz ekran pomocy w dziale Edycja konta u¿ytkownika.\n

\n\n\nPo³±czenie z DN
\nPo³±czenie z DN to warto¶æ parametru cn danego u¿ytkownika w bazie LDAP. Powinno byæ podane w postaci podobnej do: cn=Adam Kowalski. Jest to w efekcie nazwa u¿ytkownika, która bêdzie u¿yta do autoryzacji dostêpu przez serwer LDAP.\n

',1031514049,NULL); +INSERT INTO international VALUES (608,'WebGUI',16,'Usuniêcie stron mo¿e spowodowaæ du¿y ba³agan je¿eli do koñca nie przemy¶lisz ca³ej operacji. Podczas usuwania strony, usuwana jest równie¿ zawarto¶æ danej strony oraz powi±zane z ni± podstrony wraz z ca³± swoj± zawarto¶ci±. Upewnij siê wiêc, ¿e przed usuniêciem strony skopiowa³e¶ w odpowiednie miejsca tre¶ci których nie chcesz usuwaæ.\n

\n\nJak w ka¿dej operacji zwi±zanej z usuwaniem, bêdziesz poproszony o potwierdzenie. Je¿eli potwierdzisz usuniêcie to operacja zostanie bezpowrotnie wykonana. Je¿eli wybierzesz \'Nie\', to nast±pi powrót do poprzedniego ekranu z którego funkcja usuniêcia zosta³a wywo³ana.\n

',1031514049,NULL); +INSERT INTO international VALUES (615,'WebGUI',16,'

Grupy s³u¿± do podzielenia uprawnieñ i ram czasowych korzystania z ró¿nych funkcji serwisu dostêpnych dla u¿ytkowników WebGUI. Przyk³adowo mo¿esz chcieæ budowaæ serwis dla klas szkolnych i w takim wypadku mo¿na zdefiniowaæ oddzielne grupy dla poszczególnych klas. Tak zdefiniowane grupy mo¿na nastêpnie przydzieliæ do poszczególnych stron przeznaczonych dla ka¿dej klasy.\n

\n\nW systemie WebGUI wbudowanych jest kilkana¶cie nastêpuj±cych grup u¿ytkowników:\n

\n\nAdministratorzy systemu
\nAdministratorzy systemu to u¿ytkownicy którzy maj± nielimitowany dostêp do systemu WebGUI. U¿ytkownik powinien mieæ uprawnienia administratora systemu, tylko w wypadku gdy jego zadaniem jest nadzór nad systemem. Zwyczajowo jest to grupa nie wiêcej ni¿ dwóch, trzech u¿ytkowników.\n

\n\nMened¿erowie zawarto¶ci
\nMened¿erowie zawarto¶ci to u¿ytkownicy, którzy posiadaj± uprawnienia do dodawania, edycji i usuwania tre¶ci serwisu. Grupa ta nie powinna byæ u¿ywana do kontroli uprawnieñ dla okre¶lonych tylko obszarów serwisu, a raczej okre¶laæ powinna uprawnienia u¿ytkowników dla ca³ego serwisu jako takiego. W celu wydzielenia uprawnieñ dla wybranych obszarów serwisu zaleca siê utworzenie oddzielnej grupy.\n

\n\nWszyscy
\nTa grupa jest szczególnym przypadkiem - wszyscy u¿ytkownicy Twojego systemu domy¶lnie do niej nale¿±, bez potrzeby przydzielania ich do tej grupy. Tak wiêc grupa ta powinna byæ wybierana, je¿eli chcesz udostêpniæ Twój serwis zarówno dla zarejestrowanych jak i anonimowych u¿ytkowników.\n

\n\nMened¿erowie pakietów
\nMened¿erowie pakietów to u¿ytkownicy, którzy maj± uprawnienia dodawania, edycji i usuwania pakietów obiektów i stron do zamieszczenia.\n

\n\nZarejestrowani u¿ytkownicy
\nKa¿dy u¿ytkownik po dokonaniu rejestracji w systemie automatycznie przydzielany jest do grupy zarejestrowanych u¿ytkowników. U¿ytkownik powinien byæ usuwany z tej grupy tylko gdy jego konto zosta³o usuniête lub gdy chcesz zablokowaæ go przed dostêpem.\n

\n\nMened¿erowie stylów
\nMened¿erowie stylów to u¿ytkownicy uprawnieni do edycji stylów serwisu. Te uprawnienia nie umo¿liwiaj± u¿ytkownikowi uzyskania uprawnieñ dostêpu do wybranej strony serwisu, a tylko do zdefiniowania takiej strony jako wykorzystywanej w serwisie.\n

\n\nMened¿erowie szablonów
\nMened¿erowie szablonów to u¿ytkownicy którzy maj± uprawnienia do edycji szablonów serwisu.\n

\n\nAnonimowi u¿ytkownicy
\nAnonimowi u¿ytkownicy to po prostu u¿ytkownicy którzy nie s± zalogowani w systemie. Ponadto je¿eli chcesz ukaraæ zarejestrowanego u¿ytkownika (przyk³adowo za nieeleganckie zachowania w serwisie), to mo¿esz przesun±æ go z grupy u¿ytkowników zarejestrowanych do grupy u¿ytkowników anonimowych.\n

',1031514049,NULL); +INSERT INTO international VALUES (633,'WebGUI',16,'

W najprostszym ujêciu katalogi g³ówne to strony nadrzêdne nad grupami innych stron. Pierwszym i najwa¿niejszym takim katalogiem jest strona g³ówna serwisu. W wielu serwisach nie dodaje siê nawet dodatkowych katalogów g³ównych, ale wiele zaawansowanych serwisów tworzy takie dodatkowe katalogi, z regu³y aby wydzieliæ pewne elementy funkcjonalne swoich serwisów. Przyk³adowo mog± one s³u¿yæ jako miejsce lokalizacji wyszukiwarki serwisu lub jako ukryta przestrzeñ do ulokowania narzêdzi administratora.\n

',1031514049,NULL); +INSERT INTO international VALUES (3,'HttpProxy',16,'Proxy HTTP',1031510000,NULL); +INSERT INTO international VALUES (2,'HttpProxy',16,'Edytuj Proxy HTTP',1031510000,NULL); +INSERT INTO international VALUES (1,'HttpProxy',16,'Adres URL',1031510000,NULL); -- -- Table structure for table `karmaLog` @@ -16421,22 +17063,23 @@ CREATE TABLE language ( -- -INSERT INTO language VALUES (6,'Svenska (Swedish)','ISO-8859-1','default'); -INSERT INTO language VALUES (5,'Português (Portuguese)','ISO-8859-1','default'); +INSERT INTO language VALUES (6,'Svenska (Swedish)','ISO-8859-1','metal'); +INSERT INTO language VALUES (5,'Português (Portuguese)','ISO-8859-1','metal'); INSERT INTO language VALUES (4,'Español (Spanish)','ISO-8859-1','spanish'); INSERT INTO language VALUES (3,'Nederlands (Dutch)','ISO-8859-1','dutch'); INSERT INTO language VALUES (2,'Deutsch (German)','ISO-8859-1','charcoal'); -INSERT INTO language VALUES (1,'English','ISO-8859-1','default'); +INSERT INTO language VALUES (1,'English','ISO-8859-1','metal'); INSERT INTO language VALUES (21,'òÕÓÓËÉÊ (Russian)','koi8-r','iconic'); -INSERT INTO language VALUES (7,'简体中文 (Chinese Simplified)','gb2312','default'); +INSERT INTO language VALUES (7,'简体中文 (Chinese Simplified)','gb2312','metal'); INSERT INTO language VALUES (8,'Italiano (Italian)','ISO-8859-1','italiano'); -INSERT INTO language VALUES (9,'繁体中文 (Chinese Traditional)','BIG5','default'); -INSERT INTO language VALUES (10,'Dansk (Danish)','ISO-8859-1','default'); -INSERT INTO language VALUES (11,'Arabic','ISO-8859-6','default'); -INSERT INTO language VALUES (12,'Norsk (Norwegian)','ISO-8859-1','default'); +INSERT INTO language VALUES (9,'繁体中文 (Chinese Traditional)','BIG5','metal'); +INSERT INTO language VALUES (10,'Dansk (Danish)','ISO-8859-1','metal'); +INSERT INTO language VALUES (11,'Arabic','ISO-8859-6','metal'); +INSERT INTO language VALUES (12,'Norsk (Norwegian)','ISO-8859-1','metal'); INSERT INTO language VALUES (13,'Suomi (Finnish)','ISO-8859-1','charcoal'); -INSERT INTO language VALUES (14,'ÆüËܸì (Japanese)','EUC-JP','default'); -INSERT INTO language VALUES (15,'Hrvatski (Croatian)','ISO-8859-2','default'); +INSERT INTO language VALUES (14,'ÆüËܸì (Japanese)','EUC-JP','metal'); +INSERT INTO language VALUES (15,'Hrvatski (Croatian)','ISO-8859-2','metal'); +INSERT INTO language VALUES (16,'Polski (Polish)','ISO-8859-2','metal'); -- -- Table structure for table `messageLog` @@ -16494,6 +17137,8 @@ CREATE TABLE page ( bufferPrevId int(11) default NULL, cacheTimeout int(11) NOT NULL default '60', cacheTimeoutVisitor int(11) NOT NULL default '600', + printableStyleId int(11) NOT NULL default '3', + wobjectPrivileges int(11) NOT NULL default '0', PRIMARY KEY (pageId) ) TYPE=MyISAM; @@ -16502,14 +17147,16 @@ CREATE TABLE page ( -- -INSERT INTO page VALUES (1,0,'Home',-8,3,0,'','home',1,'Home',NULL,1,946710000,2082783600,NULL,NULL,NULL,NULL,NULL,NULL,1,7,3,0,0,NULL,NULL,NULL,60,600); -INSERT INTO page VALUES (4,0,'Page Not Found',-6,3,21,'','page_not_found',0,'Page Not Found',NULL,1,946710000,2082783600,NULL,NULL,NULL,NULL,NULL,NULL,1,7,3,1,0,NULL,NULL,NULL,60,600); -INSERT INTO page VALUES (3,0,'Trash',5,3,22,'','trash',0,'Trash',NULL,1,946710000,2082783600,NULL,NULL,NULL,NULL,NULL,NULL,1,3,3,1,0,NULL,NULL,NULL,60,600); -INSERT INTO page VALUES (2,0,'Clipboard',4,3,23,'','clipboard',0,'Clipboard',NULL,1,946710000,2082783600,NULL,NULL,NULL,NULL,NULL,NULL,1,4,4,1,0,NULL,NULL,NULL,60,600); -INSERT INTO page VALUES (5,0,'Packages',1,3,24,'','packages',0,'Packages',NULL,1,946710000,2082783600,NULL,NULL,NULL,NULL,NULL,NULL,1,6,6,1,0,NULL,NULL,NULL,60,600); -INSERT INTO page VALUES (-3,1,'Your Next Step',-8,3,3,'','your_next_step',1,'Your Next Step','',1,946728000,2082801600,'',NULL,NULL,NULL,NULL,NULL,1,7,3,0,0,NULL,NULL,NULL,60,600); -INSERT INTO page VALUES (-2,1,'WebGUI Users',-8,3,2,'','webgui_users',1,'WebGUI Users','',1,946728000,2082801600,'',NULL,NULL,NULL,NULL,NULL,1,7,3,0,0,NULL,NULL,NULL,60,600); -INSERT INTO page VALUES (-1,1,'Getting Started',-8,3,1,'','getting_started',1,'Getting Started','',1,946728000,2082801600,'',NULL,NULL,NULL,NULL,NULL,1,7,3,0,0,NULL,NULL,NULL,60,600); +INSERT INTO page VALUES (1,0,'Home',1001,3,0,'','home',1,'Home',NULL,1,946710000,2082783600,NULL,NULL,NULL,NULL,NULL,NULL,1,7,3,0,0,NULL,NULL,NULL,60,600,3,0); +INSERT INTO page VALUES (4,0,'Page Not Found',-6,3,21,'','page_not_found',0,'Page Not Found',NULL,1,946710000,2082783600,NULL,NULL,NULL,NULL,NULL,NULL,1,7,3,1,0,NULL,NULL,NULL,60,600,3,0); +INSERT INTO page VALUES (3,0,'Trash',5,3,22,'','trash',0,'Trash',NULL,1,946710000,2082783600,NULL,NULL,NULL,NULL,NULL,NULL,1,3,3,1,0,NULL,NULL,NULL,60,600,3,0); +INSERT INTO page VALUES (2,0,'Clipboard',4,3,23,'','clipboard',0,'Clipboard',NULL,1,946710000,2082783600,NULL,NULL,NULL,NULL,NULL,NULL,1,4,4,1,0,NULL,NULL,NULL,60,600,3,0); +INSERT INTO page VALUES (5,0,'Packages',1,3,24,'','packages',0,'Packages',NULL,1,946710000,2082783600,NULL,NULL,NULL,NULL,NULL,NULL,1,6,6,1,0,NULL,NULL,NULL,60,600,3,0); +INSERT INTO page VALUES (1000,1,'Getting Started',1001,3,1,'','getting_started',1,'Getting Started','',1,946710000,2082783600,'',NULL,NULL,NULL,NULL,NULL,1,7,3,0,0,NULL,NULL,NULL,60,600,3,0); +INSERT INTO page VALUES (1001,1,'What should you do next?',1001,3,2,'','your_next_step',1,'Your Next Step','',1,946710000,2082783600,'',NULL,NULL,NULL,NULL,NULL,1,7,3,0,0,NULL,NULL,NULL,60,600,3,0); +INSERT INTO page VALUES (1002,1,'The Latest News',1001,3,3,'','the_latest_news',1,'The Latest News','',1,946710000,2082783600,'',NULL,NULL,NULL,NULL,NULL,1,7,3,0,0,NULL,NULL,NULL,60,600,3,0); +INSERT INTO page VALUES (1003,1,'Tell A Friend',1001,3,4,'','tell_a_friend',1,'Tell A Friend','',1,946710000,2082783600,'',NULL,NULL,NULL,NULL,NULL,1,7,3,0,0,NULL,NULL,NULL,60,600,3,0); +INSERT INTO page VALUES (1004,1,'Site Map',1001,3,4,'','site_map',1,'Site Map','',1,946710000,2082783600,'',NULL,NULL,NULL,NULL,NULL,1,7,3,0,0,NULL,NULL,NULL,60,600,3,0); -- -- Table structure for table `pageStatistics` @@ -16592,13 +17239,12 @@ INSERT INTO settings VALUES ('ldapPasswordName','LDAP Password'); INSERT INTO settings VALUES ('authMethod','WebGUI'); INSERT INTO settings VALUES ('anonymousRegistration','1'); INSERT INTO settings VALUES ('notFoundPage','1'); -INSERT INTO settings VALUES ('recoverPasswordEmail','Someone (probably you) requested your account information be sent. Your password has been reset. The following represents your new account information:'); +INSERT INTO settings VALUES ('webguiRecoverPasswordEmail','Someone (probably you) requested your account information be sent. Your password has been reset. The following represents your new account information:'); INSERT INTO settings VALUES ('profileName','1'); INSERT INTO settings VALUES ('profileExtraContact','1'); INSERT INTO settings VALUES ('profileMisc','1'); INSERT INTO settings VALUES ('profileHome','0'); INSERT INTO settings VALUES ('profileWork','0'); -INSERT INTO settings VALUES ('docTypeDec',''); INSERT INTO settings VALUES ('preventProxyCache','0'); INSERT INTO settings VALUES ('thumbnailSize','50'); INSERT INTO settings VALUES ('textAreaRows','5'); @@ -16619,49 +17265,28 @@ INSERT INTO settings VALUES ('smbDomain','your NT Domain'); INSERT INTO settings VALUES ('selfDeactivation','1'); INSERT INTO settings VALUES ('snippetsPreviewLength','30'); INSERT INTO settings VALUES ('mailFooter','^c;\n^e;\n^u;\n'); -INSERT INTO settings VALUES ('sendWelcomeMessage','0'); -INSERT INTO settings VALUES ('welcomeMessage','Welcome to our site.'); +INSERT INTO settings VALUES ('webguiSendWelcomeMessage','0'); +INSERT INTO settings VALUES ('webguiWelcomeMessage','Welcome to our site.'); INSERT INTO settings VALUES ('siteicon','^Extras;favicon.png'); INSERT INTO settings VALUES ('favicon','^Extras;favicon.ico'); INSERT INTO settings VALUES ('sharedClipboard','0'); INSERT INTO settings VALUES ('sharedTrash','0'); INSERT INTO settings VALUES ('proxiedClientAddress','0'); INSERT INTO settings VALUES ('ldapUserRDN','cn'); -INSERT INTO settings VALUES ('wobjectPrivileges','0'); INSERT INTO settings VALUES ('encryptLogin','0'); INSERT INTO settings VALUES ('hostToUse','HTTP_HOST'); - --- --- Table structure for table `style` --- - -CREATE TABLE style ( - styleId int(11) NOT NULL default '0', - name varchar(255) default NULL, - styleSheet text, - body text, - PRIMARY KEY (styleId) -) TYPE=MyISAM; - --- --- Dumping data for table `style` --- - - -INSERT INTO style VALUES (-3,'WebGUI 3','','^AdminBar;\r\n\r\n\r\n\r\n\r\n\r\n
\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n
^FlexMenu;
\r\n^L;\r\n
\r\n\r\n\r\n\r\n^-;\r\n\r\n
\r\n

\r\n

\r\n
\r\n©2001-2002 Plain Black Software
\r\n
\r\n'); -INSERT INTO style VALUES (2,'Fail Safe','','^AdminBar;\n\n\r\n^H; / ^t; / ^m; / ^a;\r\n
\n\n^-;\n\n
\r\n^H; / ^t; / ^m; / ^a;\r\n'); -INSERT INTO style VALUES (-2,'Plain Black Software (black)','','^AdminBar;\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
\"Plain\"User:\" ^@;\"My\"|\"\"Download\"\"|\"\"Home\"
^C;^D(\"%c %D, %y\");
\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n\r\n
^T(2);\r\n\r\n^-;\r\n\r\n

\"\"

\r\n\r\n\r\n \r\n \r\n\r\n
\"Copyright\"Make
\r\n\r\n'); -INSERT INTO style VALUES (4,'Clipboard','','^AdminBar;\n\n\r\n\r\n\r\n\r\n\r\n
Clipboard\r\n^H; / ^a;
\r\n
PAGES
^FlexMenu;
CONTENT
\n\n^-;\n\n
\r\n\r\n\r\n
\r\n^H; / ^a;\r\n'); -INSERT INTO style VALUES (-1,'Yahoo!','','^AdminBar;\n\nYahoo!\r\n\r\n
Yahoo
\r\nnew! Y! Domains
reserve .biz & .info domains
\"\"Yahoo! Mail
you@yahoo.com
\r\n advanced search
\r\n
\r\n
\r\n\n\n^-;\n\n
\r\n
How to Suggest a Site -\r\nCompany Info -\r\nCopyright Policy -\r\nTerms of Service -\r\nContributors -\r\nJobs -\r\nAdvertising

Copyright © 2001 Yahoo! Inc. All rights reserved.
Privacy Policy

\r\n'); -INSERT INTO style VALUES (-4,'Demo Style','','^AdminBar;\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n

Your Company Name Here

Address: 1903 Sunrise St. City, State 65977
\r\nTel: 915.888.8888
\r\nEmail: service@company.com
\r\n\r\n \r\n \r\n \r\n \r\n
^t;
\r\n\r\n \r\n \r\n \r\n \r\n
\r\n
\r\n^M;\r\n
\r\n

\r\n \r\n \r\n
\r\n \r\n\r\n^-;\r\n\r\n
\r\n
\r\n\r\n\r\n
^H; · ^a;
\r\n\r\n\r\n\r\n'); -INSERT INTO style VALUES (3,'Make Page Printable','','^AdminBar;\n\n\r\n
\n\n^-;\n\n
© 2001-2002 Plain Black Software
\r\n'); -INSERT INTO style VALUES (-5,'Plain Black Software (white)','','^AdminBar;\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
\"Plain\"User:\" ^@;\"My\"|\"\"Download\"\"|\"\"Home\"
^C;^D(\"%c %D, %y\");
\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n\r\n
^T(2);\r\n\r\n^-;\r\n\r\n

\"\"

\r\n\r\n\r\n \r\n \r\n\r\n
\"Copyright\"Make
\r\n\r\n'); -INSERT INTO style VALUES (5,'Trash','','^AdminBar;\n\n\r\n\r\n\r\n\r\n\r\n
Trash\r\n^H; / ^a; / Empty Trash
\r\n
PAGES
^FlexMenu;
CONTENT
\n\n^-;\n\n
\r\n\r\n\r\n
\r\n^H; / ^a; / Empty Trash\r\n'); -INSERT INTO style VALUES (1,'Packages','','^AdminBar;\n\n\r\n\r\n\r\n\r\n\r\n
Packages\r\n^H; / ^a;
\r\n
PACKAGES
^FlexMenu;
CONTENT
\n\n^-;\n\n
\r\n\r\n\r\n
\r\n^H; / ^a;\r\n'); -INSERT INTO style VALUES (-6,'WebGUI 4','\r\n','\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
^AdminBar;\r\n\"Print!\"\r\n
\r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n\r\n
\r\n
User:\r\n ^a(^@;);
Location: ^C;
\r\n
\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
\r\n \r\n \r\n \r\n \r\n
^FlexMenu;
\r\n \r\n
\r\n\r\n\r\n^-;\r\n\r\n\r\n\r\n

\r\n

\r\n
^D(\"%c %D %y\");Powered by WebGUI
\r\n\r\n\r\n'); -INSERT INTO style VALUES (-7,'Smooth Blues','\r\n','^AdminBar;\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n
Home\r\n
\r\n
\r\n \r\n \r\n
Print!\r\n
\r\n
\r\n \r\n \r\n
My Account\r\n
\r\n
\r\n
\r\n\r\n\r\n \r\n \r\n \r\n \r\n
^C;^?;
\r\n\r\n\r\n \r\n \r\n \r\n\r\n \r\n \r\n
\r\n \r\n
\r\n

Site Navigation

\r\n
\r\n \r\n \r\n \r\n \r\n
^T(0);
^L;
\r\n
\r\n\r\n \r\n\r\n \r\n
\r\n \r\n\r\n^-;\r\n\r\n\r\n
\r\n
\r\n\r\n\r\n


This Design ©2002 OpenServe
\r\n\r\n
\r\n\r\n'); -INSERT INTO style VALUES (-8,'WebGUI 5','','^AdminBar;\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
^C;User: ^a(^@;);
\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n\r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n
\r\n
\r\n ^H;\r\n
\r\n ^FlexMenu;\r\n ^a;\r\n
\r\n
\r\n
\r\n
\r\n
^-;
\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n\r\n
\r\n\r\n\r\n'); -INSERT INTO style VALUES (-10,'htmlArea Image Manager','\r\n','\r\n\r\n\r\n\r\n\r\n\r\n^-;\r\n'); +INSERT INTO settings VALUES ('webguiExpirePasswordOnCreation','0'); +INSERT INTO settings VALUES ('webguiPasswordLength','0'); +INSERT INTO settings VALUES ('webguiPasswordRecovery','1'); +INSERT INTO settings VALUES ('webguiPasswordTimeout','3122064000'); +INSERT INTO settings VALUES ('ldapWelcomeMessage','Welcome to our site.'); +INSERT INTO settings VALUES ('ldapSendWelcomeMessage','0'); +INSERT INTO settings VALUES ('smbWelcomeMessage','Welcome to our site.'); +INSERT INTO settings VALUES ('smbSendWelcomeMessage','0'); +INSERT INTO settings VALUES ('useAdminStyle','1'); +INSERT INTO settings VALUES ('adminStyleId','1000'); +INSERT INTO settings VALUES ('webguiChangePassword','1'); +INSERT INTO settings VALUES ('webguiChangeUsername','1'); -- -- Table structure for table `template` @@ -16672,6 +17297,8 @@ CREATE TABLE template ( name varchar(255) default NULL, template mediumtext, namespace varchar(35) NOT NULL default 'Page', + isEditable int(11) NOT NULL default '1', + showInForms int(11) NOT NULL default '1', PRIMARY KEY (templateId,namespace) ) TYPE=MyISAM; @@ -16680,59 +17307,122 @@ CREATE TABLE template ( -- -INSERT INTO template VALUES (1,'Default Site Map','\r\n

\r\n
\r\n\r\n\r\n

\r\n\r\n\r\n\r\n

\r\n ·\">
\r\n','SiteMap'); -INSERT INTO template VALUES (2,'Unordered List','\r\n

\r\n
\r\n\r\n\r\n

\r\n\r\n\r\n\r\n \">

\r\n\r\n\r\n

    \r\n\r\n
  • \r\n \r\n \r\n \r\n \r\n \"\r\n \r\n target=\"_blank\"\r\n \r\n >\r\n\r\n \r\n - \r\n \r\n
  • \r\n
    \r\n','LinkList'); -INSERT INTO template VALUES (1,'Default Link List','\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n\r\n \">

    \r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n ·\r\n \"\r\n \r\n target=\"_blank\"\r\n \r\n >\r\n\r\n \r\n - \r\n \r\n
    \r\n
    \r\n','LinkList'); -INSERT INTO template VALUES (3,'Ordered List','\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n \">

    \r\n\r\n\r\n

      \r\n\r\n
    1. \r\n \r\n \r\n \r\n\r\n \"\r\n \r\n target=\"_blank\"\r\n \r\n >\r\n\r\n \r\n - \r\n \r\n
    2. \r\n
      \r\n
    ','LinkList'); -INSERT INTO template VALUES (4,'Descriptive','\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n \">

    \r\n\r\n\r\n\r\n \r\n
    \r\n
    \r\n\r\n \"\r\n \r\n target=\"_blank\"\r\n \r\n >\r\n\r\n \r\n - \r\n \r\n

    \r\n\r\n','LinkList'); -INSERT INTO template VALUES (3,'Left Align Image','\r\n

    \r\n
    \r\n\r\n\r\n\r\n
    \r\n \" align=\"left\" border=\"0\">\r\n\r\n\r\n\r\n\r\n

    \r\n\r\n\r\n\r\n\r\n\r\n \r\n

    \">\r\n \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n\r\n

    \r\n
    \r\n
    \r\n\r\n\r\n\r\n \r\n·\r\n\r\n·\r\n\r\n\r\n\r\n\r\n\r\n\r\n

    \r\n \r\n \r\n
    \"> ()\">
    \r\n\r\n\r\n','Article'); -INSERT INTO template VALUES (3,'Topics','\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n \">

    \r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n

    \r\n \r\n

    \r\n\r\n\r\n','FAQ'); -INSERT INTO template VALUES (2,'List with Thumbnails','\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n
    \r\n \">\r\n \r\n · \">\r\n \r\n
    \">\">\">
    \r\n \r\n \r\n \r\n \">\r\n  · \r\n \">\" border=\"0\" width=\"16\" height=\"16\" align=\"middle\" />/\r\n \r\n  · \r\n \">\" border=0 width=\"16\" height=\"16\" align=\"middle\" />/\r\n \r\n \r\n  · \r\n \">\" border=\"0\" width=\"16\" height=\"16\" align=\"middle\" />/\r\n \r\n \r\n \r\n \" border=0 align=\"middle\" hspace=\"3\">\r\n \r\n \r\n \r\n \r\n
    \r\n\r\n\r\n

    \r\n · · \r\n
    \r\n
    ','FileManager'); -INSERT INTO template VALUES (2,'Events List','\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n \">\r\n

    \r\n\r\n\r\n\r\n \r\n \r\n \r\n

    \r\n \r\n \r\n \r\n \r\n \r\n - \r\n \r\n

    \r\n

    \r\n\r\n\r\n\r\n
    \r\n · \r\n
    \r\n
    ','EventsCalendar'); -INSERT INTO template VALUES (3,'Calendar Month (Small)','\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n \">\r\n

    \r\n\r\n\r\n\r\n\r\n\r\n

    \r\n · \r\n
    \r\n
    ','EventsCalendar'); -INSERT INTO template VALUES (1,'Default Event','

    \r\n\r\n\r\n\r\n\r\n
    \r\n:
    \r\n:
    \r\n
    \r\n\r\n\r\n \">
    \r\n \">
    \r\n
    \r\n\r\n\r\n \">
    \r\n
    \r\n\r\n\r\n \">
    \r\n
    \r\n\r\n
    \r\n','EventsCalendar/Event'); -INSERT INTO template VALUES (1,'Default File Manager','\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n
    \r\n \">\r\n \r\n · \">\r\n \r\n
    \">\">\">
    \r\n \r\n \r\n \r\n \">\r\n  · \r\n \">\" border=\"0\" width=\"16\" height=\"16\" align=\"middle\" />/\r\n \r\n  · \r\n \">\" border=0 width=\"16\" height=\"16\" align=\"middle\" />/\r\n \r\n \r\n  · \r\n \">\" border=\"0\" width=\"16\" height=\"16\" align=\"middle\" />/\r\n \r\n \r\n \r\n \r\n \r\n
    \r\n\r\n\r\n

    \r\n · · \r\n
    \r\n
    ','FileManager'); -INSERT INTO template VALUES (1,'Calendar Month (Big)','\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n \">\r\n

    \r\n\r\n\r\n\r\n\r\n\r\n

    \r\n · · \r\n
    \r\n
    ','EventsCalendar'); -INSERT INTO template VALUES (2,'Center Image','\r\n

    \r\n
    \r\n\r\n\r\n\r\n
    \" border=\"0\">
    \r\n
    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n\r\n \r\n

    \">\r\n \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n \r\n·\r\n\r\n·\r\n\r\n\r\n\r\n\r\n\r\n

    \r\n \r\n \r\n
    \"> ()\">
    \r\n\r\n','Article'); -INSERT INTO template VALUES (1,'Default Article','\r\n

    \r\n
    \r\n\r\n\r\n\r\n
    \r\n \" align=\"right\" border=\"0\">\r\n\r\n\r\n\r\n\r\n

    \r\n\r\n\r\n\r\n\r\n\r\n \r\n

    \">\r\n \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n\r\n \r\n·\r\n\r\n·\r\n\r\n\r\n\r\n\r\n\r\n

    \r\n
    \r\n
    \r\n\r\n\r\n\r\n

    \r\n \r\n \r\n
    \"> ()\">
    \r\n\r\n\r\n','Article'); -INSERT INTO template VALUES (4,'Linked Image with Caption','\r\n

    \r\n
    \r\n\r\n\r\n\r\n
    \r\n
    \r\n \r\n \">\r\n \" border=\"0\">\r\n
    \r\n \r\n \" border=\"0\">\r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n

    \r\n\r\n\r\n\r\n

    \r\n\r\n\r\n\r\n\r\n

    \r\n
    \r\n
    \r\n\r\n\r\n \r\n·\r\n\r\n·\r\n\r\n\r\n\r\n\r\n\r\n\r\n

    \r\n \r\n \r\n
    \"> ()\">
    \r\n\r\n\r\n\r\n','Article'); -INSERT INTO template VALUES (1,'Default USS','\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n
    \r\n\r\n\r\n \"> ·\r\n\r\n\r\n\">\r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n \"> \r\n \r\n ()\r\n \r\n\">
    \r\n\r\n\r\n

    \r\n · · \r\n
    \r\n
    \r\n','USS'); -INSERT INTO template VALUES (1,'Default Item','\r\n \r\n \">\r\n \r\n \r\n \r\n \r\n \r\n
    \r\n\r\n\r\n - \r\n \">\" border=\"0\" alt=\"\" width=\"16\" height=\"16\" border=\"0\" align=\"middle\" />\r\n\r\n\r\n\r\n - \r\n','Item'); -INSERT INTO template VALUES (2,'Traditional with Thumbnails','\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\r\n \"> ·\r\n\r\n\r\n\">\r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n \"> \r\n \r\n ()\r\n \r\n\r\n \r\n \">\" border=\"0\">\r\n \r\n \">
    \r\n\r\n\r\n

    \r\n · · \r\n
    \r\n
    \r\n\r\n','USS'); -INSERT INTO template VALUES (3,'Weblog','\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n \"> ·\r\n\r\n\r\n\r\n\">\r\n

    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n \r\n ()\r\n \r\n
    \r\n \r\n \">\" border=\"0\" align=\"right\"/>\r\n \r\n \"> -
    \r\n\r\n

    ( \">\r\n \r\n | \r\n \r\n )

    \r\n

    \r\n\r\n\r\n

    \r\n · \r\n
    \r\n
    \r\n','USS'); -INSERT INTO template VALUES (4,'Photo Gallery','\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n \"> ·\r\n\r\n\r\n\r\n\">

    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n
    \r\n \r\n \r\n \">\" border=\"0\"/>
    \r\n
    \r\n \">\r\n \r\n ()\r\n \r\n
    \r\n\r\n\r\n

    \r\n · · \r\n
    \r\n
    \r\n','USS'); -INSERT INTO template VALUES (1,'Default Submission','

    \n\n\n
    \n: \">
    \n:
    \n:
    \n:
    \n
    \n\n\n \">«
    \n
    \n\n \">»
    \n
    \n\n \">
    \n \">
    \n
    \n\n \">
    \n \">
    \n
    \n\n \">
    \n
    \n\">
    \n\">
    \n\n
    \n\n \" border=\"0\">

    \n\n

    \n
    \n\n

    \n\n','USS/Submission'); -INSERT INTO template VALUES (1,'Default Forum','\n \">\n \n • \n \n \">\n \n \">\n \n \n •\n \">\n

    \n\n\n\n\n \n \n \n \n \n \n \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n\n\n
    \">\">\">\">\">
    \">\"> @ \n \">\n by \n \n \n \n \">\n \n on @ \n
    \n\n\n

    \n · · \n
    \n
    \n\n\n\n','Forum'); -INSERT INTO template VALUES (5,'Classifieds','\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n \"> ·\r\n\r\n\r\n\">

    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n
    \r\n

    \">

    \r\n \r\n ()\r\n \r\n
    \r\n \r\n \">\" border=\"0\"/ align=\"right\">
    \r\n
    \r\n\r\n
    \r\n\r\n\r\n

    \r\n · · \r\n
    \r\n
    \r\n','USS'); -INSERT INTO template VALUES (2,'Item w/pop-up Links','\r\n \r\n \" target=\"_blank\">\r\n \r\n \r\n \r\n \r\n \r\n
    \r\n\r\n\r\n - \r\n \" target=\"_blank\">\" border=\"0\" alt=\"\" width=\"16\" height=\"16\" border=\"0\" align=\"middle\" />\r\n\r\n\r\n\r\n - \r\n','Item'); -INSERT INTO template VALUES (1,'Default FAQ','\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n \">

    \r\n\r\n\r\n

      \r\n\r\n
    • \">\r\n\r\n
    \r\n

    \r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n\r\n \">
    \r\n \r\n

    [top]

    \r\n\r\n\r\n','FAQ'); -INSERT INTO template VALUES (2,'Q and A','\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n \">

    \r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n Q:
    \r\n A: \r\n

    \r\n\r\n\r\n','FAQ'); -INSERT INTO template VALUES (1,'Default Product','\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n Price:
    \r\n
    \r\n\r\n\r\n Product Number:
    \r\n
    \r\n\r\n
    \r\n\r\n\r\n \">\" border=0 align=\"absmiddle\">
    \r\n
    \r\n\r\n\r\n \">\" border=0 align=\"absmiddle\">
    \r\n
    \r\n\r\n\r\n \">\" border=0 align=\"absmiddle\">
    \r\n
    \r\n\r\n

    \r\n\r\n \">\" border=\"0\" />

    \r\n\r\n\r\n \">\" border=\"0\" />

    \r\n\r\n\r\n \">\" border=\"0\" />

    \r\n\r\n

    \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n\r\n
    Features
    \r\n\r\n\r\n \">

    \r\n\r\n\r\n\r\n ·
    \r\n
    \r\n

    \r\n

    Benefits
    \r\n\r\n \">

    \r\n\r\n\r\n ·
    \r\n
    \r\n

    Specifications
    \r\n\r\n \">

    \r\n\r\n\r\n ·:
    \r\n
    \r\n

    Accessories
    \r\n\r\n \">

    \r\n\r\n\r\n\r\n ·\">
    \r\n
    \r\n

    Related Products
    \r\n\r\n \">

    \r\n\r\n\r\n\r\n ·\">
    \r\n
    \r\n

    \r\n\r\n','Product'); -INSERT INTO template VALUES (2,'Benefits Showcase','\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n\r\n \" border=\"0\" />

    \r\n\r\n\r\n\r\n \r\n \r\n\r\n
    \r\n

    \r\n\r\n\r\n Benefits
    \r\n\r\n \">

    \r\n\r\n\r\n\r\n ·
    \r\n
    \r\n\r\n

    \r\n\r\n\r\n \">\" border=\"0\" />

    \r\n\r\n\r\nSpecifications
    \r\n\r\n \">

    \r\n\r\n\r\n ·:
    \r\n
    \r\n\r\nOptions
    \r\n\r\n \">

    \r\n\r\n\r\n\r\n ·\">
    \r\n
    \r\n\r\nOther Products
    \r\n\r\n \">

    \r\n\r\n\r\n ·\">
    \r\n
    \r\n\r\n

    \r\n\r\n','Product'); -INSERT INTO template VALUES (3,'Three Columns','\r\n\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n\r\n
    \r\n\r\n \">\" border=\"0\" />\r\n\r\n\r\n\r\n \">\" border=\"0\" />\r\n\r\n\r\n\r\n \">\" border=\"0\" />\r\n\r\n
    \r\n\r\n\r\n \r\n \r\n \r\n\r\n
    \r\n\r\nFeatures
    \r\n\r\n \">

    \r\n\r\n\r\n ·
    \r\n
    \r\n

    \r\n\r\nBenefits
    \r\n\r\n \">

    \r\n\r\n\r\n\r\n ·
    \r\n
    \r\n

    \r\n\r\n

    \r\n\r\nSpecifications
    \r\n\r\n \">

    \r\n\r\n\r\n ·:
    \r\n
    \r\n

    \r\n\r\nAccessories
    \r\n\r\n \">

    \r\n\r\n\r\n\r\n ·\">
    \r\n
    \r\n

    \r\n\r\nRelated Products
    \r\n\r\n \">

    \r\n\r\n\r\n ·\">
    \r\n
    \r\n

    \r\n

    \r\n \r\n Price:
    \r\n
    \r\n\r\n\r\n Product Number:
    \r\n
    \r\n
    \r\n\r\n \">\" border=0 align=\"absmiddle\" />
    \r\n
    \r\n\r\n \">\" border=0 align=\"absmiddle\" />
    \r\n
    \r\n\r\n \">\" border=0 align=\"absmiddle\" />
    \r\n
    \r\n
    \r\n\r\n\r\n','Product'); -INSERT INTO template VALUES (5,'Left Column','\r\n\r\n \r\n \r\n\r\n
    ','Page'); -INSERT INTO template VALUES (4,'Left Column Collateral','\r\n\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n\r\n\r\n
    \r\n
    \r\n\r\n \">\" border=0 align=\"absmiddle\" />
    \r\n
    \r\n\r\n \">\" border=0 align=\"absmiddle\" />
    \r\n
    \r\n\r\n \">\" border=0 align=\"absmiddle\" />
    \r\n
    \r\n
    \r\n
    \r\n\r\n \">\" border=\"0\" />

    \r\n\r\n\r\n \">\" border=\"0\" />

    \r\n\r\n\r\n \">\" border=\"0\" />

    \r\n\r\n

    \r\n
    \r\n\r\n

    \r\n\r\n\r\nSpecs:
    \r\n\r\n \">

    \r\n\r\n\r\n ·:
    \r\n
    \r\n

    \r\n\r\nFeatures:
    \r\n\r\n \">

    \r\n\r\n\r\n ·
    \r\n
    \r\n

    \r\n\r\nOptions:
    \r\n\r\n \">

    \r\n\r\n\r\n ·\">
    \r\n
    \r\n\r\n

    \r\n','Product'); -INSERT INTO template VALUES (4,'Three Over One','\r\n\r\n \r\n \r\n \r\n\r\n\r\n \r\n\r\n
    ','Page'); -INSERT INTO template VALUES (3,'One Over Three','\r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n
    ','Page'); -INSERT INTO template VALUES (2,'News','\r\n\r\n \r\n\r\n \r\n \r\n\r\n\r\n \r\n\r\n
    \r\n','Page'); -INSERT INTO template VALUES (7,'Side By Side','\r\n\r\n \r\n \r\n\r\n
    \r\n','Page'); -INSERT INTO template VALUES (6,'Right Column','\r\n\r\n \r\n \r\n\r\n
    \r\n','Page'); -INSERT INTO template VALUES (1,'Default Page','\r\n\r\n\r\n\r\n
    \r\n','Page'); -INSERT INTO template VALUES (2,'Descriptive Site Map','\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n \"> \r\n \r\n - \r\n \r\n

    \r\n','SiteMap'); -INSERT INTO template VALUES (6,'Guest Book','\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n \">

    \r\n\r\n\r\n\r\n\r\n\r\n\r\n

    \r\n\r\n\r\nOn \"> from \">the department wrote, \r\n\r\n\r\n
    \r\n
    \r\n\r\n

    \r\n\r\n\r\n\r\n\r\n

    \r\n · \r\n
    \r\n
    \r\n','USS'); -INSERT INTO template VALUES (1,'Default Syndicated Content','\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n

    \r\n\r\n \" target=\"_blank\"> \r\n\r\n \r\n\r\n

    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n\r\n

  • \r\n \r\n \" target=\"_blank\"> \r\n \r\n \r\n \r\n \r\n - \r\n \r\n
    \r\n\r\n','SyndicatedContent'); -INSERT INTO template VALUES (1,'Default Poll','\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n
    \r\n\r\n\r\n\r\n \r\n \r\n
    \r\n
    \r\n

    \r\n \r\n \r\n\r\n\r\n\r\n \r\n



    \r\n \r\n \r\n \r\n
    \" class=\"pollColor\">  % ()
    \r\n \r\n
    :
    \r\n\r\n
    \r\n\r\n','Poll'); -INSERT INTO template VALUES (1,'Mail Form','\n

    \n
    \n\n\n
      \n\n
    • \n\n
    \n
    \n\n\n

    \n\n\n\n \">\n · \">\n \n · \">\n \n \n · \">\n \n

    \n\n\n\n\n\n \n \n \n\n\n
    \n \n \n \n \n \n \n \n \n *\n
    \n
    \n\n\n','DataForm'); -INSERT INTO template VALUES (2,'Default Email','\n\n: \n','DataForm'); -INSERT INTO template VALUES (3,'Default Acknowledgement','\r\n

    \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n
    \r\n

    \r\n\">','DataForm'); -INSERT INTO template VALUES (1,'Data List','\">\n

    \n\n\n\n\n \n \n \n\n\n\n\n\n \n \n \n \n \n \n \n\n\n
    Entry IDSubmission Date
    \">
    ','DataForm/List'); -INSERT INTO template VALUES (1,'Default HTTP Proxy','\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n Error: Search string not found in content.\r\n \r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n Warning: Ending search point not found in content.\r\n \r\n','HttpProxy'); -INSERT INTO template VALUES (1,'Default Message Board','\n

    \n
    \n\n\n

    \n\n\n\n \">

    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \">
    \n \n
    \n \">\n by \n \n \n \n \">\n \n on @ \n
    \n\n

    \n \n
    \n
    \n

    \n \n','MessageBoard'); -INSERT INTO template VALUES (1,'Default Post Form','

    \n\n\n\n\n\n \n\n\n\n\n\n\n \n \n \n \n \n \n \n\n\n\n\n\n
    \n\n\n

    \n\n

    ','Forum/PostForm'); -INSERT INTO template VALUES (1,'Default Post','

    \n\n\n\n\n\n
    \n\n\n \n

    \n \">\n \n • : [ \">1, \">2, \n \">3, \">4, \">5 ]\n \n \n \n • \">\n • \">\n \n \n • \">\n • \">\n \n\n

    \n: @
    \n:
    \n:
    \n:
    \n\n :
    \n\n : \">
    \n
    \n
    ','Forum/Post'); -INSERT INTO template VALUES (1,'Default Thread','
    \n\n\n
    \n
    \n\n \n \">\n \n
    style=\"border: 4px dotted #aaaaaa; padding: 5px;\">\n \n
    style=\"border: 4px dotted #aaaaaa; padding: 5px;\">\n \n \n
    \n \n\n\n\n \n \n \n \n \n \n \n \n
             \n \">\n \n
    style=\"border: 4px dotted #aaaaaa; padding: 5px;\">\n \n
    style=\"border: 4px dotted #aaaaaa; padding: 5px;\">\n \n \n
    \n
    \n
    \n
    \n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
       \">\"> @
    \n
    \n\n

    \n\"> •\n\"> •\n\"> \n\n • \">\n \n •\n \n \">\n \n \">\n \n \n \n •\n \n \">\n \n \">\n \n •\n \n \">\n \n \">\n \n \n\n\n

    \n','Forum/Thread'); -INSERT INTO template VALUES (1,'Default Forum Notification','\n\n','Forum/Notification'); -INSERT INTO template VALUES (1,'Default Forum Search','\n\n\n \n
    \n

    \n
    \n \n \'\n \n \n \n \n
    \n
    \n \n
    \n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \">\"> @
    \n
    \n\n\n
    \n · · \n
    \n
    ','Forum/Search'); +INSERT INTO template VALUES (1,'Default Site Map','\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n

    \r\n ·\">
    \r\n','SiteMap',1,1); +INSERT INTO template VALUES (3,'Left Align Image','\r\n

    \r\n
    \r\n\r\n\r\n\r\n
    \r\n \" align=\"left\" border=\"0\">\r\n\r\n\r\n\r\n\r\n

    \r\n\r\n\r\n\r\n\r\n\r\n \r\n

    \">\r\n \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n\r\n

    \r\n
    \r\n
    \r\n\r\n\r\n\r\n \r\n·\r\n\r\n·\r\n\r\n\r\n\r\n\r\n\r\n\r\n

    \r\n \r\n \r\n
    \"> ()\">
    \r\n\r\n\r\n','Article',1,1); +INSERT INTO template VALUES (2,'List with Thumbnails','\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n
    \r\n \">\r\n \r\n · \">\r\n \r\n
    \">\">\">
    \r\n \r\n \r\n \r\n \">\r\n  · \r\n \">\" border=\"0\" width=\"16\" height=\"16\" align=\"middle\" />/\r\n \r\n  · \r\n \">\" border=0 width=\"16\" height=\"16\" align=\"middle\" />/\r\n \r\n \r\n  · \r\n \">\" border=\"0\" width=\"16\" height=\"16\" align=\"middle\" />/\r\n \r\n \r\n \r\n \" border=0 align=\"middle\" hspace=\"3\">\r\n \r\n \r\n \r\n \r\n
    \r\n\r\n\r\n

    \r\n · · \r\n
    \r\n
    ','FileManager',1,1); +INSERT INTO template VALUES (3,'Calendar Month (Small)','\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n \">\r\n

    \r\n\r\n\r\n\n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n

     
    HeaderData\" width=\"28\" valign=\"top\" align=\"left\">

    \n \n \">\n \n \n \n

     
    \n
    \n\n\n\n

    \n · · \n
    \n
    \n','EventsCalendar',1,1); +INSERT INTO template VALUES (1,'Default Event','

    \r\n\r\n\r\n\r\n\r\n
    \r\n:
    \r\n:
    \r\n
    \r\n\r\n\r\n \">
    \r\n \">
    \r\n
    \r\n\r\n\r\n \">
    \r\n
    \r\n\r\n\r\n \">
    \r\n
    \r\n\r\n
    \r\n','EventsCalendar/Event',1,1); +INSERT INTO template VALUES (1,'Default File Manager','\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n
    \r\n \">\r\n \r\n · \">\r\n \r\n
    \">\">\">
    \r\n \r\n \r\n \r\n \">\r\n  · \r\n \">\" border=\"0\" width=\"16\" height=\"16\" align=\"middle\" />/\r\n \r\n  · \r\n \">\" border=0 width=\"16\" height=\"16\" align=\"middle\" />/\r\n \r\n \r\n  · \r\n \">\" border=\"0\" width=\"16\" height=\"16\" align=\"middle\" />/\r\n \r\n \r\n \r\n \r\n \r\n
    \r\n\r\n\r\n

    \r\n · · \r\n
    \r\n
    ','FileManager',1,1); +INSERT INTO template VALUES (2,'Events List','\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n \">\r\n

    \r\n\r\n\r\n\n\n \n \n \n \n \n ,\n - \n - - , \n \n \n

    \n \n \">\n \n \n \n \n \n \n - \n \n
    \n
    \n \n \n\n\n\n\n\n
    \n · · \n
    \n
    \n','EventsCalendar',1,1); +INSERT INTO template VALUES (2,'Center Image','\r\n

    \r\n
    \r\n\r\n\r\n\r\n
    \" border=\"0\">
    \r\n
    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n\r\n \r\n

    \">\r\n \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n \r\n·\r\n\r\n·\r\n\r\n\r\n\r\n\r\n\r\n

    \r\n \r\n \r\n
    \"> ()\">
    \r\n\r\n','Article',1,1); +INSERT INTO template VALUES (1,'Default Article','\r\n

    \r\n
    \r\n\r\n\r\n\r\n
    \r\n \" align=\"right\" border=\"0\">\r\n\r\n\r\n\r\n\r\n

    \r\n\r\n\r\n\r\n\r\n\r\n \r\n

    \">\r\n \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n\r\n \r\n·\r\n\r\n·\r\n\r\n\r\n\r\n\r\n\r\n

    \r\n
    \r\n
    \r\n\r\n\r\n\r\n

    \r\n \r\n \r\n
    \"> ()\">
    \r\n\r\n\r\n','Article',1,1); +INSERT INTO template VALUES (4,'Linked Image with Caption','\r\n

    \r\n
    \r\n\r\n\r\n\r\n
    \r\n
    \r\n \r\n \">\r\n \" border=\"0\">\r\n
    \r\n \r\n \" border=\"0\">\r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n

    \r\n\r\n\r\n\r\n

    \r\n\r\n\r\n\r\n\r\n

    \r\n
    \r\n
    \r\n\r\n\r\n \r\n·\r\n\r\n·\r\n\r\n\r\n\r\n\r\n\r\n\r\n

    \r\n \r\n \r\n
    \"> ()\">
    \r\n\r\n\r\n\r\n','Article',1,1); +INSERT INTO template VALUES (1,'Default USS','\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n
    \r\n\r\n\r\n \"> ·\r\n\r\n\r\n\">\r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n \"> \r\n \r\n ()\r\n \r\n\">
    \r\n\r\n\r\n

    \r\n · · \r\n
    \r\n
    \r\n','USS',1,1); +INSERT INTO template VALUES (16,'FAQ','\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n \n \">

    \r\n\r\n\r\n

      \r\n\r\n
    • \">\r\n\r\n
    \r\n

    \r\n\r\n\r\n\r\n\r\n \n \n [\">]\n \n \n \n \n \r\n\r\n \">
    \r\n \r\n

    [top]

    \r\n\r\n\r\n','USS',1,1); +INSERT INTO template VALUES (2,'Traditional with Thumbnails','\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\r\n \"> ·\r\n\r\n\r\n\">\r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n \"> \r\n \r\n ()\r\n \r\n\r\n \r\n \">\" border=\"0\">\r\n \r\n \">
    \r\n\r\n\r\n

    \r\n · · \r\n
    \r\n
    \r\n\r\n','USS',1,1); +INSERT INTO template VALUES (3,'Weblog','\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n \"> ·\r\n\r\n\r\n\r\n\">\r\n

    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n \r\n ()\r\n \r\n
    \r\n \r\n \">\" border=\"0\" align=\"right\"/>\r\n \r\n \"> -
    \r\n\r\n

    ( \">\r\n \r\n | \r\n \r\n )

    \r\n

    \r\n\r\n\r\n

    \r\n · \r\n
    \r\n
    \r\n','USS',1,1); +INSERT INTO template VALUES (4,'Photo Gallery','\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n \"> ·\r\n\r\n\r\n\r\n\">

    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n
    \r\n \r\n \r\n \">\" border=\"0\"/>
    \r\n
    \r\n \">\r\n \r\n ()\r\n \r\n
    \r\n\r\n\r\n

    \r\n · · \r\n
    \r\n
    \r\n','USS',1,1); +INSERT INTO template VALUES (1,'Default Submission','

    \n\n\n
    \n: \">
    \n:
    \n:
    \n:
    \n
    \n\n\n \">«
    \n
    \n\n \">»
    \n
    \n\n \">
    \n \">
    \n
    \n\n \">
    \n \">
    \n
    \n\n \">
    \n
    \n\">
    \n\">
    \n\n
    \n\n \" border=\"0\">

    \n\n

    \n
    \n\n

    \n\n','USS/Submission',1,1); +INSERT INTO template VALUES (1,'Default Forum','\n \">\n \n • \n \n \">\n \n \">\n \n \n •\n \">\n

    \n\n\n\n\n \n \n \n \n \n \n \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n\n\n
    \">\">\">\">\">
    \">\"> @ \n \">\n by \n \n \n \n \">\n \n on @ \n
    \n\n\n

    \n · · \n
    \n
    \n\n\n\n','Forum',1,1); +INSERT INTO template VALUES (5,'Classifieds','\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n \"> ·\r\n\r\n\r\n\">

    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n
    \r\n

    \">

    \r\n \r\n ()\r\n \r\n
    \r\n \r\n \">\" border=\"0\"/ align=\"right\">
    \r\n
    \r\n\r\n
    \r\n\r\n\r\n

    \r\n · · \r\n
    \r\n
    \r\n','USS',1,1); +INSERT INTO template VALUES (15,'Topics','\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n \n \">

    \r\n\r\n\r\n\r\n\r\n \n \n [\">]\n \n \n \n \n \r\n

    \r\n \r\n

    \r\n\r\n\r\n','USS',1,1); +INSERT INTO template VALUES (19,'Link List','\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n \n \">

    \r\n\r\n\r\n\r\n \r\n \n \n [\">]\n \n \n \n \r\n ·\r\n \"\r\n \r\n target=\"_blank\"\r\n \r\n >\r\n\r\n \r\n - \r\n \r\n
    \r\n
    \r\n','USS',1,1); +INSERT INTO template VALUES (18,'Unordered List','\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n \n \">

    \r\n\r\n\r\n

      \r\n\r\n
    • \r\n \n \n [\">]\n \n \n \n \r\n \r\n \"\r\n \r\n target=\"_blank\"\r\n \r\n >\r\n\r\n \r\n - \r\n \r\n
    • \r\n
      \r\n','USS',1,1); +INSERT INTO template VALUES (1,'Default Product','\r\n\r\n\r\n

      \r\n
      \r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n
      \r\n\r\n\r\n

      \r\n\r\n\r\n\r\n Price:
      \r\n
      \r\n\r\n\r\n Product Number:
      \r\n
      \r\n\r\n
      \r\n\r\n\r\n \">\" border=0 align=\"absmiddle\">
      \r\n
      \r\n\r\n\r\n \">\" border=0 align=\"absmiddle\">
      \r\n
      \r\n\r\n\r\n \">\" border=0 align=\"absmiddle\">
      \r\n
      \r\n\r\n

      \r\n\r\n \">\" border=\"0\" />

      \r\n\r\n\r\n \">\" border=\"0\" />

      \r\n\r\n\r\n \">\" border=\"0\" />

      \r\n\r\n

      \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n\r\n
      Features
      \r\n\r\n\r\n \">

      \r\n\r\n\r\n\r\n ·
      \r\n
      \r\n

      \r\n

      Benefits
      \r\n\r\n \">

      \r\n\r\n\r\n ·
      \r\n
      \r\n

      Specifications
      \r\n\r\n \">

      \r\n\r\n\r\n ·:
      \r\n
      \r\n

      Accessories
      \r\n\r\n \">

      \r\n\r\n\r\n\r\n ·\">
      \r\n
      \r\n

      Related Products
      \r\n\r\n \">

      \r\n\r\n\r\n\r\n ·\">
      \r\n
      \r\n

      \r\n\r\n','Product',1,1); +INSERT INTO template VALUES (2,'Benefits Showcase','\r\n\r\n\r\n

      \r\n
      \r\n\r\n\r\n\r\n \" border=\"0\" />

      \r\n\r\n\r\n\r\n \r\n \r\n\r\n
      \r\n

      \r\n\r\n\r\n Benefits
      \r\n\r\n \">

      \r\n\r\n\r\n\r\n ·
      \r\n
      \r\n\r\n

      \r\n\r\n\r\n \">\" border=\"0\" />

      \r\n\r\n\r\nSpecifications
      \r\n\r\n \">

      \r\n\r\n\r\n ·:
      \r\n
      \r\n\r\nOptions
      \r\n\r\n \">

      \r\n\r\n\r\n\r\n ·\">
      \r\n
      \r\n\r\nOther Products
      \r\n\r\n \">

      \r\n\r\n\r\n ·\">
      \r\n
      \r\n\r\n

      \r\n\r\n','Product',1,1); +INSERT INTO template VALUES (3,'Three Columns','\r\n\r\n\r\n\r\n

      \r\n
      \r\n\r\n\r\n

      \r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n\r\n
      \r\n\r\n \">\" border=\"0\" />\r\n\r\n\r\n\r\n \">\" border=\"0\" />\r\n\r\n\r\n\r\n \">\" border=\"0\" />\r\n\r\n
      \r\n\r\n\r\n \r\n \r\n \r\n\r\n
      \r\n\r\nFeatures
      \r\n\r\n \">

      \r\n\r\n\r\n ·
      \r\n
      \r\n

      \r\n\r\nBenefits
      \r\n\r\n \">

      \r\n\r\n\r\n\r\n ·
      \r\n
      \r\n

      \r\n\r\n

      \r\n\r\nSpecifications
      \r\n\r\n \">

      \r\n\r\n\r\n ·:
      \r\n
      \r\n

      \r\n\r\nAccessories
      \r\n\r\n \">

      \r\n\r\n\r\n\r\n ·\">
      \r\n
      \r\n

      \r\n\r\nRelated Products
      \r\n\r\n \">

      \r\n\r\n\r\n ·\">
      \r\n
      \r\n

      \r\n

      \r\n \r\n Price:
      \r\n
      \r\n\r\n\r\n Product Number:
      \r\n
      \r\n
      \r\n\r\n \">\" border=0 align=\"absmiddle\" />
      \r\n
      \r\n\r\n \">\" border=0 align=\"absmiddle\" />
      \r\n
      \r\n\r\n \">\" border=0 align=\"absmiddle\" />
      \r\n
      \r\n
      \r\n\r\n\r\n','Product',1,1); +INSERT INTO template VALUES (5,'Left Column','\n \n \n \n \n \n \n \r\n\r\n \r\n \r\n\r\n
      \n \n\n \n\n \n \n \">\n \n \n\n \n \n \n
      \n
      _div\" class=\"dragable\"> \n\n \n
      \" id=\"wobjectId\">\n \n \n \n \n \">\n \n \n
      \n
      \n \n
      \n
      \n
      \n
      \n \n\n \n\n \n \n \">\n \n \n\n \n \n \n
      \n
      _div\" class=\"dragable\"> \n\n \n
      \" id=\"wobjectId\">\n \n \n \n \n \">\n \n \n
      \n
      \n \n
      \n
      \n
      \n
      \n \n\n\n\n\n\n
      \n
       
      \n
      \n\n\n
      \n ','page',1,1); +INSERT INTO template VALUES (4,'Left Column Collateral','\r\n\r\n\r\n\r\n

      \r\n
      \r\n\r\n\r\n\r\n\r\n
      \r\n
      \r\n\r\n \">\" border=0 align=\"absmiddle\" />
      \r\n
      \r\n\r\n \">\" border=0 align=\"absmiddle\" />
      \r\n
      \r\n\r\n \">\" border=0 align=\"absmiddle\" />
      \r\n
      \r\n
      \r\n
      \r\n\r\n \">\" border=\"0\" />

      \r\n\r\n\r\n \">\" border=\"0\" />

      \r\n\r\n\r\n \">\" border=\"0\" />

      \r\n\r\n

      \r\n
      \r\n\r\n

      \r\n\r\n\r\nSpecs:
      \r\n\r\n \">

      \r\n\r\n\r\n ·:
      \r\n
      \r\n

      \r\n\r\nFeatures:
      \r\n\r\n \">

      \r\n\r\n\r\n ·
      \r\n
      \r\n

      \r\n\r\nOptions:
      \r\n\r\n \">

      \r\n\r\n\r\n ·\">
      \r\n
      \r\n\r\n

      \r\n','Product',1,1); +INSERT INTO template VALUES (4,'Three Over One','\n \n \n \n \n \n \n \r\n\r\n \r\n \r\n \r\n\r\n\r\n \r\n\r\n
      \n \n\n \n\n \n \n \">\n \n \n\n \n \n \n
      \n
      _div\" class=\"dragable\"> \n\n \n
      \" id=\"wobjectId\">\n \n \n \n \n \">\n \n \n
      \n
      \n \n
      \n
      \n
      \n
      \n \n\n \n\n \n \n \">\n \n \n\n \n \n \n
      \n
      _div\" class=\"dragable\"> \n\n \n
      \" id=\"wobjectId\">\n \n \n \n \n \">\n \n \n
      \n
      \n \n
      \n
      \n
      \n
      \n \n\n \n\n \n \n \">\n \n \n\n \n \n \n
      \n
      _div\" class=\"dragable\"> \n\n \n
      \" id=\"wobjectId\">\n \n \n \n \n \">\n \n \n
      \n
      \n \n
      \n
      \n
      \n
      \n \n\n \n\n \n \n \">\n \n \n\n \n \n \n
      \n
      _div\" class=\"dragable\"> \n\n \n
      \" id=\"wobjectId\">\n \n \n \n \n \">\n \n \n
      \n
      \n \n
      \n
      \n
      \n
      \n \n\n\n\n\n\n
      \n
       
      \n
      \n\n\n
      \n ','page',1,1); +INSERT INTO template VALUES (3,'One Over Three','\n \n \n \n \n \n \n \r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n
      \n \n\n \n\n \n \n \">\n \n \n\n \n \n \n
      \n
      _div\" class=\"dragable\"> \n\n \n
      \" id=\"wobjectId\">\n \n \n \n \n \">\n \n \n
      \n
      \n \n
      \n
      \n
      \n
      \n \n\n \n\n \n \n \">\n \n \n\n \n \n \n
      \n
      _div\" class=\"dragable\"> \n\n \n
      \" id=\"wobjectId\">\n \n \n \n \n \">\n \n \n
      \n
      \n \n
      \n
      \n
      \n
      \n \n\n \n\n \n \n \">\n \n \n\n \n \n \n
      \n
      _div\" class=\"dragable\"> \n\n \n
      \" id=\"wobjectId\">\n \n \n \n \n \">\n \n \n
      \n
      \n \n
      \n
      \n
      \n
      \n \n\n \n\n \n \n \">\n \n \n\n \n \n \n
      \n
      _div\" class=\"dragable\"> \n\n \n
      \" id=\"wobjectId\">\n \n \n \n \n \">\n \n \n
      \n
      \n \n
      \n
      \n
      \n
      \n \n\n\n\n\n\n
      \n
       
      \n
      \n\n\n
      \n ','page',1,1); +INSERT INTO template VALUES (2,'News','\n \n \n \n \n \n \n \r\n\r\n \r\n\r\n \r\n \r\n\r\n\r\n \r\n\r\n
      \n \n\n \n\n \n \n \">\n \n \n\n \n \n \n
      \n
      _div\" class=\"dragable\"> \n\n \n
      \" id=\"wobjectId\">\n \n \n \n \n \">\n \n \n
      \n
      \n \n
      \n
      \n
      \n
      \n \n\n \n\n \n \n \">\n \n \n\n \n \n \n
      \n
      _div\" class=\"dragable\"> \n\n \n
      \" id=\"wobjectId\">\n \n \n \n \n \">\n \n \n
      \n
      \n \n
      \n
      \n
      \n
      \n \n\n \n\n \n \n \">\n \n \n\n \n \n \n
      \n
      _div\" class=\"dragable\"> \n\n \n
      \" id=\"wobjectId\">\n \n \n \n \n \">\n \n \n
      \n
      \n \n
      \n
      \n
      \n
      \n \n\n \n\n \n \n \">\n \n \n\n \n \n \n
      \n
      _div\" class=\"dragable\"> \n\n \n
      \" id=\"wobjectId\">\n \n \n \n \n \">\n \n \n
      \n
      \n \n
      \n
      \n
      \n
      \r\n\n \n\n\n\n\n\n
      \n
       
      \n
      \n\n\n
      \n ','page',1,1); +INSERT INTO template VALUES (7,'Side By Side','\n \n \n \n \n \n \n \r\n\r\n \r\n \r\n\r\n
      \n \n\n \n\n \n \n \">\n \n \n\n \n \n \n
      \n
      _div\" class=\"dragable\"> \n\n \n
      \" id=\"wobjectId\">\n \n \n \n \n \">\n \n \n
      \n
      \n \n
      \n
      \n
      \n
      \n \n\n \n\n \n \n \">\n \n \n\n \n \n \n
      \n
      _div\" class=\"dragable\"> \n\n \n
      \" id=\"wobjectId\">\n \n \n \n \n \">\n \n \n
      \n
      \n \n
      \n
      \n
      \n
      \r\n\n \n\n\n\n\n\n
      \n
       
      \n
      \n\n\n
      \n ','page',1,1); +INSERT INTO template VALUES (6,'Right Column','\n \n \n \n \n \n \n \r\n\r\n \r\n \r\n\r\n
      \n \n\n \n\n \n \n \">\n \n \n\n \n \n \n
      \n
      _div\" class=\"dragable\"> \n\n \n
      \" id=\"wobjectId\">\n \n \n \n \n \">\n \n \n
      \n
      \n \n
      \n
      \n
      \n
      \n \n\n \n\n \n \n \">\n \n \n\n \n \n \n
      \n
      _div\" class=\"dragable\"> \n\n \n
      \" id=\"wobjectId\">\n \n \n \n \n \">\n \n \n
      \n
      \n \n
      \n
      \n
      \n
      \r\n\n \n\n\n\n\n\n
      \n
       
      \n
      \n\n\n
      \n ','page',1,1); +INSERT INTO template VALUES (1,'Default Page','\n \n \n \n \n \n \n \r\n\r\n\r\n\r\n
      \n \n\n \n\n \n \n \">\n \n \n\n \n \n \n
      \n
      _div\" class=\"dragable\"> \n\n \n
      \" id=\"wobjectId\">\n \n \n \n \n \">\n \n \n
      \n
      \n \n
      \n
      \n
      \n
      \r\n\n \n\n\n\n\n\n
      \n
       
      \n
      \n\n\n
      \n ','page',1,1); +INSERT INTO template VALUES (2,'Descriptive Site Map','\r\n

      \r\n
      \r\n\r\n\r\n

      \r\n\r\n\r\n\r\n \"> \r\n \r\n - \r\n \r\n

      \r\n','SiteMap',1,1); +INSERT INTO template VALUES (6,'Guest Book','\r\n

      \r\n
      \r\n\r\n\r\n

      \r\n\r\n\r\n\r\n \">

      \r\n\r\n\r\n\r\n\r\n\r\n\r\n

      \r\n\r\n\r\nOn \"> from \">the department wrote, \r\n\r\n\r\n
      \r\n
      \r\n\r\n

      \r\n\r\n\r\n\r\n\r\n

      \r\n · \r\n
      \r\n\r\n','USS',1,1); +INSERT INTO template VALUES (1,'Default Syndicated Content','\r\n

      \r\n
      \r\n\r\n\r\n

      \r\n\r\n\r\n

      \r\n\r\n \" target=\"_blank\"> \r\n\r\n \r\n\r\n

      \r\n\r\n\r\n

      \r\n\r\n\r\n\r\n\r\n

    • \r\n \r\n \" target=\"_blank\"> \r\n \r\n \r\n \r\n \r\n - \r\n \r\n
      \r\n\r\n','SyndicatedContent',1,1); +INSERT INTO template VALUES (1,'Default Poll','\r\n

      \r\n
      \r\n\r\n\r\n

      \r\n\r\n\r\n
      \r\n\r\n\r\n\r\n \r\n \r\n
      \r\n
      \r\n

      \r\n \r\n \r\n\r\n\r\n\r\n \r\n



      \r\n \r\n \r\n \r\n
      \" class=\"pollColor\">  % ()
      \r\n \r\n
      :
      \r\n\r\n
      \r\n\r\n','Poll',1,1); +INSERT INTO template VALUES (1,'Mail Form','\r\n

      \r\n
      \r\n\r\n\r\n
        \r\n\r\n
      • \r\n\r\n
      \r\n
      \r\n\r\n\r\n

      \r\n\r\n\r\n\r\n \">\r\n · \">\r\n \r\n · \">\r\n \r\n \r\n · \">\r\n · \">\r\n \r\n

      \r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n
      \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n *\r\n
      \r\n
      \r\n\r\n\r\n','DataForm',1,1); +INSERT INTO template VALUES (2,'Default Email','\n\n: \n','DataForm',1,1); +INSERT INTO template VALUES (3,'Default Acknowledgement','\r\n

      \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n
      \r\n

      \r\n\">','DataForm',1,1); +INSERT INTO template VALUES (1,'Data List','\">\n

      \n\n\n\n\n \n \n \n\n\n\n\n\n \n \n \n \n \n \n \n\n\n
      Entry IDSubmission Date
      \">
      ','DataForm/List',1,1); +INSERT INTO template VALUES (1,'Default HTTP Proxy','\r\n

      \r\n
      \r\n\r\n\r\n

      \r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n Error: Search string not found in content.\r\n \r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n Warning: Ending search point not found in content.\r\n \r\n','HttpProxy',1,1); +INSERT INTO template VALUES (1,'Default Message Board','\n

      \n
      \n\n\n

      \n\n\n\n \">

      \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      \n \">
      \n \n
      \n \">\n by \n \n \n \n \">\n \n on @ \n
      \n\n

      \n \n
      \n
      \n

      \n \n','MessageBoard',1,1); +INSERT INTO template VALUES (1,'Default Post Form','

      \n\n\n\n\n\n \n\n\n\n\n\n\n \n \n \n \n \n \n \n\n\n\n\n\n
      \n\n\n

      \n\n

      ','Forum/PostForm',1,1); +INSERT INTO template VALUES (1,'Default Post','

      \n\n\n\n\n\n
      \n\n\n \n

      \n \">\n \n • : [ \">1, \">2, \n \">3, \">4, \">5 ]\n \n \n \n • \">\n • \">\n \n \n • \">\n • \">\n \n\n

      \n: @
      \n:
      \n:
      \n:
      \n\n :
      \n\n : \">
      \n
      \n
      ','Forum/Post',1,1); +INSERT INTO template VALUES (1,'Default Thread','
      \n\n\n
      \n
      \n\n \n \">\n \n
      style=\"border: 4px dotted #aaaaaa; padding: 5px;\">\n \n
      style=\"border: 4px dotted #aaaaaa; padding: 5px;\">\n \n \n
      \n \n\n\n\n \n \n \n \n \n \n \n \n
               \n \">\n \n
      style=\"border: 4px dotted #aaaaaa; padding: 5px;\">\n \n
      style=\"border: 4px dotted #aaaaaa; padding: 5px;\">\n \n \n
      \n
      \n
      \n
      \n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
         \">\"> @
      \n
      \n\n

      \n\"> •\n\"> •\n\"> \n\n • \">\n \n •\n \n \">\n \n \">\n \n \n \n •\n \n \">\n \n \">\n \n •\n \n \">\n \n \">\n \n \n\n\n

      \n','Forum/Thread',1,1); +INSERT INTO template VALUES (1,'Default Forum Notification','\n\n','Forum/Notification',1,1); +INSERT INTO template VALUES (1,'Default Forum Search','\n\n\n \n
      \n

      \n
      \n \n \'\n \n \n \n \n
      \n
      \n \n
      \n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      \">\"> @
      \n
      \n\n\n
      \n · · \n
      \n
      ','Forum/Search',1,1); +INSERT INTO template VALUES (1000,'AutoGen ^t;','\n\n\n\n\ntarget=\"_blank\"\n href=\"\">\n · \n\n','Navigation',1,1); +INSERT INTO template VALUES (1001,'AutoGen ^m;','\n\n\n\n\ntarget=\"_blank\"\n href=\"\">\n · \n\n','Navigation',1,1); +INSERT INTO template VALUES (1000,'Syndicated Articles','\n

      \n
      \n\n\n

      \n\n\n

      \n\n \" target=\"_blank\"> \n\n \n\n

      \n\n\n

      \n\n\n\n\n\n \n \n
      \n
      \n \n
      \" target=\"_blank\" style=\"font-size: 9px;\">Read More... \n
      \n

      \n\n
      ','SyndicatedContent',1,1); +INSERT INTO template VALUES (1,'Default Submission Form','

      \n\n\n \n \n \n \n \n \n \n \n \n \n
      \n\n','USS/SubmissionForm',1,1); +INSERT INTO template VALUES (2,'FAQ Submission Form','

      \n\n\n \n \n \n \n \n \n \n \n
      \n\n','USS/SubmissionForm',1,1); +INSERT INTO template VALUES (3,'Link List Submission Form','

      \n\n\n \n \n \n \n \n \n \n \n \n \n
      \n\n','USS/SubmissionForm',1,1); +INSERT INTO template VALUES (1,'Default Login Box','
      \n\n \n
      \n \n

      \n \n
      \n \n \n \n

      \">

      \n
      \n\n \n \">.\n \n \n \n \n
      \n
      \n','Macro/L_loginBox',1,1); +INSERT INTO template VALUES (2,'Horizontal Login Box','
      \n\n \n \n \n \n \n \n \n \n \n \n \n \n
      \n \">\n \n\n \n \">.\n
      \n \n \n
      \n \n
      \n
      \n','Macro/L_loginBox',1,1); +INSERT INTO template VALUES (1,'Default SQL Report','\n

      \n
      \n\n\n

      \n\n\n\n

        \n \n
      • \n
        \n
      \n
      \n\n\n\n \n \n \n\n\n \n \n \n \n \n\n
      \n\n\n
      \n \n
      \n
      ','SQLReport',1,1); +INSERT INTO template VALUES (1,'Default Messsage Log Display Template','

      \r\n\r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n
      \r\n \r\n \r\n \r\n \r\n \r\n
      \r\n \r\n \r\n  \r\n \r\n  \r\n
      \r\n \r\n \r\n \r\n \r\n \r\n
      \r\n\r\n
      \r\n · · \r\n
      \r\n
      \r\n
      \r\n
        \r\n \r\n
      • \r\n \r\n
      \r\n
      ','Operation/MessageLog/View',1,1); +INSERT INTO template VALUES (1,'Default MessageLog Message Template','\r\n
      \r\n
      \r\n

      \r\n

      \r\n\r\n

      \r\n
        \r\n \r\n
      • \r\n \r\n \r\n
      • \r\n \r\n
      \r\n
      \r\n\r\n\r\n','Operation/MessageLog/Message',1,1); +INSERT INTO template VALUES (1,'Default Edit Profile Template','\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n
      \r\n \r\n
      \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      \r\n \r\n
      \r\n\r\n\r\n
      \r\n
        \r\n \r\n
      • \r\n \r\n
      \r\n
      ','Operation/Profile/Edit',1,1); +INSERT INTO template VALUES (1,'Default Profile Display Template','\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      \r\n \r\n \r\n \r\n \r\n \r\n
      \r\n
      \r\n
        \r\n \r\n
      • \r\n \r\n
      \r\n
      ','Operation/Profile/View',1,1); +INSERT INTO template VALUES (3,'Midas','\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n','richEditor',1,1); +INSERT INTO template VALUES (4,'Classic','\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n','richEditor',1,1); +INSERT INTO template VALUES (2,'EditOnPro2','\r\n\r\n','richEditor',1,1); +INSERT INTO template VALUES (1,'HTMLArea','\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n','richEditor',1,1); +INSERT INTO template VALUES (5,'lastResort','\r\n\r\n\r\n\r\n\r\n\r\n','richEditor',1,1); +INSERT INTO template VALUES (1,'Default Overview Report','

      \n\n\n \"> \n •\n \"> \n •\n \"> \n
      \n \"> \n •\n \"> \n •\n \"> \n •\n \"> \n
      \n\n

      \n\n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \">\n \n \n \n \n
      \');\">
      \n \n

      \n \n

      \n
      \n
      \n \n
      \n \');\">\n
      \n
      \">\n \n

      \n \n

      \n \n
      \n \n
      \n
      \n
      \n
      \n
      \n


      \n\n
      \n\n\n\n
      \n · · \n
      \n
      \n\n','Survey/Overview',1,1); +INSERT INTO template VALUES (1,'Default Gradebook Report','

      \n\n\n \"> \n •\n \"> \n •\n \"> \n
      \n \"> \n •\n \"> \n •\n \"> \n •\n \"> \n
      \n\n

      \n\n\n\n \n \n\n\n \n \n \n\n\n
      \">/%
      \n\n\n\n
      \n · · \n
      \n
      \n','Survey/Gradebook',1,1); +INSERT INTO template VALUES (1,'Default Survey','\n

      \n
      \n\n\n\n

      \n\n\n\n\n \n \n \n \n \n

      \n : / \n
      \n :% \n
      \n
      \n \n

      \">\n
      \n \n \n \n \n \n \n \n \n
      \n \n

      \n
      \n
      \n
      \n \n
      \n
      \n
      \n
      \n
      \n : /
      \n \n : /
      \n :% / 100%
      \n
      \n
      \n
      \n \n \n \">\n
      \n
      \n\n \n \n \n \n \n
      \n
      \n
      \n\n \"> \n •\n \"> \n •\n \"> \n
      \n \"> \n •\n \"> \n •\n \"> \n •\n \"> \n
      \n\n\n\n

      \n \">\n

      \n \n \n \n
      \n
      \n
      \n','Survey',1,1); +INSERT INTO template VALUES (1,'Default Response','

      \n\n\n \"> \n •\n \"> \n •\n \"> \n\n\">

      \n:
      \n:
      \n: \n\n

      \n\n\n
      \n \n\n \n \n \n \n \n\n \n \n \n \n\n
      \n \n \n
      \n

      \n','Survey/Response',1,1); +INSERT INTO template VALUES (4,'Tab Form','\r\n

      \r\n\r\n\r\n\r\n
        \r\n \r\n
      • \r\n \r\n
      \r\n
      \r\n\r\n\r\n

      \r\n\r\n\r\n\r\n \">\r\n · \">\r\n \r\n · \">\r\n \r\n \r\n · \">\r\n · \">\r\n \r\n

      \r\n\r\n\r\n\r\n

      \r\n \r\n )\" id=\"tab\" class=\"tab\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n *\r\n \r\n
      \r\n \r\n
      \r\n
      \r\n \r\n
      \r\n
      \r\n
      \r\n \r\n
      \r\n\r\n\r\n','DataForm',1,1); +INSERT INTO template VALUES (1,'Xmethods: getTemp','

      \n\n\n

      \n
      \n\n\r\n\r\n \r\n The current temp is: \r\n \r\n\r\n Failed to retrieve temp.\r\n','WSClient',1,1); +INSERT INTO template VALUES (2,'Google: doGoogleSearch','\n\n

      \n\n\n

      \n
      \n\n
      \n \n \">\n \n \n
      \n\n\n \n \n

      You searched for . We found around matching records.

      \n
      \n\n \n \">\n \n \n \n \n \n
      \n \n
      \n
      \n
      \n \n Description:
      \n
      \n \">\n \n - \n \n

      \n
      \n
      \n\n Could not retrieve results from Google.\n
      ','WSClient',1,1); +INSERT INTO template VALUES (1,'Default Admin Bar','\r\n \r\n
      \r\n\r\n \r\n \r\n\r\n \r\n \r\n
      \r\n\r\n
      \r\n \r\n
      \r\n
      \r\n','Macro/AdminBar',1,1); +INSERT INTO template VALUES (2,'DHTML Admin Bar','\r\n\r\n\r\n\r\n','Macro/AdminBar',1,1); +INSERT INTO template VALUES (2,'crumbTrail','\r\n\r\n\r\n\r\n\r\ntarget=\"_blank\"
      \r\n href=\"\">\r\n > \r\n\r\n','Navigation',1,1); +INSERT INTO template VALUES (1,'verticalMenu','\r\n
      \r\n
      \r\n\r\n\r\ntarget=\"_blank\" href=\"\">\r\n \r\n \r\n
      \r\n
      \r\n
      ','Navigation',1,1); +INSERT INTO template VALUES (3,'horizontalMenu','\r\n\r\n\r\n\r\n\r\ntarget=\"_blank\"\r\n href=\"\">\r\n · \r\n\r\n','Navigation',1,1); +INSERT INTO template VALUES (4,'DropMenu','\r\n
      \r\n\r\n\r\n\r\n\r\n
      ','Navigation',1,1); +INSERT INTO template VALUES (5,'Tabs','\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n target=\"_blank\" href=\"\">\r\n \r\n','Navigation',1,1); +INSERT INTO template VALUES (6,'dtree','/Navigation/dtree/dtree.css\" type=\"text/css\" />\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
      \r\n\r\n\r\n
      ','Navigation',1,1); +INSERT INTO template VALUES (1,'Calendar Month (Big)','\r\n

      \r\n
      \r\n\r\n\r\n

      \r\n\r\n\r\n\r\n \">\r\n

      \r\n\r\n\r\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n

       
      HeaderData\" width=\"14%\" valign=\"top\" align=\"left\">

      \n \n \n ·\">
      \n
      \n
      \n
       
      \n
      \n\n\n\n

      \n · · \n
      \n
      \n','EventsCalendar',1,1); +INSERT INTO template VALUES (7,'Cool Menus','\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n','Navigation',1,1); +INSERT INTO template VALUES (2,'Advanced Search','\r\n

      \r\n
      \r\n\r\n\r\n

      \r\n\r\n\r\n\r\n \r\n \r\n \r\n\r\n\">\r\n\r\n\r\n \r\n \r\n \r\n
      \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n\r\n \r\n
      Search for:\' name=\"query\">in\r\n \r\n \r\n
      Content in language:\r\n \r\n \" \r\n checked=\"1\" >
      \r\n
      \r\n
      Created by:\r\n \r\n
      Type of content:\r\n \r\n Number of Results:\r\n \r\n
      \r\n
      \r\n\r\n

      \r\n\r\n

      Results - of about \r\n containing \"\". Search took seconds.

      \r\n
      \r\n
        \">\r\n\r\n\r\n
      1. \r\n \">\r\n No Title\r\n \r\n by \">\r\n \r\n
        \r\n \r\n
        \r\n
        \r\n \r\n
        \r\n
        \r\n
        \r\n
      2. \r\n
        \r\n\r\n
      \r\n\n\n\n\n
      \n · · \n
      \n
      \n','IndexedSearch',1,1); +INSERT INTO template VALUES (3,'Search in Help','\r\n

      \r\n
      \r\n\r\n\r\n

      \r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      \r\n

      \r\n
      \r\n \r\n \r\n \r\n \r\n \">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      \r\n \' name=\"query\">\r\n
      In namespace: \r\n \r\n
      \r\n
      \r\n\r\n

      \r\n\r\n

      Results - of about \r\n containing \"\". Search took seconds.

      \r\n
      \r\n
        \">\r\n\r\n\r\n
      1. \r\n \">\r\n No Title\r\n
        \r\n \r\n
        \r\n
        \r\n Namespace: \r\n
        \r\n
        \r\n
        \r\n
      2. \r\n
        \r\n\r\n
      \r\n\n\n\n\n
      \n · · \n
      \n
      \n','IndexedSearch',1,1); +INSERT INTO template VALUES (1,'Default Search','\r\n

      \r\n
      \r\n\r\n\r\n

      \r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
      \r\n

      \r\n
      \r\n \r\n \r\n \r\n \">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      \r\n \' name=\"query\">\r\n
      \r\n \r\n \" \r\n \r\n \r\n \r\n checked=\"1\"\r\n \r\n \r\n checked=\"1\"\r\n \r\n \r\n checked=\"1\"\r\n \r\n >\r\n
      \r\n
      \r\n
      \r\n \r\n \r\n \"\r\n \r\n \r\n \r\n checked=\"1\"\r\n \r\n \r\n checked=\"1\"\r\n \r\n \r\n checked=\"1\"\r\n \r\n >\r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n\r\n

      \r\n\r\n

      Results - of about \r\n containing \"\". Search took seconds.

      \r\n
        \">\r\n \r\n
      1. \r\n \">\r\n No Title\r\n
        \r\n \r\n
        \r\n
        \r\n Location: \r\n
        \r\n
        \r\n
        \r\n
      2. \r\n
        \r\n
      \r\n
      \n\n\n\n
      \n · · \n
      \n
      \n','IndexedSearch',1,1); +INSERT INTO template VALUES (14,'Job Listing','\n

      \n
      \n\n\n

      \n\n\n\n \n\n\n\n
      \n\n\n \">Add a job. ·\n\n\n\">\n\n
      \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
      Job TitleLocationCompensationDate Posted
      \n \"> \n
      \n\n\n

      \n · · \n
      \n
      \n','USS',1,1); +INSERT INTO template VALUES (2,'Job','

      \n\n\n

      \nJob Description
      \n\n

      \n
      \n\n\n

      \nJob Requirements
      \n\n

      \n
      \n\n\n\n \n \n\n\n \n \n\n\n \n \n\n\n \n \n\n
      Date Posted
      Location
      Compensation
      Views
      \n\n

      \n\n \">« Previous Job ·\n\n\">List All Jobs\n\n · \">Next Job »\n\n

      \n\n\n\n

      \n \">Edit\n ·\n \">\n

      \n
      \n\n\n

      \nStatus: ||\n \">\n ·\n \">\n

      \n
      \n\n\n\n','USS/Submission',1,1); +INSERT INTO template VALUES (4,'Job Submission Form','

      Edit Job Posting

      \n\n\n\n \n \n \n \n \n \n \n \n \n \n
      Job Title
      Job Description
      Job Requirements
      Compensation
      Location
      \n\n','USS/SubmissionForm',1,1); +INSERT INTO template VALUES (8,'Synopsis','
      \r\n\r\n
      \r\n \">\r\n
      \r\n \r\n
      \r\n \r\n
      \r\n \r\n
      \r\n \r\n
      \r\n
      \r\n
      \r\n
      ','Navigation',1,1); +INSERT INTO template VALUES (1,'Default WebGUI Login Template','

      \n \n

      \n\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
      \r\n\r\n\r\n
      \r\n \r\n
      ','Auth/WebGUI/Login',1,1); +INSERT INTO template VALUES (1,'Default WebGUI Account Display Template','

      \n \n

      \n\n\n\r\n \r\n\r\n\r\n\r\n\r\n\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
      \r\n\r\n\r\n
      \r\n
        \r\n \r\n
      • \r\n \r\n
      \r\n
      ','Auth/WebGUI/Account',1,1); +INSERT INTO template VALUES (1,'Default WebGUI Anonymous Registration Template','

      \r\n\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n
      \r\n\r\n\r\n
      \r\n \r\n
      ','Auth/WebGUI/Create',1,1); +INSERT INTO template VALUES (1,'Default WebGUI Password Recovery Template','

      \n \n

      \n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
      \r\n\r\n\r\n\r\n
      \r\n \r\n
      ','Auth/WebGUI/Recovery',1,1); +INSERT INTO template VALUES (1,'Default WebGUI Password Reset Template','

      \n \n

      \n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
      \r\n \r\n \r\n \r\n
      \r\n \r\n \r\n \r\n
      \r\n \r\n \r\n \r\n
      \r\n \r\n
      \r\n','Auth/WebGUI/Expired',1,1); +INSERT INTO template VALUES (1,'Default LDAP Login Template','

      \n \n

      \r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
      \r\n\r\n\r\n
      \r\n
        \r\n \n
      • \">
      • \n
        \n\n
      \r\n
      ','Auth/LDAP/Login',1,1); +INSERT INTO template VALUES (1,'Default LDAP Account Display Template','

      \n \n

      \n\n\r\n\r\n\r\n

      \r\n\r\n\r\n \r\n \r\n\r\n
      \r\n \r\n \r\n \r\n
      \r\n
      \r\n\r\n
      \r\n
        \r\n \r\n
      • \r\n \r\n
      \r\n
      ','Auth/LDAP/Account',1,1); +INSERT INTO template VALUES (1,'Default LDAP Anonymous Registration Template','

      \n \r\n

      \n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n
      \r\n\r\n\r\n\r\n
      \r\n \r\n
      ','Auth/LDAP/Create',1,1); +INSERT INTO template VALUES (1,'Default SMB Login Template','

      \n \n

      \n\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
      \r\n\r\n\r\n
      \r\n
        \n \n
      • \">
      • \n
        \n
      \r\n
      ','Auth/SMB/Login',1,1); +INSERT INTO template VALUES (1,'Default SMB Account Display Template','

      \n \n

      \n\n\r\n\r\n\r\n

      \r\n\r\n\r\n \r\n \r\n\r\n
      \r\n \r\n \r\n \r\n
      \r\n
      \r\n
      \r\n
        \r\n \r\n
      • \r\n \r\n
      \r\n
      ','Auth/SMB/Account',1,1); +INSERT INTO template VALUES (1,'Default SMB Anonymous Registration Template','

      \n \r\n

      \n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n
      \r\n\r\n\r\n\r\n
      \r\n \r\n
      ','Auth/SMB/Create',1,1); +INSERT INTO template VALUES (1,'Default WebGUI Yes/No Prompt','

      \n\n

      \n\n

      \n\n
      \n\n\">\n\n          \n\n\">\n\n
      \n','prompt',1,1); +INSERT INTO template VALUES (2,'Fail Safe','\n \n \n <tmpl_var session.page.title> - <tmpl_var session.setting.companyName>\n \n \n \n ^AdminBar;\n\n\r\n^H; / ^Navigation(TopLevelMenuHorizontal_1000); / ^Navigation(currentMenuHorizontal_1001); / ^a;\r\n
      \n\n\n \n \n\n
      \r\n^H; / ^Navigation(TopLevelMenuHorizontal_1000); / ^Navigation(currentMenuHorizontal_1001); / ^a;\r\n\n \n ','style',0,0); +INSERT INTO template VALUES (1000,'WebGUI 6 Admin Style','\n \n \n <tmpl_var session.page.title> - <tmpl_var session.setting.companyName>\n \n \r\n \r\n\r\n\r\n\n \n \r\n\r\n^AdminBar(2);

      \r\n\r\n
      \r\n \n \n \r\n
      \r\n\r\n\r\n
      ^H; / ^PageTitle; / ^AdminToggle; / ^LoginToggle; / ^a;
      \r\n\r\n\r\n\r\n\r\n\r\n\r\n\n \n ','style',1,1); +INSERT INTO template VALUES (4,'Clipboard','\n \n \n <tmpl_var session.page.title> - <tmpl_var session.setting.companyName>\n \n \n \n ^AdminBar;\n\n\r\n\r\n\r\n\r\n\r\n
      Clipboard\r\n^H; / ^a;
      \r\n
      PAGES
      ^Navigation(FlexMenu_1002);
      CONTENT
      \n\n\n \n \n\n
      \r\n\r\n\r\n
      \r\n^H; / ^a;\r\n\n \n ','style',0,0); +INSERT INTO template VALUES (1001,'WebGUI 6','\n \n \n <tmpl_var session.page.title> - <tmpl_var session.setting.companyName>\n \n \r\n \n \n \r\n^AdminBar(2);\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n
      ^L(17,\"\",2); ^AdminToggle;
      \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
      \n         \r\n\"home\" \n \"Email\"\r\n\"Print\" \n \"Site \"Plain\r\n^Spacer(56,1);^Spacer(26,1);
      \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      ^Spacer(53,59);^D(\"%c %D, %y\");
      ^PageTitle;
      ^Spacer(53,59);
      \r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n
      ^Spacer(53,1);\r\n
      \r\n^Navigation(FlexMenu_1002);\r\n


      \r\n\r\n
      \n \n ^Spacer(53,1);
      \r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n

      Design by Plain Black
      \r\n\r\n\n \n ','style',1,1); +INSERT INTO template VALUES (3,'Make Page Printable','\n \n \n <tmpl_var session.page.title> - <tmpl_var session.setting.companyName>\n \n \n \n ^AdminBar;\n\n\r\n
      \n\n\n \n \n\n
      © 2001-2004 Plain Black LLC
      \r\n\n \n ','style',1,1); +INSERT INTO template VALUES (5,'Trash','\n \n \n <tmpl_var session.page.title> - <tmpl_var session.setting.companyName>\n \n \n \n ^AdminBar;\n\n\r\n\r\n\r\n\r\n\r\n
      Trash\r\n^H; / ^a; / Empty Trash
      \r\n
      PAGES
      ^Navigation(FlexMenu_1002);
      CONTENT
      \n\n\n \n \n\n
      \r\n\r\n\r\n
      \r\n^H; / ^a; / Empty Trash\r\n\n \n ','style',0,0); +INSERT INTO template VALUES (1,'Packages','\n \n \n <tmpl_var session.page.title> - <tmpl_var session.setting.companyName>\n \n \n \n ^AdminBar;\n\n\r\n\r\n\r\n\r\n\r\n
      Packages\r\n^H; / ^a;
      \r\n
      PACKAGES
      ^Navigation(FlexMenu_1002);
      CONTENT
      \n\n\n \n \n\n
      \r\n\r\n\r\n
      \r\n^H; / ^a;\r\n\n \n ','style',0,0); +INSERT INTO template VALUES (10,'htmlArea Image Manager','\n \n \n <tmpl_var session.page.title> - <tmpl_var session.setting.companyName>\n \n \r\n\n \n \r\n\r\n\r\n\r\n\r\n\r\n\n \n \r\n\n \n ','style',1,0); +INSERT INTO template VALUES (6,'Empty','','style',0,0); +INSERT INTO template VALUES (5,'Item','\r\n \r\n \">\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n - \r\n \">\" border=\"0\" alt=\"\" width=\"16\" height=\"16\" border=\"0\" align=\"middle\" />\r\n\r\n\r\n\r\n - \r\n','Article',1,1); +INSERT INTO template VALUES (6,'Item w/pop-up Links','\r\n \r\n \" target=\"_blank\">\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n - \r\n \" target=\"_blank\">\" border=\"0\" alt=\"\" width=\"16\" height=\"16\" border=\"0\" align=\"middle\" />\r\n\r\n\r\n\r\n - \r\n','Article',1,1); +INSERT INTO template VALUES (17,'Q and A','\r\n

      \r\n
      \r\n\r\n\r\n

      \r\n\r\n\r\n \n \">

      \r\n\r\n\r\n\r\n\r\n \n \n [\">]\n \n \n \n \n \r\n Q:
      \r\n A: \r\n

      \r\n\r\n\r\n','USS',1,1); +INSERT INTO template VALUES (20,'Ordered List','\r\n

      \r\n
      \r\n\r\n\r\n

      \r\n\r\n\r\n \n \">

      \r\n\r\n\r\n

        \r\n\r\n
      1. \r\n \n \n [\">]\n \n \n \n \r\n\r\n \"\r\n \r\n target=\"_blank\"\r\n \r\n >\r\n\r\n \r\n - \r\n \r\n
      2. \r\n
        \r\n
      ','USS',1,1); +INSERT INTO template VALUES (21,'Descriptive','\r\n

      \r\n
      \r\n\r\n\r\n

      \r\n\r\n\r\n \n \">

      \r\n\r\n\r\n\r\n \n \n [\">]\n \n \n \n
      \r\n
      \r\n\r\n \"\r\n \r\n target=\"_blank\"\r\n \r\n >\r\n\r\n \r\n - \r\n \r\n

      \r\n\r\n','USS',1,1); +INSERT INTO template VALUES (1000,'Titled Link List','\n

      \n
      \n\n\n

      \n\n\n \n \">

      \n\n\n\n \n \n [\">]\n \n \n \n
      \n
      \n\n \"\n \n target=\"_blank\"\n \n >\n\n \n
      \n
      \n

      \n\n','USS',1,1); -- -- Table structure for table `theme` @@ -16899,8 +17589,9 @@ INSERT INTO userProfileField VALUES ('alias','WebGUI::International::get(858)',1 INSERT INTO userProfileField VALUES ('signature','WebGUI::International::get(859)',1,0,'HTMLArea','','',5,3,0,1); INSERT INTO userProfileField VALUES ('publicProfile','WebGUI::International::get(861)',1,0,'yesNo','','1',9,4,0,1); INSERT INTO userProfileField VALUES ('publicEmail','WebGUI::International::get(860)',1,0,'yesNo','','1',10,4,0,1); -INSERT INTO userProfileField VALUES ('richEditor','WebGUI::International::get(496)',1,0,'selectList','{\r\nhtmlArea=>WebGUI::International::get(495),\r\nmidas=>WebGUI::International::get(887),\r\n#editOnPro2=>WebGUI::International::get(494),\r\nclassic=>WebGUI::International::get(879),\r\nlastResort=>WebGUI::International::get(880),\r\nnone=>WebGUI::International::get(881)\r\n}','[\'htmlArea\']',11,4,0,1); +INSERT INTO userProfileField VALUES ('richEditor','WebGUI::International::get(496)',1,0,'selectList','{\r\n1=>WebGUI::International::get(495), #htmlArea\r\n#2=>WebGUI::International::get(494), #editOnPro2\r\n3=>WebGUI::International::get(887), #midas\r\n4=>WebGUI::International::get(879), #classic\r\n5=>WebGUI::International::get(880),\r\nnone=>WebGUI::International::get(881)\r\n}','[1]',11,4,0,1); INSERT INTO userProfileField VALUES ('richEditorMode','WebGUI::International::get(882)',1,0,'selectList','{\r\ninline=>WebGUI::International::get(883),\r\npopup=>WebGUI::International::get(884)\r\n}','[\'inline\']',12,4,0,1); +INSERT INTO userProfileField VALUES ('toolbar','WebGUI::International::get(746)',0,0,'selectList','WebGUI::Icon::getToolbarOptions()','[\'useLanguageDefault\']',13,4,0,0); -- -- Table structure for table `userSession` @@ -16926,6 +17617,7 @@ INSERT INTO userSession VALUES ('97ztu03AFZcic',1053935998,1053907998,0,'',1); INSERT INTO userSession VALUES ('46ZH2lWWxIb1o',1056507480,1056479480,0,'',1); INSERT INTO userSession VALUES ('86B3dgfvo8kYc',1066694125,1066666125,0,'',1); INSERT INTO userSession VALUES ('14OZTAw8AMqos',1069040618,1069012618,0,'',1); +INSERT INTO userSession VALUES ('58qIk5WZvWqVc',1078710434,1078682434,0,'',1); -- -- Table structure for table `userSessionScratch` @@ -16983,7 +17675,7 @@ CREATE TABLE webguiVersion ( -- -INSERT INTO webguiVersion VALUES ('5.5.3','initial install',unix_timestamp()); +INSERT INTO webguiVersion VALUES ('6.0.0','initial install',unix_timestamp()); -- -- Table structure for table `wobject` @@ -17027,8 +17719,11 @@ CREATE TABLE wobject ( INSERT INTO wobject VALUES (-1,4,'SiteMap',0,'Page Not Found',1,'The page you were looking for could not be found on this system. Perhaps it has been deleted or renamed. The following list is a site map of this site. If you don\'t find what you\'re looking for on the site map, you can always start from the Home Page.',1001744792,3,1016077239,3,1,1001744792,1336444487,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,2,3,3,7,1003); -INSERT INTO wobject VALUES (-4,-2,'Article',1,'Who is using WebGUI?',1,'Large Corporations
      \nCorporations need powerful web platforms to support hundreds and thousands of users. These platforms must be reliable, secure, and provide content at blazing fast speeds. \n

      \n \n

      \n\nSmall Businesses
      \nNeed a sure fire way to overcome your competition? How about a dynamic web presence that will allow you to easily integrate E-Commerce, account profiles, and much more? \n

      \n \n

      \n\nNon-Profit Organizations
      \nMany non-profit organizations do not have a large budget, but need a web solution to distribute content and manage membership. \n

      \n\n

      \n\nEducational Institutions
      \nSchools and universities are continuously integrating online resources into their daily operations. \n

      \n \n

      \n\nGovernment Institutions
      \nGovernment institutions need a secure and reliable way of storing and communicating important information. Many government and quasi-government organizations are using WebGUI already; including a few that are so secure that we\'d have to kill you if we told you who they are. =) \n\n

      [ Florida Department of Agriculture | Euro Meeting | A Secret Federal Agency ]
      \n\n
      \n

      \n\nThere are literally hundreds of sites using WebGUI. You could be next.\n',1038221932,3,1038222654,3,1,946728000,2082801600,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,3,3,7,1003); -INSERT INTO wobject VALUES (-3,1,'Article',1,'Article',0,'

      \n\n
      ',1038219356,3,1038219356,3,1,946728000,2082801600,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,3,3,7,1003); -INSERT INTO wobject VALUES (-2,-1,'Article',1,'Welcome to WebGUI!',1,'If you\'re reading this message it means that you\'ve got WebGUI up and running. Good job! The installation is not trivial.\n\n

      \n \nIn order to do anything useful with your new installation you\'ll need to log in as the default administrator account. Follow these steps to get started:\n\n

      \n\n

        \n
      1. Click here to log in. (username: Admin password: 123qwe)\n
      2. Click here to turn the administrative interface on.\n
      \n\n

      \n\nNow that you\'re in as the administrator, you should change your password so no one else can log in and mess with your site. You might also want to create another account for yourself with Administrative privileges in case you can\'t log in with the Admin account for some reason.\n\n

      \n \nYou\'ll notice three menus at the top of your screen. Those are your administrative menus. Going from left to right they are Content, Clipboard, and Admin. The content menu allows you to add new pages and content to your site. The clipboard menu is currently empty, but if you cut or copy anything from any of your pages, it will end up there. The admin menu controls things like system settings and users.\n\n

      \n\nFor more information about how to administer WebGUI consider getting a copy of Ruling WebGUI. Plain Black Software also provides several Support Programs for WebGUI if you run into trouble.\n\n

      \n \nEnjoy your new WebGUI site!',1023555430,3,1038220053,3,1,1023537600,1338897600,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,3,3,7,1003); -INSERT INTO wobject VALUES (-5,-3,'Article',1,'What should you do next?',1,'To learn more about WebGUI and how you can best implement WebGUI in your organization, please see the choices below.\n\n

      \n \nTalk to the Experts
      \nOur website contains all of the different methods for reaching us. Our friendly staff will be happy to assist you in any way possible.\n \n

      \n\nRequest an Interactive Product Demonstration CD
      \nThis CD shows all of the excellent features that WebGUI provides and gives you a brief overview of the product. It also provides examples of how the product works and how it can be used in your environment.\n \n

      \n\nPurchase the Manual for WebGUI
      \nRuling WebGUI is the definitive guide to everything WebGUI related. It has been compiled by the experts at Plain Black Software and covers almost all aspects of WebGUI. When you purchase Ruling WebGUI, you will receive updates to this great manual for one full year.\n \n

      \n\nPurchase Technical Support
      \nThe WebGUI Support Center is there to help you when you get stuck. With a system as large as WebGUI, you\'ll likely have some questions, and our courteous and knowlegable staff is available to answer those questions. And best of all, you get Ruling WebGUI free when you sign up for the Support Center.\n \n

      \n\nSign Up for Plain Black Hosting
      \nWe provide professional hosting services for you so you don\'t have to go through the trouble of finding a hoster who likely won\'t know what to do with WebGUI anyway.\n',1038244102,3,1038705736,3,1,946728000,2082801600,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,3,3,7,1003); +INSERT INTO wobject VALUES (1,1,'Article',1,'Welcome',1,'Welcome to WebGUI. This is web done right.\n

      \nWebGUI is a user-friendly web site management system made by Plain Black. It is designed to be easy to use for the average business user, but powerful enough to satisfy the needs of a large enterprise.\n

      \nThere are thousands of small and large businesses, schools, universities, governments, clubs, projects, communities, and individuals using WebGUI all over the world today. A brief list of some of them can be found here. There\'s no reason your site shouldn\'t be on that list.

      ',1076701903,3,1076707751,3,1,946710000,2082783600,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,3,3,7,1005); +INSERT INTO wobject VALUES (2,1,'Article',2,'Key Benefits',1,'\n\n\n

      \n\n
      Easy to Use
      \n
      If you can use a web browser, then you can manage a web site with WebGUI. WebGUI\'s unique WYSIWYG inline content editing interface ensures that you know where you are and what your content will look like while you\'re editing. In addition, you don\'t need to install and learn any complicated programs, you can edit everything with your trusty web browser.
      \n
      \n\n
      Flexible Designs
      \n
      WebGUI\'s powerful templating system ensures that no two WebGUI sites ever need to look the same. You\'re not restricted in how your content is laid out or how your navigation functions.
      \n
      \n\n
      Work Faster
      \n
      Though there is some pretty cool technology behind the scenes that makes WebGUI work, our first concern has always been usability and not technology. After all if it\'s not useful, why use it? With that in mind WebGUI has all kinds of wizards, short cuts, online help, and other aids to help you work faster.
      \n
      \n\n
      Localized Content
      \n
      With WebGUI there\'s no need to limit yourself to one language or timezone. It\'s a snap to build a multi-lingual site with WebGUI. In fact, even WebGUI\'s built in functions and online help have been translated to more than 15 languages. User\'s can also adjust their local settings for dates, times, and other localized oddities.
      \n
      \n\n
      Pluggable By Design
      \n
      When Plain Black created WebGUI we knew we wouldn\'t be able to think of everything you want to use WebGUI for, so we made most of WebGUI\'s functions pluggable. This allows you to add new features to WebGUI and still be able to upgrade the core system without a fuss.
      \n\n
      ',1076702850,3,1076707868,3,1,946710000,2082783600,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,3,3,7,1007); +INSERT INTO wobject VALUES (3,1000,'Article',1,'Getting Started',0,'If you\'re reading this message it means that you\'ve got WebGUI up and running. Good job! The installation is not trivial.\n\n

      \n \nIn order to do anything useful with your new installation you\'ll need to log in as the default administrator account. Follow these steps to get started:\n\n

      \n\n

        \n
      1. Click here to log in. (username: Admin password: 123qwe)\n
      2. Click here to turn the administrative interface on.\n
      \n
      \nNOTE: You could have also done these steps using the block at the top of this page.\n
      \n\n

      \n\nNow that you\'re in as the administrator, you should change your password so no one else can log in and mess with your site. You might also want to create another account for yourself with Administrative privileges in case you can\'t log in with the Admin account for some reason.\n\n

      \n \nYou\'ll now notice little buttons and menus on all the pages in your site. These controls help you administer your site. The \"Add content\" menu lets you add new content to your pages as well as paste content from the clipboard. The \"Administrative functions\" menu let\'s you control users and groups as well as many other admin settings. The little toolbars help you manipulate the content in your pages.\n\n\n

      \n\nFor more information about how to administer WebGUI consider getting a copy of Ruling WebGUI. Plain Black Software also provides several Support Programs for WebGUI if you run into trouble.\n\n

      \n \nEnjoy your new WebGUI site!',1076704456,3,1076704456,3,1,946710000,2082783600,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,3,3,7,1009); +INSERT INTO wobject VALUES (5,1001,'USS',2,'Your Next Step',0,' To learn more about WebGUI and how you can best implement WebGUI in your organization, please see the choices below.\n\n',1076705448,3,1076706084,3,1,946710000,2082783600,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1000,3,3,7,NULL); +INSERT INTO wobject VALUES (6,1002,'SyndicatedContent',1,'The Latest News',0,'This is the latest news from Plain Black and WebGUI pulled directly from the site every hour.',1076708567,3,1076709040,3,1,946710000,2082783600,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1000,3,3,7,NULL); +INSERT INTO wobject VALUES (7,1003,'DataForm',1,'Tell A Friend',0,'Tell a friend about WebGUI.',1076709292,3,1076709522,3,1,946710000,2082783600,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,3,3,7,NULL); +INSERT INTO wobject VALUES (8,1004,'SiteMap',0,'Site Map',0,'',1001744792,3,1016077239,3,1,1001744792,1336444487,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,2,3,3,7,NULL);