You can subscribe to this list here.
2003 |
Jan
|
Feb
(160) |
Mar
(119) |
Apr
(111) |
May
(118) |
Jun
(101) |
Jul
(304) |
Aug
(113) |
Sep
(140) |
Oct
(137) |
Nov
(87) |
Dec
(122) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(78) |
Feb
(125) |
Mar
(131) |
Apr
(59) |
May
(121) |
Jun
(166) |
Jul
(150) |
Aug
(137) |
Sep
(73) |
Oct
(58) |
Nov
(27) |
Dec
(60) |
2005 |
Jan
(131) |
Feb
(84) |
Mar
(36) |
Apr
(8) |
May
(28) |
Jun
(20) |
Jul
(10) |
Aug
(72) |
Sep
(76) |
Oct
(34) |
Nov
(3) |
Dec
(29) |
2006 |
Jan
(13) |
Feb
(92) |
Mar
(7) |
Apr
(1) |
May
(1) |
Jun
(2) |
Jul
(4) |
Aug
(17) |
Sep
(5) |
Oct
(2) |
Nov
(8) |
Dec
(12) |
2007 |
Jan
(28) |
Feb
(15) |
Mar
|
Apr
|
May
(8) |
Jun
(4) |
Jul
(5) |
Aug
(8) |
Sep
(20) |
Oct
(38) |
Nov
(65) |
Dec
(92) |
2008 |
Jan
(21) |
Feb
(56) |
Mar
(27) |
Apr
(174) |
May
(25) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: naoki i. <am...@us...> - 2008-04-09 17:20:43
|
Update of /cvsroot/popfile/engine/skins/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12124/skins/default Modified Files: magnet-page.thtml password-page.thtml Log Message: Change Log 1. The parameters are now automatically upgraded Classifier/Bayes.pm Parameters in the configration file (popfile.cfg) are automatically upgraded to the POPFile database as the admin's parameters exept for the password of the UI (html_password). 2. A new global option 'language' (GLOBAL_language) POPFile/Configuration.pm Classifier/Bayes.pm tests/TestBayes.tst tests/TestMailParse.tst This setting is used by POPFile to decide whether it runs some language specific codes. e.g. if GLOBAL_language is 'Nihongo', POPFile will handle Japanese texts correctly. And it is used as the default language setting for the users. TODO: In the single user mode, POPFile's 'global' language setting should be equaled to the admin's setting. 3. Localized UI strings are now cached per user (session) UI/HTML.pm tests/TestHTML.tst All of the users shared the language cache till now. If a user changed the language setting, the cache will be updated, and affect the other users' UI. The user's cache will be cleared when the session is rleased. 4. The magnet tab always show the localized magnet types UI/HTML.pm skins/default/magnet-page.thtml 5. Cookie will be deleted when closing web browsers UI/HTML.pm I think there's no need to store the cookie for two weeks. 6. Removed almost all of the hardcoded user id 1 UI/HTML.pm Classifier/Bayes.pm POPFile/History.pm 7. Login page for the single user mode UI/HTML.pm skins/default/password-page.thtml languages/English.msg languages/Nihongo.msg If admin has a password, login page will be shown even in the single user mode 8. commit_history is called before the session key is released Classifier/Bayes.pm POPFile/History.pm Avoid the 'Invalid session key' error occuring when POPFile is updating the history. 9. Messages are now ordered by their types. POPFile/MQ.pm Messages are handled in following order: 1 CREAT 2 LOGIN 3 UIREG 4 COMIT 5 TICKD 6 RELSE In some case, COMIT had been processed before the session key is created by CREAT. This caused the 'Invalid session key' errors. 10. TestPOP3 is now passed tests/TestPOP3.tst tests/TestMailParse029.msg tests/TestMailParse029.cam tests/TestMailParse029.wrd 11. Fixed some tests to output their result correctly tests/TestBayesScript.tst tests/TestConfiguration.tst tests/TestHTTP.tst tests/TestInsertScript.tst tests/TestProxy.tst Current state of the test suite: TestBayesScript PASS TestBayes PASS TestConfiguration PASS * TestHistory fail * TestHTML PASS * TestHTTP PASS TestIMAP not tested yet TestInsertScript PASS * TestLogger PASS TestMailParse PASS TestModule PASS TestMQ PASS TestMutex PASS TestPipeScript PASS TestPOP3 PASS TestProxy PASS TestWordMangle PASS TestXMLRPC PASS (but child process does not terminate) * : needs to add tests for multi user support TODO 1. multi user mode tests are needed tests/TestConfiguration.tst tests/TestHistory.tst tests/TestHTML.tst tests/TestInsertScript.tst Index: magnet-page.thtml =================================================================== RCS file: /cvsroot/popfile/engine/skins/default/magnet-page.thtml,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** magnet-page.thtml 30 Mar 2008 10:22:38 -0000 1.18 --- magnet-page.thtml 9 Apr 2008 17:20:48 -0000 1.19 *************** *** 112,116 **** <option value="<TMPL_VAR NAME="Magnet_Type">"> ! <TMPL_VAR NAME="Magnet_Type_Name"> </option> --- 112,116 ---- <option value="<TMPL_VAR NAME="Magnet_Type">"> ! <TMPL_VAR NAME="Magnet_Type_Localized"> </option> Index: password-page.thtml =================================================================== RCS file: /cvsroot/popfile/engine/skins/default/password-page.thtml,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** password-page.thtml 9 Sep 2005 23:00:42 -0000 1.11 --- password-page.thtml 9 Apr 2008 17:20:48 -0000 1.12 *************** *** 4,8 **** <h2 class="password"><TMPL_VAR NAME="Localize_Password_Title"></h2> <form action="/password" method="post"> ! <table summary=""><tr><td> <label class="passwordLabel" for="theUsername"> <TMPL_VAR NAME="Localize_Password_Username">: --- 4,10 ---- <h2 class="password"><TMPL_VAR NAME="Localize_Password_Title"></h2> <form action="/password" method="post"> ! <table summary=""> ! <TMPL_IF NAME="Password_If_SingleUser"><TMPL_ELSE> ! <tr><td> <label class="passwordLabel" for="theUsername"> <TMPL_VAR NAME="Localize_Password_Username">: *************** *** 10,14 **** </td><td> <input type="text" id="theUsername" name="username" /><br /> ! </td></tr><tr><td> <label class="passwordLabel" for="thePassword"> <TMPL_VAR NAME="Localize_Password_Password">: --- 12,18 ---- </td><td> <input type="text" id="theUsername" name="username" /><br /> ! </td></tr> ! </TMPL_IF> ! <tr><td> <label class="passwordLabel" for="thePassword"> <TMPL_VAR NAME="Localize_Password_Password">: |
From: naoki i. <am...@us...> - 2008-04-09 17:20:43
|
Update of /cvsroot/popfile/engine/languages In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12124/languages Modified Files: English.msg Nihongo.msg Log Message: Change Log 1. The parameters are now automatically upgraded Classifier/Bayes.pm Parameters in the configration file (popfile.cfg) are automatically upgraded to the POPFile database as the admin's parameters exept for the password of the UI (html_password). 2. A new global option 'language' (GLOBAL_language) POPFile/Configuration.pm Classifier/Bayes.pm tests/TestBayes.tst tests/TestMailParse.tst This setting is used by POPFile to decide whether it runs some language specific codes. e.g. if GLOBAL_language is 'Nihongo', POPFile will handle Japanese texts correctly. And it is used as the default language setting for the users. TODO: In the single user mode, POPFile's 'global' language setting should be equaled to the admin's setting. 3. Localized UI strings are now cached per user (session) UI/HTML.pm tests/TestHTML.tst All of the users shared the language cache till now. If a user changed the language setting, the cache will be updated, and affect the other users' UI. The user's cache will be cleared when the session is rleased. 4. The magnet tab always show the localized magnet types UI/HTML.pm skins/default/magnet-page.thtml 5. Cookie will be deleted when closing web browsers UI/HTML.pm I think there's no need to store the cookie for two weeks. 6. Removed almost all of the hardcoded user id 1 UI/HTML.pm Classifier/Bayes.pm POPFile/History.pm 7. Login page for the single user mode UI/HTML.pm skins/default/password-page.thtml languages/English.msg languages/Nihongo.msg If admin has a password, login page will be shown even in the single user mode 8. commit_history is called before the session key is released Classifier/Bayes.pm POPFile/History.pm Avoid the 'Invalid session key' error occuring when POPFile is updating the history. 9. Messages are now ordered by their types. POPFile/MQ.pm Messages are handled in following order: 1 CREAT 2 LOGIN 3 UIREG 4 COMIT 5 TICKD 6 RELSE In some case, COMIT had been processed before the session key is created by CREAT. This caused the 'Invalid session key' errors. 10. TestPOP3 is now passed tests/TestPOP3.tst tests/TestMailParse029.msg tests/TestMailParse029.cam tests/TestMailParse029.wrd 11. Fixed some tests to output their result correctly tests/TestBayesScript.tst tests/TestConfiguration.tst tests/TestHTTP.tst tests/TestInsertScript.tst tests/TestProxy.tst Current state of the test suite: TestBayesScript PASS TestBayes PASS TestConfiguration PASS * TestHistory fail * TestHTML PASS * TestHTTP PASS TestIMAP not tested yet TestInsertScript PASS * TestLogger PASS TestMailParse PASS TestModule PASS TestMQ PASS TestMutex PASS TestPipeScript PASS TestPOP3 PASS TestProxy PASS TestWordMangle PASS TestXMLRPC PASS (but child process does not terminate) * : needs to add tests for multi user support TODO 1. multi user mode tests are needed tests/TestConfiguration.tst tests/TestHistory.tst tests/TestHTML.tst tests/TestInsertScript.tst Index: Nihongo.msg =================================================================== RCS file: /cvsroot/popfile/engine/languages/Nihongo.msg,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** Nihongo.msg 6 Apr 2008 08:27:08 -0000 1.23 --- Nihongo.msg 9 Apr 2008 17:20:48 -0000 1.24 *************** *** 46,50 **** From º¹½Ð¿Í Subject ·ï̾ ! Cc Cc Classification ʬÎà Reclassify ºÆÊ¬Îà --- 46,50 ---- From º¹½Ð¿Í Subject ·ï̾ ! Cc Cc Classification ʬÎà Reclassify ºÆÊ¬Îà *************** *** 64,68 **** Delete ºï½ü Create ºîÀ® ! To °¸¤ÆÀè Total ¹ç·× Rename ̾Á°Êѹ¹ --- 64,68 ---- Delete ºï½ü Create ºîÀ® ! To °¸Àè Total ¹ç·× Rename ̾Á°Êѹ¹ *************** *** 274,282 **** History_Size_MegaBytes %.1f MB ! Password_Title ¥Ñ¥¹¥ï¡¼¥É Password_Password ¥Ñ¥¹¥ï¡¼¥É Password_Username ¥æ¡¼¥¶¡¼Ì¾ Password_Go ¥í¥°¥¤¥ó ! Password_Error1 ¥æ¡¼¥¶¡¼Ì¾¤Þ¤¿¤Ï¥Ñ¥¹¥ï¡¼¥É¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹ Security_Error1 ǧ¾Ú¥Ý¡¼¥ÈÈÖ¹æ¤Ï1¤«¤é65535¤Þ¤Ç¤Ë¤·¤Æ¤¯¤À¤µ¤¤¡£ --- 274,283 ---- History_Size_MegaBytes %.1f MB ! Password_Title ¥í¥°¥¤¥ó Password_Password ¥Ñ¥¹¥ï¡¼¥É Password_Username ¥æ¡¼¥¶¡¼Ì¾ Password_Go ¥í¥°¥¤¥ó ! Password_Error1 ¥Ñ¥¹¥ï¡¼¥É¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹ ! Password_Error2 ¥æ¡¼¥¶¡¼Ì¾¤Þ¤¿¤Ï¥Ñ¥¹¥ï¡¼¥É¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹ Security_Error1 ǧ¾Ú¥Ý¡¼¥ÈÈÖ¹æ¤Ï1¤«¤é65535¤Þ¤Ç¤Ë¤·¤Æ¤¯¤À¤µ¤¤¡£ Index: English.msg =================================================================== RCS file: /cvsroot/popfile/engine/languages/English.msg,v retrieving revision 1.110 retrieving revision 1.111 diff -C2 -d -r1.110 -r1.111 *** English.msg 6 Apr 2008 08:27:08 -0000 1.110 --- English.msg 9 Apr 2008 17:20:48 -0000 1.111 *************** *** 277,281 **** Password_Username User name Password_Go Login ! Password_Error1 Incorrect user name or password Security_Error1 The port must be a number between 1 and 65535 --- 277,282 ---- Password_Username User name Password_Go Login ! Password_Error1 Incorrect password ! Password_Error2 Incorrect user name or password Security_Error1 The port must be a number between 1 and 65535 |
From: Brian S. <xue...@us...> - 2008-04-09 15:52:25
|
Update of /cvsroot/popfile/engine In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11361 Modified Files: Tag: b0_22_2 Makefile Log Message: When I removed the "manual" target in the previous commit I didn't notice that "manual" was also responsible for ensuring that the UI language files get included in the cross-platform zip file. Ooops! Index: Makefile =================================================================== RCS file: /cvsroot/popfile/engine/Makefile,v retrieving revision 1.41.4.7 retrieving revision 1.41.4.8 diff -C2 -d -r1.41.4.7 -r1.41.4.8 *** Makefile 9 Apr 2008 12:05:51 -0000 1.41.4.7 --- Makefile 9 Apr 2008 15:52:18 -0000 1.41.4.8 *************** *** 8,12 **** include vars.mak ! .PHONY: test package windows core skins coverage macosx rc error: --- 8,12 ---- include vars.mak ! .PHONY: test package windows core languages skins coverage macosx rc error: *************** *** 111,115 **** BUILD_ZIP=wzzip -P $(POPFILE_ZIP) -a $^ xplat: $(POPFILE_ZIP) ! $(POPFILE_ZIP): core skins POPFile/popfile_version core: popfile.pl otto.gif otto.png pix.gif black.gif bayes.pl pipe.pl insert.pl Classifier/*.pm POPFile/*.pm Proxy/*.pm Services/*.pm Services/IMAP/*.pm UI/*.pm v$(POPFILE_VERSION).change v$(POPFILE_VERSION).change.nihongo license stopwords favicon.ico $(POPFILE_VERSION_FILE) Classifier/popfile.sql popfile.pck --- 111,115 ---- BUILD_ZIP=wzzip -P $(POPFILE_ZIP) -a $^ xplat: $(POPFILE_ZIP) ! $(POPFILE_ZIP): core languages skins POPFile/popfile_version core: popfile.pl otto.gif otto.png pix.gif black.gif bayes.pl pipe.pl insert.pl Classifier/*.pm POPFile/*.pm Proxy/*.pm Services/*.pm Services/IMAP/*.pm UI/*.pm v$(POPFILE_VERSION).change v$(POPFILE_VERSION).change.nihongo license stopwords favicon.ico $(POPFILE_VERSION_FILE) Classifier/popfile.sql popfile.pck *************** *** 117,120 **** --- 117,123 ---- $(BUILD_ZIP) + languages: languages/*.msg + $(BUILD_ZIP) + .PHONY: skins_css skins_gif skins_thtml skins: skins_css skins_gif skins_thtml |
From: Brian S. <xue...@us...> - 2008-04-09 12:05:46
|
Update of /cvsroot/popfile/engine In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22636 Modified Files: Tag: b0_22_2 Makefile vars.mak Log Message: Remove references to the obsolete manual because the files have been deleted from CVS. Move the hard-coded path out of the Makefile and into vars.mak to make it easier to find and modify the path. Index: vars.mak =================================================================== RCS file: /cvsroot/popfile/engine/vars.mak,v retrieving revision 1.11.4.6 retrieving revision 1.11.4.7 diff -C2 -d -r1.11.4.6 -r1.11.4.7 *** vars.mak 5 Mar 2008 18:44:42 -0000 1.11.4.6 --- vars.mak 9 Apr 2008 12:05:51 -0000 1.11.4.7 *************** *** 12,15 **** --- 12,16 ---- export POPFILE_REVISION=1 export POPFILE_VERSION:=$(POPFILE_MAJOR_VERSION).$(POPFILE_MINOR_VERSION).$(POPFILE_REVISION) + ABSOLUTE_ENGINE_PATH := c:/cygwin/home/Administrator/engine POPFILE_VERSION_FILE=POPFile/popfile_version POPFILE_ZIP := popfile-$(POPFILE_VERSION)$(RC).zip Index: Makefile =================================================================== RCS file: /cvsroot/popfile/engine/Makefile,v retrieving revision 1.41.4.6 retrieving revision 1.41.4.7 diff -C2 -d -r1.41.4.6 -r1.41.4.7 *** Makefile 5 Mar 2008 18:44:42 -0000 1.41.4.6 --- Makefile 9 Apr 2008 12:05:51 -0000 1.41.4.7 *************** *** 8,12 **** include vars.mak ! .PHONY: test package windows core manual skins coverage macosx rc error: --- 8,12 ---- include vars.mak ! .PHONY: test package windows core skins coverage macosx rc error: *************** *** 96,100 **** # Builds a Windows service version of POPFile using PerlSvc ! SVC_OPTIONS = $(COMMON_EXE_OPTIONS) --lib c:/cygwin/home/Administrator/engine popfile-service.exe: popfile-service.pl --- 96,100 ---- # Builds a Windows service version of POPFile using PerlSvc ! SVC_OPTIONS = $(COMMON_EXE_OPTIONS) --lib $(ABSOLUTE_ENGINE_PATH) popfile-service.exe: popfile-service.pl *************** *** 111,115 **** BUILD_ZIP=wzzip -P $(POPFILE_ZIP) -a $^ xplat: $(POPFILE_ZIP) ! $(POPFILE_ZIP): core manual skins POPFile/popfile_version core: popfile.pl otto.gif otto.png pix.gif black.gif bayes.pl pipe.pl insert.pl Classifier/*.pm POPFile/*.pm Proxy/*.pm Services/*.pm Services/IMAP/*.pm UI/*.pm v$(POPFILE_VERSION).change v$(POPFILE_VERSION).change.nihongo license stopwords favicon.ico $(POPFILE_VERSION_FILE) Classifier/popfile.sql popfile.pck --- 111,115 ---- BUILD_ZIP=wzzip -P $(POPFILE_ZIP) -a $^ xplat: $(POPFILE_ZIP) ! $(POPFILE_ZIP): core skins POPFile/popfile_version core: popfile.pl otto.gif otto.png pix.gif black.gif bayes.pl pipe.pl insert.pl Classifier/*.pm POPFile/*.pm Proxy/*.pm Services/*.pm Services/IMAP/*.pm UI/*.pm v$(POPFILE_VERSION).change v$(POPFILE_VERSION).change.nihongo license stopwords favicon.ico $(POPFILE_VERSION_FILE) Classifier/popfile.sql popfile.pck *************** *** 117,123 **** $(BUILD_ZIP) - manual: manual/*.gif manual/en/*.html languages/*.msg - $(BUILD_ZIP) - .PHONY: skins_css skins_gif skins_thtml skins: skins_css skins_gif skins_thtml --- 117,120 ---- |
Update of /cvsroot/popfile/engine/languages In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10496 Modified Files: Tag: b0_22_2 Arabic.msg Bulgarian.msg Catala.msg Chinese-Simplified-GB2312.msg Chinese-Simplified.msg Chinese-Traditional-BIG5.msg Chinese-Traditional.msg Czech.msg Deutsch.msg English-UK.msg English.msg Espanol.msg Francais.msg Hebrew.msg Hellenic.msg Hungarian.msg Italiano.msg Korean.msg Nederlands.msg Nihongo.msg Polish.msg Portugues-do-Brasil.msg Portugues.msg Russian.msg Slovak.msg Suomi.msg Turkce.msg Ukrainian.msg Log Message: Replace www.usethesource.com with getpopfile.org. Update Japanese translation Index: Russian.msg =================================================================== RCS file: /cvsroot/popfile/engine/languages/Russian.msg,v retrieving revision 1.8.8.3 retrieving revision 1.8.8.4 diff -C2 -d -r1.8.8.3 -r1.8.8.4 *** Russian.msg 31 Jan 2007 11:33:47 -0000 1.8.8.3 --- Russian.msg 7 Apr 2008 15:26:16 -0000 1.8.8.4 *************** *** 164,169 **** Security_Stealth òÅÖÉÍ ÎÅ×ÉÄÉÍÏÓÔÉ/îÁÓÔÒÏÊËÁ ÓÅÒ×ÅÒÁ Security_NoStealthMode îÅÔ (ÒÅÖÉÍ ÎÅ×ÉÄÉÍÏÓÔÉ) ! Security_ExplainStats (åÓÌÉ ×ËÌÀÞÅÎÏ, POPFile ÒÁÚ × ÄÅÎØ ÂÕÄÅÔ ÏÔÐÒÁ×ÌÑÔØ ÓËÒÉÐÔÕ ÎÁ www.usethesource.com ÔÒÉ ÞÉÓÌÁ: bc (ÞÉÓÌÏ ×ÁÛÉÈ ×£ÄÅÒ), mc (ÓËÏÌØËÏ ÐÉÓÅÍ ÂÙÌÏ ËÌÁÓÓÉÆÉÃÉÒÏ×ÁÎÏ Ó ÐÏÍÏÝØÀ POPFile) É ec (ÞÉÓÌÏ ÏÛÉÂÏË ËÌÁÓÓÉÆÉËÁÃÉÉ). üÔÉ ÚÎÁÞÅÎÉÑ ÓÏÈÒÁÎÑÔÓÑ × ÆÁÊÌÅ É Á×ÔÏÒ ÂÕÄÅÔ ÉÓÐÏÌØÚÏ×ÁÔØ ÉÈ ÄÌÑ ÏÐÕÂÌÉËÏ×ÁÎÉÑ ÓÔÁÔÉÓÔÉÞÅÓËÉÈ ÄÁÎÎÙÈ Ï ÔÏÍ, ËÁË ÉÓÐÏÌØÚÕÅÔÓÑ POPFile É ÎÁÓËÏÌØËÏ ÈÏÒÏÛÏ ÏÎ ÒÁÂÏÔÁÅÔ. ÷ÅÂ-ÓÅÒ×ÅÒ Á×ÔÏÒÁ ÈÒÁÎÉÔ ÌÏÇÉ × ÔÅÞÅÎÉÅ 5 ÄÎÅÊ, ÐÏÓÌÅ ÞÅÇÏ ÏÎÉ ÕÄÁÌÑÀÔÓÑ, Á×ÔÏÒ ÎÅ ÚÁÎÉÍÁÅÔÓÑ ÓÏÐÏÓÔÁ×ÌÅÎÉÅÍ ÓÔÁÔÉÓÔÉËÉ É IP-ÁÄÒÅÓÏ× ÐÏÌØÚÏ×ÁÔÅÌÅÊ.) ! Security_ExplainUpdate (åÓÌÉ ×ËÌÀÞÅÎÏ, POPFile ÒÁÚ × ÄÅÎØ ÂÕÄÅÔ ÏÔÐÒÁ×ÌÑÔØ ÓËÒÉÐÔÕ ÎÁ www.usethesource.com ÔÒÉ ÞÉÓÌÁ: ma (ÓÔÁÒÛÉÊ ÎÏÍÅÒ ×ÅÒÓÉÉ ÕÓÔÁÎÏ×ÌÅÎÎÏÇÏ POPFile), mi (ÍÌÁÄÛÉÊ ÎÏÍÅÒ ×ÅÒÓÉÉ) É bn (ÎÏÍÅÒ ÓÂÏÒËÉ). POPFile ÐÏÌÕÞÉÔ ÏÔ×ÅÔ ÏÔ ÓÅÒ×ÅÒÁ × ×ÉÄÅ ËÁÒÔÉÎËÉ, ËÏÔÏÒÁÑ ÐÏÑ×ÉÔÓÑ ××ÅÒÈÕ ÓÔÒÁÎÉÃÙ, ÅÓÌÉ ÄÏÓÔÕÐÎÁ ÎÏ×ÁÑ ×ÅÒÓÉÑ. ÷ÅÂ-ÓÅÒ×ÅÒ Á×ÔÏÒÁ ÈÒÁÎÉÔ ÌÏÇÉ × ÔÅÞÅÎÉÅ 5 ÄÎÅÊ, ÐÏÓÌÅ ÞÅÇÏ ÏÎÉ ÕÄÁÌÑÀÔÓÑ, Á×ÔÏÒ ÎÅ ÚÁÎÉÍÁÅÔÓÑ ÓÏÐÏÓÔÁ×ÌÅÎÉÅÍ ÚÁÐÒÏÓÏ× Ï ÏÂÎÏ×ÌÅÎÉÉ É IP-ÁÄÒÅÓÏ× ÐÏÌØÚÏ×ÁÔÅÌÅÊ.) Security_PasswordTitle ðÁÒÏÌØ ÄÌÑ ×ÅÂ-ÉÎÔÅÒÆÅÊÓÁ Security_Password ðÁÒÏÌØ --- 164,169 ---- Security_Stealth òÅÖÉÍ ÎÅ×ÉÄÉÍÏÓÔÉ/îÁÓÔÒÏÊËÁ ÓÅÒ×ÅÒÁ Security_NoStealthMode îÅÔ (ÒÅÖÉÍ ÎÅ×ÉÄÉÍÏÓÔÉ) ! Security_ExplainStats (åÓÌÉ ×ËÌÀÞÅÎÏ, POPFile ÒÁÚ × ÄÅÎØ ÂÕÄÅÔ ÏÔÐÒÁ×ÌÑÔØ ÓËÒÉÐÔÕ ÎÁ getpopfile.org ÔÒÉ ÞÉÓÌÁ: bc (ÞÉÓÌÏ ×ÁÛÉÈ ×£ÄÅÒ), mc (ÓËÏÌØËÏ ÐÉÓÅÍ ÂÙÌÏ ËÌÁÓÓÉÆÉÃÉÒÏ×ÁÎÏ Ó ÐÏÍÏÝØÀ POPFile) É ec (ÞÉÓÌÏ ÏÛÉÂÏË ËÌÁÓÓÉÆÉËÁÃÉÉ). üÔÉ ÚÎÁÞÅÎÉÑ ÓÏÈÒÁÎÑÔÓÑ × ÆÁÊÌÅ É Á×ÔÏÒ ÂÕÄÅÔ ÉÓÐÏÌØÚÏ×ÁÔØ ÉÈ ÄÌÑ ÏÐÕÂÌÉËÏ×ÁÎÉÑ ÓÔÁÔÉÓÔÉÞÅÓËÉÈ ÄÁÎÎÙÈ Ï ÔÏÍ, ËÁË ÉÓÐÏÌØÚÕÅÔÓÑ POPFile É ÎÁÓËÏÌØËÏ ÈÏÒÏÛÏ ÏÎ ÒÁÂÏÔÁÅÔ. ÷ÅÂ-ÓÅÒ×ÅÒ Á×ÔÏÒÁ ÈÒÁÎÉÔ ÌÏÇÉ × ÔÅÞÅÎÉÅ 5 ÄÎÅÊ, ÐÏÓÌÅ ÞÅÇÏ ÏÎÉ ÕÄÁÌÑÀÔÓÑ, Á×ÔÏÒ ÎÅ ÚÁÎÉÍÁÅÔÓÑ ÓÏÐÏÓÔÁ×ÌÅÎÉÅÍ ÓÔÁÔÉÓÔÉËÉ É IP-ÁÄÒÅÓÏ× ÐÏÌØÚÏ×ÁÔÅÌÅÊ.) ! Security_ExplainUpdate (åÓÌÉ ×ËÌÀÞÅÎÏ, POPFile ÒÁÚ × ÄÅÎØ ÂÕÄÅÔ ÏÔÐÒÁ×ÌÑÔØ ÓËÒÉÐÔÕ ÎÁ getpopfile.org ÔÒÉ ÞÉÓÌÁ: ma (ÓÔÁÒÛÉÊ ÎÏÍÅÒ ×ÅÒÓÉÉ ÕÓÔÁÎÏ×ÌÅÎÎÏÇÏ POPFile), mi (ÍÌÁÄÛÉÊ ÎÏÍÅÒ ×ÅÒÓÉÉ) É bn (ÎÏÍÅÒ ÓÂÏÒËÉ). POPFile ÐÏÌÕÞÉÔ ÏÔ×ÅÔ ÏÔ ÓÅÒ×ÅÒÁ × ×ÉÄÅ ËÁÒÔÉÎËÉ, ËÏÔÏÒÁÑ ÐÏÑ×ÉÔÓÑ ××ÅÒÈÕ ÓÔÒÁÎÉÃÙ, ÅÓÌÉ ÄÏÓÔÕÐÎÁ ÎÏ×ÁÑ ×ÅÒÓÉÑ. ÷ÅÂ-ÓÅÒ×ÅÒ Á×ÔÏÒÁ ÈÒÁÎÉÔ ÌÏÇÉ × ÔÅÞÅÎÉÅ 5 ÄÎÅÊ, ÐÏÓÌÅ ÞÅÇÏ ÏÎÉ ÕÄÁÌÑÀÔÓÑ, Á×ÔÏÒ ÎÅ ÚÁÎÉÍÁÅÔÓÑ ÓÏÐÏÓÔÁ×ÌÅÎÉÅÍ ÚÁÐÒÏÓÏ× Ï ÏÂÎÏ×ÌÅÎÉÉ É IP-ÁÄÒÅÓÏ× ÐÏÌØÚÏ×ÁÔÅÌÅÊ.) Security_PasswordTitle ðÁÒÏÌØ ÄÌÑ ×ÅÂ-ÉÎÔÅÒÆÅÊÓÁ Security_Password ðÁÒÏÌØ Index: Turkce.msg =================================================================== RCS file: /cvsroot/popfile/engine/languages/Turkce.msg,v retrieving revision 1.3.6.5 retrieving revision 1.3.6.6 diff -C2 -d -r1.3.6.5 -r1.3.6.6 *** Turkce.msg 5 Apr 2008 11:55:15 -0000 1.3.6.5 --- Turkce.msg 7 Apr 2008 15:26:17 -0000 1.3.6.6 *************** *** 232,237 **** Security_NoStealthMode Hayýr (Gizli Mod) Security_StealthMode (Gizli Mod) ! Security_ExplainStats (Bu ayar açýk olduðunda, POPFile günde bir kez olmak üzere þu deðerleri www.usethesource.com içindeki bir koda gönderir; bc (sahip olduðunuz toplam kategori sayýsý), mc (POPFile'ýn sýnýflandýrdýðý toplam mesaj sayýsý) ve ec (toplam sýnýflandýrma hatasý sayýsý). Bu bilgiler bir dosyada saklanýr, bunlarý kullanýcýlarýn POPFile'ý nasýl kullandýðýný ve ne kadar iyi çalýþtýðý hakkýnda istatistikler yayýnlamak amacýyla kullanacaðým. Web sunucum günlük dosyalarýný yaklaþýk 5 gün saklar ve siler; istatistikler ve IP adresleri arasýnda herhangi bir baðlantý biriktirmemekteyim.) ! Security_ExplainUpdate (Bu ayar açýk olduðunda, POPFile günde bir kez olmak üzere þu üç deðeri www.usethesource.com içindeki bir koda gönderir; ma (yüklediðiniz POPFile'ýn büyük sürüm numarasý), mi (yüklediðiniz POPFile'ýn küçük sürüm numarasý) ve bn (yüklediðiniz POPFile'ýn yapý [build] numarasý). Yeni bir sürüm bulunduðunda POPFile, sayfanýn üstünde gösterilen, grafik biçiminde bir cevap alýr. Web sunucum günlük dosyalarýný yaklaþýk 5 gün saklar ve siler; güncelleme kontrolleri ve IP adresleri arasýnda herhangi bir baðlantý biriktirmemekteyim.) Security_PasswordTitle Kullanýcý Arayüzü Parolasý Security_Password Parola --- 232,237 ---- Security_NoStealthMode Hayýr (Gizli Mod) Security_StealthMode (Gizli Mod) ! Security_ExplainStats (Bu ayar açýk olduðunda, POPFile günde bir kez olmak üzere þu deðerleri getpopfile.org içindeki bir koda gönderir; bc (sahip olduðunuz toplam kategori sayýsý), mc (POPFile'ýn sýnýflandýrdýðý toplam mesaj sayýsý) ve ec (toplam sýnýflandýrma hatasý sayýsý). Bu bilgiler bir dosyada saklanýr, bunlarý kullanýcýlarýn POPFile'ý nasýl kullandýðýný ve ne kadar iyi çalýþtýðý hakkýnda istatistikler yayýnlamak amacýyla kullanacaðým. Web sunucum günlük dosyalarýný yaklaþýk 5 gün saklar ve siler; istatistikler ve IP adresleri arasýnda herhangi bir baðlantý biriktirmemekteyim.) ! Security_ExplainUpdate (Bu ayar açýk olduðunda, POPFile günde bir kez olmak üzere þu üç deðeri getpopfile.org içindeki bir koda gönderir; ma (yüklediðiniz POPFile'ýn büyük sürüm numarasý), mi (yüklediðiniz POPFile'ýn küçük sürüm numarasý) ve bn (yüklediðiniz POPFile'ýn yapý [build] numarasý). Yeni bir sürüm bulunduðunda POPFile, sayfanýn üstünde gösterilen, grafik biçiminde bir cevap alýr. Web sunucum günlük dosyalarýný yaklaþýk 5 gün saklar ve siler; güncelleme kontrolleri ve IP adresleri arasýnda herhangi bir baðlantý biriktirmemekteyim.) Security_PasswordTitle Kullanýcý Arayüzü Parolasý Security_Password Parola Index: English.msg =================================================================== RCS file: /cvsroot/popfile/engine/languages/English.msg,v retrieving revision 1.75.6.12 retrieving revision 1.75.6.13 diff -C2 -d -r1.75.6.12 -r1.75.6.13 *** English.msg 5 Apr 2008 12:22:02 -0000 1.75.6.12 --- English.msg 7 Apr 2008 15:26:15 -0000 1.75.6.13 *************** *** 233,238 **** Security_NoStealthMode No (Stealth Mode) Security_StealthMode (Stealth Mode) ! Security_ExplainStats (With this turned on POPFile sends once per day the following three values to a script on www.usethesource.com: bc (the total number of buckets that you have), mc (the total number of messages that POPFile has classified) and ec (the total number of classification errors). These get stored in a file and I will use this to publish some statistics about how people use POPFile and how well it works. My web server keeps its log files for about 5 days and then they get deleted; I am not storing any connection between the statistics and individual IP addresses.) ! Security_ExplainUpdate (With this turned on POPFile sends once per day the following three values to a script on www.usethesource.com: ma (the major version number of your installed POPFile), mi (the minor version number of your installed POPFile) and bn (the build number of your installed POPFile). POPFile receives a response in the form of a graphic that appears at the top of the page if a new version is available. My web server keeps its log files for about 5 days and then they get deleted; I am not storing any connection between the update checks and individual IP addresses.) Security_PasswordTitle User Interface Password Security_Password Password --- 233,238 ---- Security_NoStealthMode No (Stealth Mode) Security_StealthMode (Stealth Mode) ! Security_ExplainStats (With this turned on POPFile sends once per day the following three values to a script on getpopfile.org: bc (the total number of buckets that you have), mc (the total number of messages that POPFile has classified) and ec (the total number of classification errors). These get stored in a file and I will use this to publish some statistics about how people use POPFile and how well it works. My web server keeps its log files for about 5 days and then they get deleted; I am not storing any connection between the statistics and individual IP addresses.) ! Security_ExplainUpdate (With this turned on POPFile sends once per day the following three values to a script on getpopfile.org: ma (the major version number of your installed POPFile), mi (the minor version number of your installed POPFile) and bn (the build number of your installed POPFile). POPFile receives a response in the form of a graphic that appears at the top of the page if a new version is available. My web server keeps its log files for about 5 days and then they get deleted; I am not storing any connection between the update checks and individual IP addresses.) Security_PasswordTitle User Interface Password Security_Password Password Index: Chinese-Simplified.msg =================================================================== RCS file: /cvsroot/popfile/engine/languages/Chinese-Simplified.msg,v retrieving revision 1.6.4.6 retrieving revision 1.6.4.7 diff -C2 -d -r1.6.4.6 -r1.6.4.7 *** Chinese-Simplified.msg 5 Apr 2008 11:55:15 -0000 1.6.4.6 --- Chinese-Simplified.msg 7 Apr 2008 15:26:15 -0000 1.6.4.7 *************** *** 234,239 **** Security_NoStealthMode å¦ (鬼鬼ç¥ç¥æ¨¡å¼) Security_StealthMode (鬼鬼ç¥ç¥æ¨¡å¼) ! Security_ExplainStats (è¿ä¸ªé项å¼å¯å, POPFile æ¯å¤©é½ä¼ä¼ é䏿¬¡ä¸åä¸ä¸ªæ°å¼å° www.usethesource.com çä¸ä¸ªèæ¬: bc (ä½ çé®çæ°é), mc (被 POPFile åç±»è¿çé®ä»¶è®¯æ¯æ»æ°) å ec (åç±»éè¯¯çæ»æ°). è¿äºæ°å¼ä¼è¢«å¨åå°ä¸ä¸ªæ¡£æ¡é, ç¶åä¼è¢«æç¨æ¥åå¸ä¸äºå ³äºäººä»¬ä½¿ç¨ POPFile çæ åµè·å ¶ææçç»è®¡æ°æ®. æçç½é¡µæå¡å¨ä¼ä¿çå ¶æ¬èº«çæ¥å¿æ¡£çº¦ 5 天, ç¶åå°±ä¼å 以å é¤; æä¸ä¼å¨åä»»ä½ç»è®¡ä¸åç¬ IP å°åé´çå ³èæ§èµ·æ¥.) ! Security_ExplainUpdate (è¿ä¸ªé项å¼å¯å, POPFile æ¯å¤©é½ä¼ä¼ é䏿¬¡ä¸åä¸ä¸ªæ°å¼å° www.usethesource.com çä¸ä¸ªèæ¬: ma (ä½ ç POPFile ç主è¦çæ¬ç¼å·), mi (ä½ ç POPFile çæ¬¡è¦çæ¬ç¼å·) å bn (ä½ ç POPFile ç建å·). æ°çæ¨åºæ¶, POPFile 伿¶å°ä¸ä»½å¾å½¢ååº, 并䏿¾ç¤ºå¨ç»é¢é¡¶ç«¯. æçç½é¡µæå¡å¨ä¼ä¿çå ¶æ¬èº«çæ¥å¿æ¡£çº¦ 5 天, ç¶åå°±ä¼å 以å é¤; æä¸ä¼å¨å任使´æ°æ£æ¥ä¸åç¬ IP å°åé´çå ³èæ§èµ·æ¥.) Security_PasswordTitle 使ç¨è æ¥å£å£ä»¤ Security_Password å£ä»¤ --- 234,239 ---- Security_NoStealthMode å¦ (鬼鬼ç¥ç¥æ¨¡å¼) Security_StealthMode (鬼鬼ç¥ç¥æ¨¡å¼) ! Security_ExplainStats (è¿ä¸ªé项å¼å¯å, POPFile æ¯å¤©é½ä¼ä¼ é䏿¬¡ä¸åä¸ä¸ªæ°å¼å° getpopfile.org çä¸ä¸ªèæ¬: bc (ä½ çé®çæ°é), mc (被 POPFile åç±»è¿çé®ä»¶è®¯æ¯æ»æ°) å ec (åç±»éè¯¯çæ»æ°). è¿äºæ°å¼ä¼è¢«å¨åå°ä¸ä¸ªæ¡£æ¡é, ç¶åä¼è¢«æç¨æ¥åå¸ä¸äºå ³äºäººä»¬ä½¿ç¨ POPFile çæ åµè·å ¶ææçç»è®¡æ°æ®. æçç½é¡µæå¡å¨ä¼ä¿çå ¶æ¬èº«çæ¥å¿æ¡£çº¦ 5 天, ç¶åå°±ä¼å 以å é¤; æä¸ä¼å¨åä»»ä½ç»è®¡ä¸åç¬ IP å°åé´çå ³èæ§èµ·æ¥.) ! Security_ExplainUpdate (è¿ä¸ªé项å¼å¯å, POPFile æ¯å¤©é½ä¼ä¼ é䏿¬¡ä¸åä¸ä¸ªæ°å¼å° getpopfile.org çä¸ä¸ªèæ¬: ma (ä½ ç POPFile ç主è¦çæ¬ç¼å·), mi (ä½ ç POPFile çæ¬¡è¦çæ¬ç¼å·) å bn (ä½ ç POPFile ç建å·). æ°çæ¨åºæ¶, POPFile 伿¶å°ä¸ä»½å¾å½¢ååº, 并䏿¾ç¤ºå¨ç»é¢é¡¶ç«¯. æçç½é¡µæå¡å¨ä¼ä¿çå ¶æ¬èº«çæ¥å¿æ¡£çº¦ 5 天, ç¶åå°±ä¼å 以å é¤; æä¸ä¼å¨å任使´æ°æ£æ¥ä¸åç¬ IP å°åé´çå ³èæ§èµ·æ¥.) Security_PasswordTitle 使ç¨è æ¥å£å£ä»¤ Security_Password å£ä»¤ Index: Hebrew.msg =================================================================== RCS file: /cvsroot/popfile/engine/languages/Hebrew.msg,v retrieving revision 1.2.8.3 retrieving revision 1.2.8.4 diff -C2 -d -r1.2.8.3 -r1.2.8.4 *** Hebrew.msg 31 Jan 2007 11:33:47 -0000 1.2.8.3 --- Hebrew.msg 7 Apr 2008 15:26:15 -0000 1.2.8.4 *************** *** 183,188 **** Security_Stealth ×רש××ת ××××ר ×××ש××× ××ר×× Security_NoStealthMode ×× (פע××× ×ס×××) ! Security_ExplainStats ×ש×פשר×ת ×× × ××רת, POPFile ×ת××רת ××ת ×××× ×שרת www.usethesource.com ×××סרת 3 פר×××: bc (×ספר ××צ××ר×× ×©×ש ××), mc (×ספר ×××××¢×ת ש×ת××× × ×¡×××××), ac (×ספר ××¢×××ת ×ס×××× ×©×ת××× × ××צע×). × ×ª×× ×× ××× × ×©×ר×× ××§×××¥, ××× × ×שת×ש ××× ×פ×רס×× ×¡×××ס×××§× ××××× ×ת ×¢× ××× ×× ×©×× ×שת×ש×× ×ת××× × ×ר×ת ×××××§ ש××. ××§×צ×× × ×©×ר×× ×5 ×××× ×שרת ×× ×××§×× ×××ר ×××. ××××¢ ××קשר ××× ×ת××ת × IP ש×× ×××× ×ס×××ס×××§× ××× × × ×©×ר ×× ×פ×רס×. ! Security_ExplainUpdate ×ש×פשר×ת ×× × ××רת, POPFile ×ת××רת ××ת ×××× ×שרת www.usethesource.com ×××סרת 3 פר×××: ma (×ספר ××××¨×¡× ×ר××©× ×©× POPFile ××××ª×§× ×ª ×××ש××), ma (×ספר ××××¨×¡× ×××©× × ×©× POPFile ××××ª×§× ×ª ×××ש××), bn (××רסת ××§××פ××צ×× ×©× POPFile ××××ª×§× ×ª ×××ש××).POPFile תק×× ×ש×× ××שרת ×צ×רת ×××§×× ××¨×¤× ××ר×× ×× ×§×××ת ×××¨×¡× ×××©× ×©×ª××× ××תק××. 3 ×× ×ª×× ×× × ×©×ר×× ××§×××¥ ×שרת. ××§×צ×× × ×©×ר×× ×5 ×××× ×שרת ×× ×××§×× ×××ר ×××. ××××¢ ××קשר ××× ×ת××ת × IP ש×× ×××× ×©××שת ×פר×××× ××× × × ×©×ר ×× ×פ×רס×. Security_PasswordTitle ס×ס×× ×××שק ××שת×ש Security_Password ס×ס×× --- 183,188 ---- Security_Stealth ×רש××ת ××××ר ×××ש××× ××ר×× Security_NoStealthMode ×× (פע××× ×ס×××) ! Security_ExplainStats ×ש×פשר×ת ×× × ××רת, POPFile ×ת××רת ××ת ×××× ×שרת getpopfile.org ×××סרת 3 פר×××: bc (×ספר ××צ××ר×× ×©×ש ××), mc (×ספר ×××××¢×ת ש×ת××× × ×¡×××××), ac (×ספר ××¢×××ת ×ס×××× ×©×ת××× × ××צע×). × ×ª×× ×× ××× × ×©×ר×× ××§×××¥, ××× × ×שת×ש ××× ×פ×רס×× ×¡×××ס×××§× ××××× ×ת ×¢× ××× ×× ×©×× ×שת×ש×× ×ת××× × ×ר×ת ×××××§ ש××. ××§×צ×× × ×©×ר×× ×5 ×××× ×שרת ×× ×××§×× ×××ר ×××. ××××¢ ××קשר ××× ×ת××ת × IP ש×× ×××× ×ס×××ס×××§× ××× × × ×©×ר ×× ×פ×רס×. ! Security_ExplainUpdate ×ש×פשר×ת ×× × ××רת, POPFile ×ת××רת ××ת ×××× ×שרת getpopfile.org ×××סרת 3 פר×××: ma (×ספר ××××¨×¡× ×ר××©× ×©× POPFile ××××ª×§× ×ª ×××ש××), ma (×ספר ××××¨×¡× ×××©× × ×©× POPFile ××××ª×§× ×ª ×××ש××), bn (××רסת ××§××פ××צ×× ×©× POPFile ××××ª×§× ×ª ×××ש××).POPFile תק×× ×ש×× ××שרת ×צ×רת ×××§×× ××¨×¤× ××ר×× ×× ×§×××ת ×××¨×¡× ×××©× ×©×ª××× ××תק××. 3 ×× ×ª×× ×× × ×©×ר×× ××§×××¥ ×שרת. ××§×צ×× × ×©×ר×× ×5 ×××× ×שרת ×× ×××§×× ×××ר ×××. ××××¢ ××קשר ××× ×ת××ת × IP ש×× ×××× ×©××שת ×פר×××× ××× × × ×©×ר ×× ×פ×רס×. Security_PasswordTitle ס×ס×× ×××שק ××שת×ש Security_Password ס×ס×× Index: Nihongo.msg =================================================================== RCS file: /cvsroot/popfile/engine/languages/Nihongo.msg,v retrieving revision 1.11.6.14 retrieving revision 1.11.6.15 diff -C2 -d -r1.11.6.14 -r1.11.6.15 *** Nihongo.msg 5 Apr 2008 12:22:02 -0000 1.11.6.14 --- Nihongo.msg 7 Apr 2008 15:26:16 -0000 1.11.6.15 *************** *** 63,67 **** Delete ºï½ü Create ºîÀ® ! To °¸¤ÆÀè Total ¹ç·× Rename ̾Á°Êѹ¹ --- 63,67 ---- Delete ºï½ü Create ºîÀ® ! To °¸Àè Total ¹ç·× Rename ̾Á°Êѹ¹ *************** *** 74,78 **** Update ¹¹¿· Refresh ºÇ¿·¤Î¾õÂ֤˹¹¿· ! FAQ FAQ ½é¿´¼Ô¡¦½é³Ø¼Ô¸þ¤±¤ÎQ&A½¸ ID ID Date Æü»þ --- 74,78 ---- Update ¹¹¿· Refresh ºÇ¿·¤Î¾õÂ֤˹¹¿· ! FAQ FAQ ½é¿´¼Ô¡¦½é³Ø¼Ô¸þ¤±¤Î Q&A ½¸ ID ID Date Æü»þ *************** *** 115,126 **** Footer_Wiki ¥É¥¥å¥á¥ó¥È ! Configuration_Error1 ¶èÀÚ¤êʸ»ú¤Ï1ʸ»ú¤À¤±¤Ë¤·¤Æ¤¯¤À¤µ¤¤¡£ ! Configuration_Error2 ¥æ¡¼¥¶¡¼¥¤¥ó¥¿¡¼¥Õ¥§¡¼¥¹Íѥݡ¼¥ÈÈÖ¹æ¤Ï1¤«¤é65535¤Þ¤Ç¤Ë¤·¤Æ¤¯¤À¤µ¤¤¡£ ! Configuration_Error3 POP3 ¥Ý¡¼¥ÈÈÖ¹æ¤Ï1¤«¤é65535¤Þ¤Ç¤Ë¤·¤Æ¤¯¤À¤µ¤¤¡£ ! Configuration_Error4 ¥Ú¡¼¥¸¥µ¥¤¥º¤Ï1¤«¤é1000¤Þ¤Ç¤Ë¤·¤Æ¤¯¤À¤µ¤¤¡£ ! Configuration_Error5 ÍúÎò¤ò»Ä¤¹Æü¿ô¤Ï1¤«¤é366¤Þ¤Ç¤Ë¤·¤Æ¤¯¤À¤µ¤¤¡£ ! Configuration_Error6 TCP ¥¿¥¤¥à¥¢¥¦¥È¤Ï10¤«¤é300¤Ë¤·¤Æ¤¯¤À¤µ¤¤¡£ ! Configuration_Error7 XML RPC ¥Ý¡¼¥ÈÈÖ¹æ¤Ï1¤«¤é65535¤Þ¤Ç¤Ë¤·¤Æ¤¯¤À¤µ¤¤¡£ ! Configuration_Error8 SOCKS V ¥×¥í¥¥·¤Î¥Ý¡¼¥ÈÈÖ¹æ¤Ï1¤«¤é65535¤Þ¤Ç¤Ë¤·¤Æ¤¯¤À¤µ¤¤¡£ Configuration_POP3Port POP3 ¥Ý¡¼¥ÈÈÖ¹æ Configuration_POP3Update POP3 ¥Ý¡¼¥ÈÈÖ¹æ¤ò %s ¤ËÊѹ¹¤·¤Þ¤·¤¿¡£¤³¤ÎÊѹ¹¤Ï POPFile ¤òºÆµ¯Æ°¤¹¤ë¤Þ¤Ç͸ú¤Ë¤Ê¤ê¤Þ¤»¤ó¡£ --- 115,126 ---- Footer_Wiki ¥É¥¥å¥á¥ó¥È ! Configuration_Error1 ¶èÀÚ¤êʸ»ú¤Ï 1 ʸ»ú¤À¤±¤Ë¤·¤Æ¤¯¤À¤µ¤¤¡£ ! Configuration_Error2 ¥æ¡¼¥¶¡¼¥¤¥ó¥¿¡¼¥Õ¥§¡¼¥¹Íѥݡ¼¥ÈÈÖ¹æ¤Ï 1 ¤«¤é 65535 ¤Þ¤Ç¤Ë¤·¤Æ¤¯¤À¤µ¤¤¡£ ! Configuration_Error3 POP3 ¥Ý¡¼¥ÈÈÖ¹æ¤Ï 1 ¤«¤é 65535 ¤Þ¤Ç¤Ë¤·¤Æ¤¯¤À¤µ¤¤¡£ ! Configuration_Error4 ¥Ú¡¼¥¸¥µ¥¤¥º¤Ï 1 ¤«¤é 1000 ¤Þ¤Ç¤Ë¤·¤Æ¤¯¤À¤µ¤¤¡£ ! Configuration_Error5 ÍúÎò¤ò»Ä¤¹Æü¿ô¤Ï 1 ¤«¤é 366 ¤Þ¤Ç¤Ë¤·¤Æ¤¯¤À¤µ¤¤¡£ ! Configuration_Error6 TCP ¥¿¥¤¥à¥¢¥¦¥È¤Ï 10 ¤«¤é 300 ¤Ë¤·¤Æ¤¯¤À¤µ¤¤¡£ ! Configuration_Error7 XML RPC ¥Ý¡¼¥ÈÈÖ¹æ¤Ï1¤«¤é 65535 ¤Þ¤Ç¤Ë¤·¤Æ¤¯¤À¤µ¤¤¡£ ! Configuration_Error8 SOCKS V ¥×¥í¥¥·¤Î¥Ý¡¼¥ÈÈÖ¹æ¤Ï 1 ¤«¤é 65535 ¤Þ¤Ç¤Ë¤·¤Æ¤¯¤À¤µ¤¤¡£ Configuration_POP3Port POP3 ¥Ý¡¼¥ÈÈÖ¹æ Configuration_POP3Update POP3 ¥Ý¡¼¥ÈÈÖ¹æ¤ò %s ¤ËÊѹ¹¤·¤Þ¤·¤¿¡£¤³¤ÎÊѹ¹¤Ï POPFile ¤òºÆµ¯Æ°¤¹¤ë¤Þ¤Ç͸ú¤Ë¤Ê¤ê¤Þ¤»¤ó¡£ *************** *** 134,145 **** Configuration_SMTPFork SMTP Ʊ»þÀܳ¤Îµö²Ä Configuration_NNTPFork NNTP Ʊ»þÀܳ¤Îµö²Ä ! Configuration_POP3Separator POP3 ¥Û¥¹¥È̾¡¢¥Ý¡¼¥ÈÈֹ桢¥æ¡¼¥¶Ì¾¤Î¶èÀÚ¤êʸ»ú ! Configuration_NNTPSeparator NNTP ¥Û¥¹¥È̾¡¢¥Ý¡¼¥ÈÈֹ桢¥æ¡¼¥¶Ì¾¤Î¶èÀÚ¤êʸ»ú Configuration_POP3SepUpdate POP3 ¶èÀÚ¤êʸ»ú¤ò %s ¤ËÊѹ¹¤·¤Þ¤·¤¿¡£ Configuration_NNTPSepUpdate NNTP ¶èÀÚ¤êʸ»ú¤ò %s ¤ËÊѹ¹¤·¤Þ¤·¤¿¡£ Configuration_UI ¥æ¡¼¥¶¡¼¥¤¥ó¥¿¡¼¥Õ¥§¡¼¥¹Íѥݡ¼¥ÈÈÖ¹æ Configuration_UIUpdate ¥æ¡¼¥¶¡¼¥¤¥ó¥¿¡¼¥Õ¥§¡¼¥¹Íѥݡ¼¥ÈÈÖ¹æ¤ò %s ¤ËÊѹ¹¤·¤Þ¤·¤¿¡£¤³¤ÎÊѹ¹¤Ï POPFile ¤òºÆµ¯Æ°¤¹¤ë¤Þ¤Ç͸ú¤Ë¤Ê¤ê¤Þ¤»¤ó¡£ ! Configuration_History 1¥Ú¡¼¥¸¤Ëɽ¼¨¤¹¤ë¥á¡¼¥ë¤Î¿ô ! Configuration_HistoryUpdate 1¥Ú¡¼¥¸¤Ëɽ¼¨¤¹¤ë¥á¡¼¥ë¤Î¿ô¤ò %s ¤ËÊѹ¹¤·¤Þ¤·¤¿¡£ Configuration_Days ÍúÎò¤ò»Ä¤¹Æü¿ô Configuration_DaysUpdate ÍúÎò¤ò»Ä¤¹Æü¿ô¤ò %s ¤ËÊѹ¹¤·¤Þ¤·¤¿¡£ --- 134,145 ---- Configuration_SMTPFork SMTP Ʊ»þÀܳ¤Îµö²Ä Configuration_NNTPFork NNTP Ʊ»þÀܳ¤Îµö²Ä ! Configuration_POP3Separator POP3 ¥Û¥¹¥È̾¡¢¥Ý¡¼¥ÈÈֹ桢¥æ¡¼¥¶¡¼Ì¾¤Î¶èÀÚ¤êʸ»ú ! Configuration_NNTPSeparator NNTP ¥Û¥¹¥È̾¡¢¥Ý¡¼¥ÈÈֹ桢¥æ¡¼¥¶¡¼Ì¾¤Î¶èÀÚ¤êʸ»ú Configuration_POP3SepUpdate POP3 ¶èÀÚ¤êʸ»ú¤ò %s ¤ËÊѹ¹¤·¤Þ¤·¤¿¡£ Configuration_NNTPSepUpdate NNTP ¶èÀÚ¤êʸ»ú¤ò %s ¤ËÊѹ¹¤·¤Þ¤·¤¿¡£ Configuration_UI ¥æ¡¼¥¶¡¼¥¤¥ó¥¿¡¼¥Õ¥§¡¼¥¹Íѥݡ¼¥ÈÈÖ¹æ Configuration_UIUpdate ¥æ¡¼¥¶¡¼¥¤¥ó¥¿¡¼¥Õ¥§¡¼¥¹Íѥݡ¼¥ÈÈÖ¹æ¤ò %s ¤ËÊѹ¹¤·¤Þ¤·¤¿¡£¤³¤ÎÊѹ¹¤Ï POPFile ¤òºÆµ¯Æ°¤¹¤ë¤Þ¤Ç͸ú¤Ë¤Ê¤ê¤Þ¤»¤ó¡£ ! Configuration_History 1 ¥Ú¡¼¥¸¤Ëɽ¼¨¤¹¤ë¥á¡¼¥ë¤Î¿ô ! Configuration_HistoryUpdate 1 ¥Ú¡¼¥¸¤Ëɽ¼¨¤¹¤ë¥á¡¼¥ë¤Î¿ô¤ò %s ¤ËÊѹ¹¤·¤Þ¤·¤¿¡£ Configuration_Days ÍúÎò¤ò»Ä¤¹Æü¿ô Configuration_DaysUpdate ÍúÎò¤ò»Ä¤¹Æü¿ô¤ò %s ¤ËÊѹ¹¤·¤Þ¤·¤¿¡£ *************** *** 168,175 **** Configuration_TinySkins ºÇ¾®¥¹¥¥ó Configuration_CurrentLogFile <¸½ºß¤Î¥í¥°¥Õ¥¡¥¤¥ë> ! Configuration_SOCKSServer SOCKS V ¥×¥í¥¥· ¥µ¡¼¥Ð Configuration_SOCKSPort SOCKS V ¥×¥í¥¥· ¥Ý¡¼¥ÈÈÖ¹æ Configuration_SOCKSPortUpdate SOCKS V ¥×¥í¥¥·¤Î¥Ý¡¼¥ÈÈÖ¹æ¤ò %s ¤ËÊѹ¹¤·¤Þ¤·¤¿¡£ ! Configuration_SOCKSServerUpdate SOCKS V ¥×¥í¥¥·¤Î¥µ¡¼¥Ð¤ò %s ¤ËÊѹ¹¤·¤Þ¤·¤¿¡£ Configuration_Fields ÍúÎò¥¿¥Ö¤Ëɽ¼¨¤¹¤ë¹àÌÜ --- 168,175 ---- Configuration_TinySkins ºÇ¾®¥¹¥¥ó Configuration_CurrentLogFile <¸½ºß¤Î¥í¥°¥Õ¥¡¥¤¥ë> ! Configuration_SOCKSServer SOCKS V ¥×¥í¥¥· ¥µ¡¼¥Ð¡¼ Configuration_SOCKSPort SOCKS V ¥×¥í¥¥· ¥Ý¡¼¥ÈÈÖ¹æ Configuration_SOCKSPortUpdate SOCKS V ¥×¥í¥¥·¤Î¥Ý¡¼¥ÈÈÖ¹æ¤ò %s ¤ËÊѹ¹¤·¤Þ¤·¤¿¡£ ! Configuration_SOCKSServerUpdate SOCKS V ¥×¥í¥¥·¤Î¥µ¡¼¥Ð¡¼¤ò %s ¤ËÊѹ¹¤·¤Þ¤·¤¿¡£ Configuration_Fields ÍúÎò¥¿¥Ö¤Ëɽ¼¨¤¹¤ë¹àÌÜ *************** *** 189,193 **** Advanced_ConfigFile ÀßÄê¥Õ¥¡¥¤¥ë: ! History_Filter (<font color="%s">%s </font>¥Ð¥±¥Ä¤Î¤ß¤òɽ¼¨) History_FilterBy ¥Õ¥£¥ë¥¿¥ê¥ó¥° History_Search (º¹½Ð¿Í/·ï̾ ¤ò¸¡º÷: %s) --- 189,193 ---- Advanced_ConfigFile ÀßÄê¥Õ¥¡¥¤¥ë: ! History_Filter (<font color="%s">%s</font> ¥Ð¥±¥Ä¤Î¤ß¤òɽ¼¨) History_FilterBy ¥Õ¥£¥ë¥¿¥ê¥ó¥° History_Search (º¹½Ð¿Í/·ï̾ ¤ò¸¡º÷: %s) *************** *** 218,222 **** History_Increase ¹¤¯ History_Decrease ¶¹¤¯ ! History_Column_Characters From¡¢To¡¢Cc¡¢·ï̾Íó¤ÎÉý¤òÊѹ¹ History_Automatic ¼«Æ° History_Reclassified ºÆÊ¬Îव¤ì¤Þ¤·¤¿ --- 218,222 ---- History_Increase ¹¤¯ History_Decrease ¶¹¤¯ ! History_Column_Characters º¹½Ð¿Í¡¢°¸Àè¡¢Cc¡¢·ï̾Íó¤ÎÉý¤òÊѹ¹ History_Automatic ¼«Æ° History_Reclassified ºÆÊ¬Îव¤ì¤Þ¤·¤¿ *************** *** 230,239 **** Password_Error1 ¥Ñ¥¹¥ï¡¼¥É¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹ ! Security_Error1 ǧ¾Ú¥Ý¡¼¥ÈÈÖ¹æ¤Ï1¤«¤é65535¤Þ¤Ç¤Ë¤·¤Æ¤¯¤À¤µ¤¤¡£ Security_Stealth ¥¹¥Æ¥ë¥¹¥â¡¼¥É/¥µ¡¼¥Ð¡¼¥ª¥Ú¥ì¡¼¥·¥ç¥ó Security_NoStealthMode ¤¤¤¤¤¨ (¥¹¥Æ¥ë¥¹¥â¡¼¥É) Security_StealthMode (¥¹¥Æ¥ë¥¹¥â¡¼¥É) ! Security_ExplainStats (POPFile ¤ÏËèÆü°ì²ó¡¢°Ê²¼¤Î»°¤Ä¤Î¥Ç¡¼¥¿¤ò www.usethesource.com ¾å¤Î¥¹¥¯¥ê¥×¥È¤ËÁ÷¤ê¤Þ¤¹¡£: bc (¥Ð¥±¥Ä¤ÎÁí¿ô)¡¢mc (POPFile ¤¬Ê¬Îष¤¿¥á¥Ã¥»¡¼¥¸¤ÎÁí¿ô)¡¢ec (ʬÎ२¥é¡¼¤ÎÁí¿ô)¡£¤³¤ì¤é¤Ï¥Õ¥¡¥¤¥ë¤ËµÏ¿¤µ¤ì¡¢POPFile ¤¬¤É¤Î¤è¤¦¤Ë»ÈÍѤµ¤ì¡¢¤É¤ÎÄøÅ٤θú²Ì¤ò¤¢¤²¤Æ¤¤¤ë¤Î¤«¤ò¼¨¤¹Åý·×¾ðÊó¤È¤·¤Æ¸ø³«¤µ¤»¤Æ¤¤¤¿¤À¤¤Þ¤¹¡£»ÈÍѤ·¤Æ¤¤¤Þ¤¹ Web ¥µ¡¼¥Ð¡¼¤Ï¤³¤ì¤é¤Î¥í¥°¥Õ¥¡¥¤¥ë¤òÌó¸ÞÆü´ÖÊݸ¤·¤¿¤¢¤È¡¢ºï½ü¤·¤Þ¤¹¡£¤³¤ì¤é¤ÎÅý·×Ãͤò IP ¥¢¥É¥ì¥¹¤È´ØÏ¢ÉÕ¤±¤ÆÊݸ¤·¤¿¤ê¤Ï¤¤¤Ã¤µ¤¤¤¤¤¿¤·¤Þ¤»¤ó¡£) ! Security_ExplainUpdate (POPFile ¤ÏËèÆü°ì²ó¡¢°Ê²¼¤Î»°¤Ä¤Î¥Ç¡¼¥¿¤ò www.usethesource.com ¾å¤Î¥¹¥¯¥ê¥×¥È¤ËÁ÷¤ê¤Þ¤¹¡£: ma (¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤ë POPFile ¤Î¥á¥¸¥ã¡¼¥Ð¡¼¥¸¥ç¥óÈÖ¹æ)¡¢mi (¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤ë POPFile ¤Î¥Þ¥¤¥Ê¡¼¥Ð¡¼¥¸¥ç¥óÈÖ¹æ)¡¢bn (¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤ë POPFile ¤Î¥Ó¥ë¥ÉÈÖ¹æ)¡£¿·¤·¤¤¥Ð¡¼¥¸¥ç¥ó¤¬¥ê¥ê¡¼¥¹¤µ¤ì¤ë¤È¡¢POPFile ¤Ï¤½¤Î¾ðÊó¤ò¼õ¤±¤Æ¥Ú¡¼¥¸¤Î¾åÉô¤Ë¥°¥é¥Õ¥£¥Ã¥¯¤òɽ¼¨¤·¤Æ¤ªÃΤ餻¤·¤Þ¤¹¡£»ÈÍѤ·¤Æ¤¤¤Þ¤¹ Web ¥µ¡¼¥Ð¡¼¤Ï¤³¤ì¤é¤Î¥í¥°¥Õ¥¡¥¤¥ë¤òÌó¸ÞÆü´ÖÊݸ¤·¤¿¤¢¤È¡¢ºï½ü¤·¤Þ¤¹¡£¤³¤ì¤é¤Î¹¹¿·¥Á¥§¥Ã¥¯¤Ë»ÈÍѤ·¤¿¥Ç¡¼¥¿¤ò IP ¥¢¥É¥ì¥¹¤È´ØÏ¢ÉÕ¤±¤ÆÊݸ¤·¤¿¤ê¤Ï¤¤¤Ã¤µ¤¤¤¤¤¿¤·¤Þ¤»¤ó¡£) Security_PasswordTitle ¥æ¡¼¥¶¡¼¥¤¥ó¥¿¡¼¥Õ¥§¡¼¥¹¥Ñ¥¹¥ï¡¼¥É Security_Password ¥Ñ¥¹¥ï¡¼¥É --- 230,239 ---- Password_Error1 ¥Ñ¥¹¥ï¡¼¥É¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹ ! Security_Error1 ǧ¾Ú¥Ý¡¼¥ÈÈÖ¹æ¤Ï 1 ¤«¤é 65535 ¤Þ¤Ç¤Ë¤·¤Æ¤¯¤À¤µ¤¤¡£ Security_Stealth ¥¹¥Æ¥ë¥¹¥â¡¼¥É/¥µ¡¼¥Ð¡¼¥ª¥Ú¥ì¡¼¥·¥ç¥ó Security_NoStealthMode ¤¤¤¤¤¨ (¥¹¥Æ¥ë¥¹¥â¡¼¥É) Security_StealthMode (¥¹¥Æ¥ë¥¹¥â¡¼¥É) ! Security_ExplainStats (¤³¤Î¥ª¥×¥·¥ç¥ó¤ò͸ú¤Ë¤¹¤ë¤È¡¢POPFile ¤ÏËèÆü°ì²ó°Ê²¼¤Î»°¤Ä¤Î¥Ç¡¼¥¿¤ò getpopfile.org ¾å¤Î¥¹¥¯¥ê¥×¥È¤ËÁ÷¤ê¤Þ¤¹¡£: bc (¥Ð¥±¥Ä¤ÎÁí¿ô)¡¢mc (POPFile ¤¬Ê¬Îष¤¿¥á¥Ã¥»¡¼¥¸¤ÎÁí¿ô)¡¢ec (ʬÎ२¥é¡¼¤ÎÁí¿ô)¡£¤³¤ì¤é¤Ï¥Õ¥¡¥¤¥ë¤ËµÏ¿¤µ¤ì¡¢POPFile ¤¬¤É¤Î¤è¤¦¤Ë»ÈÍѤµ¤ì¡¢¤É¤ÎÄøÅ٤θú²Ì¤ò¤¢¤²¤Æ¤¤¤ë¤Î¤«¤ò¼¨¤¹Åý·×¾ðÊó¤È¤·¤Æ¸ø³«¤µ¤»¤Æ¤¤¤¿¤À¤¤Þ¤¹¡£Web ¥µ¡¼¥Ð¡¼¤Ï¤³¤ì¤é¤Î¥í¥°¥Õ¥¡¥¤¥ë¤òÌó¸ÞÆü´ÖÊݸ¤·¤¿¤¢¤È¡¢ºï½ü¤·¤Þ¤¹¡£¤³¤ì¤é¤ÎÅý·×Ãͤò IP ¥¢¥É¥ì¥¹¤È´ØÏ¢ÉÕ¤±¤ÆÊݸ¤¹¤ë¤³¤È¤Ï¤¤¤Ã¤µ¤¤¤¢¤ê¤Þ¤»¤ó¡£) ! Security_ExplainUpdate (POPFile ¤ÏËèÆü°ì²ó¡¢°Ê²¼¤Î»°¤Ä¤Î¥Ç¡¼¥¿¤ò getpopfile.org ¾å¤Î¥¹¥¯¥ê¥×¥È¤ËÁ÷¤ê¤Þ¤¹¡£: ma (¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤ë POPFile ¤Î¥á¥¸¥ã¡¼¥Ð¡¼¥¸¥ç¥óÈÖ¹æ)¡¢mi (¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤ë POPFile ¤Î¥Þ¥¤¥Ê¡¼¥Ð¡¼¥¸¥ç¥óÈÖ¹æ)¡¢bn (¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤ë POPFile ¤Î¥Ó¥ë¥ÉÈÖ¹æ)¡£¿·¤·¤¤¥Ð¡¼¥¸¥ç¥ó¤¬¥ê¥ê¡¼¥¹¤µ¤ì¤ë¤È¡¢POPFile ¤Ï¤½¤Î¾ðÊó¤ò¼õ¤±¤Æ¥Ú¡¼¥¸¤Î¾åÉô¤Ë¥°¥é¥Õ¥£¥Ã¥¯¤òɽ¼¨¤·¤Æ¤ªÃΤ餻¤·¤Þ¤¹¡£Web ¥µ¡¼¥Ð¡¼¤Ï¤³¤ì¤é¤Î¥í¥°¥Õ¥¡¥¤¥ë¤òÌó¸ÞÆü´ÖÊݸ¤·¤¿¤¢¤È¡¢ºï½ü¤·¤Þ¤¹¡£¤³¤ì¤é¤Î¹¹¿·¥Á¥§¥Ã¥¯¤Ë»ÈÍѤ·¤¿¥Ç¡¼¥¿¤ò IP ¥¢¥É¥ì¥¹¤È´ØÏ¢ÉÕ¤±¤ÆÊݸ¤¹¤ë¤³¤È¤Ï¤¤¤Ã¤µ¤¤¤¢¤ê¤Þ¤»¤ó¡£) Security_PasswordTitle ¥æ¡¼¥¶¡¼¥¤¥ó¥¿¡¼¥Õ¥§¡¼¥¹¥Ñ¥¹¥ï¡¼¥É Security_Password ¥Ñ¥¹¥ï¡¼¥É *************** *** 259,263 **** Magnet_Error1 ¥Þ¥°¥Í¥Ã¥È '%s' ¤Ë¤Ï´û¤Ë¥Ð¥±¥Ä '%s' ¤ò³ä¤êÅö¤Æ¤Æ¤¤¤Þ¤¹¡£ ! Magnet_Error2 ¿·µ¬¥Þ¥°¥Í¥Ã¥È '%s' ¤Ï´û¤Ë¤¢¤ë¥Þ¥°¥Í¥Ã¥È '%s' (¥Ð¥±¥Ä '%s' ¤¬³ä¤êÅö¤Æ¤é¤ì¤Æ¤¤¤Þ¤¹) ¤È¾×ÆÍ¤¹¤ë¤¿¤á¡¢Àµ¤·¤¤½èÍý¤ò¤ª¤³¤Ê¤¦¤³¤È¤¬¤Ç¤¤Þ¤»¤ó¡£¿·µ¬¥Þ¥°¥Í¥Ã¥È¤ÏÄɲä·¤Þ¤»¤ó¤Ç¤·¤¿¡£ Magnet_Error3 ¿·µ¬¥Þ¥°¥Í¥Ã¥È '%s' ¤Ë¥Ð¥±¥Ä '%s' ¤ò³ä¤êÅö¤Æ¤Þ¤·¤¿¡£ Magnet_CurrentMagnets ¸½ºß¤Î¥Þ¥°¥Í¥Ã¥È --- 259,263 ---- Magnet_Error1 ¥Þ¥°¥Í¥Ã¥È '%s' ¤Ë¤Ï´û¤Ë¥Ð¥±¥Ä '%s' ¤ò³ä¤êÅö¤Æ¤Æ¤¤¤Þ¤¹¡£ ! Magnet_Error2 ¿·µ¬¥Þ¥°¥Í¥Ã¥È '%s' ¤Ï´û¤Ë¤¢¤ë¥Þ¥°¥Í¥Ã¥È '%s' (¥Ð¥±¥Ä '%s' ¤¬³ä¤êÅö¤Æ¤é¤ì¤Æ¤¤¤Þ¤¹) ¤È¾×ÆÍ¤¹¤ë¤¿¤á¡¢Àµ¤·¤¤½èÍý¤ò¤ª¤³¤Ê¤¦¤³¤È¤¬¤Ç¤¤Þ¤»¤ó¡£¿·µ¬¥Þ¥°¥Í¥Ã¥È¤ÏÄɲ䵤ì¤Þ¤»¤ó¤Ç¤·¤¿¡£ Magnet_Error3 ¿·µ¬¥Þ¥°¥Í¥Ã¥È '%s' ¤Ë¥Ð¥±¥Ä '%s' ¤ò³ä¤êÅö¤Æ¤Þ¤·¤¿¡£ Magnet_CurrentMagnets ¸½ºß¤Î¥Þ¥°¥Í¥Ã¥È *************** *** 354,376 **** Imap_Bucket2Folder '<b>%s</b>' ¥Ð¥±¥Ä¤ËʬÎव¤ì¤¿¥á¡¼¥ë¤Î°ÜưÀè Imap_MapError Ê£¿ô¤Î¥Ð¥±¥Ä¤ò¤Ò¤È¤Ä¤Î¥Õ¥©¥ë¥À¤ËÂбþÉÕ¤±¤¹¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó¡£ ! Imap_Server IMAP ¥µ¡¼¥Ð ¥Û¥¹¥È̾: ! Imap_ServerNameError ¥µ¡¼¥Ð¤Î¥Û¥¹¥È̾¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤¡£ ! Imap_Port IMAP ¥µ¡¼¥Ð ¥Ý¡¼¥ÈÈÖ¹æ: Imap_PortError Àµ¤·¤¤¥Ý¡¼¥ÈÈÖ¹æ¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤¡£ ! Imap_Login IMAP ¥¢¥«¥¦¥ó¥È ¥æ¡¼¥¶Ì¾: ! Imap_LoginError ¥æ¡¼¥¶Ì¾¡¿¥í¥°¥¤¥ó̾¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤¡£ Imap_Password IMAP ¥¢¥«¥¦¥ó¥È¤Î¥Ñ¥¹¥ï¡¼¥É: ! Imap_PasswordError ¥µ¡¼¥Ð¤ËÂФ¹¤ë¥Ñ¥¹¥ï¡¼¥É¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤¡£ Imap_Expunge ´Æ»ë¥Õ¥©¥ë¥À¤«¤é°Üư¤µ¤ì¤¿¥á¥Ã¥»¡¼¥¸¤òºï½ü¤¹¤ë¡£ Imap_Interval ¹¹¿·¤Î´Ö³Ö¡ÊÉáË: ! Imap_IntervalError ¹¹¿·´Ö³Ö¤Ï10É䫤é3600ÉÃ¤Î´Ö¤ÇÆþÎϤ·¤Æ¤¯¤À¤µ¤¤¡£ Imap_Bytelimit ʬÎà¤Î¤¿¤á¤Ë»ÈÍѤ¹¤ë¥á¥Ã¥»¡¼¥¸¤Î¥Ð¥¤¥È¿ô¡£0¡Ê¶õÇò¡Ë¤Î¾ì¹ç¡¢¥á¥Ã¥»¡¼¥¸¤ÎÁ´ÂΤò»ÈÍѤ·¤Þ¤¹: Imap_BytelimitError ¿ô»ú¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤¡£ Imap_RefreshFolders ¥Õ¥©¥ë¥À¥ê¥¹¥È¤Î¹¹¿· Imap_Now ¼Â¹Ô ! Imap_UpdateError1 ¥í¥°¥¤¥ó¤Ç¤¤Þ¤»¤ó¡£¥æ¡¼¥¶Ì¾¤È¥Ñ¥¹¥ï¡¼¥É¤ò³Îǧ¤·¤Æ¤¯¤À¤µ¤¤¡£ ! Imap_UpdateError2 ¥µ¡¼¥Ð¤ËÀܳ¤Ç¤¤Þ¤»¤ó¡£¥Û¥¹¥È̾¤È¥Ý¡¼¥ÈÈÖ¹æ¤ò³Îǧ¤¹¤ë¤È¤È¤â¤Ë¡¢¥¤¥ó¥¿¡¼¥Í¥Ã¥È¤ËÀܳ¤µ¤ì¤Æ¤¤¤ë¤«¤É¤¦¤«¤ò³Îǧ¤·¤Æ¤¯¤À¤µ¤¤¡£ ! Imap_UpdateError3 ¥µ¡¼¥Ð¤ËÀܳ¤¹¤ë¤¿¤á¤Î¾ðÊó¤òÀè¤ËÀßÄꤷ¤Æ¤¯¤À¤µ¤¤¡£ ! Imap_NoConnectionMessage ¥µ¡¼¥Ð¤ËÀܳ¤¹¤ë¤¿¤á¤Î¾ðÊó¤òÀè¤ËÀßÄꤷ¤Æ¤¯¤À¤µ¤¤¡£¤½¤¦¤¹¤ë¤È¡¢¤µ¤é¤Ë¿¤¯¤Î¥ª¥×¥·¥ç¥ó¤¬ÀßÄê¤Ç¤¤ë¤è¤¦¤Ë¤Ê¤ê¤Þ¤¹¡£ Imap_WatchMore ´Æ»ë¥Õ¥©¥ë¥À¥ê¥¹¥È¤Ë¥Õ¥©¥ë¥À¤òÄɲà Imap_WatchedFolder ´Æ»ë¥Õ¥©¥ë¥À --- 354,376 ---- Imap_Bucket2Folder '<b>%s</b>' ¥Ð¥±¥Ä¤ËʬÎव¤ì¤¿¥á¡¼¥ë¤Î°ÜưÀè Imap_MapError Ê£¿ô¤Î¥Ð¥±¥Ä¤ò¤Ò¤È¤Ä¤Î¥Õ¥©¥ë¥À¤ËÂбþÉÕ¤±¤¹¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó¡£ ! Imap_Server IMAP ¥µ¡¼¥Ð¡¼ ¥Û¥¹¥È̾: ! Imap_ServerNameError ¥µ¡¼¥Ð¡¼¤Î¥Û¥¹¥È̾¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤¡£ ! Imap_Port IMAP ¥µ¡¼¥Ð¡¼ ¥Ý¡¼¥ÈÈÖ¹æ: Imap_PortError Àµ¤·¤¤¥Ý¡¼¥ÈÈÖ¹æ¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤¡£ ! Imap_Login IMAP ¥¢¥«¥¦¥ó¥È ¥æ¡¼¥¶¡¼Ì¾: ! Imap_LoginError ¥æ¡¼¥¶¡¼Ì¾¡¿¥í¥°¥¤¥ó̾¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤¡£ Imap_Password IMAP ¥¢¥«¥¦¥ó¥È¤Î¥Ñ¥¹¥ï¡¼¥É: ! Imap_PasswordError ¥µ¡¼¥Ð¡¼¤ËÂФ¹¤ë¥Ñ¥¹¥ï¡¼¥É¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤¡£ Imap_Expunge ´Æ»ë¥Õ¥©¥ë¥À¤«¤é°Üư¤µ¤ì¤¿¥á¥Ã¥»¡¼¥¸¤òºï½ü¤¹¤ë¡£ Imap_Interval ¹¹¿·¤Î´Ö³Ö¡ÊÉáË: ! Imap_IntervalError ¹¹¿·´Ö³Ö¤Ï 10 É䫤é 3600 ÉÃ¤Î´Ö¤ÇÆþÎϤ·¤Æ¤¯¤À¤µ¤¤¡£ Imap_Bytelimit ʬÎà¤Î¤¿¤á¤Ë»ÈÍѤ¹¤ë¥á¥Ã¥»¡¼¥¸¤Î¥Ð¥¤¥È¿ô¡£0¡Ê¶õÇò¡Ë¤Î¾ì¹ç¡¢¥á¥Ã¥»¡¼¥¸¤ÎÁ´ÂΤò»ÈÍѤ·¤Þ¤¹: Imap_BytelimitError ¿ô»ú¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤¡£ Imap_RefreshFolders ¥Õ¥©¥ë¥À¥ê¥¹¥È¤Î¹¹¿· Imap_Now ¼Â¹Ô ! Imap_UpdateError1 ¥í¥°¥¤¥ó¤Ç¤¤Þ¤»¤ó¡£¥æ¡¼¥¶¡¼Ì¾¤È¥Ñ¥¹¥ï¡¼¥É¤ò³Îǧ¤·¤Æ¤¯¤À¤µ¤¤¡£ ! Imap_UpdateError2 ¥µ¡¼¥Ð¡¼¤ËÀܳ¤Ç¤¤Þ¤»¤ó¡£¥Û¥¹¥È̾¤È¥Ý¡¼¥ÈÈÖ¹æ¤ò³Îǧ¤¹¤ë¤È¤È¤â¤Ë¡¢¥¤¥ó¥¿¡¼¥Í¥Ã¥È¤ËÀܳ¤µ¤ì¤Æ¤¤¤ë¤«¤É¤¦¤«¤ò³Îǧ¤·¤Æ¤¯¤À¤µ¤¤¡£ ! Imap_UpdateError3 ¥µ¡¼¥Ð¡¼¤ËÀܳ¤¹¤ë¤¿¤á¤Î¾ðÊó¤òÀè¤ËÀßÄꤷ¤Æ¤¯¤À¤µ¤¤¡£ ! Imap_NoConnectionMessage ¥µ¡¼¥Ð¡¼¤ËÀܳ¤¹¤ë¤¿¤á¤Î¾ðÊó¤òÀè¤ËÀßÄꤷ¤Æ¤¯¤À¤µ¤¤¡£¤½¤¦¤¹¤ë¤È¡¢¤µ¤é¤Ë¿¤¯¤Î¥ª¥×¥·¥ç¥ó¤¬ÀßÄê¤Ç¤¤ë¤è¤¦¤Ë¤Ê¤ê¤Þ¤¹¡£ Imap_WatchMore ´Æ»ë¥Õ¥©¥ë¥À¥ê¥¹¥È¤Ë¥Õ¥©¥ë¥À¤òÄɲà Imap_WatchedFolder ´Æ»ë¥Õ¥©¥ë¥À Index: Nederlands.msg =================================================================== RCS file: /cvsroot/popfile/engine/languages/Nederlands.msg,v retrieving revision 1.14.8.3 retrieving revision 1.14.8.4 diff -C2 -d -r1.14.8.3 -r1.14.8.4 *** Nederlands.msg 31 Jan 2007 11:33:47 -0000 1.14.8.3 --- Nederlands.msg 7 Apr 2008 15:26:16 -0000 1.14.8.4 *************** *** 153,158 **** Security_Stealth Undercover modus/Server operatie Security_NoStealthMode Nee (Undercover modus) ! Security_ExplainStats (als dit aan staat stuurt POPFile één keer per dag de volgende drie waarden naar een script op www.usethesource.com: bc (het aantal bakken dat je hebt), mc (het totaal aantal geclassificeerde berichten door POPFile) en ec (het totaal aantal fouten tijdens classificatie). Deze waarden worden opgeslagen in een bestand en ik zal deze gegevens gebruiken om statistieken te publiceren over hoe mensen POPFile gebruiken en hoe goed het werkt. Mijn web server houdt de log bestanden 5 dagen vast waarna ze verwijderd zullen worden; Ik bewaar geen gegevens over het verband tussen de statistieken en individuele IP adressen.) ! Security_ExplainUpdate (als dit aan staat stuurt POPFile één keer per dag de volgende drie waarden naar een script op www.usethesource.com: ma (het grote versie nummer van jouw POPFile installatie), mi (het kleine versie nummer van jouw POPFile installatie) en bn (het bouwnummer van jouw versie van POPFile). POPFile ontvangt in reactie hierop een plaatje dat bovenaan de pagina afgebeeld wordt als er een nieuwe versie van POPFile beschikbaar is. Mijn web server houdt de log bestanden 5 dagen vast waarna ze verwijderd zullen worden; Ik bewaar geen gegevens over het verband tussen de update checks en individuele IP adressen.) Security_PasswordTitle Gebruikers Interface Wachtwoord Security_Password Wachtwoord --- 153,158 ---- Security_Stealth Undercover modus/Server operatie Security_NoStealthMode Nee (Undercover modus) ! Security_ExplainStats (als dit aan staat stuurt POPFile één keer per dag de volgende drie waarden naar een script op getpopfile.org: bc (het aantal bakken dat je hebt), mc (het totaal aantal geclassificeerde berichten door POPFile) en ec (het totaal aantal fouten tijdens classificatie). Deze waarden worden opgeslagen in een bestand en ik zal deze gegevens gebruiken om statistieken te publiceren over hoe mensen POPFile gebruiken en hoe goed het werkt. Mijn web server houdt de log bestanden 5 dagen vast waarna ze verwijderd zullen worden; Ik bewaar geen gegevens over het verband tussen de statistieken en individuele IP adressen.) ! Security_ExplainUpdate (als dit aan staat stuurt POPFile één keer per dag de volgende drie waarden naar een script op getpopfile.org: ma (het grote versie nummer van jouw POPFile installatie), mi (het kleine versie nummer van jouw POPFile installatie) en bn (het bouwnummer van jouw versie van POPFile). POPFile ontvangt in reactie hierop een plaatje dat bovenaan de pagina afgebeeld wordt als er een nieuwe versie van POPFile beschikbaar is. Mijn web server houdt de log bestanden 5 dagen vast waarna ze verwijderd zullen worden; Ik bewaar geen gegevens over het verband tussen de update checks en individuele IP adressen.) Security_PasswordTitle Gebruikers Interface Wachtwoord Security_Password Wachtwoord Index: Chinese-Simplified-GB2312.msg =================================================================== RCS file: /cvsroot/popfile/engine/languages/Chinese-Simplified-GB2312.msg,v retrieving revision 1.2.4.6 retrieving revision 1.2.4.7 diff -C2 -d -r1.2.4.6 -r1.2.4.7 *** Chinese-Simplified-GB2312.msg 5 Apr 2008 11:55:15 -0000 1.2.4.6 --- Chinese-Simplified-GB2312.msg 7 Apr 2008 15:26:15 -0000 1.2.4.7 *************** *** 234,239 **** Security_NoStealthMode ·ñ (¹í¹íËîËîģʽ) Security_StealthMode (¹í¹íËîËîģʽ) ! Security_ExplainStats (Õâ¸öÑ¡ÏÆôºó, POPFile ÿÌì¶¼»á´«ËÍÒ»´ÎÏÂÁÐÈý¸öÊýÖµµ½ www.usethesource.com µÄÒ»¸ö½Å±¾: bc (ÄãµÄÓÊͲÊýÁ¿), mc (±» POPFile ·ÖÀà¹ýµÄÓʼþѶϢ×ÜÊý) ºÍ ec (·ÖÀà´íÎóµÄ×ÜÊý). ÕâЩÊýÖµ»á±»´¢´æµ½Ò»¸öµµ°¸Àï, È»ºó»á±»ÎÒÓÃÀ´·¢²¼Ò»Ð©¹ØÓÚÈËÃÇʹÓà POPFile µÄÇé¿ö¸úÆä³ÉЧµÄͳ¼ÆÊý¾Ý. ÎÒµÄÍøÒ³·þÎñÆ÷»á±£ÁôÆä±¾ÉíµÄÈÕÖ¾µµÔ¼ 5 Ìì, È»ºó¾Í»á¼ÓÒÔɾ³ý; ÎÒ²»»á´¢´æÈκÎͳ¼ÆÓëµ¥¶À IP µØÖ·¼äµÄ¹ØÁªÐÔÆðÀ´.) ! Security_ExplainUpdate (Õâ¸öÑ¡ÏÆôºó, POPFile ÿÌì¶¼»á´«ËÍÒ»´ÎÏÂÁÐÈý¸öÊýÖµµ½ www.usethesource.com µÄÒ»¸ö½Å±¾: ma (ÄãµÄ POPFile µÄÖ÷Òª°æ±¾±àºÅ), mi (ÄãµÄ POPFile µÄ´ÎÒª°æ±¾±àºÅ) ºÍ bn (ÄãµÄ POPFile µÄ½¨ºÅ). аæÍƳöʱ, POPFile »áÊÕµ½Ò»·ÝͼÐÎÏìÓ¦, ²¢ÇÒÏÔʾÔÚ»Ãæ¶¥¶Ë. ÎÒµÄÍøÒ³·þÎñÆ÷»á±£ÁôÆä±¾ÉíµÄÈÕÖ¾µµÔ¼ 5 Ìì, È»ºó¾Í»á¼ÓÒÔɾ³ý; ÎÒ²»»á´¢´æÈκθüмì²éÓëµ¥¶À IP µØÖ·¼äµÄ¹ØÁªÐÔÆðÀ´.) Security_PasswordTitle ʹÓÃÕß½Ó¿Ú¿ÚÁî Security_Password ¿ÚÁî --- 234,239 ---- Security_NoStealthMode ·ñ (¹í¹íËîËîģʽ) Security_StealthMode (¹í¹íËîËîģʽ) ! Security_ExplainStats (Õâ¸öÑ¡ÏÆôºó, POPFile ÿÌì¶¼»á´«ËÍÒ»´ÎÏÂÁÐÈý¸öÊýÖµµ½ getpopfile.org µÄÒ»¸ö½Å±¾: bc (ÄãµÄÓÊͲÊýÁ¿), mc (±» POPFile ·ÖÀà¹ýµÄÓʼþѶϢ×ÜÊý) ºÍ ec (·ÖÀà´íÎóµÄ×ÜÊý). ÕâЩÊýÖµ»á±»´¢´æµ½Ò»¸öµµ°¸Àï, È»ºó»á±»ÎÒÓÃÀ´·¢²¼Ò»Ð©¹ØÓÚÈËÃÇʹÓà POPFile µÄÇé¿ö¸úÆä³ÉЧµÄͳ¼ÆÊý¾Ý. ÎÒµÄÍøÒ³·þÎñÆ÷»á±£ÁôÆä±¾ÉíµÄÈÕÖ¾µµÔ¼ 5 Ìì, È»ºó¾Í»á¼ÓÒÔɾ³ý; ÎÒ²»»á´¢´æÈκÎͳ¼ÆÓëµ¥¶À IP µØÖ·¼äµÄ¹ØÁªÐÔÆðÀ´.) ! Security_ExplainUpdate (Õâ¸öÑ¡ÏÆôºó, POPFile ÿÌì¶¼»á´«ËÍÒ»´ÎÏÂÁÐÈý¸öÊýÖµµ½ getpopfile.org µÄÒ»¸ö½Å±¾: ma (ÄãµÄ POPFile µÄÖ÷Òª°æ±¾±àºÅ), mi (ÄãµÄ POPFile µÄ´ÎÒª°æ±¾±àºÅ) ºÍ bn (ÄãµÄ POPFile µÄ½¨ºÅ). аæÍƳöʱ, POPFile »áÊÕµ½Ò»·ÝͼÐÎÏìÓ¦, ²¢ÇÒÏÔʾÔÚ»Ãæ¶¥¶Ë. ÎÒµÄÍøÒ³·þÎñÆ÷»á±£ÁôÆä±¾ÉíµÄÈÕÖ¾µµÔ¼ 5 Ìì, È»ºó¾Í»á¼ÓÒÔɾ³ý; ÎÒ²»»á´¢´æÈκθüмì²éÓëµ¥¶À IP µØÖ·¼äµÄ¹ØÁªÐÔÆðÀ´.) Security_PasswordTitle ʹÓÃÕß½Ó¿Ú¿ÚÁî Security_Password ¿ÚÁî Index: Catala.msg =================================================================== RCS file: /cvsroot/popfile/engine/languages/Catala.msg,v retrieving revision 1.1.2.7 retrieving revision 1.1.2.8 diff -C2 -d -r1.1.2.7 -r1.1.2.8 *** Catala.msg 5 Apr 2008 11:55:15 -0000 1.1.2.7 --- Catala.msg 7 Apr 2008 15:26:15 -0000 1.1.2.8 *************** *** 231,236 **** Security_NoStealthMode No (mode furtiu) Security_StealthMode (Mode furtiu) ! Security_ExplainStats (Si s'activa, POPFile envia un cop al dia els tres següents valors a un programa a www.usethesource.com: bc, el nombre total de cistelles que teniu; mc, el nombre total de missatges classificats per POPFile, i ec, el nombre total d'errors de classificació. Això s'emmagatzema en un fitxer i serà usat per confeccionar estadístiques d'ús de POPFile i com funciona de bé. El meu servidor web conserva els seus fitxers de registre uns 5 dies i aleshores s'esborren; no emmagatzemo cap connexió entre estadístiques i adreces IP individuals). ! Security_ExplainUpdate (Si s'activa, POPFile envia un cop per dia els tres següents valors a un programa a www.usethesource.com: ma, el nombre major de versió de la vostra instal·lació POPFile; mi, el nombre menor de versió de la vostra instal·lació POPFile, i bn, el nombre de muntatge de la vostra instal·lació POPFile. POPFile rep una resposta en forma de gràfic que surt dalt de la pàgina, si hi ha una versió nova disponible. El meu servidor web conserva els seus fitxers de registre uns 5 dies i aleshores s'esborren; no emmagatzemo cap connexió entre les verificacions d'actualització i les adreces IP individuals). Security_PasswordTitle Contrasenya d'interfície d'usuari Security_Password Contrasenya --- 231,236 ---- Security_NoStealthMode No (mode furtiu) Security_StealthMode (Mode furtiu) ! Security_ExplainStats (Si s'activa, POPFile envia un cop al dia els tres següents valors a un programa a getpopfile.org: bc, el nombre total de cistelles que teniu; mc, el nombre total de missatges classificats per POPFile, i ec, el nombre total d'errors de classificació. Això s'emmagatzema en un fitxer i serà usat per confeccionar estadístiques d'ús de POPFile i com funciona de bé. El meu servidor web conserva els seus fitxers de registre uns 5 dies i aleshores s'esborren; no emmagatzemo cap connexió entre estadístiques i adreces IP individuals). ! Security_ExplainUpdate (Si s'activa, POPFile envia un cop per dia els tres següents valors a un programa a getpopfile.org: ma, el nombre major de versió de la vostra instal·lació POPFile; mi, el nombre menor de versió de la vostra instal·lació POPFile, i bn, el nombre de muntatge de la vostra instal·lació POPFile. POPFile rep una resposta en forma de gràfic que surt dalt de la pàgina, si hi ha una versió nova disponible. El meu servidor web conserva els seus fitxers de registre uns 5 dies i aleshores s'esborren; no emmagatzemo cap connexió entre les verificacions d'actualització i les adreces IP individuals). Security_PasswordTitle Contrasenya d'interfície d'usuari Security_Password Contrasenya Index: Hellenic.msg =================================================================== RCS file: /cvsroot/popfile/engine/languages/Hellenic.msg,v retrieving revision 1.3.8.3 retrieving revision 1.3.8.4 diff -C2 -d -r1.3.8.3 -r1.3.8.4 *** Hellenic.msg 31 Jan 2007 11:33:47 -0000 1.3.8.3 --- Hellenic.msg 7 Apr 2008 15:26:15 -0000 1.3.8.4 *************** *** 177,182 **** Security_Stealth Ëåéôïõñãßá ÁðüêñõøÞò/Ëåéôïõñãßá Server Security_NoStealthMode Ï÷é ( Ëåéôïõñãßá Áðüêñõøçò ) ! Security_ExplainStats (Ìå áõôÞ ôçí åðéëïãÞ åíåñãÞ ôï POPFile óôÝëíåé êÜèå çìÝñá ôéò áêüëïõèåò ôñåßò ðáñáìÝôñïõò óå Ýíá ðñüãñáììá óôï www.usethesource.com: bc (óýíïëï áñ÷åßùí ðïõ ÷ñçóéìïðïéïýíôáé ), mc (óýíïëï ôáîéíïìçìÝíùí ìõíçìÜôùí) and ec (óýíïëï ëáèþí ôáîéíüìçóçò). ÁõôÜ áñ÷åéïèåôïýíôáé êáé ÷ñçóéìïðïéïýíôáé ãéá íá óõíôá÷èïýí óôáôéóôéêÝò ãéá ôï ðþò ïé ÷ñÞóôåò ÷ñçóéìïðïéïýí ôï POPFile áëëÜ êáé ðüóï áðïôåëåóìáôéêÜ áõôü äïõëåýåés. Ôá áñ÷åßá óâÞíïíôáé ìå ôçí ðáñÝëåõóç ðåíèçìÝñïõ; Äåí ãßíïíôáé óõó÷åôéóìïß ìåôáîý ôùí óôáôéóôéêþí êáé ôùí ìåìïíïìÝíùí äéåõèýíóåùí IP.) ! Security_ExplainUpdate (Ìå áõôÞ ôçí åðéëïãÞ åíåñãÞ ôï POPFile óôÝëíåé êÜèå çìÝñá ôéò áêüëïõèåò ôñåßò ðáñáìÝôñïõò óå Ýíá ðñüãñáììá óôï www.usethesource.com:: ma (ôïí êýñéï áñéèìü Ýêäïóçò ôïõ åí ÷ñÞóç POPFile), mi (ôïí äåõôåñåýïíôá áñéèìü Ýêäïóçò ôïõ åí ÷ñÞóç POPFile) êáé bn (ôïí áñéèìü Ýêäïóçò ôïõ åí ÷ñÞóç POPFile). Ôï POPFile ëáìâÜíåé ìßá áðÜíôçóç ìå ôçí ìïñöÞ ãñáöéêïý ðïõ åìöáíßæåôáé óôçí Üíù ìåñéÜ ôçò óåëßäáò, êáé óáò åéäïðïéåß üôé õðÜñ÷åé íÝá åíçìåñùìÝíç Ýêäïóç. Ôá áñ÷åßá óâÞíïíôáé ìå ôçí ðáñÝëåõóç ðåíèçìÝñïõ; Äåí ãßíïíôáé óõó÷åôéóìïß ìåôáîý ôùí óôáôéóôéêþí êáé ôùí ìåìïíïìÝíùí äéåõèýíóåùí IP.) Security_PasswordTitle Óýíèçìá ÅðéöÜíåéáò ×ñÞóçò Security_Password Óýíèçìá --- 177,182 ---- Security_Stealth Ëåéôïõñãßá ÁðüêñõøÞò/Ëåéôïõñãßá Server Security_NoStealthMode Ï÷é ( Ëåéôïõñãßá Áðüêñõøçò ) ! Security_ExplainStats (Ìå áõôÞ ôçí åðéëïãÞ åíåñãÞ ôï POPFile óôÝëíåé êÜèå çìÝñá ôéò áêüëïõèåò ôñåßò ðáñáìÝôñïõò óå Ýíá ðñüãñáììá óôï getpopfile.org: bc (óýíïëï áñ÷åßùí ðïõ ÷ñçóéìïðïéïýíôáé ), mc (óýíïëï ôáîéíïìçìÝíùí ìõíçìÜôùí) and ec (óýíïëï ëáèþí ôáîéíüìçóçò). ÁõôÜ áñ÷åéïèåôïýíôáé êáé ÷ñçóéìïðïéïýíôáé ãéá íá óõíôá÷èïýí óôáôéóôéêÝò ãéá ôï ðþò ïé ÷ñÞóôåò ÷ñçóéìïðïéïýí ôï POPFile áëëÜ êáé ðüóï áðïôåëåóìáôéêÜ áõôü äïõëåýåés. Ôá áñ÷åßá óâÞíïíôáé ìå ôçí ðáñÝëåõóç ðåíèçìÝñïõ; Äåí ãßíïíôáé óõó÷åôéóìïß ìåôáîý ôùí óôáôéóôéêþí êáé ôùí ìåìïíïìÝíùí äéåõèýíóåùí IP.) ! Security_ExplainUpdate (Ìå áõôÞ ôçí åðéëïãÞ åíåñãÞ ôï POPFile óôÝëíåé êÜèå çìÝñá ôéò áêüëïõèåò ôñåßò ðáñáìÝôñïõò óå Ýíá ðñüãñáììá óôï getpopfile.org:: ma (ôïí êýñéï áñéèìü Ýêäïóçò ôïõ åí ÷ñÞóç POPFile), mi (ôïí äåõôåñåýïíôá áñéèìü Ýêäïóçò ôïõ åí ÷ñÞóç POPFile) êáé bn (ôïí áñéèìü Ýêäïóçò ôïõ åí ÷ñÞóç POPFile). Ôï POPFile ëáìâÜíåé ìßá áðÜíôçóç ìå ôçí ìïñöÞ ãñáöéêïý ðïõ åìöáíßæåôáé óôçí Üíù ìåñéÜ ôçò óåëßäáò, êáé óáò åéäïðïéåß üôé õðÜñ÷åé íÝá åíçìåñùìÝíç Ýêäïóç. Ôá áñ÷åßá óâÞíïíôáé ìå ôçí ðáñÝëåõóç ðåíèçìÝñïõ; Äåí ãßíïíôáé óõó÷åôéóìïß ìåôáîý ôùí óôáôéóôéêþí êáé ôùí ìåìïíïìÝíùí äéåõèýíóåùí IP.) Security_PasswordTitle Óýíèçìá ÅðéöÜíåéáò ×ñÞóçò Security_Password Óýíèçìá Index: Polish.msg =================================================================== RCS file: /cvsroot/popfile/engine/languages/Polish.msg,v retrieving revision 1.3.8.3 retrieving revision 1.3.8.4 diff -C2 -d -r1.3.8.3 -r1.3.8.4 *** Polish.msg 31 Jan 2007 11:33:47 -0000 1.3.8.3 --- Polish.msg 7 Apr 2008 15:26:16 -0000 1.3.8.4 *************** *** 179,184 **** Security_Stealth Operacje w trybie niewidocznym Security_NoStealthMode Nie (tryb niewidoczny) ! Security_ExplainStats (gdy to jest w³±czone POPFile wysy³a raz dziennie nastêpuj±ce trzy warto¶ci do skryptu na www.usethesource.com: bc (liczba folderów, które posiadasz), mc (liczba klasyfikowanych wiadomo¶ci) i ec (liczba b³êdów klasyfikacji). S± one gromadzone w pliku i wykorzystam je do publikacji o ludziach u¿ywaj±cych POPFile'a i jak on dzia³a. Mój serwer przechowuje dane przez 5 dni a nastêpnie je kasuje; Nie przechowujê ¿adnych danych o adresach IP, itp.) ! Security_ExplainUpdate (gdy to jest w³±czone POPFile wysy³a raz dziennie nastêpuj±ce trzy warto¶ci do skryptu na www.usethesource.com: ma (numer wersji POPFile'a), mi (numer podwersji POPFile'a) i bn (numer kompilacji POPFile'a). POPFile otrzymuje graficzn± informacjê na g³ównej stronie je¶li pojawi siê nowa wersja. Mój serwer przechowuje dane przez 5 dni a nastêpnie je kasuje; Nie przechowujê ¿adnych danych o adresach IP, itp.) Security_PasswordTitle Has³o interface'u u¿ytkownika Security_Password Has³o --- 179,184 ---- Security_Stealth Operacje w trybie niewidocznym Security_NoStealthMode Nie (tryb niewidoczny) ! Security_ExplainStats (gdy to jest w³±czone POPFile wysy³a raz dziennie nastêpuj±ce trzy warto¶ci do skryptu na getpopfile.org: bc (liczba folderów, które posiadasz), mc (liczba klasyfikowanych wiadomo¶ci) i ec (liczba b³êdów klasyfikacji). S± one gromadzone w pliku i wykorzystam je do publikacji o ludziach u¿ywaj±cych POPFile'a i jak on dzia³a. Mój serwer przechowuje dane przez 5 dni a nastêpnie je kasuje; Nie przechowujê ¿adnych danych o adresach IP, itp.) ! Security_ExplainUpdate (gdy to jest w³±czone POPFile wysy³a raz dziennie nastêpuj±ce trzy warto¶ci do skryptu na getpopfile.org: ma (numer wersji POPFile'a), mi (numer podwersji POPFile'a) i bn (numer kompilacji POPFile'a). POPFile otrzymuje graficzn± informacjê na g³ównej stronie je¶li pojawi siê nowa wersja. Mój serwer przechowuje dane przez 5 dni a nastêpnie je kasuje; Nie przechowujê ¿adnych danych o adresach IP, itp.) Security_PasswordTitle Has³o interface'u u¿ytkownika Security_Password Has³o Index: Korean.msg =================================================================== RCS file: /cvsroot/popfile/engine/languages/Korean.msg,v retrieving revision 1.5.8.3 retrieving revision 1.5.8.4 diff -C2 -d -r1.5.8.3 -r1.5.8.4 *** Korean.msg 31 Jan 2007 11:33:47 -0000 1.5.8.3 --- Korean.msg 7 Apr 2008 15:26:15 -0000 1.5.8.4 *************** *** 184,189 **** Security_Stealth ½ºÅÚ½º ¸ðµå / ¼¹ö µ¿ÀÛ Security_NoStealthMode ¾Æ´Ï¿À (½ºÅÚ½º ¸ðµå) ! Security_ExplainStats (À̰ÍÀÌ ÄÑÁö¸é ÆËÆÄÀÏÀº ÇÏ·ç¿¡ Çѹø¾¿ ´ÙÀ½ÀÇ ¼¼°¡Áö °ªÀ» www.usethesource.com¿¡ º¸³À´Ï´Ù - bc (¸¸µå½Å ¹öŶ ¼ö), mc (ÆËÆÄÀÏÀÌ ºÐ·ùÇÑ ¸Þ½ÃÁö ¼ö) and ec (ºÐ·ù ¿À·ù °Ç¼ö). À̰͵éÀº ÆÄÀÏ·Î ÀúÀåµÇ¸ç ÆËÆÄÀÏÀÌ ¾î¶»°Ô »ç¿ëµÇ¸ç ¾ó¸¶³ª Àß ÀÛµ¿ÇÏ´ÂÁö¿¡ °üÇÑ Åë°è¸¦ °øÇ¥ÇÒ¶§ »ç¿ëµË´Ï´Ù. Á¦ À¥¼¹ö´Â 5Àϰ£ ·Î±×ÆÄÀÏÀ» º¸Á¸ÇÏ°í ±× ÈÄ »èÁ¦ÇÕ´Ï´Ù. °³°³ÀÇ IPÁÖ¼Ò¿Í Åë°è °£¿¡ ¾î¶°ÇÑ ¿¬°ü°ü°èµµ ÀúÀåµÇÁö ¾Ê½À´Ï´Ù.) ! Security_ExplainUpdate (À̰ÍÀÌ ÄÑÁö¸é ÆËÆÄÀÏÀº ÇÏ·ç¿¡ Çѹø¾¿ ´ÙÀ½ÀÇ ¼¼°¡Áö °ªÀ» www.usethesource.com¿¡ º¸³À´Ï´Ù - ma (¼³Ä¡ÇϽŠÆËÆÄÀÏÀÇ ¸ÞÀÌÀú ¹öÀü ¹øÈ£), mi (¼³Ä¡ÇϽŠÆËÆÄÀÏÀÇ ¸¶ÀÌ³Ê ¹öÀü ¹øÈ£), bn (¼³Ä¡ÇϽŠÆËÆÄÀÏÀÇ ºôµå ¹øÈ£). ÆËÆÄÀÏÀº »õ ¹öÀüÀÌ ÀÖÀ¸¸é ÆäÀÌÁö ¸Ç À§ÂÊ¿¡ ±×·¡ÇÈ ÇüÅ·Π±× °á°ú¸¦ Ç¥½ÃÇÕ´Ï´Ù. Á¦ À¥¼¹ö´Â 5Àϰ£ ·Î±×ÆÄÀÏÀ» º¸Á¸ÇÏ°í ±× ÈÄ »èÁ¦ÇÕ´Ï´Ù. °³°³ÀÇ IPÁÖ¼Ò¿Í ¾÷µ¥ÀÌÆ® üũ °£¿¡ ¾î¶°ÇÑ ¿¬°ü°ü°èµµ ÀúÀåµÇÁö ¾Ê½À´Ï´Ù.) Security_PasswordTitle »ç¿ëÀÚ ÀÎÅÍÆäÀ̽º ºñ¹Ð¹øÈ£ Security_Password ºñ¹Ð¹øÈ£ --- 184,189 ---- Security_Stealth ½ºÅÚ½º ¸ðµå / ¼¹ö µ¿ÀÛ Security_NoStealthMode ¾Æ´Ï¿À (½ºÅÚ½º ¸ðµå) ! Security_ExplainStats (À̰ÍÀÌ ÄÑÁö¸é ÆËÆÄÀÏÀº ÇÏ·ç¿¡ Çѹø¾¿ ´ÙÀ½ÀÇ ¼¼°¡Áö °ªÀ» getpopfile.org¿¡ º¸³À´Ï´Ù - bc (¸¸µå½Å ¹öŶ ¼ö), mc (ÆËÆÄÀÏÀÌ ºÐ·ùÇÑ ¸Þ½ÃÁö ¼ö) and ec (ºÐ·ù ¿À·ù °Ç¼ö). À̰͵éÀº ÆÄÀÏ·Î ÀúÀåµÇ¸ç ÆËÆÄÀÏÀÌ ¾î¶»°Ô »ç¿ëµÇ¸ç ¾ó¸¶³ª Àß ÀÛµ¿ÇÏ´ÂÁö¿¡ °üÇÑ Åë°è¸¦ °øÇ¥ÇÒ¶§ »ç¿ëµË´Ï´Ù. Á¦ À¥¼¹ö´Â 5Àϰ£ ·Î±×ÆÄÀÏÀ» º¸Á¸ÇÏ°í ±× ÈÄ »èÁ¦ÇÕ´Ï´Ù. °³°³ÀÇ IPÁÖ¼Ò¿Í Åë°è °£¿¡ ¾î¶°ÇÑ ¿¬°ü°ü°èµµ ÀúÀåµÇÁö ¾Ê½À´Ï´Ù.) ! Security_ExplainUpdate (À̰ÍÀÌ ÄÑÁö¸é ÆËÆÄÀÏÀº ÇÏ·ç¿¡ Çѹø¾¿ ´ÙÀ½ÀÇ ¼¼°¡Áö °ªÀ» getpopfile.org¿¡ º¸³À´Ï´Ù - ma (¼³Ä¡ÇϽŠÆËÆÄÀÏÀÇ ¸ÞÀÌÀú ¹öÀü ¹øÈ£), mi (¼³Ä¡ÇϽŠÆËÆÄÀÏÀÇ ¸¶ÀÌ³Ê ¹öÀü ¹øÈ£), bn (¼³Ä¡ÇϽŠÆËÆÄÀÏÀÇ ºôµå ¹øÈ£). ÆËÆÄÀÏÀº »õ ¹öÀüÀÌ ÀÖÀ¸¸é ÆäÀÌÁö ¸Ç À§ÂÊ¿¡ ±×·¡ÇÈ ÇüÅ·Π±× °á°ú¸¦ Ç¥½ÃÇÕ´Ï´Ù. Á¦ À¥¼¹ö´Â 5Àϰ£ ·Î±×ÆÄÀÏÀ» º¸Á¸ÇÏ°í ±× ÈÄ »èÁ¦ÇÕ´Ï´Ù. °³°³ÀÇ IPÁÖ¼Ò¿Í ¾÷µ¥ÀÌÆ® üũ °£¿¡ ¾î¶°ÇÑ ¿¬°ü°ü°èµµ ÀúÀåµÇÁö ¾Ê½À´Ï´Ù.) Security_PasswordTitle »ç¿ëÀÚ ÀÎÅÍÆäÀ̽º ºñ¹Ð¹øÈ£ Security_Password ºñ¹Ð¹øÈ£ Index: Chinese-Traditional.msg =================================================================== RCS file: /cvsroot/popfile/engine/languages/Chinese-Traditional.msg,v retrieving revision 1.6.4.6 retrieving revision 1.6.4.7 diff -C2 -d -r1.6.4.6 -r1.6.4.7 *** Chinese-Traditional.msg 5 Apr 2008 11:55:15 -0000 1.6.4.6 --- Chinese-Traditional.msg 7 Apr 2008 15:26:15 -0000 1.6.4.7 *************** *** 233,238 **** Security_NoStealthMode å¦ (鬼鬼ç¥ç¥æ¨¡å¼) Security_StealthMode (鬼鬼ç¥ç¥æ¨¡å¼) ! Security_ExplainStats (éåé¸é éåå¾, POPFile æ¯å¤©é½æå³é䏿¬¡ä¸åä¸åæ¸å¼å° www.usethesource.com çä¸åè ³æ¬: bc (妳çéµçæ¸é), mc (被 POPFile åé¡éçéµä»¶è¨æ¯ç¸½æ¸) å ec (åé¡é¯èª¤ç總æ¸). éäºæ¸å¼æè¢«å²åå°ä¸åæªæ¡è£, ç¶å¾æè¢«æç¨ä¾ç¼ä½ä¸äºéæ¼äººåä½¿ç¨ POPFile çæ æ³è·å ¶ææççµ±è¨è³æ. æçç¶²é 伺æå¨æä¿çå ¶æ¬èº«çæ¥èªæªç´ 5 天, ç¶å¾å°±æå 以åªé¤; æä¸æå²åä»»ä½çµ±è¨èå®ç¨ IP å°åéçéè¯æ§èµ·ä¾.) ! Security_ExplainUpdate (éåé¸é éåå¾, POPFile æ¯å¤©é½æå³é䏿¬¡ä¸åä¸åæ¸å¼å° www.usethesource.com çä¸åè ³æ¬: ma (妳ç POPFile ç主è¦çæ¬ç·¨è), mi (妳ç POPFile çæ¬¡è¦çæ¬ç·¨è) å bn (妳ç POPFile ç建è). æ°çæ¨åºæ, POPFile ææ¶å°ä¸ä»½åå½¢åæ, 並ä¸é¡¯ç¤ºå¨ç«é¢é 端. æçç¶²é 伺æå¨æä¿çå ¶æ¬èº«çæ¥èªæªç´ 5 天, ç¶å¾å°±æå 以åªé¤; æä¸æå²å任使´æ°æª¢æ¥èå®ç¨ IP å°åéçéè¯æ§èµ·ä¾.) Security_PasswordTitle 使ç¨è ä»é¢å¯ç¢¼ Security_Password å¯ç¢¼ --- 233,238 ---- Security_NoStealthMode å¦ (鬼鬼ç¥ç¥æ¨¡å¼) Security_StealthMode (鬼鬼ç¥ç¥æ¨¡å¼) ! Security_ExplainStats (éåé¸é éåå¾, POPFile æ¯å¤©é½æå³é䏿¬¡ä¸åä¸åæ¸å¼å° getpopfile.org çä¸åè ³æ¬: bc (妳çéµçæ¸é), mc (被 POPFile åé¡éçéµä»¶è¨æ¯ç¸½æ¸) å ec (åé¡é¯èª¤ç總æ¸). éäºæ¸å¼æè¢«å²åå°ä¸åæªæ¡è£, ç¶å¾æè¢«æç¨ä¾ç¼ä½ä¸äºéæ¼äººåä½¿ç¨ POPFile çæ æ³è·å ¶ææççµ±è¨è³æ. æçç¶²é 伺æå¨æä¿çå ¶æ¬èº«çæ¥èªæªç´ 5 天, ç¶å¾å°±æå 以åªé¤; æä¸æå²åä»»ä½çµ±è¨èå®ç¨ IP å°åéçéè¯æ§èµ·ä¾.) ! Security_ExplainUpdate (éåé¸é éåå¾, POPFile æ¯å¤©é½æå³é䏿¬¡ä¸åä¸åæ¸å¼å° getpopfile.org çä¸åè ³æ¬: ma (妳ç POPFile ç主è¦çæ¬ç·¨è), mi (妳ç POPFile çæ¬¡è¦çæ¬ç·¨è) å bn (妳ç POPFile ç建è). æ°çæ¨åºæ, POPFile ææ¶å°ä¸ä»½åå½¢åæ, 並ä¸é¡¯ç¤ºå¨ç«é¢é 端. æçç¶²é 伺æå¨æä¿çå ¶æ¬èº«çæ¥èªæªç´ 5 天, ç¶å¾å°±æå 以åªé¤; æä¸æå²å任使´æ°æª¢æ¥èå®ç¨ IP å°åéçéè¯æ§èµ·ä¾.) Security_PasswordTitle 使ç¨è ä»é¢å¯ç¢¼ Security_Password å¯ç¢¼ Index: Bulgarian.msg =================================================================== RCS file: /cvsroot/popfile/engine/languages/Bulgarian.msg,v retrieving revision 1.8.8.3 retrieving revision 1.8.8.4 diff -C2 -d -r1.8.8.3 -r1.8.8.4 *** Bulgarian.msg 31 Jan 2007 11:33:46 -0000 1.8.8.3 --- Bulgarian.msg 7 Apr 2008 15:26:15 -0000 1.8.8.4 *************** *** 156,161 **** Security_Stealth Ñêðèò ðåæèì Security_NoStealthMode Íå (ñêðèò ðåæèì) ! Security_ExplainStats (Êîãàòî òîâà å âêëþ÷åíî, POPFile âåäíúæ äíåâíî èçïðàùà êúì ñêðèïò íà www.usethesource.com: bc (áðîÿ íà êîøîâåòå), mc (áðîÿ ñúîáùåíèÿ, êëàñèôèöèðàíè îò POPFile) è ec (áðîÿ íà ãðåøíî êëàñèôèöèðàíèòå ñúîáùåíèÿ). Òåçè ñòîéíîñòè ñå ñúõðàíÿâàò âúâ ôàéë è áëàãîäàðåíèå íà òÿõ àç ïóáëèêóâàì ñòàòèñòèêà çà íà÷èíà, ïî êîéòî õîðàòà èçïîëçâàò POPFile è êîëêî äîáðå ðàáîòè. Ìîÿò Web ñúðâúð ñúõðàíÿâà ëîã-ôàéëîâåòå ñè â ïðîäúëæåíèå íà îêîëî 5 äíè, ñëåä êîåòî ãè èçòðèâà; àç íå ïàçÿ âðúçêà ìåæäó ñòàòèñòè÷åñêèòå äàííè è êîíêðåòíèòå IP àäðåñè.) ! Security_ExplainUpdate (Êîãàòî òîâà å âêëþ÷åíî, POPFile âåäíúæ äíåâíî èçïðàùà êúì ñêðèïò íà www.usethesource.com: bc (áðîÿ íà êîøîâåòå), mc (áðîÿ ñúîáùåíèÿ, êëàñèôèöèðàíè îò POPFile) è ec (áðîÿ íà ãðåøíî êëàñèôèöèðàíèòå ñúîáùåíèÿ). POPFile ïîëó÷àâà îáðàòíî èçâåñòèå äàëè èìà ïî-íîâà âåðñèÿ íà ñîôòóåðà è ïîêàçâà ñúîòâåòíà êàðòèíêà íà âñÿêà ñòðàíèöà. Ìîÿò Web ñúðâúð ñúõðàíÿâà ëîã-ôàéëîâåòå ñè â ïðîäúëæåíèå íà îêîëî 5 äíè, ñëåä êîåòî ãè èçòðèâà; àç íå ïàçÿ âðúçêà ìåæäó çàïèòâàíèÿòà çà íîâà âåðñèÿ è êîíêðåòíèòå IP àäðåñè.) Security_PasswordTitle Ïàðîëà çà ïîòðåáèòåëñêèÿ èíòåðôåéñ Security_Password Ïàðîëà --- 156,161 ---- Security_Stealth Ñêðèò ðåæèì Security_NoStealthMode Íå (ñêðèò ðåæèì) ! Security_ExplainStats (Êîãàòî òîâà å âêëþ÷åíî, POPFile âåäíúæ äíåâíî èçïðàùà êúì ñêðèïò íà getpopfile.org: bc (áðîÿ íà êîøîâåòå), mc (áðîÿ ñúîáùåíèÿ, êëàñèôèöèðàíè îò POPFile) è ec (áðîÿ íà ãðåøíî êëàñèôèöèðàíèòå ñúîáùåíèÿ). Òåçè ñòîéíîñòè ñå ñúõðàíÿâàò âúâ ôàéë è áëàãîäàðåíèå íà òÿõ àç ïóáëèêóâàì ñòàòèñòèêà çà íà÷èíà, ïî êîéòî õîðàòà èçïîëçâàò POPFile è êîëêî äîáðå ðàáîòè. Ìîÿò Web ñúðâúð ñúõðàíÿâà ëîã-ôàéëîâåòå ñè â ïðîäúëæåíèå íà îêîëî 5 äíè, ñëåä êîåòî ãè èçòðèâà; àç íå ïàçÿ âðúçêà ìåæäó ñòàòèñòè÷åñêèòå äàííè è êîíêðåòíèòå IP àäðåñè.) ! Security_ExplainUpdate (Êîãàòî òîâà å âêëþ÷åíî, POPFile âåäíúæ äíåâíî èçïðàùà êúì ñêðèïò íà getpopfile.org: bc (áðîÿ íà êîøîâåòå), mc (áðîÿ ñúîáùåíèÿ, êëàñèôèöèðàíè îò POPFile) è ec (áðîÿ íà ãðåøíî êëàñèôèöèðàíèòå ñúîáùåíèÿ). POPFile ïîëó÷àâà îáðàòíî èçâåñòèå äàëè èìà ïî-íîâà âåðñèÿ íà ñîôòóåðà è ïîêàçâà ñúîòâåòíà êàðòèíêà íà âñÿêà ñòðàíèöà. Ìîÿò Web ñúðâúð ñúõðàíÿâà ëîã-ôàéëîâåòå ñè â ïðîäúëæåíèå íà îêîëî 5 äíè, ñëåä êîåòî ãè èçòðèâà; àç íå ïàçÿ âðúçêà ìåæäó çàïèòâàíèÿòà çà íîâà âåðñèÿ è êîíêðåòíèòå IP àäðåñè.) Security_PasswordTitle Ïàðîëà çà ïîòðåáèòåëñêèÿ èíòåðôåéñ Security_Password Ïàðîëà Index: Portugues.msg =================================================================== RCS file: /cvsroot/popfile/engine/languages/Portugues.msg,v retrieving revision 1.1.8.4 retrieving revision 1.1.8.5 diff -C2 -d -r1.1.8.4 -r1.1.8.5 *** Portugues.msg 31 Jan 2007 11:33:47 -0000 1.1.8.4 --- Portugues.msg 7 Apr 2008 15:26:16 -0000 1.1.8.5 *************** *** 180,185 **** Security_Stealth Modo Stealth/Operação Servidor Security_NoStealthMode Não (Modo Stealth) ! Security_ExplainStats (Com isto ligado o POPFile envia uma vez por dia os seguintes três valores para um script em www.usethesource.com: bc (o número total de receptáculos que você tem), mc (o número total de mensagens que o POPFile classificou) e ec (o número total de erros de classificação). Isto fica guardado num arquivo que eu vou usar para publicar algumas estatísticas sobre como as pessoas usam o POPFile e o quão bem ele funciona. O meu servidor web mantém o seus arquivos de log por mais ou menos 5 dias antes de os apagar; Eu não guardo nenhuma ligação entre as estatístcas e os endereços IP de cada um.) ! Security_ExplainUpdate (Com isto ligado o POPFile envia uma vez por dia os seguintes três valores para um script em www.usethesource.com: ma (o número maior da versão do seu POPFile), mi (o número menor da versão do seu POPFile) and bn (o número do build da sua versão do POPFile). O POPFile recebe uma resposta na forma de um gráfico que aparece no topo da página se uma nova versão estiver disponível. Meu servidor web mantém seus arquivos de log por mais ou menos 5 antes de os apagar; Eu não guardo nenhuma ligação entre as verificações de versão e os endereços IP de cada um.) Security_PasswordTitle Senha da Interface de utilizador Security_Password Senha --- 180,185 ---- Security_Stealth Modo Stealth/Operação Servidor Security_NoStealthMode Não (Modo Stealth) ! Security_ExplainStats (Com isto ligado o POPFile envia uma vez por dia os seguintes três valores para um script em getpopfile.org: bc (o número total de receptáculos que você tem), mc (o número total de mensagens que o POPFile classificou) e ec (o número total de erros de classificação). Isto fica guardado num arquivo que eu vou usar para publicar algumas estatísticas sobre como as pessoas usam o POPFile e o quão bem ele funciona. O meu servidor web mantém o seus arquivos de log por mais ou menos 5 dias antes de os apagar; Eu não guardo nenhuma ligação entre as estatístcas e os endereços IP de cada um.) ! Security_ExplainUpdate (Com isto ligado o POPFile envia uma vez por dia os seguintes três valores para um script em getpopfile.org: ma (o número maior da versão do seu POPFile), mi (o número menor da versão do seu... [truncated message content] |
From: Manni H. <man...@us...> - 2008-04-07 12:18:55
|
Update of /cvsroot/popfile/engine/manual/zh-cn In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5346/manual/zh-cn Removed Files: training.html proxies.html installing.html firewalls.html multiple.html spa.html manual.html firsttime.html email.html Log Message: Deleted the manual. --- multiple.html DELETED --- --- training.html DELETED --- --- manual.html DELETED --- --- email.html DELETED --- --- installing.html DELETED --- --- firsttime.html DELETED --- --- proxies.html DELETED --- --- firewalls.html DELETED --- --- spa.html DELETED --- |
Update of /cvsroot/popfile/engine/manual/de In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5346/manual/de Removed Files: proxies.html installing.html o_filter2.png oe_filter2.jpg multiple.html oe_filter3.jpg oe_popfile1.jpg oe_filter4.jpg firsttime.html training.html e_filter4.gif o_filter1.png spa.html e_filter1.gif firewalls.html e_filter3.gif oe_popfile3.jpg o_popfile3.png e_filter2.gif oe_filter1.jpg o_popfile2.png e_popfile1.gif zonealaram.gif manual.html email.html e_popfile3.gif e_popfile2.gif oe_popfile2.jpg oe_popfile4.jpg oe_filter5.jpg Log Message: Deleted the manual. --- multiple.html DELETED --- --- oe_filter3.jpg DELETED --- --- o_filter2.png DELETED --- --- oe_popfile3.jpg DELETED --- --- o_filter1.png DELETED --- --- e_popfile3.gif DELETED --- --- spa.html DELETED --- --- e_popfile1.gif DELETED --- --- oe_filter2.jpg DELETED --- --- oe_popfile4.jpg DELETED --- --- e_filter3.gif DELETED --- --- installing.html DELETED --- --- oe_filter5.jpg DELETED --- --- firsttime.html DELETED --- --- oe_popfile2.jpg DELETED --- --- o_popfile2.png DELETED --- --- email.html DELETED --- --- oe_filter1.jpg DELETED --- --- e_filter4.gif DELETED --- --- e_popfile2.gif DELETED --- --- firewalls.html DELETED --- --- e_filter2.gif DELETED --- --- oe_popfile1.jpg DELETED --- --- o_popfile3.png DELETED --- --- training.html DELETED --- --- manual.html DELETED --- --- oe_filter4.jpg DELETED --- --- zonealaram.gif DELETED --- --- e_filter1.gif DELETED --- --- proxies.html DELETED --- |
Update of /cvsroot/popfile/engine/manual/da In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5346/manual/da Removed Files: oe_popfile2_da.gif o_popfile1_da.gif training.html o_filter2_da.gif oe_filter1_da.gif oe_popfile3_da.gif spa.html firewalls.html oe_filter3_da.gif oe_popfile4_da.gif email.html multiple.html manual.html oe_filter5_da.gif o_popfile3_da.gif oe_filter2_da.gif oe_filter4_da.gif o_filter1_da.gif proxies.html o_popfile2_da.gif oe_popfile1_da.gif installing.html firsttime.html Log Message: Deleted the manual. --- oe_popfile2_da.gif DELETED --- --- multiple.html DELETED --- --- oe_popfile1_da.gif DELETED --- --- o_popfile3_da.gif DELETED --- --- oe_filter4_da.gif DELETED --- --- spa.html DELETED --- --- oe_filter1_da.gif DELETED --- --- installing.html DELETED --- --- firsttime.html DELETED --- --- oe_popfile4_da.gif DELETED --- --- oe_popfile3_da.gif DELETED --- --- o_filter1_da.gif DELETED --- --- email.html DELETED --- --- oe_filter2_da.gif DELETED --- --- o_popfile1_da.gif DELETED --- --- oe_filter3_da.gif DELETED --- --- firewalls.html DELETED --- --- o_filter2_da.gif DELETED --- --- oe_filter5_da.gif DELETED --- --- o_popfile2_da.gif DELETED --- --- training.html DELETED --- --- manual.html DELETED --- --- proxies.html DELETED --- |
From: Manni H. <man...@us...> - 2008-04-07 12:18:52
|
Update of /cvsroot/popfile/engine/manual/es In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5346/manual/es Removed Files: installing.html proxies.html spa.html training.html email.html manual.html firsttime.html multiple.html firewalls.html Log Message: Deleted the manual. --- multiple.html DELETED --- --- training.html DELETED --- --- manual.html DELETED --- --- email.html DELETED --- --- installing.html DELETED --- --- firsttime.html DELETED --- --- proxies.html DELETED --- --- firewalls.html DELETED --- --- spa.html DELETED --- |
Update of /cvsroot/popfile/engine/manual/jp In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5346/manual/jp Removed Files: installing.html firsttime.html training.html oe_popfile1.gif oe_filter3.gif o_filter2.gif spa.html oe_filter1.gif oe_popfile3.gif multiple.html o_filter1.gif oe_popfile2.gif oe_filter4.gif proxies.html oe_popfile4.gif manual.html o_popfile2.gif o_popfile1.gif o_popfile3.gif oe_filter5.gif firewalls.html oe_filter2.gif nihongo_blue_ul.gif email.html Log Message: Deleted the manual. --- oe_popfile3.gif DELETED --- --- oe_popfile4.gif DELETED --- --- oe_filter2.gif DELETED --- --- multiple.html DELETED --- --- oe_filter3.gif DELETED --- --- oe_filter1.gif DELETED --- --- spa.html DELETED --- --- o_filter1.gif DELETED --- --- o_popfile3.gif DELETED --- --- installing.html DELETED --- --- oe_filter5.gif DELETED --- --- oe_filter4.gif DELETED --- --- nihongo_blue_ul.gif DELETED --- --- o_popfile1.gif DELETED --- --- firsttime.html DELETED --- --- email.html DELETED --- --- firewalls.html DELETED --- --- o_filter2.gif DELETED --- --- training.html DELETED --- --- oe_popfile2.gif DELETED --- --- manual.html DELETED --- --- o_popfile2.gif DELETED --- --- oe_popfile1.gif DELETED --- --- proxies.html DELETED --- |
From: Manni H. <man...@us...> - 2008-04-07 12:18:52
|
Update of /cvsroot/popfile/engine/manual/br In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5346/manual/br Removed Files: spa.html firewalls.html manual.html email.html installing.html multiple.html training.html firsttime.html proxies.html Log Message: Deleted the manual. --- multiple.html DELETED --- --- training.html DELETED --- --- manual.html DELETED --- --- email.html DELETED --- --- installing.html DELETED --- --- firsttime.html DELETED --- --- proxies.html DELETED --- --- firewalls.html DELETED --- --- spa.html DELETED --- |
From: Manni H. <man...@us...> - 2008-04-07 12:18:52
|
Update of /cvsroot/popfile/engine/manual/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5346/manual/en Removed Files: multiple.html installing.html spa.html proxies.html manual.html email.html training.html firsttime.html firewalls.html Log Message: Deleted the manual. --- multiple.html DELETED --- --- training.html DELETED --- --- manual.html DELETED --- --- email.html DELETED --- --- installing.html DELETED --- --- firsttime.html DELETED --- --- proxies.html DELETED --- --- firewalls.html DELETED --- --- spa.html DELETED --- |
Update of /cvsroot/popfile/engine/manual/ar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5346/manual/ar Removed Files: oe_filter5.gif oe_popfile4.gif email.html oe_filter2.gif o_filter6.gif o_filter4.gif oe_popfile3.gif firsttime.html oe_filter1.gif training.html o_popfile1.gif o_popfile2.gif spa.html oe_filter3.gif o_filter5.gif o_popfile3.gif installing.html o_filter1.gif oe_filter4.gif proxies.html oe_popfile2.gif oe_popfile1.gif multiple.html o_filter3.gif manual.html manual-windows.html firewalls.html o_filter2.gif Log Message: Deleted the manual. --- oe_popfile3.gif DELETED --- --- oe_popfile4.gif DELETED --- --- oe_filter2.gif DELETED --- --- manual.html DELETED --- --- o_filter6.gif DELETED --- --- oe_filter3.gif DELETED --- --- oe_filter1.gif DELETED --- --- spa.html DELETED --- --- o_filter1.gif DELETED --- --- o_popfile3.gif DELETED --- --- installing.html DELETED --- --- oe_filter5.gif DELETED --- --- oe_filter4.gif DELETED --- --- o_popfile1.gif DELETED --- --- firsttime.html DELETED --- --- manual-windows.html DELETED --- --- o_filter4.gif DELETED --- --- email.html DELETED --- --- firewalls.html DELETED --- --- o_filter3.gif DELETED --- --- o_filter2.gif DELETED --- --- training.html DELETED --- --- oe_popfile2.gif DELETED --- --- multiple.html DELETED --- --- o_popfile2.gif DELETED --- --- o_filter5.gif DELETED --- --- oe_popfile1.gif DELETED --- --- proxies.html DELETED --- |
From: Manni H. <man...@us...> - 2008-04-07 12:18:47
|
Update of /cvsroot/popfile/engine/manual/no In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5346/manual/no Removed Files: manual.html spa.html email.html firsttime.html multiple.html proxies.html installing.html training.html firewalls.html Log Message: Deleted the manual. --- multiple.html DELETED --- --- training.html DELETED --- --- manual.html DELETED --- --- email.html DELETED --- --- installing.html DELETED --- --- firsttime.html DELETED --- --- proxies.html DELETED --- --- firewalls.html DELETED --- --- spa.html DELETED --- |
From: Manni H. <man...@us...> - 2008-04-07 12:18:47
|
Update of /cvsroot/popfile/engine/manual/fr In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5346/manual/fr Removed Files: email.html firewalls.html multiple.html firsttime.html manual.html spa.html installing.html proxies.html training.html Log Message: Deleted the manual. --- multiple.html DELETED --- --- training.html DELETED --- --- manual.html DELETED --- --- email.html DELETED --- --- installing.html DELETED --- --- firsttime.html DELETED --- --- proxies.html DELETED --- --- firewalls.html DELETED --- --- spa.html DELETED --- |
From: Manni H. <man...@us...> - 2008-04-07 12:18:47
|
Update of /cvsroot/popfile/engine/manual/zh-tw In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5346/manual/zh-tw Removed Files: firewalls.html spa.html email.html training.html manual.html installing.html firsttime.html proxies.html multiple.html Log Message: Deleted the manual. --- multiple.html DELETED --- --- training.html DELETED --- --- manual.html DELETED --- --- email.html DELETED --- --- installing.html DELETED --- --- firsttime.html DELETED --- --- proxies.html DELETED --- --- firewalls.html DELETED --- --- spa.html DELETED --- |
Update of /cvsroot/popfile/engine/manual In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5346/manual Removed Files: e_filter1.gif o_filter4.gif o_filter1.gif o_popfile2.gif oe_filter5.gif p_filter3.gif o_filter2.gif oe_popfile2.gif e_filter2.gif oe_filter4.gif oe_popfile1.gif oe_filter2.gif e_popfile1.gif p_popfile3.gif e_popfile2.gif p_filter4.gif p_filter1.gif zonealaram.gif oe_popfile3.gif oe_popfile4.gif e_filter4.gif o_filter5.gif p_popfile1.gif o_filter6.gif wiki.css oe_filter3.gif p_filter2.gif oe_filter1.gif e_filter3.gif p_popfile2.gif e_popfile3.gif o_popfile3.gif o_popfile1.gif o_filter3.gif Log Message: Deleted the manual. --- p_popfile1.gif DELETED --- --- oe_popfile3.gif DELETED --- --- oe_popfile4.gif DELETED --- --- oe_filter2.gif DELETED --- --- o_filter6.gif DELETED --- --- p_filter2.gif DELETED --- --- oe_filter3.gif DELETED --- --- oe_filter1.gif DELETED --- --- e_popfile3.gif DELETED --- --- p_filter4.gif DELETED --- --- o_filter1.gif DELETED --- --- o_popfile3.gif DELETED --- --- e_filter3.gif DELETED --- --- o_popfile1.gif DELETED --- --- oe_filter4.gif DELETED --- --- oe_filter5.gif DELETED --- --- p_filter3.gif DELETED --- --- p_popfile3.gif DELETED --- --- o_filter4.gif DELETED --- --- o_filter5.gif DELETED --- --- wiki.css DELETED --- --- e_filter4.gif DELETED --- --- e_popfile2.gif DELETED --- --- e_filter2.gif DELETED --- --- p_filter1.gif DELETED --- --- o_filter3.gif DELETED --- --- oe_popfile2.gif DELETED --- --- e_popfile1.gif DELETED --- --- o_filter2.gif DELETED --- --- p_popfile2.gif DELETED --- --- o_popfile2.gif DELETED --- --- zonealaram.gif DELETED --- --- e_filter1.gif DELETED --- --- oe_popfile1.gif DELETED --- |
Update of /cvsroot/popfile/engine/manual/kr In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5346/manual/kr Removed Files: oe_popfile2_kr.gif proxies.html multiple.html training.html oe_filter2_2_kr.gif oe_popfile1_kr.gif oe_popfile4_kr.gif installing.html oe_filter5_kr.gif email_other_filter.html o_popfile2_kr.gif email.html spa.html oe_popfile3_kr.gif o_filter1_kr.gif oe_filter2_kr.gif o_filter2_kr.gif manual.html firsttime.html oe_filter1_kr.gif firewalls.html oe_filter3_kr.gif o_popfile1_kr.gif email_other_con.html o_popfile3_kr.gif oe_filter4_kr.gif Log Message: Deleted the manual. --- oe_filter3_kr.gif DELETED --- --- o_filter2_kr.gif DELETED --- --- o_popfile3_kr.gif DELETED --- --- oe_popfile3_kr.gif DELETED --- --- oe_filter2_2_kr.gif DELETED --- --- o_popfile1_kr.gif DELETED --- --- spa.html DELETED --- --- oe_filter5_kr.gif DELETED --- --- email_other_filter.html DELETED --- --- installing.html DELETED --- --- firewalls.html DELETED --- --- oe_filter1_kr.gif DELETED --- --- firsttime.html DELETED --- --- oe_filter2_kr.gif DELETED --- --- o_filter1_kr.gif DELETED --- --- oe_popfile1_kr.gif DELETED --- --- oe_popfile2_kr.gif DELETED --- --- email.html DELETED --- --- o_popfile2_kr.gif DELETED --- --- oe_popfile4_kr.gif DELETED --- --- training.html DELETED --- --- manual.html DELETED --- --- multiple.html DELETED --- --- oe_filter4_kr.gif DELETED --- --- proxies.html DELETED --- --- email_other_con.html DELETED --- |
From: Manni H. <man...@us...> - 2008-04-07 12:16:10
|
Update of /cvsroot/popfile/engine/manual/br In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4162/manual/br Removed Files: Tag: b0_22_2 email.html manual.html proxies.html multiple.html firewalls.html spa.html training.html installing.html firsttime.html Log Message: Deleted the manual. --- multiple.html DELETED --- --- training.html DELETED --- --- manual.html DELETED --- --- email.html DELETED --- --- installing.html DELETED --- --- firsttime.html DELETED --- --- proxies.html DELETED --- --- firewalls.html DELETED --- --- spa.html DELETED --- |
From: Manni H. <man...@us...> - 2008-04-07 12:16:09
|
Update of /cvsroot/popfile/engine/manual/no In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4162/manual/no Removed Files: Tag: b0_22_2 installing.html training.html spa.html email.html multiple.html firewalls.html manual.html proxies.html firsttime.html Log Message: Deleted the manual. --- multiple.html DELETED --- --- training.html DELETED --- --- manual.html DELETED --- --- email.html DELETED --- --- installing.html DELETED --- --- firsttime.html DELETED --- --- proxies.html DELETED --- --- firewalls.html DELETED --- --- spa.html DELETED --- |
From: Manni H. <man...@us...> - 2008-04-07 12:16:09
|
Update of /cvsroot/popfile/engine/manual/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4162/manual/en Removed Files: Tag: b0_22_2 manual.html firewalls.html training.html installing.html proxies.html email.html multiple.html firsttime.html spa.html Log Message: Deleted the manual. --- multiple.html DELETED --- --- training.html DELETED --- --- manual.html DELETED --- --- email.html DELETED --- --- installing.html DELETED --- --- firsttime.html DELETED --- --- proxies.html DELETED --- --- firewalls.html DELETED --- --- spa.html DELETED --- |
Update of /cvsroot/popfile/engine/manual/de In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4162/manual/de Removed Files: Tag: b0_22_2 oe_filter4.jpg spa.html e_popfile2.gif e_popfile3.gif training.html e_filter4.gif o_popfile3.png manual.html installing.html oe_filter1.jpg zonealaram.gif oe_filter5.jpg multiple.html o_filter1.png oe_filter3.jpg e_filter3.gif oe_filter2.jpg oe_popfile4.jpg oe_popfile2.jpg firsttime.html oe_popfile1.jpg Thumbs.db oe_popfile3.jpg e_filter1.gif o_popfile2.png firewalls.html o_filter2.png proxies.html e_filter2.gif e_popfile1.gif email.html Log Message: Deleted the manual. --- multiple.html DELETED --- --- oe_filter3.jpg DELETED --- --- o_filter2.png DELETED --- --- oe_popfile3.jpg DELETED --- --- o_filter1.png DELETED --- --- e_popfile3.gif DELETED --- --- spa.html DELETED --- --- e_popfile1.gif DELETED --- --- oe_filter2.jpg DELETED --- --- oe_popfile4.jpg DELETED --- --- e_filter3.gif DELETED --- --- installing.html DELETED --- --- oe_filter5.jpg DELETED --- --- firsttime.html DELETED --- --- oe_popfile2.jpg DELETED --- --- o_popfile2.png DELETED --- --- email.html DELETED --- --- oe_filter1.jpg DELETED --- --- e_filter4.gif DELETED --- --- e_popfile2.gif DELETED --- --- firewalls.html DELETED --- --- e_filter2.gif DELETED --- --- oe_popfile1.jpg DELETED --- --- o_popfile3.png DELETED --- --- training.html DELETED --- --- manual.html DELETED --- --- oe_filter4.jpg DELETED --- --- Thumbs.db DELETED --- --- zonealaram.gif DELETED --- --- e_filter1.gif DELETED --- --- proxies.html DELETED --- |
Update of /cvsroot/popfile/engine/manual In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4162/manual Removed Files: Tag: b0_22_2 e_filter1.gif o_filter2.gif e_filter3.gif e_popfile1.gif zonealaram.gif oe_filter4.gif o_popfile2.gif o_filter4.gif o_popfile3.gif e_filter2.gif e_popfile3.gif p_filter3.gif e_popfile2.gif p_filter2.gif oe_filter1.gif p_popfile2.gif o_filter1.gif oe_popfile2.gif e_filter4.gif p_popfile1.gif o_filter5.gif wiki.css o_filter6.gif oe_filter3.gif oe_popfile4.gif oe_filter5.gif oe_filter2.gif oe_popfile1.gif o_filter3.gif o_popfile1.gif p_filter1.gif oe_popfile3.gif p_filter4.gif p_popfile3.gif Log Message: Deleted the manual. --- p_popfile1.gif DELETED --- --- oe_popfile3.gif DELETED --- --- oe_popfile4.gif DELETED --- --- oe_filter2.gif DELETED --- --- o_filter6.gif DELETED --- --- p_filter2.gif DELETED --- --- oe_filter3.gif DELETED --- --- oe_filter1.gif DELETED --- --- e_popfile3.gif DELETED --- --- p_filter4.gif DELETED --- --- o_filter1.gif DELETED --- --- o_popfile3.gif DELETED --- --- e_filter3.gif DELETED --- --- o_popfile1.gif DELETED --- --- oe_filter4.gif DELETED --- --- oe_filter5.gif DELETED --- --- p_filter3.gif DELETED --- --- p_popfile3.gif DELETED --- --- o_filter4.gif DELETED --- --- o_filter5.gif DELETED --- --- wiki.css DELETED --- --- e_filter4.gif DELETED --- --- e_popfile2.gif DELETED --- --- e_filter2.gif DELETED --- --- p_filter1.gif DELETED --- --- o_filter3.gif DELETED --- --- oe_popfile2.gif DELETED --- --- e_popfile1.gif DELETED --- --- o_filter2.gif DELETED --- --- p_popfile2.gif DELETED --- --- o_popfile2.gif DELETED --- --- zonealaram.gif DELETED --- --- e_filter1.gif DELETED --- --- oe_popfile1.gif DELETED --- |
Update of /cvsroot/popfile/engine/manual/kr In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4162/manual/kr Removed Files: Tag: b0_22_2 training.html spa.html oe_filter4_kr.gif o_popfile2_kr.gif o_filter2_kr.gif email_other_filter.html o_popfile3_kr.gif firewalls.html oe_popfile1_kr.gif firsttime.html installing.html oe_filter2_2_kr.gif o_filter1_kr.gif o_popfile1_kr.gif oe_filter2_kr.gif oe_popfile3_kr.gif oe_filter1_kr.gif manual.html proxies.html multiple.html oe_popfile2_kr.gif oe_filter3_kr.gif email.html oe_popfile4_kr.gif oe_filter5_kr.gif email_other_con.html Log Message: Deleted the manual. --- oe_filter3_kr.gif DELETED --- --- o_filter2_kr.gif DELETED --- --- o_popfile3_kr.gif DELETED --- --- oe_popfile3_kr.gif DELETED --- --- oe_filter2_2_kr.gif DELETED --- --- o_popfile1_kr.gif DELETED --- --- spa.html DELETED --- --- oe_filter5_kr.gif DELETED --- --- email_other_filter.html DELETED --- --- installing.html DELETED --- --- firewalls.html DELETED --- --- oe_filter1_kr.gif DELETED --- --- firsttime.html DELETED --- --- oe_filter2_kr.gif DELETED --- --- o_filter1_kr.gif DELETED --- --- oe_popfile1_kr.gif DELETED --- --- oe_popfile2_kr.gif DELETED --- --- email.html DELETED --- --- o_popfile2_kr.gif DELETED --- --- oe_popfile4_kr.gif DELETED --- --- training.html DELETED --- --- manual.html DELETED --- --- multiple.html DELETED --- --- oe_filter4_kr.gif DELETED --- --- proxies.html DELETED --- --- email_other_con.html DELETED --- |
Update of /cvsroot/popfile/engine/manual/ar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4162/manual/ar Removed Files: Tag: b0_22_2 o_filter4.gif proxies.html o_popfile3.gif manual.html installing.html oe_filter1.gif oe_filter3.gif o_popfile2.gif email.html oe_popfile2.gif firewalls.html o_filter1.gif oe_popfile4.gif spa.html o_filter2.gif o_filter6.gif oe_filter2.gif oe_filter5.gif manual-windows.html oe_filter4.gif o_popfile1.gif training.html firsttime.html o_filter3.gif oe_popfile1.gif multiple.html o_filter5.gif oe_popfile3.gif Log Message: Deleted the manual. --- oe_popfile3.gif DELETED --- --- oe_popfile4.gif DELETED --- --- oe_filter2.gif DELETED --- --- manual.html DELETED --- --- o_filter6.gif DELETED --- --- oe_filter3.gif DELETED --- --- oe_filter1.gif DELETED --- --- spa.html DELETED --- --- o_filter1.gif DELETED --- --- o_popfile3.gif DELETED --- --- installing.html DELETED --- --- oe_filter5.gif DELETED --- --- oe_filter4.gif DELETED --- --- o_popfile1.gif DELETED --- --- firsttime.html DELETED --- --- manual-windows.html DELETED --- --- o_filter4.gif DELETED --- --- email.html DELETED --- --- firewalls.html DELETED --- --- o_filter3.gif DELETED --- --- o_filter2.gif DELETED --- --- training.html DELETED --- --- oe_popfile2.gif DELETED --- --- multiple.html DELETED --- --- o_popfile2.gif DELETED --- --- o_filter5.gif DELETED --- --- oe_popfile1.gif DELETED --- --- proxies.html DELETED --- |