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: Manni H. <man...@us...> - 2005-09-25 12:56:49
|
Update of /cvsroot/popfile/engine/UI In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8517/UI Modified Files: Tag: b0_22_2 HTML.pm Log Message: Back-port the changes to the Buckets tab to 0.22.3 Index: HTML.pm =================================================================== RCS file: /cvsroot/popfile/engine/UI/HTML.pm,v retrieving revision 1.311.4.2 retrieving revision 1.311.4.3 diff -C2 -d -r1.311.4.2 -r1.311.4.3 *** HTML.pm 24 Sep 2005 20:12:07 -0000 1.311.4.2 --- HTML.pm 25 Sep 2005 12:56:36 -0000 1.311.4.3 *************** *** 1710,1733 **** } - if ( ( defined($self->{form_}{color}) ) && ( defined($self->{form_}{bucket}) ) ) { - $self->{c__}->set_bucket_color( $self->{api_session__}, $self->{form_}{bucket}, $self->{form_}{color}); - } - - if ( ( defined($self->{form_}{bucket}) ) && ( defined($self->{form_}{subject}) ) && ( $self->{form_}{subject} > 0 ) ) { - $self->set_bucket_parameter__( $self->{form_}{bucket}, 'subject', $self->{form_}{subject} - 1 ); - } - - if ( ( defined($self->{form_}{bucket}) ) && ( defined($self->{form_}{xtc}) ) && ( $self->{form_}{xtc} > 0 ) ) { - $self->set_bucket_parameter__( $self->{form_}{bucket}, 'xtc', $self->{form_}{xtc} - 1 ); - } - - if ( ( defined($self->{form_}{bucket}) ) && ( defined($self->{form_}{xpl}) ) && ( $self->{form_}{xpl} > 0 ) ) { - $self->set_bucket_parameter__( $self->{form_}{bucket}, 'xpl', $self->{form_}{xpl} - 1 ); - } - - if ( ( defined($self->{form_}{bucket}) ) && ( defined($self->{form_}{quarantine}) ) && ( $self->{form_}{quarantine} > 0 ) ) { - $self->set_bucket_parameter__( $self->{form_}{bucket}, 'quarantine', $self->{form_}{quarantine} - 1 ); - } - # This regular expression defines the characters that are NOT valid # within a bucket name --- 1710,1713 ---- *************** *** 1798,1816 **** push @buckets, @pseudos; my @corpus_data; ! foreach my $bucket (@buckets) { my %row_data; $row_data{Corpus_Bucket} = $bucket; $row_data{Corpus_Bucket_Color} = $self->get_bucket_parameter__( $bucket, 'color' ); ! $row_data{Corpus_Bucket_Unique} = $self->pretty_number( $self->{c__}->get_bucket_unique_count( $self->{api_session__}, $bucket ) ); ! $row_data{Corpus_If_Bucket_Not_Pseudo} = !$self->{c__}->is_pseudo_bucket( $self->{api_session__}, $bucket ); ! $row_data{Corpus_If_Subject} = !$self->get_bucket_parameter__( $bucket, 'subject' ); ! $row_data{Corpus_If_XTC} = !$self->get_bucket_parameter__( $bucket, 'xtc' ); ! $row_data{Corpus_If_XPL} = !$self->get_bucket_parameter__( $bucket, 'xpl' ); ! $row_data{Corpus_If_Quarantine} = !$self->get_bucket_parameter__( $bucket, 'quarantine' ); ! $row_data{Localize_On} = $self->{language__}{On}; ! $row_data{Localize_Off} = $self->{language__}{Off}; ! $row_data{Localize_TurnOn} = $self->{language__}{TurnOn}; ! $row_data{Localize_TurnOff} = $self->{language__}{TurnOff}; my @color_data; foreach my $color (@{$self->{c__}->{possible_colors__}} ) { --- 1778,1821 ---- push @buckets, @pseudos; + # Check whether the user requested any changes to the per-bucket settings + if ( defined($self->{form_}{bucket_settings}) ) { + my @parameters = qw/subject xtc xpl quarantine/; + foreach my $bucket ( @buckets ) { + foreach my $variable ( @parameters ) { + my $bucket_param = $self->get_bucket_parameter__( $bucket, $variable ); + my $form_param = ( $self->{form_}{"${bucket}_$variable"} ) ? 1 : 0; + + if ( $form_param ne $bucket_param ) { + $self->set_bucket_parameter__( $bucket, $variable, $form_param ); + } + } + + # Since color isn't coded binary and only used for + # non-pseudo buckets, we have to handle it separately + + unless ( $self->{c__}->is_pseudo_bucket( $self->{api_session__}, $bucket ) ) { + my $bucket_color = $self->get_bucket_parameter__( $bucket, 'color' ); + my $form_color = $self->{form_}{"${bucket}_color"}; + + if ( $form_color ne $bucket_color ) { + $self->set_bucket_parameter__( $bucket, 'color', $form_color ); + } + } + } + } + + + my $session = $self->{api_session__}; my @corpus_data; ! foreach my $bucket ( @buckets ) { my %row_data; $row_data{Corpus_Bucket} = $bucket; $row_data{Corpus_Bucket_Color} = $self->get_bucket_parameter__( $bucket, 'color' ); ! $row_data{Corpus_Bucket_Unique} = $self->pretty_number( $self->{c__}->get_bucket_unique_count( $session, $bucket ) ); ! $row_data{Corpus_If_Bucket_Not_Pseudo} = !$self->{c__}->is_pseudo_bucket( $session, $bucket ); ! $row_data{Corpus_If_Subject} = $self->get_bucket_parameter__( $bucket, 'subject' ); ! $row_data{Corpus_If_XTC} = $self->get_bucket_parameter__( $bucket, 'xtc' ); ! $row_data{Corpus_If_XPL} = $self->get_bucket_parameter__( $bucket, 'xpl' ); ! $row_data{Corpus_If_Quarantine} = $self->get_bucket_parameter__( $bucket, 'quarantine' ); my @color_data; foreach my $color (@{$self->{c__}->{possible_colors__}} ) { *************** *** 1821,1826 **** } $row_data{Localize_Apply} = $self->{language__}{Apply}; - $row_data{Session_Key} = $self->{session_key__}; $row_data{Corpus_Loop_Loop_Colors} = \@color_data; push ( @corpus_data, \%row_data ); } --- 1826,1831 ---- } $row_data{Localize_Apply} = $self->{language__}{Apply}; $row_data{Corpus_Loop_Loop_Colors} = \@color_data; + push ( @corpus_data, \%row_data ); } |
From: Manni H. <man...@us...> - 2005-09-25 12:56:49
|
Update of /cvsroot/popfile/engine/skins/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8517/skins/default Modified Files: Tag: b0_22_2 corpus-page.thtml Log Message: Back-port the changes to the Buckets tab to 0.22.3 Index: corpus-page.thtml =================================================================== RCS file: /cvsroot/popfile/engine/skins/default/corpus-page.thtml,v retrieving revision 1.9 retrieving revision 1.9.6.1 diff -C2 -d -r1.9 -r1.9.6.1 *** corpus-page.thtml 10 Aug 2004 01:53:24 -0000 1.9 --- corpus-page.thtml 25 Sep 2005 12:56:36 -0000 1.9.6.1 *************** *** 30,292 **** <h2 class="buckets"><TMPL_VAR NAME="Localize_Bucket_Title"></h2> ! <table class="bucketsTable" width="100%" cellspacing="0" cellpadding="0" summary="<TMPL_VAR NAME="Localize_Bucket_MaintenanceTableSummary">"> ! <tr> ! <th class="bucketsLabel" scope="col"> ! <TMPL_VAR NAME="Localize_Bucket_BucketName"> ! </th> ! <th width="1%"> ! ! </th> ! <th class="bucketsLabel" scope="col" align="right"> ! <TMPL_VAR NAME="Localize_Bucket_UniqueWords"> ! </th> ! <th width="1%"> ! ! </th> ! <th class="bucketsLabel" scope="col" align="center"> ! <TMPL_VAR NAME="Localize_Bucket_SubjectModification"> ! </th> ! <th width="1%"> ! ! </th> ! <th class="bucketsLabel" scope="col" align="center"> ! <TMPL_VAR NAME="Localize_Configuration_XTCInsertion"> ! </th> ! <th width="1%"> ! ! </th> ! <th class="bucketsLabel" scope="col" align="center"> ! <TMPL_VAR NAME="Localize_Configuration_XPLInsertion"> ! </th> ! <th width="1%"> ! ! </th> ! <th class="bucketsLabel" scope="col" align="center"> ! <TMPL_VAR NAME="Localize_Bucket_Quarantine"> ! </th> ! <th width="1%"> ! ! </th> ! <th class="bucketsLabel" scope="col" align="left"> ! <TMPL_VAR NAME="Localize_Bucket_ChangeColor"> ! </th> ! </tr> ! ! <TMPL_LOOP NAME="Corpus_Loop_Buckets"> ! ! <TMPL_IF NAME="__odd__"> ! ! <tr class="rowOdd"> ! ! <TMPL_ELSE> ! ! <tr class="rowEven"> ! ! </TMPL_IF> ! ! <td> ! ! <TMPL_IF NAME="Corpus_If_Bucket_Not_Pseudo"> ! <a href="/buckets?session=<TMPL_VAR NAME="Session_Key">&showbucket=<TMPL_VAR NAME="Corpus_Bucket">"> ! </TMPL_IF> ! <span style="color:<TMPL_VAR NAME="Corpus_Bucket_Color">"> ! <TMPL_VAR NAME="Corpus_Bucket"> ! </span> ! <TMPL_IF NAME="Corpus_If_Bucket_Not_Pseudo"> ! </a> </TMPL_IF> ! </td> ! <td width="1%"> ! ! </td> ! ! <TMPL_IF NAME="Corpus_If_Bucket_Not_Pseudo"> ! ! <td align="right"> ! <TMPL_VAR NAME="Corpus_Bucket_Unique"> ! </td> ! <td width="1%"> ! ! </td> ! ! <TMPL_ELSE> ! ! <td align="right"> ! ! </td> ! <td width="1%"> ! ! </td> ! ! </TMPL_IF> ! ! <td align="center"> ! <form class="bucketsSwitch" style="margin: 0" action="/buckets" method="post"> ! ! <TMPL_IF NAME="Corpus_If_Subject"> ! ! <span class="bucketsWidgetStateOff"> ! <TMPL_VAR NAME="Localize_Off"> ! </span> ! <input type="submit" class="toggleOn" name="toggle" value="<TMPL_VAR NAME="Localize_TurnOn">" /> ! <input type="hidden" name="subject" value="2" /> ! ! <TMPL_ELSE> ! ! <span class="bucketsWidgetStateOn"> ! <TMPL_VAR NAME="Localize_On"> ! </span> ! <input type="submit" class="toggleOff" name="toggle" value="<TMPL_VAR NAME="Localize_TurnOff">" /> ! <input type="hidden" name="subject" value="1" /> ! ! </TMPL_IF> ! ! <input type="hidden" name="bucket" value="<TMPL_VAR NAME="Corpus_Bucket">" /> ! <input type="hidden" name="session" value="<TMPL_VAR NAME="Session_Key">" /> ! </form> ! </td> ! <td width="1%"> ! ! </td> ! <td align="center"> ! <form class="bucketsSwitch" style="margin: 0" action="/buckets" method="post"> ! ! <TMPL_IF NAME="Corpus_If_XTC"> ! ! <span class="bucketsWidgetStateOff"> ! <TMPL_VAR NAME="Localize_Off"> ! </span> ! <input type="submit" class="toggleOn" name="toggle" value="<TMPL_VAR NAME="Localize_TurnOn">" /> ! <input type="hidden" name="xtc" value="2" /> ! ! <TMPL_ELSE> ! ! <span class="bucketsWidgetStateOn"> ! <TMPL_VAR NAME="Localize_On"> ! </span> ! <input type="submit" class="toggleOff" name="toggle" value="<TMPL_VAR NAME="Localize_TurnOff">" /> ! <input type="hidden" name="xtc" value="1" /> ! ! </TMPL_IF> ! ! <input type="hidden" name="bucket" value="<TMPL_VAR NAME="Corpus_Bucket">" /> ! <input type="hidden" name="session" value="<TMPL_VAR NAME="Session_Key">" /> ! </form> ! </td> ! <td width="1%"> ! ! </td> ! <td align="center"> ! <form class="bucketsSwitch" style="margin: 0" action="/buckets" method="post"> ! ! <TMPL_IF NAME="Corpus_If_XPL"> ! ! <span class="bucketsWidgetStateOff"> ! <TMPL_VAR NAME="Localize_Off"> ! </span> ! <input type="submit" class="toggleOn" name="toggle" value="<TMPL_VAR NAME="Localize_TurnOn">" /> ! <input type="hidden" name="xpl" value="2" /> <TMPL_ELSE> ! <span class="bucketsWidgetStateOn"> ! <TMPL_VAR NAME="Localize_On"> ! </span> ! <input type="submit" class="toggleOff" name="toggle" value="<TMPL_VAR NAME="Localize_TurnOff">" /> ! <input type="hidden" name="xpl" value="1" /> ! </TMPL_IF> ! <input type="hidden" name="bucket" value="<TMPL_VAR NAME="Corpus_Bucket">" /> ! <input type="hidden" name="session" value="<TMPL_VAR NAME="Session_Key">" /> ! </form> ! </td> ! <td width="1%"> ! ! </td> ! <td align="center"> ! <form class="bucketsSwitch" style="margin: 0" action="/buckets" method="post"> ! <TMPL_IF NAME="Corpus_If_Quarantine"> ! <span class="bucketsWidgetStateOff"> ! <TMPL_VAR NAME="Localize_Off"> ! </span> ! <input type="submit" class="toggleOn" name="toggle" value="<TMPL_VAR NAME="Localize_TurnOn">" /> ! <input type="hidden" name="quarantine" value="2" /> <TMPL_ELSE> ! ! <span class="bucketsWidgetStateOn"> ! <TMPL_VAR NAME="Localize_On"> ! </span> ! <input type="submit" class="toggleOff" name="toggle" value="<TMPL_VAR NAME="Localize_TurnOff">" /> ! <input type="hidden" name="quarantine" value="1" /> ! </TMPL_IF> ! ! <input type="hidden" name="bucket" value="<TMPL_VAR NAME="Corpus_Bucket">" /> ! <input type="hidden" name="session" value="<TMPL_VAR NAME="Session_Key">" /> ! </form> ! </td> ! <td width="1%"> ! ! </td> ! ! <TMPL_IF NAME="Corpus_If_Bucket_Not_Pseudo"> ! ! <td> ! <form class="bucketsSwitch" style="margin: 0" action="/buckets" method="post"> ! <select name="color"> ! ! <TMPL_LOOP NAME="Corpus_Loop_Loop_Colors"> ! ! <option value="<TMPL_VAR NAME="Corpus_Available_Color">" <TMPL_VAR NAME="Corpus_Color_Selected"> style="color: <TMPL_VAR NAME="Corpus_Available_Color">"> ! <TMPL_VAR NAME="Corpus_Available_Color"> ! </option> ! ! </TMPL_LOOP> ! </select> ! <input type="submit" class="submit" value="<TMPL_VAR NAME="Localize_Apply">" /> ! <input type="hidden" name="bucket" value="<TMPL_VAR NAME="Corpus_Bucket">" /> ! <input type="hidden" name="session" value="<TMPL_VAR NAME="Session_Key">" /> ! </form> ! </td> ! ! <TMPL_ELSE> ! ! <td> ! </td> ! ! </TMPL_IF> ! ! </tr> ! ! </TMPL_LOOP> <!-- corpus loop buckets --> ! ! <tr> ! <td colspan="3"> ! <hr /> ! </td> ! </tr> ! <tr> ! <th class="bucketsLabel" scope="row"> ! <TMPL_VAR NAME="Localize_Total"> ! </th> ! <td width="1%"> ! </td> ! <td align="right"> ! <TMPL_VAR NAME="Corpus_Total_Unique"> ! </td> ! </tr> ! </table> ! <br /> <table class="settingsTable" width="100%" cellpadding="10%" cellspacing="0" summary="<TMPL_VAR NAME="Localize_Bucket_StatisticsTableSummary">"> <tr> --- 30,183 ---- <h2 class="buckets"><TMPL_VAR NAME="Localize_Bucket_Title"></h2> ! <form class="bucketsSwitch" action="/buckets" method="post"> ! <input type="hidden" name="session" value="<TMPL_VAR NAME="Session_Key">" /> ! <table width="100%" summary="<TMPL_VAR NAME="Localize_Bucket_MaintenanceTableSummary">"> ! <tr> ! <th colspan="7" align="left"> ! <h2 class="buckets"><TMPL_VAR NAME="Localize_Bucket_Title"></h2> ! </th> ! </tr> ! <tr> ! <th class="bucketsLabel" scope="col" align="left"> ! <TMPL_VAR NAME="Localize_Bucket_BucketName"> ! </th> ! <th class="bucketsLabel" scope="col" align="right"> ! <TMPL_VAR NAME="Localize_Bucket_UniqueWords"> ! </th> ! <th class="bucketsLabel" scope="col" align="center"> ! <TMPL_VAR NAME="Localize_Bucket_SubjectModification"> ! </th> ! <th class="bucketsLabel" scope="col" align="center"> ! <TMPL_VAR NAME="Localize_Configuration_XTCInsertion"> ! </th> ! <th class="bucketsLabel" scope="col" align="center"> ! <TMPL_VAR NAME="Localize_Configuration_XPLInsertion"> ! </th> ! <th class="bucketsLabel" scope="col" align="center"> ! <TMPL_VAR NAME="Localize_Bucket_Quarantine"> ! </th> + <th class="bucketsLabel" scope="col" align="center"> + <TMPL_VAR NAME="Localize_Bucket_ChangeColor"> + </th> + </tr> + + <TMPL_LOOP NAME="Corpus_Loop_Buckets"> + + <TMPL_IF NAME="__odd__"> + + <tr class="rowOdd"> + + <TMPL_ELSE> + + <tr class="rowEven"> + </TMPL_IF> + + <td align="left"> + + <TMPL_IF NAME="Corpus_If_Bucket_Not_Pseudo"> + + <a href="/buckets?showbucket=<TMPL_VAR NAME="Corpus_Bucket">"> + + </TMPL_IF> + + <span style="color:<TMPL_VAR NAME="Corpus_Bucket_Color">"> + <TMPL_VAR NAME="Corpus_Bucket"> + </span> + + <TMPL_IF NAME="Corpus_If_Bucket_Not_Pseudo"> + + </a> + + </TMPL_IF> + + </td> ! ! <TMPL_IF NAME="Corpus_If_Bucket_Not_Pseudo"> ! ! <td align="right"> ! <TMPL_VAR NAME="Corpus_Bucket_Unique"> ! </td> + <TMPL_ELSE> + + <td align="right"> + + </td> ! </TMPL_IF> + + <td align="center"> + <input type="checkbox" class="checkbox" name="<TMPL_VAR NAME="Corpus_Bucket">_subject" <TMPL_IF NAME="Corpus_If_Subject">checked="checked"</TMPL_IF> /> + </td> ! <td align="center"> ! <input type="checkbox" class="checkbox" name="<TMPL_VAR NAME="Corpus_Bucket">_xtc" <TMPL_IF NAME="Corpus_If_XTC">checked="checked"</TMPL_IF> /> ! </td> ! <td align="center"> ! <input type="checkbox" class="checkbox" name="<TMPL_VAR NAME="Corpus_Bucket">_xpl" <TMPL_IF NAME="Corpus_If_XPL">checked="checked"</TMPL_IF> /> ! </td> ! <td align="center"> ! <input type="checkbox" class="checkbox" name="<TMPL_VAR NAME="Corpus_Bucket">_quarantine" <TMPL_IF NAME="Corpus_If_Quarantine">checked="checked"</TMPL_IF> /> ! </td> + + <TMPL_IF NAME="Corpus_If_Bucket_Not_Pseudo"> + + <td align="center"> + <select name="<TMPL_VAR NAME="Corpus_Bucket">_color"> + + <TMPL_LOOP NAME="Corpus_Loop_Loop_Colors"> + + <option value="<TMPL_VAR NAME="Corpus_Available_Color">" <TMPL_VAR NAME="Corpus_Color_Selected"> style="color: <TMPL_VAR NAME="Corpus_Available_Color">"> + <TMPL_VAR NAME="Corpus_Available_Color"> + </option> + + </TMPL_LOOP> + </select> + </td> + <TMPL_ELSE> ! ! <td> ! </td> ! </TMPL_IF> ! ! </tr> ! ! </TMPL_LOOP> <!-- corpus loop buckets --> ! ! <tr> ! <td colspan="2"> ! <hr /> ! </td> ! </tr> ! <tr> ! <th class="bucketsLabel" scope="row"> ! <TMPL_VAR NAME="Localize_Total"> ! </th> ! <td align="right"> ! <TMPL_VAR NAME="Corpus_Total_Unique"> ! </td> ! <td colspan="4"> ! </td> ! <td> ! <input type="submit" class="submit" name="bucket_settings" value="<TMPL_VAR NAME="Localize_ApplyChanges">" /> ! </td> ! </tr> ! </table> ! </form><br /> <table class="settingsTable" width="100%" cellpadding="10%" cellspacing="0" summary="<TMPL_VAR NAME="Localize_Bucket_StatisticsTableSummary">"> <tr> |
From: Manni H. <man...@us...> - 2005-09-24 20:12:17
|
Update of /cvsroot/popfile/engine/UI In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26624/UI Modified Files: Tag: b0_22_2 HTML.pm Log Message: Fix colspan bug on history page the way Brian suggested. Index: HTML.pm =================================================================== RCS file: /cvsroot/popfile/engine/UI/HTML.pm,v retrieving revision 1.311.4.1 retrieving revision 1.311.4.2 diff -C2 -d -r1.311.4.1 -r1.311.4.2 *** HTML.pm 17 Sep 2005 05:40:30 -0000 1.311.4.1 --- HTML.pm 24 Sep 2005 20:12:07 -0000 1.311.4.2 *************** *** 2511,2516 **** if ( ( $last != -1 ) && ( $self->{form_}{sort} =~ /inserted/ ) && ( $self->config_( 'session_dividers' ) ) ) { $row_data{History_If_Session} = ( abs( $$row[7] - $last ) > 300 ); - $row_data{History_Colspan} = $colspan+1; } $last = $$row[7]; --- 2511,2518 ---- if ( ( $last != -1 ) && ( $self->{form_}{sort} =~ /inserted/ ) && ( $self->config_( 'session_dividers' ) ) ) { $row_data{History_If_Session} = ( abs( $$row[7] - $last ) > 300 ); } + # we set this here so feedback lines will also + # get the correct colspan: + $row_data{History_Colspan} = $colspan+1; $last = $$row[7]; |
From: Manni H. <man...@us...> - 2005-09-24 20:10:48
|
Update of /cvsroot/popfile/engine/UI In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26480/UI Modified Files: HTML.pm Log Message: Fix colspan bug on history page the way Brian suggested to fix it. Index: HTML.pm =================================================================== RCS file: /cvsroot/popfile/engine/UI/HTML.pm,v retrieving revision 1.358 retrieving revision 1.359 diff -C2 -d -r1.358 -r1.359 *** HTML.pm 15 Sep 2005 07:49:24 -0000 1.358 --- HTML.pm 24 Sep 2005 20:10:41 -0000 1.359 *************** *** 3132,3137 **** $row_data{History_If_Session} = ( abs( $$row[7] - $last ) > 300 ); - $row_data{History_Colspan} = $colspan+1; } $last = $$row[7]; --- 3132,3139 ---- $row_data{History_If_Session} = ( abs( $$row[7] - $last ) > 300 ); } + # we set this here so feedback lines will also + # get the correct colspan: + $row_data{History_Colspan} = $colspan+1; $last = $$row[7]; |
From: Brian S. <xue...@us...> - 2005-09-23 16:16:07
|
Update of /cvsroot/popfile/windows/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21575 Modified Files: pfidiag.nsi Log Message: Updated to use the newer, smaller ShellLink plugin. Since the POPFile shortcut tests are very simple, downgrade the error msgs to warnings. Index: pfidiag.nsi =================================================================== RCS file: /cvsroot/popfile/windows/test/pfidiag.nsi,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** pfidiag.nsi 5 Aug 2005 19:08:53 -0000 1.14 --- pfidiag.nsi 23 Sep 2005 16:15:59 -0000 1.15 *************** *** 59,62 **** --- 59,64 ---- ; (${NSISDIR}\Plugins\). The 'ShellLink' source and example files can be unzipped to the ; ${NSISDIR}\Contrib\ShellLink\ folder if you wish, but this step is entirely optional. + ; + ; This script requires v1.1 (or later) of the ShellLink plugin *************** *** 103,107 **** ;-------------------------------------------------------------------------- ! !define C_VERSION "0.0.56" !define C_OUTFILE "pfidiag.exe" --- 105,109 ---- ;-------------------------------------------------------------------------- ! !define C_VERSION "0.0.57" !define C_OUTFILE "pfidiag.exe" *************** *** 476,482 **** ; do not support different account types, we treat this error as if user has 'Admin' rights. ! ClearErrors ! UserInfo::GetName ! IfErrors 0 got_name ; Assume Win9x system, so user has 'Admin' rights --- 478,484 ---- ; do not support different account types, we treat this error as if user has 'Admin' rights. ! ClearErrors ! UserInfo::GetName ! IfErrors 0 got_name ; Assume Win9x system, so user has 'Admin' rights *************** *** 487,491 **** got_name: ! Pop $G_WINUSERNAME StrCmp $G_WINUSERNAME "" 0 get_usertype StrCpy $G_WINUSERNAME "UnknownUser" --- 489,493 ---- got_name: ! Pop $G_WINUSERNAME StrCmp $G_WINUSERNAME "" 0 get_usertype StrCpy $G_WINUSERNAME "UnknownUser" *************** *** 493,497 **** get_usertype: UserInfo::GetAccountType ! Pop ${L_WINUSERTYPE} StrCmp ${L_WINUSERTYPE} "Admin" section_end StrCmp ${L_WINUSERTYPE} "Power" section_end --- 495,499 ---- get_usertype: UserInfo::GetAccountType ! Pop ${L_WINUSERTYPE} StrCmp ${L_WINUSERTYPE} "Admin" section_end StrCmp ${L_WINUSERTYPE} "Power" section_end *************** *** 597,601 **** DetailPrint "" DetailPrint "'POPFile' total = ${L_TEMP}" ! DetailPrint "^^^^^ Error ^^^^^ The $\"'POPFile' total$\" should not be more than one (1)" section_end: --- 599,603 ---- DetailPrint "" DetailPrint "'POPFile' total = ${L_TEMP}" ! DetailPrint "^^^^ Warning ^^^^ The $\"'POPFile' total$\" is greater than one" section_end: *************** *** 1393,1404 **** Function AnalyseShortcuts ! !define L_LNK_FOLDER $R9 ; folder where the shortcuts (if any) are stored ! !define L_LNK_HANDLE $R8 ; file handle used when searching for shortcut files ! !define L_LNK_NAME $R7 ; name of a shortcut file ! !define L_LNK_TOTAL $R6 ; counts the number of shortcuts we find ! !define L_POPFILE_TOTAL $R5 ; total number of shortcuts which appear to start POPFile ! !define L_SHORTCUT_ARGS $R4 ! !define L_SHORTCUT_TARGET $R3 ! !define L_TEMP $R2 Exch ${L_LNK_FOLDER} --- 1395,1407 ---- Function AnalyseShortcuts ! !define L_LNK_FOLDER $R9 ; folder where the shortcuts (if any) are stored ! !define L_LNK_HANDLE $R8 ; file handle used when searching for shortcut files ! !define L_LNK_NAME $R7 ; name of a shortcut file ! !define L_LNK_TOTAL $R6 ; counts the number of shortcuts we find ! !define L_POPFILE_TOTAL $R5 ; total number of shortcuts which appear to start POPFile ! !define L_SHORTCUT_ARGS $R4 ! !define L_SHORTCUT_START_IN $R3 ! !define L_SHORTCUT_TARGET $R2 ! !define L_TEMP $R1 Exch ${L_LNK_FOLDER} *************** *** 1408,1411 **** --- 1411,1415 ---- Push ${L_POPFILE_TOTAL} Push ${L_SHORTCUT_ARGS} + Push ${L_SHORTCUT_START_IN} Push ${L_SHORTCUT_TARGET} Push ${L_TEMP} *************** *** 1424,1431 **** IfFileExists "${L_LNK_FOLDER}\${L_LNK_NAME}\*.*" look_again IntOp ${L_LNK_TOTAL} ${L_LNK_TOTAL} + 1 ! ShellLink::GetShortCutTarget "${L_LNK_FOLDER}\${L_LNK_NAME}" ! Pop ${L_SHORTCUT_TARGET} ! ShellLink::GetShortCutArgs "${L_LNK_FOLDER}\${L_LNK_NAME}" ! Pop ${L_SHORTCUT_ARGS} Push ${L_SHORTCUT_TARGET} --- 1428,1435 ---- IfFileExists "${L_LNK_FOLDER}\${L_LNK_NAME}\*.*" look_again IntOp ${L_LNK_TOTAL} ${L_LNK_TOTAL} + 1 ! ShellLink::GetShortCutTarget "${L_LNK_FOLDER}\${L_LNK_NAME}" ! Pop ${L_SHORTCUT_TARGET} ! ShellLink::GetShortCutArgs "${L_LNK_FOLDER}\${L_LNK_NAME}" ! Pop ${L_SHORTCUT_ARGS} Push ${L_SHORTCUT_TARGET} *************** *** 1442,1447 **** --- 1446,1454 ---- show_details: IntOp ${L_POPFILE_TOTAL} ${L_POPFILE_TOTAL} + 1 + ShellLink::GetShortCutWorkingDirectory "${L_LNK_FOLDER}\${L_LNK_NAME}" + Pop ${L_SHORTCUT_START_IN} DetailPrint "" DetailPrint "Shortcut name = < ${L_LNK_NAME} >" + DetailPrint "Shortcut start in = < ${L_SHORTCUT_START_IN} >" DetailPrint "Shortcut target = < ${L_SHORTCUT_TARGET} >" StrCpy ${L_TEMP} "found" *************** *** 1472,1476 **** DetailPrint "POPFile shortcuts = ${L_POPFILE_TOTAL}" IntCmp ${L_POPFILE_TOTAL} 1 restore_regs restore_regs ! DetailPrint "^^^^^ Error ^^^^^ There should not be more than one (1) POPFile StartUp shortcut here" restore_regs: --- 1479,1483 ---- DetailPrint "POPFile shortcuts = ${L_POPFILE_TOTAL}" IntCmp ${L_POPFILE_TOTAL} 1 restore_regs restore_regs ! DetailPrint "^^^^ Warning ^^^^ More than one POPFile StartUp shortcut found in this folder" restore_regs: *************** *** 1479,1482 **** --- 1486,1490 ---- Pop ${L_TEMP} Pop ${L_SHORTCUT_TARGET} + Pop ${L_SHORTCUT_START_IN} Pop ${L_SHORTCUT_ARGS} Pop ${L_POPFILE_TOTAL} *************** *** 1492,1495 **** --- 1500,1504 ---- !undef L_POPFILE_TOTAL !undef L_SHORTCUT_ARGS + !undef L_SHORTCUT_START_IN !undef L_SHORTCUT_TARGET !undef L_TEMP |
From: Brian S. <xue...@us...> - 2005-09-22 19:35:16
|
Update of /cvsroot/popfile/windows/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16816 Modified Files: Tag: b0_22_2 pfidiag.nsi Log Message: Make source easier to maintain. Analyse the StartUp shortcuts (if any). Requires ShellLink plugin v1.1 (see the script file's header comment). Index: pfidiag.nsi =================================================================== RCS file: /cvsroot/popfile/windows/test/pfidiag.nsi,v retrieving revision 1.8.4.1 retrieving revision 1.8.4.2 diff -C2 -d -r1.8.4.1 -r1.8.4.2 *** pfidiag.nsi 13 Sep 2005 19:01:55 -0000 1.8.4.1 --- pfidiag.nsi 22 Sep 2005 19:35:03 -0000 1.8.4.2 *************** *** 45,48 **** --- 45,66 ---- !undef ${NSIS_VERSION}_found + + ;------------------------------------------------ + ; This script requires the 'ShellLink' NSIS plugin + ;------------------------------------------------ + ; + ; This script uses a special NSIS plugin (ShellLink) to extract information from a Windows + ; shortcut (*.lnk) file [...1524 lines suppressed...] ! Pop ${L_SHORTCUT_START_IN} ! Pop ${L_SHORTCUT_ARGS} ! Pop ${L_POPFILE_TOTAL} ! Pop ${L_LNK_TOTAL} ! Pop ${L_LNK_NAME} ! Pop ${L_LNK_HANDLE} ! Exch ${L_LNK_FOLDER} ; return number of shortcuts which appear to start POPFile ! ! !undef L_LNK_FOLDER ! !undef L_LNK_HANDLE ! !undef L_LNK_NAME ! !undef L_LNK_TOTAL ! !undef L_POPFILE_TOTAL ! !undef L_SHORTCUT_ARGS ! !undef L_SHORTCUT_START_IN ! !undef L_SHORTCUT_TARGET ! !undef L_TEMP ! FunctionEnd |
From: John Graham-C. <jgr...@us...> - 2005-09-17 18:48:53
|
Update of /cvsroot/popfile/engine In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5505 Removed Files: Tag: b0_22_2 Catala.msg Log Message: Remove file I shouldn't have added --- Catala.msg DELETED --- |
From: naoki i. <am...@us...> - 2005-09-17 05:40:38
|
Update of /cvsroot/popfile/engine/UI In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16088/UI Modified Files: Tag: b0_22_2 HTML.pm Log Message: Following Japanese support: - Support Base64-encoded Japanese mail. - Performance update for Kakasi wakachi-gaki. - Performance update for Mutex with Text-Kakasi. - Fix broken euc-jp code on UI (history tab). Index: HTML.pm =================================================================== RCS file: /cvsroot/popfile/engine/UI/HTML.pm,v retrieving revision 1.311 retrieving revision 1.311.4.1 diff -C2 -d -r1.311 -r1.311.4.1 *** HTML.pm 29 Nov 2004 21:47:16 -0000 1.311 --- HTML.pm 17 Sep 2005 05:40:30 -0000 1.311.4.1 *************** *** 2458,2461 **** --- 2458,2467 ---- $row_data{"History_If_$2"} = ( $1 eq '+')?1:0; } + + if ( $self->config_( 'language' ) eq 'Nihongo' ) { + # Remove wrong characters as euc-jp. + $$row[4] =~ s/\G((?:$euc_jp)*)([\x80-\xFF](?=(?:$euc_jp)*))?/$1/og; + } + $row_data{History_Arrived} = $self->pretty_date__( $$row[7] ); $row_data{History_From} = $$row[1]; |
From: naoki i. <am...@us...> - 2005-09-17 05:40:38
|
Update of /cvsroot/popfile/engine/Classifier In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16088/Classifier Modified Files: Tag: b0_22_2 MailParse.pm Bayes.pm Log Message: Following Japanese support: - Support Base64-encoded Japanese mail. - Performance update for Kakasi wakachi-gaki. - Performance update for Mutex with Text-Kakasi. - Fix broken euc-jp code on UI (history tab). Index: Bayes.pm =================================================================== RCS file: /cvsroot/popfile/engine/Classifier/Bayes.pm,v retrieving revision 1.327.4.2 retrieving revision 1.327.4.3 diff -C2 -d -r1.327.4.2 -r1.327.4.3 *** Bayes.pm 16 Sep 2005 19:20:26 -0000 1.327.4.2 --- Bayes.pm 17 Sep 2005 05:40:30 -0000 1.327.4.3 *************** *** 339,342 **** --- 339,361 ---- } + # Since Text::Kakasi is not thread-safe, we use it under the + # control of a Mutex to avoid a crash if we are running on + # Windows and using the fork. + + if ( ( $self->{parser__}->{lang__} eq 'Nihongo' ) && ( $^O eq 'MSWin32' ) && + ( ( ( $self->module_config_( 'pop3', 'enabled' ) ) && + ( $self->module_config_( 'pop3', 'force_fork' ) ) ) || + ( ( $self->module_config_( 'nntp', 'enabled' ) ) && + ( $self->module_config_( 'nntp', 'force_fork' ) ) ) || + ( ( $self->module_config_( 'smtp', 'enabled' ) ) && + ( $self->module_config_( 'smtp', 'force_fork' ) ) ) ) ) { + $self->{parser__}->{need_kakasi_mutex__} = 1; + + # Prepare the Mutex. + require POPFile::Mutex; + $self->{parser__}->{kakasi_mutex__} = new POPFile::Mutex( 'mailparse_kakasi' ); + $self->log_( 2, "Create mutex for Kakasi." ); + } + $self->upgrade_predatabase_data__(); Index: MailParse.pm =================================================================== RCS file: /cvsroot/popfile/engine/Classifier/MailParse.pm,v retrieving revision 1.216 retrieving revision 1.216.4.1 diff -C2 -d -r1.216 -r1.216.4.1 *** MailParse.pm 8 Dec 2004 01:45:29 -0000 1.216 --- MailParse.pm 17 Sep 2005 05:40:28 -0000 1.216.4.1 *************** *** 1539,1542 **** --- 1539,1556 ---- $self->{colorized__} = ''; $self->{colorized__} .= "<tt>" if ( $self->{color__} ne '' ); + + # Since Text::Kakasi is not thread-safe, we use it under the + # control of a Mutex to avoid a crash if we are running on + # Windows. + + if ( $self->{lang__} eq 'Nihongo' ) { + if ( $self->{need_kakasi_mutex__} ) { + require POPFile::Mutex; + $self->{kakasi_mutex__}->acquire(); + } + + # Open Kakasi dictionary and initialize + init_kakasi(); + } } *************** *** 1574,1577 **** --- 1588,1601 ---- $self->{in_html_tag__} = 0; + + if ( $self->{lang__} eq 'Nihongo' ) { + # Close Kakasi dictionary + close_kakasi(); + + if ( $self->{need_kakasi_mutex__} ) { + require POPFile::Mutex; + $self->{kakasi_mutex__}->release(); + } + } } *************** *** 1703,1706 **** --- 1727,1733 ---- print "Hit MIME boundary --$1\n" if $self->{debug__}; + # Decode base64 for every part. + $self->{colorized__} .= $self->clear_out_base64() . "\n\n"; + $self->{in_headers__} = 1; } else { *************** *** 1783,1786 **** --- 1810,1819 ---- $decoded = decode_base64( $self->{base64__} ); + + if ( $self->{lang__} eq 'Nihongo' ) { + $decoded = convert_encoding( $decoded, $self->{charset__}, 'euc-jp', '7bit-jis', @{$encoding_candidates{$self->{lang__}}} ); + $decoded = parse_line_with_kakasi( $self, $decoded ); + } + $self->parse_html( $decoded, 1 ); *************** *** 2496,2534 **** my ( $self, $line ) = @_; # This is used to parse Japanese require Text::Kakasi; ! # Split Japanese line into words using Kakasi Wakachigaki ! # mode(-w is passed to Kakasi as argument). Both input and ouput ! # encoding are EUC-JP. ! # ! # Since Text::Kakasi is not thread-safe, we use it under the ! # control of a semaphore to avoid a crash if we are running on ! # Windows in a forked process. ! # ! # Note that this requires us to detect a sub-process by looking at ! # the value of $$. In ActivePerl a negative PID is in a ! # sub-process If this were to change then this code would not ! # work. ! my $need_semaphore = ( ( $^O eq 'MSWin32' ) && ( $$ < 0 ) ); ! if ( $need_semaphore ) { ! if ( !defined( $self->{mutex__} ) ) { ! require POPFile::Mutex; ! $self->{mutex__} = new POPFile::Mutex( 'mailparse_kakasi' ); ! } ! $self->{mutex__}->acquire(); ! } ! Text::Kakasi::getopt_argv("kakasi", "-w -ieuc -oeuc"); ! $line = Text::Kakasi::do_kakasi($line); ! Text::Kakasi::close_kanwadict(); ! if ( $need_semaphore ) { ! $self->{mutex__}->release(); ! } ! return $line; } --- 2529,2574 ---- my ( $self, $line ) = @_; + # If the line does not contain Japanese characters, do nothing + return $line if ( $line =~ /^[\x00-\x7F]*$/ ); + # This is used to parse Japanese require Text::Kakasi; ! # Split Japanese line into words using Kakasi Wakachigaki mode ! $line = Text::Kakasi::do_kakasi($line); ! return $line; ! } ! # ---------------------------------------------------------------------------- ! # ! # init_kakasi ! # ! # Open the kanwa dictionary and initialize the parameter of Kakasi. ! # ! # ---------------------------------------------------------------------------- ! sub init_kakasi ! { ! require Text::Kakasi; ! # Initialize Kakasi with Wakachigaki mode(-w is passed to ! # Kakasi as argument). Both input and ouput encoding are ! # EUC-JP. ! Text::Kakasi::getopt_argv("kakasi", "-w", "-ieuc", "-oeuc"); ! } ! # ---------------------------------------------------------------------------- ! # ! # close_kakasi ! # ! # Close the kanwa dictionary of Kakasi. ! # ! # ---------------------------------------------------------------------------- ! sub close_kakasi ! { ! require Text::Kakasi; ! ! Text::Kakasi::close_kanwadict(); } |
From: John Graham-C. <jgr...@us...> - 2005-09-16 19:21:24
|
Update of /cvsroot/popfile/engine In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29456 Added Files: Tag: b0_22_2 Catala.msg Log Message: Add Catalan to v0.22.3 --- NEW FILE: Catala.msg --- # Copyright (c) 2001-2003 John Graham-Cumming # # 2005/08/09 Translated by David Gimeno i Ayuso <in...@si...> # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with POPFile; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # # Identify the language and character set used for the interface LanguageCode ca LanguageCharset ISO-8859-1 LanguageDirection ltr # This is used to get the appropriate subdirectory for the manual ManualLanguage en # This is where to find the FAQ on the Wiki FAQLink FrequentlyAskedQuestions # Common words that are used on their own all over the interface Apply Aplicar On Actiu Off Inactiu TurnOn Activar TurnOff Desactivar Add Afegir Remove Suprimir Previous Anterior Next Següent From Des de Subject Assumpte Cc Còpia Classification Cistella Reclassify Reclassificar Probability Probabilitat Scores Barems QuickMagnets Imants ràpids Undo Desfer Close Tancar Find Cercar Filter Filtre Yes Sí No No ChangeToYes Canviar a Sí ChangeToNo Canviar a No Bucket Cistella Magnet Imant Delete Esborrar Create Crear To A Total Total Rename Redenominar Frequency Freqüència Probability Probabilitat Score Barem Lookup Examinar Word Mot Count Comptador Update Actualitzar Refresh Recarregar FAQ PMF ID ID Date Data Arrived Rebut Size Tamany # This is a regular expression pattern that is used to convert # a number into a friendly looking number (for the US and UK this # means comma separated at the thousands) Locale_Thousands . Locale_Decimal ' # The Locale_Date uses the format strings in Perl's Date::Format # module to set the date format for the UI. There are two possible # ways to specify it. # # <format> Just one simple format used for all dates # <<format> | <format> The first format is used for dates less than # 7 days from now, the second for all other dates Locale_Date %d/%m %R%Z | %e/%L/%Y %R%Z # The header and footer that appear on every UI page Header_Title Centre de control POPFile Header_Shutdown Aturar POPFile Header_History Històric Header_Buckets Cistelles Header_Configuration Configuració Header_Advanced Avançat Header_Security Seguretat Header_Magnets Imants Footer_HomePage Pàgina inicial POPFile Footer_Manual Manual Footer_Forums Fòrums Footer_FeedMe Acaptar Footer_RequestFeature Sol·licitar millora Footer_MailingList Llista de correu Footer_Wiki Documentació Configuration_Error1 El caràcter separador ha de ser-ne un de sol Configuration_Error2 El port de l'interfície d'usuari ha de ser un número entre 1 i 65535 Configuration_Error3 El port que rep les connexions POP3 ha de ser un número entre 1 i 65535 Configuration_Error4 El tamany de pàgina ha de ser un número entre 1 i 1000 Configuration_Error5 El nombre de dies a l'històric ha de ser un número entre 1 i 366 Configuration_Error6 El temps d'espera de TCP ha de ser un número entre 10 i 300 Configuration_Error7 El port que rep les connexions XML RPC ha de ser un número entre 1 i 65535 Configuration_Error8 El port intermedi SOCKS V ha de ser un número entre 1 i 65535 Configuration_POP3Port Port que rep les connexions POP3 Configuration_POP3Update S'ha actualitzat el port POP3 a %s; no tindrà efecte fins que reinicieu el POPFile Configuration_XMLRPCUpdate S'ha actualitzat el port XML-RPC a %s; no tindrà efecte fins que reinicieu el POPFile Configuration_XMLRPCPort Port que rep les connexions XML-RPC Configuration_SMTPPort Port que rep les connexions SMTP Configuration_SMTPUpdate S'ha actualitzat el port SMTP a %s; no tindrà efecte fins que reinicieu el POPFile Configuration_NNTPPort Port que rep les connexions NNTP Configuration_NNTPUpdate S'ha actualitzat el port NNTP a %s; no tindrà efecte fins que reinicieu el POPFile Configuration_POPFork Permetre connexions concurrents POP3 Configuration_SMTPFork Permetre connexions concurrents SMTP Configuration_NNTPFork Permetre connexions concurrents NNTP Configuration_POP3Separator Caràcter separador de host:port:user POP3 Configuration_NNTPSeparator Caràcter separador de host:port:user NNPT Configuration_POP3SepUpdate S'ha actualitzat el separador POP3 a %s Configuration_NNTPSepUpdate S'ha actualitzat el separador NNTP a %s Configuration_UI Port web d'interfície d'usuari Configuration_UIUpdate S'ha actualitzat el port web d'interfície d'usuari a %s; no tindrà efecte fins que reinicieu el POPFile Configuration_History Nombre de missatges per pàgina Configuration_HistoryUpdate S'ha actualitzat el nombre de missatges per pàgina a %s Configuration_Days Nombre de dies a conservar l'històric Configuration_DaysUpdate S'ha actualitzat el nombre de dies d'històric a %s Configuration_UserInterface Interfície d'usuari Configuration_Skins Aparences Configuration_SkinsChoose Trieu aparença Configuration_Language Idioma Configuration_LanguageChoose Trieu idioma Configuration_ListenPorts Opcions de mòduls Configuration_HistoryView Veure històric Configuration_TCPTimeout Temps d'espera connexió Configuration_TCPTimeoutSecs Temps d'espera connexió en segons Configuration_TCPTimeoutUpdate S'ha actualitzat el temps d'espera connexió a %s Configuration_ClassificationInsertion Inserció text del missatge Configuration_SubjectLine Modificació<br>línia de l'assumpte Configuration_XTCInsertion Capçalera<br>X-Text-Classification Configuration_XPLInsertion Capçalera<br>X-POPFile-Link Configuration_Logging S'està registrant Configuration_None Cap Configuration_ToScreen A pantalla Configuration_ToFile A fitxer Configuration_ToScreenFile A pantalla i fitxer Configuration_LoggerOutput Sortida usuari Configuration_GeneralSkins Aparences Configuration_SmallSkins Aparences petites Configuration_TinySkins Aparences minúscules Configuration_CurrentLogFile <Descarregar fitxer de registre actual> Configuration_SOCKSServer Servidor intermedi SOCKS V Configuration_SOCKSPort Port intermedi SOCKS V Configuration_SOCKSPortUpdate S'ha actualitzat el port intermedi SOCKS V a %s Configuration_SOCKSServerUpdate S'ha actualitzat el servidor intermedi SOCKS V a %s Configuration_Fields Columnes històric Advanced_Error1 '%s' ja és a la llista de mots a ignorar Advanced_Error2 Mots a ignorar només pot contenir caràcters alfanumèrics, ., _, - i @ Advanced_Error3 afegit '%s' a la llista de mots a ignorar Advanced_Error4 '%s' no és a la llista de mots a ignorar Advanced_Error5 suprimit '%s' de la llista de mots a ignorar Advanced_StopWords Mots a ignorar Advanced_Message1 POPFile ignora els següents mots molt usuals: Advanced_AddWord Afegir mot Advanced_RemoveWord Suprimir mot Advanced_AllParameters Tots els paràmetres POPFile Advanced_Parameter Paràmetre Advanced_Value Valor Advanced_Warning Aquesta és la llista completa de paràmetres de POPFile. Només usuaris avançats: canvieu-los i cliqueu Actualitzar; no se'n comprova la validesa. Els ítems mostrats en negreta són diferents dels predeterminats. Advanced_ConfigFile Fitxer de configuració: History_Filter (s'està mostrant només la cistella <font color="%s">%s</font>) History_FilterBy Filtrat per History_Search (cercat per Des de/Assumte %s) History_Title Missatges recents History_Jump Anar a la pàgina History_ShowAll Mostrar-ho tot History_ShouldBe Hauria de ser History_NoFrom cap línia Des de History_NoSubject cap línia Assumpte History_ClassifyAs Classificar com a History_MagnetUsed Imant usat History_MagnetBecause <b>Imant usat</b><p>Classificat com a <font color="%s">%s</font> degut a l'imant %s </p> History_ChangedTo S'ha canviat a <font color="%s">%s</font> History_Already Reclassificat com a <font color="%s">%s</font> History_RemoveAll Suprimir-ho tot History_RemovePage Suprimir pàgina History_RemoveChecked Suprimir marcats History_Remove Per suprimir entrades a l'històric, cliqueu History_SearchMessage Cercar Des de/Assumpte History_NoMessages Cap missatge History_ShowMagnet imantat History_Negate_Search Invertir cerca/filtre History_Magnet (s'està mostrant només missatges classificats per imant) History_NoMagnet (s'està mostrant només missatges no classificats per imant) History_ResetSearch Reiniciar History_ChangedClass Ara s'hauria de classificar com a History_Purge Esborrar ara History_Increase Augmentar History_Decrease Reduir History_Column_Characters Canviar l'ample de les columnes Des de, A, Còpia i Assumpte History_Automatic Automàtic History_Reclassified Reclassificat History_Size_Bytes %d B History_Size_KiloBytes %.1f KB History_Size_MegaBytes %.1f MB Password_Title Contrasenya Password_Enter Introduïu-hi la contrasenya Password_Go Anar-hi! Password_Error1 Contrasenya incorrecta Security_Error1 El port ha de ser un número entre 1 i 65535 Security_Stealth Mode furtiu/Operació del servidor 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 Security_PasswordUpdate S'ha actualitzat la contrasenya Security_AUTHTitle Servidors remots Security_SecureServer Servidor POP3 remot (SPA/AUTH o servidor intermedi transparent) Security_SecureServerUpdate S'ha actualitzat el servidor POP3 remot a %s Security_SecurePort Port POP3 remot (SPA/AUTH o servidor intermedi transparent) Security_SecurePortUpdate S'ha actualitzat el port del servidor POP3 remot a %s Security_SMTPServer Servidor de cadena SMTP Security_SMTPServerUpdate S'ha actualitzat el servidor de cadena SMTP a %s; no tindrà efecte fins que reinicieu el POPFile Security_SMTPPort Port de cadena SMTP Security_SMTPPortUpdate S'ha actualitzat el port de cadena SMTP a %s; no tindrà efecte fins que reinicieu el POPFile Security_POP3 Acceptar connexions POP3 de màquines remotes (cal reiniciar POPFile) Security_SMTP Acceptar connexions SMTP de màquines remotes (cal reiniciar POPFile) Security_NNTP Acceptar connexions NNTP de màquines remotes (cal reiniciar POPFile) Security_UI Acceptar connexions HTTP (interfície d'usuari) de màquines remotes (cal reiniciar POPFile) Security_XMLRPC Acceptar connexions XML-RPC de màquines remotes (cal reiniciar POPFile) Security_UpdateTitle Comprovació automàtica d'actualitzacions Security_Update Comprovar actualitzacions de POPFile diàriament Security_StatsTitle S'estan informant les estadístiques Security_Stats Enviar les estadístiques diàriament Magnet_Error1 Ja existeix l'imant '%s' a la cistella '%s' Magnet_Error2 El nou imant '%s' interfereix amb el '%s' de la cistella '%s' i podria donar resultats ambigus. No s'ha afegit el nou. Magnet_Error3 S'ha creat el nou imant '%s' a la cistella '%s' Magnet_CurrentMagnets Imants actuals Magnet_Message1 Els imants següents impliquen que un missatge sigui sempre encasellat a la cistella indicada Magnet_CreateNew Crear imant nou Magnet_Explanation Disposeu de tres tipus d'imants:</b> <ul><li><b>Adreça Des de o nom:</b> Per exemple: jo...@co... per evitar una adreça específica, <br />company.com per evitar tothom de company.com, <br />John Doe per evitar una persona concreta, John per evitar-los tots</li><li><b>Adreça A/Còpia o nom:</b> Com un imant Des de: però per a l'adressa A:/Còpia: a un missatge</li> <li><b>Mots Assumpte:</b> Per exemple: hello per evitar tots els missatges amb hello a l'assumpte</li></ul> Magnet_MagnetType Tipus d'imant Magnet_Value Valors Magnet_Always Va sempre a la cistella Magnet_Jump Anar a la pàgina d'imants Bucket_Error1 Els noms de cistella només poden contenir lletres a a z en minúscules, números 0 a 9, més - i _ Bucket_Error2 Ja existeix la cistella anomenada %s Bucket_Error3 S'ha creat la cistella anomenada %s Bucket_Error4 Introduïu-hi algun mot Bucket_Error5 Redenominada la cistella %s a %s Bucket_Error6 Esborrada la cistella %s Bucket_Title Configuració de cistella Bucket_BucketName Nom de<br>cistella Bucket_WordCount Comptador de mots Bucket_WordCounts Comptadors de mots Bucket_UniqueWords Mots<br>distints Bucket_SubjectModification Modificació<br>capçalera assumpte Bucket_ChangeColor Color<br>cistella Bucket_NotEnoughData No hi ha prous dades Bucket_ClassificationAccuracy Precisió de la classificació Bucket_EmailsClassified Missatges classificats Bucket_EmailsClassifiedUpper Missatges Classificats Bucket_ClassificationErrors Errors de classificació Bucket_Accuracy Precisió Bucket_ClassificationCount Comptador de classificació Bucket_ClassificationFP Falsos positius Bucket_ClassificationFN Falsos negatius Bucket_ResetStatistics Reiniciar estadístiques Bucket_LastReset Última reinicialització Bucket_CurrentColor El color actual de %s és %s Bucket_SetColorTo S'ha canviat el color de %s a %s Bucket_Maintenance Manteniment Bucket_CreateBucket Crear una cistella de nom Bucket_DeleteBucket Esborrar la cistella anomenada Bucket_RenameBucket Redenominar la cistella anomenada Bucket_Lookup Examinar Bucket_LookupMessage Examinar la paraula a les cistelles Bucket_LookupMessage2 Examinar el resultat per Bucket_LookupMostLikely <b>%s</b> és més probable que aparegui a <font color="%s">%s</font> Bucket_DoesNotAppear <p><b>%s</b> no apareix a cap de les cistelles Bucket_DisabledGlobally Globalment inhabilitat Bucket_To a Bucket_Quarantine Missatge de<br>quarantena SingleBucket_Title Detall de %s SingleBucket_WordCount Comptador de mots de la cistella SingleBucket_TotalWordCount Comptador total de mots SingleBucket_Percentage Percentatge del total SingleBucket_WordTable Taula de mots de %s SingleBucket_Message1 Cliqueu una lletra a l'índex per veure la llista de mots que hi comencen. Cliqueu qualsevol mot per examinar llur probabilitat per a totes les cistelles. SingleBucket_Unique %s distint SingleBucket_ClearBucket Suprimir tots els mots Session_Title La sessió POPFile ha vençut Session_Error La vostra sessió POPFile ha vençut. Això pot ser degut a haver aturat i iniciat POPFile deixant el vostre navegador web obert. Cliqueu un dels enllaços de més amunt per continuar usant POPFile. View_Title Visualització missatge individual View_ShowFrequencies Mostrar freqüències de mot View_ShowProbabilities Mostrar probabilitats de mot View_ShowScores Mostrar barems de mot i diagrama de decisió View_WordMatrix Matriu de mots View_WordProbabilities s'estan mostrant les probabilitats de mot View_WordFrequencies s'estan mostrant les freqüències de mot View_WordScores s'estan mostrant els barems de mot View_Chart Diagrama de decisió Windows_TrayIcon Mostrar la icona POPFile a la safata de sistema del Windows? Windows_Console Executar POPFile a una finestra de consola? Windows_NextTime <p><font color="red">No tindrà efecte fins que reinicieu el POPFile</font> Header_MenuSummary Aquesta taula és el menú de navegació que permet d'accedir a cadascuna de les diferents pàgines del centre de control. History_MainTableSummary Aquesta taula mostra el remitent i l'assumpte dels missatges rebuts adés i permet de revisar-los i reclassificar-los. En clicar la línia de l'assumpte es mostrarà el missatge sencer, juntament amb la informació del per què de llur classificació. La columna 'Hauria de ser' us permet d'especificar a quina cistella pertany o de desfer aquest canvi. La columna 'Esborrar' us permet d'esborrar de l'històric missatges específics, si ja no els necessiteu. History_OpenMessageSummary Aquesta taula conté el text complet d'un missatge, amb els mots usats a la classificació ressaltats segons la cistella més rellevant de cadascun. Bucket_MainTableSummary Aquesta taula proporciona una ullada de les cistelles de classificació. Cada fila mostra per a cada cistella el nom, el comptador total de mots, el nombre total de mots individuals, si es modificarà la línia d'assumpte en classificar-lo, si es deixaran en quarantena els que es rebin i una taula per seleccionar el color a usar en presentar al centre de control res de relacionat amb ella. Bucket_StatisticsTableSummary Aquesta taula proporciona tres jocs d'estadístiques sobre el rendiment general de POPFile. El primer és com d'acurada és la classificació, el segon quants missatges i a quines cistelles s'han classificat i el tercer quants mots hi ha a cada cistella i quins percentatges representen. Bucket_MaintenanceTableSummary Aquesta taula conté formularis que us permeten de crear, esborrar o redenominar cistelles o examinar un mot a totes les cistelles per veure quines probabilitats presenta. Bucket_AccuracyChartSummary Aquesta taula representa gràficament la precisió de la classificació de missatges. Bucket_BarChartSummary Aquesta taula representa gràficament l'assignació de percentatges a cadascuna de les diferents cistelles. S'usa tant per al nombre de missatges classificats com per als comptadors totals de mots. Bucket_LookupResultsSummary Aquesta taula mostra les probabilitats associades a un mot del corpus donat. De cada cistella mostra la freqüència en que esdevé el mot, la probabilitat de que hi aparegui i l'efecte general que té sobre el barem de la cistella si n'hi ha cap en un missatge. Bucket_WordListTableSummary Aquesta taula proporciona una llista de tots els mots d'una cistella particular, ordenats per la primera lletra comú a cada fila. Magnet_MainTableSummary Aquesta taula mostra la llista d'imants que s'usen per classificar missatges automàticament segons unes regles fixes. Cada fila mostra com es defineix l'imant, per a quina cistella s'ha fet i un botó per esborrar-lo. Configuration_MainTableSummary Aquesta taula conté un nombre de formularis que us permeten de controlar la configuració de POPFile. Configuration_InsertionTableSummary Aquesta taula conté els botons que determinen si es fan certes modificacions a les capçaleres o línia d'assumpte del missatge abans no sigui passat al client de correu, o no. Security_MainTableSummary Aquesta taula proporciona jocs de controls que afecten la seguretat de la configuració general de POPFile, si s'ha de comprovar automàticament si hi ha actualitzacions del programa i si s'han enviar les estadístiques sobre rendiment del POPFile al magatzem central de l'autor del programa per a informació general. Advanced_MainTableSummary Aquesta taula proporciona una llista de mots que POPFile ignora en classificar els missatges atesa llur freqüència relativa als missatges de tota mena. S'ordenen per fila segons llur primera lletra. Imap_Bucket2Folder Els correus de la cistella <b>%s</b> van a la carpeta Imap_MapError No podeu assignar més d'una cistella a una sola carpeta! Imap_Server Nom del servidor IMAP: Imap_ServerNameError Introduïu-hi el nom del servidor! Imap_Port Port del servidor IMAP: Imap_PortError Introduïu-hi un número de port vàlid! Imap_Login Nom del compte IMAP: Imap_LoginError Introduïu-hi un nom d'usuari! Imap_Password Contrasenya del compte IMAP: Imap_PasswordError Introduïu-hi una contrasenya pel servidor! Imap_Expunge Destruir de les carpetes mirades els missatges esborrats. Imap_Interval Interval d'actualització, en segons: Imap_IntervalError Introduïu-hi un interval entre 10 i 3600 segons. Imap_Bytelimit Nombre de bytes per missatge a usar per a la classificació. Introduïu-hi 0 (zero) pel missatge complet: Imap_BytelimitError Introduïu-hi un nombre. Imap_RefreshFolders Recarregar la llista de carpetes Imap_Now ara! Imap_UpdateError1 No s'ha pogut entrar. Verifiqueu el nom del compte i la contrasenya. Imap_UpdateError2 No s'ha pogut connectar amb el servidor. Comproveu el nom i el port del servidor i assegureu-vos que sou en línia. Imap_UpdateError3 Configureu abans els detalls de la connexió. Imap_NoConnectionMessage Configureu abans els detalls de la connexió. Després que hi hagueu fet, hi haurà més opcions disponibles. Imap_WatchMore una carpeta a la llista de les carpetes mirades Imap_WatchedFolder Carpeta mirada núm. Shutdown_Message S'ha aturat el POPFile Help_Training Quan useu per primer cop POPFile, no sap res i caldrà una mica d'entrenament. Cal entrenar POPFile per a cada cistella. L'anireu educant cada cop que reclassifiqueu un missatge que POPFile hagi classificat a una cistella incorrecta. També haureu de configurar el vostre client de correu perquè filtri els missatges segons la classificació de POPFile. Podeu trobar informació sobre com configurar el filtratge del vostre client de correu a <a href="http://popfile.sourceforge.net/cgi-bin/wiki.pl?FrequentlyAskedQuestions/EmailSorting">Projecte de Documentació POPFile</a> (en anglès). Help_Bucket_Setup POPFile necessita al menys dues cistelles a més de la pseudo-cistella 'unclassified'. El que fa únic POPFile és que pot classificar els correus en tantes cistelles com volgueu. Una configuració senzilla pot ser una cistella "spam", una "personal" i una altra "feina". Help_No_More No mostrar-m'ho més |
From: John Graham-C. <jgr...@us...> - 2005-09-16 19:20:34
|
Update of /cvsroot/popfile/engine/Classifier In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28998/Classifier Modified Files: Tag: b0_22_2 Bayes.pm Log Message: Forgot to output a newline every 1,000 records during the restore Index: Bayes.pm =================================================================== RCS file: /cvsroot/popfile/engine/Classifier/Bayes.pm,v retrieving revision 1.327.4.1 retrieving revision 1.327.4.2 diff -C2 -d -r1.327.4.1 -r1.327.4.2 *** Bayes.pm 14 Sep 2005 19:28:26 -0000 1.327.4.1 --- Bayes.pm 16 Sep 2005 19:20:26 -0000 1.327.4.2 *************** *** 868,871 **** --- 868,875 ---- flush STDOUT; } + if ( ( $i % 1000 ) == 0 ) { + print "\n"; + flush STDOUT; + } s/[\r\n]//g; $self->{db__}->do( $_ ); |
From: Brian S. <xue...@us...> - 2005-09-16 13:52:30
|
Update of /cvsroot/popfile/windows In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16360 Modified Files: installer-SecMinPerl-body.nsh Log Message: Revert to the upgrade scheme used for the previous releases. Index: installer-SecMinPerl-body.nsh =================================================================== RCS file: /cvsroot/popfile/windows/installer-SecMinPerl-body.nsh,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** installer-SecMinPerl-body.nsh 2 Aug 2005 23:23:24 -0000 1.2 --- installer-SecMinPerl-body.nsh 16 Sep 2005 13:52:22 -0000 1.3 *************** *** 56,71 **** SetDetailsPrint listonly ! ; Remove empty minimal Perl folder (error flag set if folder not empty) ! ! ClearErrors ! RMDir "$G_MPLIBDIR" ! IfErrors 0 install_now ! StrCpy $G_PLS_FIELD_1 "$G_MPLIBDIR" ! MessageBox MB_YESNO|MB_ICONQUESTION "$(PFI_LANG_MINPERL_MBREMOLD)" IDNO install_now ! DetailPrint "Remove old minimal Perl folder" ! RMDir /r "$G_MPLIBDIR" ! DetailPrint "" - install_now: SetOutPath "$G_ROOTDIR" File "${C_PERL_DIR}\bin\perl.exe" --- 56,62 ---- SetDetailsPrint listonly ! ; Install the minimal Perl "core" ! ; (extra Perl files are added by the "Kakasi", "SOCKS" & "XMLRPC" sections in installer.nsi) SetOutPath "$G_ROOTDIR" File "${C_PERL_DIR}\bin\perl.exe" |
From: Brian S. <xue...@us...> - 2005-09-16 10:43:45
|
Update of /cvsroot/popfile/windows In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8167 Modified Files: Tag: b0_22_2 installer-SecMinPerl-body.nsh Log Message: Revert to the upgrade scheme used for the previous releases. Index: installer-SecMinPerl-body.nsh =================================================================== RCS file: /cvsroot/popfile/windows/installer-SecMinPerl-body.nsh,v retrieving revision 1.2.2.2 retrieving revision 1.2.2.3 diff -C2 -d -r1.2.2.2 -r1.2.2.3 *** installer-SecMinPerl-body.nsh 13 Sep 2005 19:01:55 -0000 1.2.2.2 --- installer-SecMinPerl-body.nsh 16 Sep 2005 10:43:33 -0000 1.2.2.3 *************** *** 50,65 **** SetDetailsPrint listonly ! ; Remove empty minimal Perl folder (error flag set if folder not empty) ! ! ClearErrors ! RMDir "$G_MPLIBDIR" ! IfErrors 0 install_now ! StrCpy $G_PLS_FIELD_1 "$G_MPLIBDIR" ! MessageBox MB_YESNO|MB_ICONQUESTION "$(PFI_LANG_MINPERL_MBREMOLD)" IDNO install_now ! DetailPrint "Remove old minimal Perl folder" ! RMDir /r "$G_MPLIBDIR" ! DetailPrint "" - install_now: SetOutPath "$G_ROOTDIR" File "${C_PERL_DIR}\bin\perl.exe" --- 50,56 ---- SetDetailsPrint listonly ! ; Install the minimal Perl "core" ! ; (extra Perl files are added by the "Kakasi", "SOCKS" & "XMLRPC" sections in installer.nsi) SetOutPath "$G_ROOTDIR" File "${C_PERL_DIR}\bin\perl.exe" *************** *** 202,206 **** File "${C_PERL_DIR}\site\lib\auto\DBI\DBI.lib" ! ; Install SQLite support (using an old SQLite 2.x verison of the SQLite module) SetOutPath "$G_MPLIBDIR\DBD" --- 193,197 ---- File "${C_PERL_DIR}\site\lib\auto\DBI\DBI.lib" ! ; Install SQLite support (using an old SQLite 2.x version of the SQLite module) SetOutPath "$G_MPLIBDIR\DBD" |
From: Brian S. <xue...@us...> - 2005-09-15 12:03:44
|
Update of /cvsroot/popfile/windows In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14211 Modified Files: Tag: b0_22_2 pfi-languages.nsh Log Message: Update 0.22.3 installer to support Catalan language. Index: pfi-languages.nsh =================================================================== RCS file: /cvsroot/popfile/windows/pfi-languages.nsh,v retrieving revision 1.2.6.1 retrieving revision 1.2.6.2 diff -C2 -d -r1.2.6.1 -r1.2.6.2 *** pfi-languages.nsh 13 Sep 2005 19:01:55 -0000 1.2.6.1 --- pfi-languages.nsh 15 Sep 2005 12:03:34 -0000 1.2.6.2 *************** *** 116,119 **** --- 116,120 ---- !insertmacro PFI_LANG_LOAD "Arabic" !insertmacro PFI_LANG_LOAD "Bulgarian" + !insertmacro PFI_LANG_LOAD "Catalan" !insertmacro PFI_LANG_LOAD "SimpChinese" !insertmacro PFI_LANG_LOAD "TradChinese" |
From: Brian S. <xue...@us...> - 2005-09-15 12:03:19
|
Update of /cvsroot/popfile/windows In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13672 Modified Files: Tag: b0_22_2 adduser.nsi Log Message: Update 0.22.3 installer to support Catalan language. Index: adduser.nsi =================================================================== RCS file: /cvsroot/popfile/windows/adduser.nsi,v retrieving revision 1.59.4.2 retrieving revision 1.59.4.3 diff -C2 -d -r1.59.4.2 -r1.59.4.3 *** adduser.nsi 13 Sep 2005 19:06:48 -0000 1.59.4.2 --- adduser.nsi 15 Sep 2005 12:03:00 -0000 1.59.4.3 *************** *** 1693,1696 **** --- 1693,1697 ---- !insertmacro PFI_UI_LANG_CONFIG "ARABIC" "Arabic" !insertmacro PFI_UI_LANG_CONFIG "BULGARIAN" "Bulgarian" + !insertmacro PFI_UI_LANG_CONFIG "CATALAN" "Catala" !insertmacro PFI_UI_LANG_CONFIG "SIMPCHINESE" "Chinese-Simplified" !insertmacro PFI_UI_LANG_CONFIG "TRADCHINESE" "Chinese-Traditional" |
From: Brian S. <xue...@us...> - 2005-09-15 12:01:49
|
Update of /cvsroot/popfile/windows/languages In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13314 Added Files: Tag: b0_22_2 Catalan-pfi.nsh Log Message: Update 0.22.3 installer to support Catalan language. --- NEW FILE: Catalan-pfi.nsh --- #-------------------------------------------------------------------------- # Catalan-pfi.nsh # # This file contains the "Catalan" text strings used by the Windows installer # and other NSIS-based Windows utilities for POPFile (includes customised versions # of strings provided by NSIS and strings which are unique to POPFile). # # These strings are grouped according to the page/window and script where they are used # # Copyright (c) 2005 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with POPFile; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # #-------------------------------------------------------------------------- # # Translation created by: (nobody) # Translation updated by: (nobody) # #-------------------------------------------------------------------------- # String Formatting (applies to PFI_LANG_*_MB* text used for message boxes): # # (1) The sequence ${MB_NL} inserts a newline # (2) The sequence ${MB_NL}${MB_NL} inserts a blank line # # (the 'PFI_LANG_CBP_MBCONTERR_2' message box string which is listed under the heading # 'Custom Page - POPFile Classification Bucket Creation' includes some examples) #-------------------------------------------------------------------------- # String Formatting (applies to PFI_LANG_*_IO_ text used for custom pages): # # (1) The sequence ${IO_NL} inserts a newline # (2) The sequence ${IO_NL}${IO_NL} inserts a blank line # # (the 'PFI_LANG_CBP_IO_INTRO' custom page string which is listed under the heading # 'Custom Page - POPFile Classification Bucket Creation' includes some examples) #-------------------------------------------------------------------------- # Some strings will be customised at run-time using data held in Global User Variables. # These variables will have names which start with '$G_', e.g. $G_PLS_FIELD_1 #-------------------------------------------------------------------------- !ifndef PFI_VERBOSE !verbose 3 !endif #-------------------------------------------------------------------------- # Mark the start of the language data #-------------------------------------------------------------------------- !define PFI_LANG "CATALAN" #-------------------------------------------------------------------------- # Symbols used to avoid confusion over where the line breaks occur. # (normally these symbols will be defined before this file is 'included') # # ${IO_NL} is used for InstallOptions-style 'new line' sequences. # ${MB_NL} is used for MessageBox-style 'new line' sequences. #-------------------------------------------------------------------------- !ifndef IO_NL !define IO_NL "\r\n" !endif !ifndef MB_NL !define MB_NL "$\r$\n" !endif ########################################################################### ########################################################################### #-------------------------------------------------------------------------- # CONTENTS: # # "General Purpose" strings # # "Shared" strings used by more than one script # # "POPFile Installer" strings used by the main POPFile installer/uninstaller (installer.nsi) # # "SSL Setup" strings used by the standalone "SSL Setup" wizard (addssl.nsi) # # "Get SSL" strings used when downloading/installing SSL support (getssl.nsh) # # "Add User" strings used by the 'Add POPFile User' installer/uninstaller (adduser.nsi) # # "Corpus Conversion" strings used by the 'Monitor Corpus Conversion' utility (MonitorCC.nsi) # #-------------------------------------------------------------------------- ########################################################################### ########################################################################### ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; General Purpose: (used for banners and page titles/subtitles in several scripts) ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ !insertmacro PFI_LANG_STRING PFI_LANG_BE_PATIENT "Please be patient." !insertmacro PFI_LANG_STRING PFI_LANG_TAKE_A_FEW_SECONDS "This may take a few seconds..." ########################################################################### ########################################################################### ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Shared: Message displayed when wizard does not seem to belong to the current installation [adduser.nsi, runpopfile.nsi] ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ !insertmacro PFI_LANG_STRING PFI_LANG_COMPAT_NOTFOUND "Error: Compatible version of ${C_PFI_PRODUCT} not found !" ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Shared: Message box shown (before the WELCOME page) if another installer is running [installer.nsi, adduser.nsi] ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ !insertmacro PFI_LANG_STRING PFI_LANG_INSTALLER_MUTEX "Another copy of the POPFile installer is already running !" ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Shared: Message box shown if 'SetEnvironmentVariableA' fails [installer.nsi, adduser.nsi, MonitorCC.nsi] ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ !insertmacro PFI_LANG_STRING PFI_LANG_CONVERT_ENVNOTSET "Error: Unable to set an environment variable" ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Shared: Standard MUI Page - DIRECTORY ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Used in message box shown if SFN support has been disabled [installer.nsi, adduser.nsi] !insertmacro PFI_LANG_STRING PFI_LANG_DIRSELECT_MBNOSFN "To install on the '$G_PLS_FIELD_1' drive${MB_NL}${MB_NL}please select a folder location which does not contain spaces" ; Used in message box shown if existing files found when installing [installer.nsi, adduser.nsi] !insertmacro PFI_LANG_STRING PFI_LANG_DIRSELECT_MBWARN_2 "Do you want to upgrade it ?" ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Shared: Standard MUI Page - INSTFILES ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; When upgrading an existing installation, change the normal "Install" button to "Upgrade" [installer.nsi, adduser.nsi] !insertmacro PFI_LANG_STRING PFI_LANG_INST_BTN_UPGRADE "Upgrade" ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsi] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_UPGRADE "Checking if this is an upgrade installation..." !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_SHORT "Creating POPFile shortcuts..." !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ; Installation Progress Reports displayed above the progress bar [installer.nsi, adduser.nsh, getssl.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Premi Següent per continuar" ; Installation Log Messages [installer.nsi, adduser.nsi] !insertmacro PFI_LANG_STRING PFI_LANG_INST_LOG_SHUTDOWN "Shutting down previous version of POPFile using port" ; Installation Log Messages [installer.nsi, addssl.nsi] !insertmacro PFI_LANG_STRING PFI_LANG_PROG_SAVELOG "Saving install log file..." ; Message Box text strings [installer.nsi, adduser.nsi, pfi-library.nsh] !insertmacro PFI_LANG_STRING PFI_LANG_MBMANSHUT_1 "Unable to shutdown '$G_PLS_FIELD_1' automatically." !insertmacro PFI_LANG_STRING PFI_LANG_MBMANSHUT_2 "Please shutdown '$G_PLS_FIELD_1' manually now." !insertmacro PFI_LANG_STRING PFI_LANG_MBMANSHUT_3 "When '$G_PLS_FIELD_1' has been shutdown, click 'OK' to continue." ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Shared: Message box shown if problem detected when trying to save the log file [installer.nsi, addssl.nsi, backup.nsi, restore.nsi] ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ !insertmacro PFI_LANG_STRING PFI_LANG_MB_SAVELOG_ERROR "Error: problem detected when saving the log file" ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Shared: Message boxes shown if uninstallation is not straightforward [installer.nsi, adduser.nsi] ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ !insertmacro PFI_LANG_STRING PFI_LANG_UN_MBDIFFUSER_1 "'$G_WINUSERNAME' is attempting to remove data belonging to another user" !insertmacro PFI_LANG_STRING PFI_LANG_UN_MBNOTFOUND_1 "It does not appear that POPFile is installed in the directory" !insertmacro PFI_LANG_STRING PFI_LANG_UN_MBNOTFOUND_2 "Continue anyway (not recommended) ?" ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Shared: Message box shown if uninstaller is cancelled by the user [installer.nsi, adduser.nsi] ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ !insertmacro PFI_LANG_STRING PFI_LANG_UN_ABORT_1 "Uninstall aborted by user" ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Shared: Standard MUI Page - UNPAGE_INSTFILES [installer.nsi, adduser.nsi] ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Uninstall Progress Reports displayed above the progress bar !insertmacro PFI_LANG_STRING PFI_LANG_UN_PROG_SHUTDOWN "Shutting down POPFile..." !insertmacro PFI_LANG_STRING PFI_LANG_UN_PROG_SHORT "Deleting 'Start Menu' entries for POPFile..." ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Shared: Message box shown if uninstaller failed to remove files/folders [installer.nsi, adduser.nsi] ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ !insertmacro PFI_LANG_STRING PFI_LANG_UN_MBREMERR_A "Note: $G_PLS_FIELD_1 could not be removed." ########################################################################### ########################################################################### ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; POPFile Installer: Message box shown (before the WELCOME page) offering to display the release notes [installer.nsi] ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ !insertmacro PFI_LANG_STRING PFI_LANG_MBRELNOTES_1 "Display POPFile Release Notes ?" !insertmacro PFI_LANG_STRING PFI_LANG_MBRELNOTES_2 "'Yes' recommended if you are upgrading POPFile (you may need to backup BEFORE upgrading)" ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; POPFile Installer: Standard MUI Page - WELCOME [installer.nsi] ; ; The PFI_LANG_WELCOME_INFO_TEXT string should end with a '${IO_NL}${IO_NL}$_CLICK' sequence). ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ !insertmacro PFI_LANG_STRING PFI_LANG_WELCOME_INFO_TEXT "Aquest assistent el guiarà durant el procés d'instal·lació de POPFile.${IO_NL}${IO_NL}Es recomana tancar tota la resta d'aplicacions abans de començar la Instal·lació.${IO_NL}${IO_NL}$_CLICK" !insertmacro PFI_LANG_STRING PFI_LANG_WELCOME_ADMIN_TEXT "IMPORTANT NOTICE:${IO_NL}${IO_NL}The current user does NOT have 'Administrator' rights.${IO_NL}${IO_NL}If multi-user support is required, it is recommended that you cancel this installation and use an 'Administrator' account to install POPFile." ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; POPFile Installer: Custom Page - Check Perl Requirements [installer.nsi] ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Page Title displayed in the page header (there is no sub-title for this page) !insertmacro PFI_LANG_STRING PFI_LANG_PERLREQ_TITLE "Out-of-date System Components Detected" ; Text strings displayed on the custom page !insertmacro PFI_LANG_STRING PFI_LANG_PERLREQ_IO_TEXT_A "The default browser is used to display the POPFile User Interface (its control centre).${IO_NL}${IO_NL}" !insertmacro PFI_LANG_STRING PFI_LANG_PERLREQ_IO_TEXT_B "POPFile does not require a specific browser, it will work with almost any browser.${IO_NL}${IO_NL}" !insertmacro PFI_LANG_STRING PFI_LANG_PERLREQ_IO_TEXT_C "A minimal version of Perl is about to be installed (POPFile is written in Perl).${IO_NL}${IO_NL}" !insertmacro PFI_LANG_STRING PFI_LANG_PERLREQ_IO_TEXT_D "The Perl supplied with POPFile makes use of some Internet Explorer components and requires Internet Explorer 5.5 (or a later version)." !insertmacro PFI_LANG_STRING PFI_LANG_PERLREQ_IO_TEXT_E "The installer has detected that this system has Internet Explorer $G_PLS_FIELD_1${IO_NL}${IO_NL}" !insertmacro PFI_LANG_STRING PFI_LANG_PERLREQ_IO_TEXT_F "It is possible that some features of POPFile may not work properly on this system.${IO_NL}${IO_NL}" !insertmacro PFI_LANG_STRING PFI_LANG_PERLREQ_IO_TEXT_G "If you have any problems with POPFile, an upgrade to a newer version of Internet Explorer may help." ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; POPFile Installer: Standard MUI Page - COMPONENTS [installer.nsi] ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ !insertmacro PFI_LANG_STRING DESC_SecPOPFile "Installs the core files needed by POPFile, including a minimal version of Perl." !insertmacro PFI_LANG_STRING DESC_SecSkins "Installs POPFile skins that allow you to change the look and feel of the POPFile user interface." !insertmacro PFI_LANG_STRING DESC_SecLangs "Installs non-English language versions of the POPFile UI." !insertmacro PFI_LANG_STRING DESC_SubSecOptional "Extra POPFile components (for advanced users)" !insertmacro PFI_LANG_STRING DESC_SecIMAP "Installs the POPFile IMAP module" !insertmacro PFI_LANG_STRING DESC_SecNNTP "Installs POPFile's NNTP proxy" !insertmacro PFI_LANG_STRING DESC_SecSMTP "Installs POPFile's SMTP proxy" !insertmacro PFI_LANG_STRING DESC_SecSOCKS "Installs extra Perl components which allow the POPFile proxies to use SOCKS" !insertmacro PFI_LANG_STRING DESC_SecSSL "Downloads and installs the Perl components and SSL libraries which allow POPFile to make SSL connections to mail servers" !insertmacro PFI_LANG_STRING DESC_SecXMLRPC "Installs the POPFile XMLRPC module (for access to the POPFile API) and the Perl support it requires." ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; POPFile Installer: Standard MUI Page - DIRECTORY (for POPFile program files) [installer.nsi] ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Page Title shown in the page header and Text shown above the box showing the folder selected for the installation !insertmacro PFI_LANG_STRING PFI_LANG_ROOTDIR_TITLE "Choose Program Files Install Location" !insertmacro PFI_LANG_STRING PFI_LANG_ROOTDIR_TEXT_DESTN "Destination Folder for the POPFile Program" ; Message box warnings used when verifying the installation folder chosen by user !insertmacro PFI_LANG_STRING PFI_LANG_DIRSELECT_MBWARN_1 "Previous installation found at" ; Text strings used when user has NOT selected a component found in the existing installation !insertmacro PFI_LANG_STRING MBCOMPONENT_PROB_1 "Do you want to upgrade the existing $G_PLS_FIELD_1 component ?" !insertmacro PFI_LANG_STRING MBCOMPONENT_PROB_2 "(using out of date POPFile components can cause problems)" ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; POPFile Installer: Custom Page - Setup Summary [installer.nsi] ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Page Title and Sub-title displayed in the page header ; $G_WINUSERNAME holds the Windows login name and $G_WINUSERTYPE holds 'Admin', 'Power', 'User', 'Guest' or 'Unknown' !insertmacro PFI_LANG_STRING PFI_LANG_SUMMARY_TITLE "Setup Summary for '$G_WINUSERNAME' ($G_WINUSERTYPE)" !insertmacro PFI_LANG_STRING PFI_LANG_SUMMARY_SUBTITLE "These settings will be used to install the POPFile program" ; Display selected installation location and whether or not an upgrade will be performed ; $G_ROOTDIR holds the installation location, e.g. C:\Program Files\POPFile !insertmacro PFI_LANG_STRING PFI_LANG_SUMMARY_NEWLOCN "New POPFile installation at $G_PLS_FIELD_2" !insertmacro PFI_LANG_STRING PFI_LANG_SUMMARY_UPGRADELOCN "Upgrade existing POPFile installation at $G_PLS_FIELD_2" ; By default all of these components are installed (but Kakasi is only installed when Japanese/Nihongo language is chosen) !insertmacro PFI_LANG_STRING PFI_LANG_SUMMARY_BASICLIST "Basic POPFile components to be installed:" !insertmacro PFI_LANG_STRING PFI_LANG_SUMMARY_POPFILECORE "POPFile program files" !insertmacro PFI_LANG_STRING PFI_LANG_SUMMARY_MINPERL "Minimal Perl" !insertmacro PFI_LANG_STRING PFI_LANG_SUMMARY_DEFAULTSKIN "Default UI Skin" !insertmacro PFI_LANG_STRING PFI_LANG_SUMMARY_DEFAULTLANG "Default UI Language" !insertmacro PFI_LANG_STRING PFI_LANG_SUMMARY_EXTRASKINS "Additional UI Skins" !insertmacro PFI_LANG_STRING PFI_LANG_SUMMARY_EXTRALANGS "Additional UI Languages" !insertmacro PFI_LANG_STRING PFI_LANG_SUMMARY_KAKASI "Kakasi package" ; By default none of the optional components is installed (user has to select them) !insertmacro PFI_LANG_STRING PFI_LANG_SUMMARY_OPTIONLIST "Optional POPFile components to be installed:" !insertmacro PFI_LANG_STRING PFI_LANG_SUMMARY_NONE "(none)" !insertmacro PFI_LANG_STRING PFI_LANG_SUMMARY_IMAP "IMAP module" !insertmacro PFI_LANG_STRING PFI_LANG_SUMMARY_NNTP "NNTP proxy" !insertmacro PFI_LANG_STRING PFI_LANG_SUMMARY_SMTP "SMTP proxy" !insertmacro PFI_LANG_STRING PFI_LANG_SUMMARY_SOCKS "SOCKS support" !insertmacro PFI_LANG_STRING PFI_LANG_SUMMARY_SSL "SSL support" !insertmacro PFI_LANG_STRING PFI_LANG_SUMMARY_XMLRPC "XMLRPC module" ; The last line in the summary explains how to change the installation selections !insertmacro PFI_LANG_STRING PFI_LANG_SUMMARY_BACKBUTTON "To make changes, use the 'Back' button to return to previous pages" ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; POPFile Installer: Standard MUI Page - INSTFILES [installer.nsi] ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Page Title and Sub-title displayed in the page header after installing all the files !insertmacro PFI_LANG_STRING PFI_LANG_INSTFINISH_TITLE "Program Files Installed" !insertmacro PFI_LANG_STRING PFI_LANG_INSTFINISH_SUBTITLE "${C_PFI_PRODUCT} must be configured before it can be used" ; Installation Progress Reports displayed above the progress bar !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_CORE "Installing POPFile core files..." !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_PERL "Installing minimal Perl files..." !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_SKINS "Installing POPFile skin files..." !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_XMLRPC "Installing POPFile XMLRPC files..." ; Message box used to get permission to delete the old minimal Perl before installing the new one !insertmacro PFI_LANG_STRING PFI_LANG_MINPERL_MBREMOLD "Delete everything in old minimal Perl folder before installing the new version ?${MB_NL}${MB_NL}($G_PLS_FIELD_1)" ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; POPFile Installer: Standard MUI Page - UNPAGE_INSTFILES [installer.nsi] ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Uninstall Progress Reports displayed above the progress bar !insertmacro PFI_LANG_STRING PFI_LANG_UN_PROG_CORE "Deleting POPFile core files..." !insertmacro PFI_LANG_STRING PFI_LANG_UN_PROG_SKINS "Deleting POPFile skins files..." !insertmacro PFI_LANG_STRING PFI_LANG_UN_PROG_PERL "Deleting minimal Perl files..." ; Uninstall Log Messages !insertmacro PFI_LANG_STRING PFI_LANG_UN_LOG_SHUTDOWN "Shutting down POPFile using port" !insertmacro PFI_LANG_STRING PFI_LANG_UN_LOG_DELROOTDIR "Removing all files from POPFile directory" !insertmacro PFI_LANG_STRING PFI_LANG_UN_LOG_DELROOTERR "Note: unable to remove all files from POPFile directory" ; Message Box text strings !insertmacro PFI_LANG_STRING PFI_LANG_UN_MBREMDIR_1 "Do you want to remove all files in your POPFile directory?${MB_NL}${MB_NL}$G_ROOTDIR${MB_NL}${MB_NL}(If you have anything you created that you want to keep, click No)" ########################################################################### ########################################################################### ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; SSL Setup: Standard MUI Page - WELCOME ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ !insertmacro PFI_LANG_STRING PSS_LANG_WELCOME_TITLE "Welcome to the $(^NameDA) Wizard" !insertmacro PFI_LANG_STRING PSS_LANG_WELCOME_TEXT "This utility will download and install the files needed to allow POPFile to use SSL when accessing mail servers.${IO_NL}${IO_NL}This version does not configure any email accounts to use SSL, it just installs the necessary Perl components and DLLs.${IO_NL}${IO_NL}This product downloads and installs software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/)${IO_NL}${IO_NL}~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~${IO_NL}${IO_NL} PLEASE SHUT DOWN POPFILE NOW${IO_NL}${IO_NL}~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~${IO_NL}${IO_NL}$_CLICK" ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; SSL Setup: Standard MUI Page - LICENSE ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ !insertmacro PFI_LANG_STRING PSS_LANG_LICENSE_SUBHDR "Please review the license terms before using $(^NameDA)." !insertmacro PFI_LANG_STRING PSS_LANG_LICENSE_BOTTOM "If you accept the terms of the agreement, click the check box below. You must accept the agreement to use $(^NameDA). $_CLICK" ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; SSL Setup: Standard MUI Page - DIRECTORY ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ !insertmacro PFI_LANG_STRING PSS_LANG_DESTNDIR_TITLE "Choose existing POPFile 0.22 (or later) installation" !insertmacro PFI_LANG_STRING PSS_LANG_DESTNDIR_SUBTITLE "SSL support should only be added to an existing POPFile installation" !insertmacro PFI_LANG_STRING PSS_LANG_DESTNDIR_TEXT_TOP "SSL support must be installed using the same installation folder as the POPFile program${MB_NL}${MB_NL}This utility will add SSL support to the version of POPFile which is installed in the following folder. To install in a different POPFile installation, click Browse and select another folder. $_CLICK" !insertmacro PFI_LANG_STRING PSS_LANG_DESTNDIR_TEXT_DESTN "Existing POPFile 0.22 (or later) installation folder" !insertmacro PFI_LANG_STRING PSS_LANG_DESTNDIR_MB_WARN_1 "POPFile 0.22 (or later) does NOT seem to be installed in${MB_NL}${MB_NL}$G_PLS_FIELD_1" !insertmacro PFI_LANG_STRING PSS_LANG_DESTNDIR_MB_WARN_2 "Are you sure you want to use this folder ?" ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; SSL Setup: Standard MUI Page - INSTFILES ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Initial page header !insertmacro PFI_LANG_STRING PSS_LANG_STD_HDR "Installing SSL support (for POPFile 0.22 or later)" !insertmacro PFI_LANG_STRING PSS_LANG_STD_SUBHDR "Please wait while the SSL files are downloaded and installed..." ; Successful completion page header !insertmacro PFI_LANG_STRING PSS_LANG_END_HDR "POPFile SSL Support installation completed" !insertmacro PFI_LANG_STRING PSS_LANG_END_SUBHDR "SSL support for POPFile has been installed successfully" ; Unsuccessful completion page header !insertmacro PFI_LANG_STRING PSS_LANG_ABORT_HDR "POPFile SSL Support installation failed" !insertmacro PFI_LANG_STRING PSS_LANG_ABORT_SUBHDR "The attempt to add SSL support to POPFile has failed" ; Progress reports !insertmacro PFI_LANG_STRING PSS_LANG_PROG_INITIALISE "Initializing..." !insertmacro PFI_LANG_STRING PSS_LANG_PROG_CHECKIFRUNNING "Checking if POPFile is running..." !insertmacro PFI_LANG_STRING PSS_LANG_PROG_USERCANCELLED "POPFile SSL Support installation cancelled by the user" !insertmacro PFI_LANG_STRING PSS_LANG_PROG_SUCCESS "POPFile SSL support installed" ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; SSL Setup: Standard MUI Page - FINISH ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ !insertmacro PFI_LANG_STRING PSS_LANG_FINISH_TITLE "Completing the $(^NameDA) Wizard" !insertmacro PFI_LANG_STRING PSS_LANG_FINISH_TEXT "SSL support for POPFile has been installed.${IO_NL}${IO_NL}You can now start POPFile and configure POPFile and your email client to use SSL.${IO_NL}${IO_NL}Click Finish to close this wizard." !insertmacro PFI_LANG_STRING PSS_LANG_FINISH_README "Important information" ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; SSL Setup: Miscellaneous Strings ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ !insertmacro PFI_LANG_STRING PSS_LANG_MUTEX "Another copy of the SSL Setup wizard is running!" !insertmacro PFI_LANG_STRING PSS_LANG_COMPAT_NOTFOUND "Warning: Cannot find compatible version of POPFile !" !insertmacro PFI_LANG_STRING PSS_LANG_ABORT_WARNING "Are you sure you want to quit the $(^NameDA) Wizard?" !insertmacro PFI_LANG_STRING PSS_LANG_PREPAREPATCH "Updating Module.pm (to avoid slow speed SSL downloads)" !insertmacro PFI_LANG_STRING PSS_LANG_PATCHSTATUS "Module.pm patch status: $G_PLS_FIELD_1" !insertmacro PFI_LANG_STRING PSS_LANG_PATCHCOMPLETED "Module.pm file has been updated" !insertmacro PFI_LANG_STRING PSS_LANG_PATCHFAILED "Module.pm file has not been updated" ########################################################################### ########################################################################### ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Get SSL: Strings used when downloading and installing the optional SSL files [getssl.nsh] ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Progress reports !insertmacro PFI_LANG_STRING PFI_LANG_PROG_CHECKINTERNET "Checking Internet connection..." !insertmacro PFI_LANG_STRING PFI_LANG_PROG_STARTDOWNLOAD "Downloading $G_PLS_FIELD_1 file from $G_PLS_FIELD_2" !insertmacro PFI_LANG_STRING PFI_LANG_PROG_FILECOPY "Copying $G_PLS_FIELD_2 files..." !insertmacro PFI_LANG_STRING PFI_LANG_PROG_FILEEXTRACT "Extracting files from $G_PLS_FIELD_2 archive..." !insertmacro PFI_LANG_STRING PFI_LANG_TAKE_SEVERAL_SECONDS "(this may take several seconds)" ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Get SSL: Message Box strings used when installing SSL Support [getssl.nsh] ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ !insertmacro PFI_LANG_STRING PFI_LANG_MB_INTERNETCONNECT "The SSL Support files will be downloaded from the Internet${MB_NL}${MB_NL}Please connect to the Internet and the click 'OK'${MB_NL}${MB_NL}or click 'Cancel' to cancel this part of the installation" !insertmacro PFI_LANG_STRING PFI_LANG_MB_NSISDLFAIL_1 "Download of $G_PLS_FIELD_1 file failed" !insertmacro PFI_LANG_STRING PFI_LANG_MB_NSISDLFAIL_2 "(error: $G_PLS_FIELD_2)" !insertmacro PFI_LANG_STRING PFI_LANG_MB_UNPACKFAIL "Error detected while installing files in $G_PLS_FIELD_1 folder" !insertmacro PFI_LANG_STRING PFI_LANG_MB_REPEATSSL "Unable to install the optional SSL files!${MB_NL}${MB_NL}To try again later, run the command${MB_NL}${MB_NL}$G_PLS_FIELD_1 /SSL" ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Get SSL: NSISdl strings (displayed by the plugin which downloads the SSL files) [getssl.nsh] ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; ; The NSISdl plugin shows two progress bars, for example: ; ; Downloading libeay32.dll ; ; 118kB (14%) of 816kB @ 3.1kB/s (3 minutes remaining) ; ; The default strings used by the plugin: ; ; downloading - "Downloading %s" ; connecting - "Connecting ..." ; second - "second" ; minute - "minute" ; hour - "hour" ; plural - "s" ; progress - "%dkB (%d%%) of %dkB @ %d.%01dkB/s" ; remaining - " (%d %s%s remaining)" ; ; Note that the "remaining" string starts with a space ; ; Some languages might not be translated properly because plurals are formed simply ; by adding the "plural" value, so "hours" is translated by adding the value of the ; "PFI_LANG_NSISDL_PLURAL" string to the value of the "PFI_LANG_NSISDL_HOUR" string. ; This is a limitation of the NSIS plugin which is used to download the files. ; ; If this is a problem, the plural forms could be used for the PFI_LANG_NSISDL_SECOND, ; PFI_LANG_NSISDL_MINUTE and PFI_LANG_NSISDL_HOUR strings and the PFI_LANG_NSISDL_PLURAL ; string set to a space (" ") [using "" here will generate compiler warnings] ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ !insertmacro PFI_LANG_STRING PFI_LANG_NSISDL_DOWNLOADING "Downloading %s" !insertmacro PFI_LANG_STRING PFI_LANG_NSISDL_CONNECTING "Connecting ..." !insertmacro PFI_LANG_STRING PFI_LANG_NSISDL_SECOND "second" !insertmacro PFI_LANG_STRING PFI_LANG_NSISDL_MINUTE "minute" !insertmacro PFI_LANG_STRING PFI_LANG_NSISDL_HOUR "hour" !insertmacro PFI_LANG_STRING PFI_LANG_NSISDL_PLURAL "s" !insertmacro PFI_LANG_STRING PFI_LANG_NSISDL_PROGRESS "%dkB (%d%%) of %dkB @ %d.%01dkB/s" !insertmacro PFI_LANG_STRING PFI_LANG_NSISDL_REMAINING " (%d %s%s remaining)" ########################################################################### ########################################################################### ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Add User: Standard MUI Page - WELCOME [adduser.nsi] ; ; The PFI_LANG_ADDUSER_INFO_TEXT string should end with a '${IO_NL}${IO_NL}$_CLICK' sequence). ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ !insertmacro PFI_LANG_STRING PFI_LANG_ADDUSER_INFO_TEXT "This wizard will guide you through the configuration of POPFile for the '$G_WINUSERNAME' user.${IO_NL}${IO_NL}It is recommended that you close all other applications before continuing.${IO_NL}${IO_NL}$_CLICK" ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Add User: Standard MUI Page - DIRECTORY [adduser.nsi] ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; $G_WINUSERNAME holds the Windows login name for the user running the wizard !insertmacro PFI_LANG_STRING PFI_LANG_USERDIR_TITLE "Choose POPFile Data Location for '$G_WINUSERNAME'" !insertmacro PFI_LANG_STRING PFI_LANG_USERDIR_SUBTITLE "Choose the folder in which to store the POPFile Data for '$G_WINUSERNAME'" !insertmacro PFI_LANG_STRING PFI_LANG_USERDIR_TEXT_TOP "This version of POPFile uses separate sets of data files for each user.${MB_NL}${MB_NL}Setup will use the following folder for the POPFile data belonging to the '$G_WINUSERNAME' user. To use a different folder for this user, click Browse and select another folder. $_CLICK" !insertmacro PFI_LANG_STRING PFI_LANG_USERDIR_TEXT_DESTN "Folder to be used to store the POPFile data for '$G_WINUSERNAME'" ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Add User: Standard MUI Page - INSTFILES [adduser.nsi] ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Page Title and Sub-title displayed in the page header !insertmacro PFI_LANG_STRING PFI_LANG_ADDUSER_TITLE "Configuring POPFile for '$G_WINUSERNAME' user" !insertmacro PFI_LANG_STRING PFI_LANG_ADDUSER_SUBTITLE "Please wait while the POPFile configuration files are updated for this user" ; When resetting POPFile to use newly restored 'User Data', change "Install" button to "Restore" !insertmacro PFI_LANG_STRING PFI_LANG_INST_BTN_RESTORE "Restore" ; Installation Progress Reports displayed above the progress bar !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_CORPUS "Making corpus backup. This may take a few seconds..." !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_SQLBACKUP "Backing up the old SQLite database..." !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_FINDCORPUS "Looking for existing flat-file or BerkeleyDB corpus..." !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_MAKEBAT "Generating the 'pfi-run.bat' batch file..." !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_REGSET "Updating registry settings and environment variables..." ; Message Box text strings !insertmacro PFI_LANG_STRING PFI_LANG_MBSTPWDS_A "POPFile 'stopwords' file from previous installation found." !insertmacro PFI_LANG_STRING PFI_LANG_MBSTPWDS_B "OK to update this file ?" !insertmacro PFI_LANG_STRING PFI_LANG_MBSTPWDS_C "Click 'Yes' to update it (old file will be saved as 'stopwords.bak')" !insertmacro PFI_LANG_STRING PFI_LANG_MBSTPWDS_D "Click 'No' to keep the old file (new file will saved as 'stopwords.default')" !insertmacro PFI_LANG_STRING PFI_LANG_MBCORPUS_1 "Error detected when the installer tried to backup the old corpus." ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Add User: Message box warnings used when verifying the installation folder chosen by user [adduser.nsi] ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ !insertmacro PFI_LANG_STRING PFI_LANG_DIRSELECT_MBWARN_3 "Previous configuration data found at" !insertmacro PFI_LANG_STRING PFI_LANG_DIRSELECT_MBWARN_4 "Restored configuration data found" !insertmacro PFI_LANG_STRING PFI_LANG_DIRSELECT_MBWARN_5 "Do you want to use the restored data ?" ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Add User: Custom Page - POPFile Installation Options [adduser.nsi] ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Page Title and Sub-title displayed in the page header !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_TITLE "POPFile Installation Options" !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_SUBTITLE "Leave these options unchanged unless you need to change them" ; Text strings displayed on the custom page !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_IO_POP3 "Choose the default port number for POP3 connections (110 recommended)" !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_IO_GUI "Choose the default port for 'User Interface' connections (8080 recommended)" !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_IO_STARTUP "Run POPFile automatically when Windows starts" !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_IO_WARNING "IMPORTANT WARNING" !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_IO_MESSAGE "If UPGRADING POPFile --- the installer will SHUTDOWN existing version" ; Message Boxes used when validating user's selections !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBPOP3_A "The POP3 port cannot be set to '$G_POP3'." !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBPOP3_B "The port must be a number in the range 1 to 65535." !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBPOP3_C "Please change your POP3 port selection." !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBGUI_A "The 'User Interface' port cannot be set to '$G_GUI'." !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBGUI_B "The port must be a number in the range 1 to 65535." !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBGUI_C "Please change your 'User Interface' port selection." !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBDIFF_1 "The POP3 port must be different from the 'User Interface' port." !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBDIFF_2 "Please change your port selections." ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Add User: Initialization required by POPFile Classification Bucket Creation [adduser.nsi] ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; POPFile requires at least TWO buckets in order to work properly. PFI_LANG_CBP_DEFAULT_BUCKETS ; defines the default buckets and PFI_LANG_CBP_SUGGESTED_NAMES defines a list of suggested names ; to help the user get started with POPFile. Both lists use the | character as a name separator. ; Bucket names can only use the characters abcdefghijklmnopqrstuvwxyz_-0123456789 ; (any names which contain invalid characters will be ignored by the installer) ; Empty lists ("") are allowed (but are not very user-friendly) ; The PFI_LANG_CBP_SUGGESTED_NAMES string uses alphabetic order for the suggested names. ; If these names are translated, the translated names can be rearranged to put them back ; into alphabetic order. For example, the Portuguese (Brazil) translation of this string ; starts "admin|admin-lista|..." (which is "admin|list-admin|..." in English) !insertmacro PFI_LANG_STRING PFI_LANG_CBP_DEFAULT_BUCKETS "spam|personal|work|other" !insertmacro PFI_LANG_STRING PFI_LANG_CBP_SUGGESTED_NAMES "admin|business|computers|family|financial|general|hobby|inbox|junk|list-admin|miscellaneous|not_spam|other|personal|recreation|school|security|shopping|spam|travel|work" ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Add User: Custom Page - POPFile Classification Bucket Creation [CBP.nsh] ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Page Title and Sub-title displayed in the page header !insertmacro PFI_LANG_STRING PFI_LANG_CBP_TITLE "POPFile Classification Bucket Creation" !insertmacro PFI_LANG_STRING PFI_LANG_CBP_SUBTITLE "POPFile needs AT LEAST TWO buckets in order to be able to classify your email" ; Text strings displayed on the custom page !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_INTRO "After installation, POPFile makes it easy to change the number of buckets (and their names) to suit your needs.${IO_NL}${IO_NL}Bucket names must be single words, using lowercase letters, digits 0 to 9, hyphens and underscores." !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_CREATE "Create a new bucket by either selecting a name from the list below or typing a name of your own choice." !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_DELETE "To delete one or more buckets from the list, tick the relevant 'Remove' box(es) then click the 'Continue' button." !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_LISTHDR "Buckets to be used by POPFile" !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_REMOVE "Suprimir" !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_CONTINUE "Continue" ; Text strings used for status messages under the bucket list !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_MSG_A "There is no need to add more buckets" !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_MSG_B "You must define AT LEAST TWO buckets" !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_MSG_C "At least one more bucket is required" !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_MSG_D "Installer cannot create more than $G_PLS_FIELD_1 buckets" ; Message box text strings !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDUPERR_A "A bucket called '$G_PLS_FIELD_1' has already been defined." !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDUPERR_B "Please choose a different name for the new bucket." !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAXERR_A "The installer can only create up to $G_PLS_FIELD_1 buckets." !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAXERR_B "Once POPFile has been installed you can create more than $G_PLS_FIELD_1 buckets." !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBNAMERR_A "The name '$G_PLS_FIELD_1' is not a valid name for a bucket." !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBNAMERR_B "Els noms de cistella només poden contenir lletres a a z en minúscules, números 0 a 9, més - i _" !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBNAMERR_C "Please choose a different name for the new bucket." !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBCONTERR_1 "POPFile requires AT LEAST TWO buckets before it can classify your email." !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBCONTERR_2 "Please enter the name of a bucket to be created,${MB_NL}${MB_NL}either by picking a suggested name from the drop-down list${MB_NL}${MB_NL}or by typing in a name of your own choice." !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBCONTERR_3 "You must define AT LEAST TWO buckets before continuing with the installation of POPFile." !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDONE_A "$G_PLS_FIELD_1 buckets have been defined for use by POPFile." !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDONE_B "Do you want to configure POPFile to use these buckets?" !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDONE_C "Click 'No' if you wish to change your bucket selections." !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAKERR_A "The installer was unable to create $G_PLS_FIELD_1 of the $G_PLS_FIELD_2 buckets you selected." !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAKERR_B "Once POPFile has been installed you can use its 'User Interface'${MB_NL}${MB_NL}control panel to create the missing bucket(s)." ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Add User: Custom Page - Email Client Reconfiguration [adduser.nsi] ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Page Title and Sub-title displayed in the page header !insertmacro PFI_LANG_STRING PFI_LANG_MAILCFG_TITLE "Email Client Configuration" !insertmacro PFI_LANG_STRING PFI_LANG_MAILCFG_SUBTITLE "POPFile can reconfigure several email clients for you" ; Text displayed on the custom page !insertmacro PFI_LANG_STRING PFI_LANG_MAILCFG_IO_TEXT_1 "Mail clients marked (*) can be reconfigured automatically, assuming simple accounts are used.${IO_NL}${IO_NL}It is strongly recommended that accounts which require authentication are configured manually." !insertmacro PFI_LANG_STRING PFI_LANG_MAILCFG_IO_TEXT_2 "IMPORTANT: PLEASE SHUT DOWN THE RECONFIGURABLE EMAIL CLIENTS NOW${IO_NL}${IO_NL}This feature is still under development (e.g. some Outlook accounts may not be detected).${IO_NL}${IO_NL}Please check that the reconfiguration was successful (before using the email client)." !insertmacro PFI_LANG_STRING PFI_LANG_MAILCFG_IO_CANCEL "Email client reconfiguration cancelled by user" ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Add User: Text used on buttons to skip configuration of email clients [adduser.nsi] ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ !insertmacro PFI_LANG_STRING PFI_LANG_MAILCFG_IO_SKIPALL "Skip All" !insertmacro PFI_LANG_STRING PFI_LANG_MAILCFG_IO_SKIPONE "Skip Client" ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Add User: Message box warnings that an email client is still running [adduser.nsi] ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ !insertmacro PFI_LANG_STRING PFI_LANG_MBCLIENT_EXP "WARNING: Outlook Express appears to be running !" !insertmacro PFI_LANG_STRING PFI_LANG_MBCLIENT_OUT "WARNING: Outlook appears to be running !" !insertmacro PFI_LANG_STRING PFI_LANG_MBCLIENT_EUD "WARNING: Eudora appears to be running !" !insertmacro PFI_LANG_STRING PFI_LANG_MBCLIENT_STOP_1 "Please SHUT DOWN the email program then click 'Retry' to reconfigure it" !insertmacro PFI_LANG_STRING PFI_LANG_MBCLIENT_STOP_2 "(You can click 'Ignore' to reconfigure it, but this is not recommended)" !insertmacro PFI_LANG_STRING PFI_LANG_MBCLIENT_STOP_3 "Click 'Abort' to skip the reconfiguration of this email program" ; Following three strings are used when uninstalling !insertmacro PFI_LANG_STRING PFI_LANG_MBCLIENT_STOP_4 "Please SHUT DOWN the email program then click 'Retry' to restore the settings" !insertmacro PFI_LANG_STRING PFI_LANG_MBCLIENT_STOP_5 "(You can click 'Ignore' to restore the settings, but this is not recommended)" !insertmacro PFI_LANG_STRING PFI_LANG_MBCLIENT_STOP_6 "Click 'Abort' to skip the restoring of the original settings" ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Add User: Custom Page - Reconfigure Outlook/Outlook Express [adduser.nsi] ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Page Title and Sub-title displayed in the page header !insertmacro PFI_LANG_STRING PFI_LANG_EXPCFG_TITLE "Reconfigure Outlook Express" !insertmacro PFI_LANG_STRING PFI_LANG_EXPCFG_SUBTITLE "POPFile can reconfigure Outlook Express for you" !insertmacro PFI_LANG_STRING PFI_LANG_OUTCFG_TITLE "Reconfigure Outlook" !insertmacro PFI_LANG_STRING PFI_LANG_OUTCFG_SUBTITLE "POPFile can reconfigure Outlook for you" ; Text displayed on the custom page !insertmacro PFI_LANG_STRING PFI_LANG_EXPCFG_IO_CANCELLED "Outlook Express reconfiguration cancelled by user" !insertmacro PFI_LANG_STRING PFI_LANG_OUTCFG_IO_CANCELLED "Outlook reconfiguration cancelled by user" !insertmacro PFI_LANG_STRING PFI_LANG_OOECFG_IO_BOXHDR "accounts" !insertmacro PFI_LANG_STRING PFI_LANG_OOECFG_IO_ACCOUNTHDR "Account" !insertmacro PFI_LANG_STRING PFI_LANG_OOECFG_IO_EMAILHDR "Email address" !insertmacro PFI_LANG_STRING PFI_LANG_OOECFG_IO_SERVERHDR "Server" !insertmacro PFI_LANG_STRING PFI_LANG_OOECFG_IO_USRNAMEHDR "Username" !insertmacro PFI_LANG_STRING PFI_LANG_OOECFG_IO_FOOTNOTE "Tick box(es) to reconfigure account(s).${IO_NL}If you uninstall POPFile the original settings will be restored." ; Message Box to confirm changes to Outlook/Outlook Express account configuration !insertmacro PFI_LANG_STRING PFI_LANG_EXPCFG_MBIDENTITY "Outlook Express Identity :" !insertmacro PFI_LANG_STRING PFI_LANG_EXPCFG_MBACCOUNT "Outlook Express Account :" !insertmacro PFI_LANG_STRING PFI_LANG_OUTCFG_MBIDENTITY "Outlook User :" !insertmacro PFI_LANG_STRING PFI_LANG_OUTCFG_MBACCOUNT "Outlook Account :" !insertmacro PFI_LANG_STRING PFI_LANG_OOECFG_MBEMAIL "Email address :" !insertmacro PFI_LANG_STRING PFI_LANG_OOECFG_MBSERVER "POP3 server :" !insertmacro PFI_LANG_STRING PFI_LANG_OOECFG_MBUSERNAME "POP3 username :" !insertmacro PFI_LANG_STRING PFI_LANG_OOECFG_MBOEPORT "POP3 port :" !insertmacro PFI_LANG_STRING PFI_LANG_OOECFG_MBOLDVALUE "currently" !insertmacro PFI_LANG_STRING PFI_LANG_OOECFG_MBQUESTION "Reconfigure this account to work with POPFile ?" ; Title and Column headings for report/log files !insertmacro PFI_LANG_STRING PFI_LANG_EXPCFG_LOG_BEFORE "Outlook Express Settings before any changes were made" !insertmacro PFI_LANG_STRING PFI_LANG_EXPCFG_LOG_AFTER "Changes made to Outlook Express Settings" !insertmacro PFI_LANG_STRING PFI_LANG_OUTCFG_LOG_BEFORE "Outlook Settings before any changes were made" !insertmacro PFI_LANG_STRING PFI_LANG_OUTCFG_LOG_AFTER "Changes made to Outlook Settings" !insertmacro PFI_LANG_STRING PFI_LANG_OOECFG_LOG_END "(end)" !insertmacro PFI_LANG_STRING PFI_LANG_EXPCFG_LOG_IDENTITY "'IDENTITY'" !insertmacro PFI_LANG_STRING PFI_LANG_OUTCFG_LOG_IDENTITY "'OUTLOOK USER'" !insertmacro PFI_LANG_STRING PFI_LANG_OOECFG_LOG_ACCOUNT "'ACCOUNT'" !insertmacro PFI_LANG_STRING PFI_LANG_OOECFG_LOG_EMAIL "'EMAIL ADDRESS'" !insertmacro PFI_LANG_STRING PFI_LANG_OOECFG_LOG_SERVER "'POP3 SERVER'" !insertmacro PFI_LANG_STRING PFI_LANG_OOECFG_LOG_USER "'POP3 USERNAME'" !insertmacro PFI_LANG_STRING PFI_LANG_OOECFG_LOG_PORT "'POP3 PORT'" !insertmacro PFI_LANG_STRING PFI_LANG_OOECFG_LOG_NEWSERVER "'NEW POP3 SERVER'" !insertmacro PFI_LANG_STRING PFI_LANG_OOECFG_LOG_NEWUSER "'NEW POP3 USERNAME'" !insertmacro PFI_LANG_STRING PFI_LANG_OOECFG_LOG_NEWPORT "'NEW POP3 PORT'" ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Add User: Custom Page - Reconfigure Eudora [adduser.nsi] ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Page Title and Sub-title displayed in the page header !insertmacro PFI_LANG_STRING PFI_LANG_EUCFG_TITLE "Reconfigure Eudora" !insertmacro PFI_LANG_STRING PFI_LANG_EUCFG_SUBTITLE "POPFile can reconfigure Eudora for you" ; Text displayed on the custom page !insertmacro PFI_LANG_STRING PFI_LANG_EUCFG_IO_CANCELLED "Eudora reconfiguration cancelled by user" !insertmacro PFI_LANG_STRING PFI_LANG_EUCFG_IO_INTRO_1 "POPFile has detected the following Eudora personality" !insertmacro PFI_LANG_STRING PFI_LANG_EUCFG_IO_INTRO_2 " and can automatically configure it to work with POPFile" !insertmacro PFI_LANG_STRING PFI_LANG_EUCFG_IO_CHECKBOX "Reconfigure this personality to work with POPFile" !insertmacro PFI_LANG_STRING PFI_LANG_EUCFG_IO_DOMINANT "<Dominant> personality" !insertmacro PFI_LANG_STRING PFI_LANG_EUCFG_IO_PERSONA "personality" !insertmacro PFI_LANG_STRING PFI_LANG_EUCFG_IO_EMAIL "Email address:" !insertmacro PFI_LANG_STRING PFI_LANG_EUCFG_IO_SERVER "POP3 server:" !insertmacro PFI_LANG_STRING PFI_LANG_EUCFG_IO_USERNAME "POP3 username:" !insertmacro PFI_LANG_STRING PFI_LANG_EUCFG_IO_POP3PORT "POP3 port:" !insertmacro PFI_LANG_STRING PFI_LANG_EUCFG_IO_RESTORE "If you uninstall POPFile the original settings will be restored" ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Add User: Custom Page - POPFile can now be started [adduser.nsi] ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Page Title and Sub-title displayed in the page header !insertmacro PFI_LANG_STRING PFI_LANG_LAUNCH_TITLE "POPFile can now be started" !insertmacro PFI_LANG_STRING PFI_LANG_LAUNCH_SUBTITLE "The POPFile User Interface only works if POPFile has been started" ; Text displayed on the custom page !insertmacro PFI_LANG_STRING PFI_LANG_LAUNCH_IO_INTRO "Start POPFile now ?" !insertmacro PFI_LANG_STRING PFI_LANG_LAUNCH_IO_NO "No (the 'User Interface' cannot be used if POPFile is not started)" !insertmacro PFI_LANG_STRING PFI_LANG_LAUNCH_IO_DOSBOX "Run POPFile (in a window)" !insertmacro PFI_LANG_STRING PFI_LANG_LAUNCH_IO_BCKGRND "Run POPFile in background (no window displayed)" !insertmacro PFI_LANG_STRING PFI_LANG_LAUNCH_IO_NOICON "Run POPFile (do not show system tray icon)" !insertmacro PFI_LANG_STRING PFI_LANG_LAUNCH_IO_TRAYICON "Run POPFile with system tray icon" !insertmacro PFI_LANG_STRING PFI_LANG_LAUNCH_IO_NOTE_1 "Once POPFile has been started, you can display the 'User Interface' by" !insertmacro PFI_LANG_STRING PFI_LANG_LAUNCH_IO_NOTE_2 "(a) double-clicking the POPFile icon in the system tray, OR" !insertmacro PFI_LANG_STRING PFI_LANG_LAUNCH_IO_NOTE_3 "(b) using Start --> Programs --> POPFile --> POPFile User Interface." ; Banner message displayed whilst waiting for POPFile to start !insertmacro PFI_LANG_STRING PFI_LANG_LAUNCH_BANNER_1 "Preparing to start POPFile." !insertmacro PFI_LANG_STRING PFI_LANG_LAUNCH_BANNER_2 "This may take a few seconds..." ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Add User: Standard MUI Page - FINISH [adduser.nsi] ; ; The PFI_LANG_FINISH_RUN_TEXT text should be a short phrase (not a long paragraph) ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; $G_WINUSERNAME holds the Windows login name of the user running the wizard !insertmacro PFI_LANG_STRING PFI_LANG_ADDUSER_FINISH_INFO "POPFile has been configured for the '$G_WINUSERNAME' user.${IO_NL}${IO_NL}Click Finish to close this wizard." !insertmacro PFI_LANG_STRING PFI_LANG_FINISH_RUN_TEXT "POPFile User Interface" !insertmacro PFI_LANG_STRING PFI_LANG_FINISH_WEB_LINK_TEXT "Click here to visit the POPFile web site" ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Add User: Standard MUI Page - Uninstall Confirmation Page (for the 'Add POPFile User' wizard) [adduser.nsi] ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; $G_WINUSERNAME holds the Windows login name for the user running the uninstall wizard !insertmacro PFI_LANG_STRING PFI_LANG_REMUSER_TITLE "Uninstall POPFile data for '$G_WINUSERNAME' user" !insertmacro PFI_LANG_STRING PFI_LANG_REMUSER_SUBTITLE "Remove POPFile configuration data for this user from your computer" !insertmacro PFI_LANG_STRING PFI_LANG_REMUSER_TEXT_TOP "The POPFile configuration data for the '$G_WINUSERNAME' user will be uninstalled from the following folder. $_CLICK" ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Add User: Standard MUI Page - Uninstallation Page (for the 'Add POPFile User' wizard) [adduser.nsi] ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; $G_WINUSERNAME holds the Windows login name for the user running the uninstall wizard !insertmacro PFI_LANG_STRING PFI_LANG_REMOVING_TITLE "Uninstalling POPFile data for '$G_WINUSERNAME' user" !insertmacro PFI_LANG_STRING PFI_LANG_REMOVING_SUBTITLE "Please wait while the POPFile configuration files for this user are deleted" ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Add User: Standard MUI Page - UNPAGE_INSTFILES [adduser.nsi] ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Uninstall Progress Reports displayed above the progress bar !insertmacro PFI_LANG_STRING PFI_LANG_UN_PROG_OUTEXPRESS "Restoring Outlook Express settings..." !insertmacro PFI_LANG_STRING PFI_LANG_UN_PROG_OUTLOOK "Restoring Outlook settings..." !insertmacro PFI_LANG_STRING PFI_LANG_UN_PROG_EUDORA "Restoring Eudora settings..." !insertmacro PFI_LANG_STRING PFI_LANG_UN_PROG_DBMSGDIR "Deleting corpus and 'Recent Messages' directory..." !insertmacro PFI_LANG_STRING PFI_LANG_UN_PROG_CONFIG "Deleting configuration data..." !insertmacro PFI_LANG_STRING PFI_LANG_UN_PROG_EXESTATUS "Checking program status..." !insertmacro PFI_LANG_STRING PFI_LANG_UN_PROG_REGISTRY "Deleting POPFile registry entries..." ; Uninstall Log Messages !insertmacro PFI_LANG_STRING PFI_LANG_UN_LOG_EXPRUN "Outlook Express is still running!" !insertmacro PFI_LANG_STRING PFI_LANG_UN_LOG_OUTRUN "Outlook is still running!" !insertmacro PFI_LANG_STRING PFI_LANG_UN_LOG_EUDRUN "Eudora is still running!" !insertmacro PFI_LANG_STRING PFI_LANG_UN_LOG_IGNORE "User requested restore while email program is running" !insertmacro PFI_LANG_STRING PFI_LANG_UN_LOG_OPENED "Opened" !insertmacro PFI_LANG_STRING PFI_LANG_UN_LOG_RESTORED "Restored" !insertmacro PFI_LANG_STRING PFI_LANG_UN_LOG_CLOSED "Closed" !insertmacro PFI_LANG_STRING PFI_LANG_UN_LOG_DATAPROBS "Data problems" !insertmacro PFI_LANG_STRING PFI_LANG_UN_LOG_DELUSERDIR "Removing all files from POPFile 'User Data' directory" !insertmacro PFI_LANG_STRING PFI_LANG_UN_LOG_DELUSERERR "Note: unable to remove all files from POPFile 'User Data' directory" ; Message Box text strings !insertmacro PFI_LANG_STRING PFI_LANG_UN_MBCLIENT_1 "'Outlook Express' problem !" !insertmacro PFI_LANG_STRING PFI_LANG_UN_MBCLIENT_2 "'Outlook' problem !" !insertmacro PFI_LANG_STRING PFI_LANG_UN_MBCLIENT_3 "'Eudora' problem !" !insertmacro PFI_LANG_STRING PFI_LANG_UN_MBEMAIL_1 "Unable to restore some original settings" !insertmacro PFI_LANG_STRING PFI_LANG_UN_MBEMAIL_2 "Display the error report ?" !insertmacro PFI_LANG_STRING PFI_LANG_UN_MBRERUN_1 "Some email client settings have not been restored !" !insertmacro PFI_LANG_STRING PFI_LANG_UN_MBRERUN_2 "(Details can be found in $INSTDIR folder)" !insertmacro PFI_LANG_STRING PFI_LANG_UN_MBRERUN_3 "Click 'No' to ignore these errors and delete everything" !insertmacro PFI_LANG_STRING PFI_LANG_UN_MBRERUN_4 "Click 'Yes' to keep this data (to allow another attempt later)" !insertmacro PFI_LANG_STRING PFI_LANG_UN_MBREMDIR_2 "Do you want to remove all files in your POPFile 'User Data' directory?${MB_NL}${MB_NL}$G_USERDIR${MB_NL}${MB_NL}(If you have anything you created that you want to keep, click No)" !insertmacro PFI_LANG_STRING PFI_LANG_UN_MBDELMSGS_1 "Do you want to remove all files in your 'Recent Messages' directory?" ########################################################################### ########################################################################### ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; Corpus Conversion: Standard MUI Page - INSTFILES [MonitorCC.nsi] ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ !insertmacro PFI_LANG_STRING PFI_LANG_CONVERT_TITLE "POPFile Corpus Conversion" !insertmacro PFI_LANG_STRING PFI_LANG_CONVERT_SUBTITLE "The existing corpus must be converted to work with this version of POPFile" !insertmacro PFI_LANG_STRING PFI_LANG_ENDCONVERT_TITLE "POPFile Corpus Conversion Completed" !insertmacro PFI_LANG_STRING PFI_LANG_ENDCONVERT_SUBTITLE "Please click Close to continue" !insertmacro PFI_LANG_STRING PFI_LANG_BADCONVERT_TITLE "POPFile Corpus Conversion Failed" !insertmacro PFI_LANG_STRING PFI_LANG_BADCONVERT_SUBTITLE "Please click Cancel to continue" !insertmacro PFI_LANG_STRING PFI_LANG_CONVERT_MUTEX "Another copy of the 'Corpus Conversion Monitor' is already running !" !insertmacro PFI_LANG_STRING PFI_LANG_CONVERT_PRIVATE "The 'Corpus Conversion Monitor' is part of the POPFile installer" !insertmacro PFI_LANG_STRING PFI_LANG_CONVERT_NOFILE "Error: Corpus conversion data file does not exist !" !insertmacro PFI_LANG_STRING PFI_LANG_CONVERT_NOPOPFILE "Error: POPFile path missing" !insertmacro PFI_LANG_STRING PFI_LANG_CONVERT_STARTERR "An error occurred when starting the corpus conversion process" !insertmacro PFI_LANG_STRING PFI_LANG_CONVERT_FATALERR "A fatal error occurred during the corpus conversion process !" !insertmacro PFI_LANG_STRING PFI_LANG_CONVERT_ESTIMATE "Estimated time remaining: " !insertmacro PFI_LANG_STRING PFI_LANG_CONVERT_MINUTES "minutes" !insertmacro PFI_LANG_STRING PFI_LANG_CONVERT_WAITING "(waiting for first file to be converted)" !insertmacro PFI_LANG_STRING PFI_LANG_CONVERT_TOTALFILES "There are $G_BUCKET_COUNT bucket files to be converted" !insertmacro PFI_LANG_STRING PFI_LANG_CONVERT_PROGRESS_N "After $G_ELAPSED_TIME.$G_DECPLACES minutes there are $G_STILL_TO_DO files left to convert" !insertmacro PFI_LANG_STRING PFI_LANG_CONVERT_PROGRESS_1 "After $G_ELAPSED_TIME.$G_DECPLACES minutes there is one file left to convert" !insertmacro PFI_LANG_STRING PFI_LANG_CONVERT_SUMMARY "Corpus Conversion to... [truncated message content] |
From: Brian S. <xue...@us...> - 2005-09-15 11:57:37
|
Update of /cvsroot/popfile/windows In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12489 Modified Files: Tag: b0_22_2 adduser-Version.nsh Log Message: Update 0.22.3 installer to support Catalan language. Index: adduser-Version.nsh =================================================================== RCS file: /cvsroot/popfile/windows/adduser-Version.nsh,v retrieving revision 1.6.2.3 retrieving revision 1.6.2.4 diff -C2 -d -r1.6.2.3 -r1.6.2.4 *** adduser-Version.nsh 13 Sep 2005 19:06:48 -0000 1.6.2.3 --- adduser-Version.nsh 15 Sep 2005 11:57:22 -0000 1.6.2.4 *************** *** 7,11 **** #-------------------------------------------------------------------------- ! !define C_PFI_VERSION "0.2.73" #-------------------------------------------------------------------------- --- 7,11 ---- #-------------------------------------------------------------------------- ! !define C_PFI_VERSION "0.2.74" #-------------------------------------------------------------------------- |
From: Joseph C. <tex...@us...> - 2005-09-15 09:18:32
|
Update of /cvsroot/popfile/engine/skins/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10601/skins/default Modified Files: Tag: b0_22_2 common-middle.thtml Log Message: Fix missing quote on template variable on branch. Index: common-middle.thtml =================================================================== RCS file: /cvsroot/popfile/engine/skins/default/common-middle.thtml,v retrieving revision 1.5 retrieving revision 1.5.6.1 diff -C2 -d -r1.5 -r1.5.6.1 *** common-middle.thtml 17 Sep 2004 14:13:28 -0000 1.5 --- common-middle.thtml 15 Sep 2005 09:18:22 -0000 1.5.6.1 *************** *** 25,29 **** </table> <br /> ! <table class="menu" cellspacing="0" summary="<TMPL_VAR NAME="Localize_Header_MenuSummary>"> <tr> <td class="menuIndent"> </td> --- 25,29 ---- </table> <br /> ! <table class="menu" cellspacing="0" summary="<TMPL_VAR NAME="Localize_Header_MenuSummary">"> <tr> <td class="menuIndent"> </td> |
From: Joseph C. <tex...@us...> - 2005-09-15 08:15:29
|
Update of /cvsroot/popfile/engine/languages In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27541/languages Added Files: Tag: b0_22_2 Catala.msg Log Message: Add Catala language (v1.1 from head) to branch. --- NEW FILE: Catala.msg --- # Copyright (c) 2001-2003 John Graham-Cumming # # 2005/08/09 Translated by David Gimeno i Ayuso <in...@si...> # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # POPFile is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with POPFile; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # # Identify the language and character set used for the interface LanguageCode ca LanguageCharset ISO-8859-1 LanguageDirection ltr # This is used to get the appropriate subdirectory for the manual ManualLanguage en # This is where to find the FAQ on the Wiki FAQLink FrequentlyAskedQuestions # Common words that are used on their own all over the interface Apply Aplicar On Actiu Off Inactiu TurnOn Activar TurnOff Desactivar Add Afegir Remove Suprimir Previous Anterior Next Següent From Des de Subject Assumpte Cc Còpia Classification Cistella Reclassify Reclassificar Probability Probabilitat Scores Barems QuickMagnets Imants ràpids Undo Desfer Close Tancar Find Cercar Filter Filtre Yes Sí No No ChangeToYes Canviar a Sí ChangeToNo Canviar a No Bucket Cistella Magnet Imant Delete Esborrar Create Crear To A Total Total Rename Redenominar Frequency Freqüència Probability Probabilitat Score Barem Lookup Examinar Word Mot Count Comptador Update Actualitzar Refresh Recarregar FAQ PMF ID ID Date Data Arrived Rebut Size Tamany # This is a regular expression pattern that is used to convert # a number into a friendly looking number (for the US and UK this # means comma separated at the thousands) Locale_Thousands . Locale_Decimal ' # The Locale_Date uses the format strings in Perl's Date::Format # module to set the date format for the UI. There are two possible # ways to specify it. # # <format> Just one simple format used for all dates # <<format> | <format> The first format is used for dates less than # 7 days from now, the second for all other dates Locale_Date %d/%m %R%Z | %e/%L/%Y %R%Z # The header and footer that appear on every UI page Header_Title Centre de control POPFile Header_Shutdown Aturar POPFile Header_History Històric Header_Buckets Cistelles Header_Configuration Configuració Header_Advanced Avançat Header_Security Seguretat Header_Magnets Imants Footer_HomePage Pàgina inicial POPFile Footer_Manual Manual Footer_Forums Fòrums Footer_FeedMe Acaptar Footer_RequestFeature Sol·licitar millora Footer_MailingList Llista de correu Footer_Wiki Documentació Configuration_Error1 El caràcter separador ha de ser-ne un de sol Configuration_Error2 El port de l'interfície d'usuari ha de ser un número entre 1 i 65535 Configuration_Error3 El port que rep les connexions POP3 ha de ser un número entre 1 i 65535 Configuration_Error4 El tamany de pàgina ha de ser un número entre 1 i 1000 Configuration_Error5 El nombre de dies a l'històric ha de ser un número entre 1 i 366 Configuration_Error6 El temps d'espera de TCP ha de ser un número entre 10 i 300 Configuration_Error7 El port que rep les connexions XML RPC ha de ser un número entre 1 i 65535 Configuration_Error8 El port intermedi SOCKS V ha de ser un número entre 1 i 65535 Configuration_POP3Port Port que rep les connexions POP3 Configuration_POP3Update S'ha actualitzat el port POP3 a %s; no tindrà efecte fins que reinicieu el POPFile Configuration_XMLRPCUpdate S'ha actualitzat el port XML-RPC a %s; no tindrà efecte fins que reinicieu el POPFile Configuration_XMLRPCPort Port que rep les connexions XML-RPC Configuration_SMTPPort Port que rep les connexions SMTP Configuration_SMTPUpdate S'ha actualitzat el port SMTP a %s; no tindrà efecte fins que reinicieu el POPFile Configuration_NNTPPort Port que rep les connexions NNTP Configuration_NNTPUpdate S'ha actualitzat el port NNTP a %s; no tindrà efecte fins que reinicieu el POPFile Configuration_POPFork Permetre connexions concurrents POP3 Configuration_SMTPFork Permetre connexions concurrents SMTP Configuration_NNTPFork Permetre connexions concurrents NNTP Configuration_POP3Separator Caràcter separador de host:port:user POP3 Configuration_NNTPSeparator Caràcter separador de host:port:user NNPT Configuration_POP3SepUpdate S'ha actualitzat el separador POP3 a %s Configuration_NNTPSepUpdate S'ha actualitzat el separador NNTP a %s Configuration_UI Port web d'interfície d'usuari Configuration_UIUpdate S'ha actualitzat el port web d'interfície d'usuari a %s; no tindrà efecte fins que reinicieu el POPFile Configuration_History Nombre de missatges per pàgina Configuration_HistoryUpdate S'ha actualitzat el nombre de missatges per pàgina a %s Configuration_Days Nombre de dies a conservar l'històric Configuration_DaysUpdate S'ha actualitzat el nombre de dies d'històric a %s Configuration_UserInterface Interfície d'usuari Configuration_Skins Aparences Configuration_SkinsChoose Trieu aparença Configuration_Language Idioma Configuration_LanguageChoose Trieu idioma Configuration_ListenPorts Opcions de mòduls Configuration_HistoryView Veure històric Configuration_TCPTimeout Temps d'espera connexió Configuration_TCPTimeoutSecs Temps d'espera connexió en segons Configuration_TCPTimeoutUpdate S'ha actualitzat el temps d'espera connexió a %s Configuration_ClassificationInsertion Inserció text del missatge Configuration_SubjectLine Modificació<br>línia de l'assumpte Configuration_XTCInsertion Capçalera<br>X-Text-Classification Configuration_XPLInsertion Capçalera<br>X-POPFile-Link Configuration_Logging S'està registrant Configuration_None Cap Configuration_ToScreen A pantalla Configuration_ToFile A fitxer Configuration_ToScreenFile A pantalla i fitxer Configuration_LoggerOutput Sortida usuari Configuration_GeneralSkins Aparences Configuration_SmallSkins Aparences petites Configuration_TinySkins Aparences minúscules Configuration_CurrentLogFile <Descarregar fitxer de registre actual> Configuration_SOCKSServer Servidor intermedi SOCKS V Configuration_SOCKSPort Port intermedi SOCKS V Configuration_SOCKSPortUpdate S'ha actualitzat el port intermedi SOCKS V a %s Configuration_SOCKSServerUpdate S'ha actualitzat el servidor intermedi SOCKS V a %s Configuration_Fields Columnes històric Advanced_Error1 '%s' ja és a la llista de mots a ignorar Advanced_Error2 Mots a ignorar només pot contenir caràcters alfanumèrics, ., _, - i @ Advanced_Error3 afegit '%s' a la llista de mots a ignorar Advanced_Error4 '%s' no és a la llista de mots a ignorar Advanced_Error5 suprimit '%s' de la llista de mots a ignorar Advanced_StopWords Mots a ignorar Advanced_Message1 POPFile ignora els següents mots molt usuals: Advanced_AddWord Afegir mot Advanced_RemoveWord Suprimir mot Advanced_AllParameters Tots els paràmetres POPFile Advanced_Parameter Paràmetre Advanced_Value Valor Advanced_Warning Aquesta és la llista completa de paràmetres de POPFile. Només usuaris avançats: canvieu-los i cliqueu Actualitzar; no se'n comprova la validesa. Els ítems mostrats en negreta són diferents dels predeterminats. Advanced_ConfigFile Fitxer de configuració: History_Filter (s'està mostrant només la cistella <font color="%s">%s</font>) History_FilterBy Filtrat per History_Search (cercat per Des de/Assumte %s) History_Title Missatges recents History_Jump Anar a la pàgina History_ShowAll Mostrar-ho tot History_ShouldBe Hauria de ser History_NoFrom cap línia Des de History_NoSubject cap línia Assumpte History_ClassifyAs Classificar com a History_MagnetUsed Imant usat History_MagnetBecause <b>Imant usat</b><p>Classificat com a <font color="%s">%s</font> degut a l'imant %s </p> History_ChangedTo S'ha canviat a <font color="%s">%s</font> History_Already Reclassificat com a <font color="%s">%s</font> History_RemoveAll Suprimir-ho tot History_RemovePage Suprimir pàgina History_RemoveChecked Suprimir marcats History_Remove Per suprimir entrades a l'històric, cliqueu History_SearchMessage Cercar Des de/Assumpte History_NoMessages Cap missatge History_ShowMagnet imantat History_Negate_Search Invertir cerca/filtre History_Magnet (s'està mostrant només missatges classificats per imant) History_NoMagnet (s'està mostrant només missatges no classificats per imant) History_ResetSearch Reiniciar History_ChangedClass Ara s'hauria de classificar com a History_Purge Esborrar ara History_Increase Augmentar History_Decrease Reduir History_Column_Characters Canviar l'ample de les columnes Des de, A, Còpia i Assumpte History_Automatic Automàtic History_Reclassified Reclassificat History_Size_Bytes %d B History_Size_KiloBytes %.1f KB History_Size_MegaBytes %.1f MB Password_Title Contrasenya Password_Enter Introduïu-hi la contrasenya Password_Go Anar-hi! Password_Error1 Contrasenya incorrecta Security_Error1 El port ha de ser un número entre 1 i 65535 Security_Stealth Mode furtiu/Operació del servidor 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 Security_PasswordUpdate S'ha actualitzat la contrasenya Security_AUTHTitle Servidors remots Security_SecureServer Servidor POP3 remot (SPA/AUTH o servidor intermedi transparent) Security_SecureServerUpdate S'ha actualitzat el servidor POP3 remot a %s Security_SecurePort Port POP3 remot (SPA/AUTH o servidor intermedi transparent) Security_SecurePortUpdate S'ha actualitzat el port del servidor POP3 remot a %s Security_SMTPServer Servidor de cadena SMTP Security_SMTPServerUpdate S'ha actualitzat el servidor de cadena SMTP a %s; no tindrà efecte fins que reinicieu el POPFile Security_SMTPPort Port de cadena SMTP Security_SMTPPortUpdate S'ha actualitzat el port de cadena SMTP a %s; no tindrà efecte fins que reinicieu el POPFile Security_POP3 Acceptar connexions POP3 de màquines remotes (cal reiniciar POPFile) Security_SMTP Acceptar connexions SMTP de màquines remotes (cal reiniciar POPFile) Security_NNTP Acceptar connexions NNTP de màquines remotes (cal reiniciar POPFile) Security_UI Acceptar connexions HTTP (interfície d'usuari) de màquines remotes (cal reiniciar POPFile) Security_XMLRPC Acceptar connexions XML-RPC de màquines remotes (cal reiniciar POPFile) Security_UpdateTitle Comprovació automàtica d'actualitzacions Security_Update Comprovar actualitzacions de POPFile diàriament Security_StatsTitle S'estan informant les estadístiques Security_Stats Enviar les estadístiques diàriament Magnet_Error1 Ja existeix l'imant '%s' a la cistella '%s' Magnet_Error2 El nou imant '%s' interfereix amb el '%s' de la cistella '%s' i podria donar resultats ambigus. No s'ha afegit el nou. Magnet_Error3 S'ha creat el nou imant '%s' a la cistella '%s' Magnet_CurrentMagnets Imants actuals Magnet_Message1 Els imants següents impliquen que un missatge sigui sempre encasellat a la cistella indicada Magnet_CreateNew Crear imant nou Magnet_Explanation Disposeu de tres tipus d'imants:</b> <ul><li><b>Adreça Des de o nom:</b> Per exemple: jo...@co... per evitar una adreça específica, <br />company.com per evitar tothom de company.com, <br />John Doe per evitar una persona concreta, John per evitar-los tots</li><li><b>Adreça A/Còpia o nom:</b> Com un imant Des de: però per a l'adressa A:/Còpia: a un missatge</li> <li><b>Mots Assumpte:</b> Per exemple: hello per evitar tots els missatges amb hello a l'assumpte</li></ul> Magnet_MagnetType Tipus d'imant Magnet_Value Valors Magnet_Always Va sempre a la cistella Magnet_Jump Anar a la pàgina d'imants Bucket_Error1 Els noms de cistella només poden contenir lletres a a z en minúscules, números 0 a 9, més - i _ Bucket_Error2 Ja existeix la cistella anomenada %s Bucket_Error3 S'ha creat la cistella anomenada %s Bucket_Error4 Introduïu-hi algun mot Bucket_Error5 Redenominada la cistella %s a %s Bucket_Error6 Esborrada la cistella %s Bucket_Title Configuració de cistella Bucket_BucketName Nom de<br>cistella Bucket_WordCount Comptador de mots Bucket_WordCounts Comptadors de mots Bucket_UniqueWords Mots<br>distints Bucket_SubjectModification Modificació<br>capçalera assumpte Bucket_ChangeColor Color<br>cistella Bucket_NotEnoughData No hi ha prous dades Bucket_ClassificationAccuracy Precisió de la classificació Bucket_EmailsClassified Missatges classificats Bucket_EmailsClassifiedUpper Missatges Classificats Bucket_ClassificationErrors Errors de classificació Bucket_Accuracy Precisió Bucket_ClassificationCount Comptador de classificació Bucket_ClassificationFP Falsos positius Bucket_ClassificationFN Falsos negatius Bucket_ResetStatistics Reiniciar estadístiques Bucket_LastReset Última reinicialització Bucket_CurrentColor El color actual de %s és %s Bucket_SetColorTo S'ha canviat el color de %s a %s Bucket_Maintenance Manteniment Bucket_CreateBucket Crear una cistella de nom Bucket_DeleteBucket Esborrar la cistella anomenada Bucket_RenameBucket Redenominar la cistella anomenada Bucket_Lookup Examinar Bucket_LookupMessage Examinar la paraula a les cistelles Bucket_LookupMessage2 Examinar el resultat per Bucket_LookupMostLikely <b>%s</b> és més probable que aparegui a <font color="%s">%s</font> Bucket_DoesNotAppear <p><b>%s</b> no apareix a cap de les cistelles Bucket_DisabledGlobally Globalment inhabilitat Bucket_To a Bucket_Quarantine Missatge de<br>quarantena SingleBucket_Title Detall de %s SingleBucket_WordCount Comptador de mots de la cistella SingleBucket_TotalWordCount Comptador total de mots SingleBucket_Percentage Percentatge del total SingleBucket_WordTable Taula de mots de %s SingleBucket_Message1 Cliqueu una lletra a l'índex per veure la llista de mots que hi comencen. Cliqueu qualsevol mot per examinar llur probabilitat per a totes les cistelles. SingleBucket_Unique %s distint SingleBucket_ClearBucket Suprimir tots els mots Session_Title La sessió POPFile ha vençut Session_Error La vostra sessió POPFile ha vençut. Això pot ser degut a haver aturat i iniciat POPFile deixant el vostre navegador web obert. Cliqueu un dels enllaços de més amunt per continuar usant POPFile. View_Title Visualització missatge individual View_ShowFrequencies Mostrar freqüències de mot View_ShowProbabilities Mostrar probabilitats de mot View_ShowScores Mostrar barems de mot i diagrama de decisió View_WordMatrix Matriu de mots View_WordProbabilities s'estan mostrant les probabilitats de mot View_WordFrequencies s'estan mostrant les freqüències de mot View_WordScores s'estan mostrant els barems de mot View_Chart Diagrama de decisió Windows_TrayIcon Mostrar la icona POPFile a la safata de sistema del Windows? Windows_Console Executar POPFile a una finestra de consola? Windows_NextTime <p><font color="red">No tindrà efecte fins que reinicieu el POPFile</font> Header_MenuSummary Aquesta taula és el menú de navegació que permet d'accedir a cadascuna de les diferents pàgines del centre de control. History_MainTableSummary Aquesta taula mostra el remitent i l'assumpte dels missatges rebuts adés i permet de revisar-los i reclassificar-los. En clicar la línia de l'assumpte es mostrarà el missatge sencer, juntament amb la informació del per què de llur classificació. La columna 'Hauria de ser' us permet d'especificar a quina cistella pertany o de desfer aquest canvi. La columna 'Esborrar' us permet d'esborrar de l'històric missatges específics, si ja no els necessiteu. History_OpenMessageSummary Aquesta taula conté el text complet d'un missatge, amb els mots usats a la classificació ressaltats segons la cistella més rellevant de cadascun. Bucket_MainTableSummary Aquesta taula proporciona una ullada de les cistelles de classificació. Cada fila mostra per a cada cistella el nom, el comptador total de mots, el nombre total de mots individuals, si es modificarà la línia d'assumpte en classificar-lo, si es deixaran en quarantena els que es rebin i una taula per seleccionar el color a usar en presentar al centre de control res de relacionat amb ella. Bucket_StatisticsTableSummary Aquesta taula proporciona tres jocs d'estadístiques sobre el rendiment general de POPFile. El primer és com d'acurada és la classificació, el segon quants missatges i a quines cistelles s'han classificat i el tercer quants mots hi ha a cada cistella i quins percentatges representen. Bucket_MaintenanceTableSummary Aquesta taula conté formularis que us permeten de crear, esborrar o redenominar cistelles o examinar un mot a totes les cistelles per veure quines probabilitats presenta. Bucket_AccuracyChartSummary Aquesta taula representa gràficament la precisió de la classificació de missatges. Bucket_BarChartSummary Aquesta taula representa gràficament l'assignació de percentatges a cadascuna de les diferents cistelles. S'usa tant per al nombre de missatges classificats com per als comptadors totals de mots. Bucket_LookupResultsSummary Aquesta taula mostra les probabilitats associades a un mot del corpus donat. De cada cistella mostra la freqüència en que esdevé el mot, la probabilitat de que hi aparegui i l'efecte general que té sobre el barem de la cistella si n'hi ha cap en un missatge. Bucket_WordListTableSummary Aquesta taula proporciona una llista de tots els mots d'una cistella particular, ordenats per la primera lletra comú a cada fila. Magnet_MainTableSummary Aquesta taula mostra la llista d'imants que s'usen per classificar missatges automàticament segons unes regles fixes. Cada fila mostra com es defineix l'imant, per a quina cistella s'ha fet i un botó per esborrar-lo. Configuration_MainTableSummary Aquesta taula conté un nombre de formularis que us permeten de controlar la configuració de POPFile. Configuration_InsertionTableSummary Aquesta taula conté els botons que determinen si es fan certes modificacions a les capçaleres o línia d'assumpte del missatge abans no sigui passat al client de correu, o no. Security_MainTableSummary Aquesta taula proporciona jocs de controls que afecten la seguretat de la configuració general de POPFile, si s'ha de comprovar automàticament si hi ha actualitzacions del programa i si s'han enviar les estadístiques sobre rendiment del POPFile al magatzem central de l'autor del programa per a informació general. Advanced_MainTableSummary Aquesta taula proporciona una llista de mots que POPFile ignora en classificar els missatges atesa llur freqüència relativa als missatges de tota mena. S'ordenen per fila segons llur primera lletra. Imap_Bucket2Folder Els correus de la cistella <b>%s</b> van a la carpeta Imap_MapError No podeu assignar més d'una cistella a una sola carpeta! Imap_Server Nom del servidor IMAP: Imap_ServerNameError Introduïu-hi el nom del servidor! Imap_Port Port del servidor IMAP: Imap_PortError Introduïu-hi un número de port vàlid! Imap_Login Nom del compte IMAP: Imap_LoginError Introduïu-hi un nom d'usuari! Imap_Password Contrasenya del compte IMAP: Imap_PasswordError Introduïu-hi una contrasenya pel servidor! Imap_Expunge Destruir de les carpetes mirades els missatges esborrats. Imap_Interval Interval d'actualització, en segons: Imap_IntervalError Introduïu-hi un interval entre 10 i 3600 segons. Imap_Bytelimit Nombre de bytes per missatge a usar per a la classificació. Introduïu-hi 0 (zero) pel missatge complet: Imap_BytelimitError Introduïu-hi un nombre. Imap_RefreshFolders Recarregar la llista de carpetes Imap_Now ara! Imap_UpdateError1 No s'ha pogut entrar. Verifiqueu el nom del compte i la contrasenya. Imap_UpdateError2 No s'ha pogut connectar amb el servidor. Comproveu el nom i el port del servidor i assegureu-vos que sou en línia. Imap_UpdateError3 Configureu abans els detalls de la connexió. Imap_NoConnectionMessage Configureu abans els detalls de la connexió. Després que hi hagueu fet, hi haurà més opcions disponibles. Imap_WatchMore una carpeta a la llista de les carpetes mirades Imap_WatchedFolder Carpeta mirada núm. Shutdown_Message S'ha aturat el POPFile Help_Training Quan useu per primer cop POPFile, no sap res i caldrà una mica d'entrenament. Cal entrenar POPFile per a cada cistella. L'anireu educant cada cop que reclassifiqueu un missatge que POPFile hagi classificat a una cistella incorrecta. També haureu de configurar el vostre client de correu perquè filtri els missatges segons la classificació de POPFile. Podeu trobar informació sobre com configurar el filtratge del vostre client de correu a <a href="http://popfile.sourceforge.net/cgi-bin/wiki.pl?FrequentlyAskedQuestions/EmailSorting">Projecte de Documentació POPFile</a> (en anglès). Help_Bucket_Setup POPFile necessita al menys dues cistelles a més de la pseudo-cistella 'unclassified'. El que fa únic POPFile és que pot classificar els correus en tantes cistelles com volgueu. Una configuració senzilla pot ser una cistella "spam", una "personal" i una altra "feina". Help_No_More No mostrar-m'ho més |
From: Manni H. <man...@us...> - 2005-09-15 07:49:32
|
Update of /cvsroot/popfile/engine/UI In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22610/UI Modified Files: HTML.pm Log Message: Adapt handling of the shutdown page to Joe's skin changes and the fact that we got rid of the session key. Index: HTML.pm =================================================================== RCS file: /cvsroot/popfile/engine/UI/HTML.pm,v retrieving revision 1.357 retrieving revision 1.358 diff -C2 -d -r1.357 -r1.358 *** HTML.pm 10 Sep 2005 08:49:41 -0000 1.357 --- HTML.pm 15 Sep 2005 07:49:24 -0000 1.358 *************** *** 3908,3921 **** # Replace the reference to the favicon, we won't be able to handle # that request - $text =~ s/<link rel="icon" href="favicon\.ico">//; ! # Replace the link to the style sheet with the style sheet itself ! ! $text =~ s/\Q<link rel="stylesheet" type="text\/css" href="${root}style.css" title="POPFile-Style">\E/$css/; ! ! # Remove the session key from the menu links: - $text =~ s/href="(.+?)\?session=.+?"/href="$1"/g; return $text; --- 3908,3916 ---- # Replace the reference to the favicon, we won't be able to handle # that request $text =~ s/<link rel="icon" href="favicon\.ico">//; ! # Replace the link to the style sheets with the style sheet itself ! $text =~ s/<link rel="stylesheet" .* media="handheld">/$css/s; return $text; |
From: John Graham-C. <jgr...@us...> - 2005-09-14 19:30:57
|
Update of /cvsroot/popfile/engine/Proxy In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12985 Modified Files: POP3.pm Log Message: Default to port 995 for SSL Index: POP3.pm =================================================================== RCS file: /cvsroot/popfile/engine/Proxy/POP3.pm,v retrieving revision 1.111 retrieving revision 1.112 diff -C2 -d -r1.111 -r1.112 *** POP3.pm 21 Aug 2005 22:17:48 -0000 1.111 --- POP3.pm 14 Sep 2005 19:30:47 -0000 1.112 *************** *** 260,264 **** my $ssl = defined( $options ) && ( $options =~ /ssl/i ); ! $port = 110 if ( !defined( $port ) ); if ( $mail = $self->verify_connected_( $mail, $client, --- 260,264 ---- my $ssl = defined( $options ) && ( $options =~ /ssl/i ); ! $port = $ssl?995:110 if ( !defined( $port ) ); if ( $mail = $self->verify_connected_( $mail, $client, |
From: John Graham-C. <jgr...@us...> - 2005-09-14 19:30:37
|
Update of /cvsroot/popfile/engine/Proxy In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12838 Modified Files: Tag: b0_22_2 POP3.pm Log Message: Default to port 995 for SSL Index: POP3.pm =================================================================== RCS file: /cvsroot/popfile/engine/Proxy/POP3.pm,v retrieving revision 1.105 retrieving revision 1.105.4.1 diff -C2 -d -r1.105 -r1.105.4.1 *** POP3.pm 29 Nov 2004 21:47:04 -0000 1.105 --- POP3.pm 14 Sep 2005 19:30:29 -0000 1.105.4.1 *************** *** 250,254 **** my $ssl = defined( $options ) && ( $options =~ /ssl/i ); ! $port = 110 if ( !defined( $port ) ); if ( $mail = $self->verify_connected_( $mail, $client, --- 250,254 ---- my $ssl = defined( $options ) && ( $options =~ /ssl/i ); ! $port = $ssl?995:110 if ( !defined( $port ) ); if ( $mail = $self->verify_connected_( $mail, $client, |
From: John Graham-C. <jgr...@us...> - 2005-09-14 19:28:35
|
Update of /cvsroot/popfile/engine/Classifier In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12283 Modified Files: Tag: b0_22_2 Bayes.pm Log Message: Newline every 1000 records updated in database Index: Bayes.pm =================================================================== RCS file: /cvsroot/popfile/engine/Classifier/Bayes.pm,v retrieving revision 1.327 retrieving revision 1.327.4.1 diff -C2 -d -r1.327 -r1.327.4.1 *** Bayes.pm 16 Dec 2004 02:59:49 -0000 1.327 --- Bayes.pm 14 Sep 2005 19:28:26 -0000 1.327.4.1 *************** *** 806,809 **** --- 806,813 ---- flush STDOUT; } + if ( ( $i % 1000 ) == 0 ) { + print "\n"; + flush STDOUT; + } my @rows = $t->fetchrow_array; |
From: John Graham-C. <jgr...@us...> - 2005-09-14 19:25:15
|
Update of /cvsroot/popfile/engine/skins/blue In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11049/blue Modified Files: Tag: b0_22_2 style.css Log Message: Merge Joseph's updated skins to this branch Index: style.css =================================================================== RCS file: /cvsroot/popfile/engine/skins/blue/style.css,v retrieving revision 1.3 retrieving revision 1.3.6.1 diff -C2 -d -r1.3 -r1.3.6.1 *** style.css 31 Jul 2004 18:04:29 -0000 1.3 --- style.css 14 Sep 2005 19:24:29 -0000 1.3.6.1 *************** *** 264,265 **** --- 264,270 ---- padding-bottom: 0; } + + .menuLink { + display: block; + width: 100%; + } \ No newline at end of file |
From: John Graham-C. <jgr...@us...> - 2005-09-14 19:25:15
|
Update of /cvsroot/popfile/engine/skins/coolblue In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11049/coolblue Modified Files: Tag: b0_22_2 style.css Log Message: Merge Joseph's updated skins to this branch Index: style.css =================================================================== RCS file: /cvsroot/popfile/engine/skins/coolblue/style.css,v retrieving revision 1.3 retrieving revision 1.3.6.1 diff -C2 -d -r1.3 -r1.3.6.1 *** style.css 31 Jul 2004 18:04:30 -0000 1.3 --- style.css 14 Sep 2005 19:24:29 -0000 1.3.6.1 *************** *** 295,297 **** --- 295,302 ---- padding: 0.3em; padding-bottom: 0; + } + + .menuLink { + display: block; + width: 100%; } \ No newline at end of file |