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: <xue...@us...> - 2003-09-18 14:33:31
|
Update of /cvsroot/popfile/windows
In directory sc8-pr-cvs1:/tmp/cvs-serv4835
Modified Files:
stop_popfile.nsi
Log Message:
Allow the first parameter to be a help/info request.
Index: stop_popfile.nsi
===================================================================
RCS file: /cvsroot/popfile/windows/stop_popfile.nsi,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** stop_popfile.nsi 18 Sep 2003 13:27:50 -0000 1.2
--- stop_popfile.nsi 18 Sep 2003 14:33:15 -0000 1.3
***************
*** 73,77 ****
Caption "POPFile Silent Shutdown Utility"
! !define VERSION "0.4.0" ; see 'VIProductVersion' comment below for format details
; Specify EXE filename and icon for the 'installer'
--- 73,77 ----
Caption "POPFile Silent Shutdown Utility"
! !define VERSION "0.4.1" ; see 'VIProductVersion' comment below for format details
; Specify EXE filename and icon for the 'installer'
***************
*** 143,146 ****
--- 143,148 ----
StrCmp ${L_RESULT} "/showall" all_cases
StrCmp ${L_RESULT} "/none" other_param
+ StrCmp ${L_RESULT} "/?" usage
+ StrCmp ${L_RESULT} "/help" usage
Goto option_error
|
|
From: <xue...@us...> - 2003-09-18 13:31:39
|
Update of /cvsroot/popfile/windows
In directory sc8-pr-cvs1:/tmp/cvs-serv23828
Modified Files:
installer.nsi
Log Message:
Install the new POPFile Silent Shutdown Utility and add it to the Start Menu.
Index: installer.nsi
===================================================================
RCS file: /cvsroot/popfile/windows/installer.nsi,v
retrieving revision 1.113
retrieving revision 1.114
diff -C2 -d -r1.113 -r1.114
*** installer.nsi 13 Sep 2003 17:32:07 -0000 1.113
--- installer.nsi 18 Sep 2003 13:30:02 -0000 1.114
***************
*** 583,586 ****
--- 583,587 ----
File "..\engine\black.gif"
File "..\engine\otto.gif"
+ File "stop_pf.exe"
IfFileExists "$INSTDIR\stopwords" 0 copy_stopwords
***************
*** 793,796 ****
--- 794,800 ----
WriteINIStr "$SMPROGRAMS\${MUI_PRODUCT}\Support\POPFile Home Page.url" \
"InternetShortcut" "URL" "http://popfile.sourceforge.net/"
+ SetOutPath $INSTDIR
+ CreateShortCut "$SMPROGRAMS\${MUI_PRODUCT}\Shutdown POPFile silently.lnk" \
+ "$INSTDIR\stop_pf.exe" "/showerrors $G_GUI"
StrCmp $G_STARTUP "1" 0 skip_autostart_set
|
|
From: <xue...@us...> - 2003-09-18 13:30:42
|
Update of /cvsroot/popfile/windows
In directory sc8-pr-cvs1:/tmp/cvs-serv22470
Modified Files:
stop_popfile.nsi
Log Message:
Improved error reporting, controlled by new optional parameter.
Index: stop_popfile.nsi
===================================================================
RCS file: /cvsroot/popfile/windows/stop_popfile.nsi,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** stop_popfile.nsi 16 Sep 2003 17:39:00 -0000 1.1
--- stop_popfile.nsi 18 Sep 2003 13:27:50 -0000 1.2
***************
*** 3,14 ****
# stop_popfile.nsi --- A simple 'command-line' utility to shutdown POPFile silently.
#
- # One parameter is required: the port number used to access the
- # POPFile User Interface (the UI port number, in range 1 to 65535).
- #
- # Returns error code 0 if shutdown was successful (otherwise returns 1)
- #
- # If an invalid parameter is given (eg 131072), an error is returned.
- # If no parameter is supplied, the usage information is displayed.
- #
# Copyright (c) 2001-2003 John Graham-Cumming
#
--- 3,6 ----
***************
*** 28,37 ****
# along with POPFile; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#-------------------------------------------------------------------------------------------
#
! # An example of a simple batch file to shut down POPFile using the default port:
#
! # STOP_PF.EXE 8080
#
# A batch file which checks the error code after trying to shutdown POPFile using port 9090:
--- 20,54 ----
# along with POPFile; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ #-------------------------------------------------------------------------------------------
+ # Notes:
+ #
+ # One parameter is required: the port number used to access the POPFile User Interface
+ # (the UI port number, in range 1 to 65535).
+ #
+ # Returns error code 0 if shutdown was successful (otherwise returns 1)
+ #
+ # There is also an optional parameter which selects the reporting mode:
+ # /SHOWERRORS, /SHOWALL or /NONE. (/NONE is used as the default if no mode is supplied)
#
+ # If '/SHOWERRORS' is specified then a message will be shown if any errors were detected
+ # (nothing is displayed if the shutdown was successful).
+ #
+ # If '/SHOWALL' is specified then a success/fail message will always be shown.
+ #
+ # If '/NONE' is specified then no messages are displayed.
+ #
+ # Uppercase or lowercase can be used for this optional parameter.
+ # If the optional parameter is used, it must be the first parameter.
+ #
+ # If an invalid parameter is given (eg 131072), an error is returned.
+ #
+ # If no parameters are supplied, or if only '/?' or '/HELP' is supplied, the copyright and
+ # usage information is displayed.
#-------------------------------------------------------------------------------------------
#
! # An example of a simple batch file to shut down POPFile using the default port (if any errors
! # are detected, a message box will be displayed):
#
! # STOP_PF.EXE /SHOWERRORS 8080
#
# A batch file which checks the error code after trying to shutdown POPFile using port 9090:
***************
*** 56,60 ****
Caption "POPFile Silent Shutdown Utility"
! !define VERSION "0.3.0" ; see 'VIProductVersion' comment below for format details
; Specify EXE filename and icon for the 'installer'
--- 73,77 ----
Caption "POPFile Silent Shutdown Utility"
! !define VERSION "0.4.0" ; see 'VIProductVersion' comment below for format details
; Specify EXE filename and icon for the 'installer'
***************
*** 93,154 ****
Section Shutdown
! !define L_GUI $R9
!
! ; Create the plugins directory (it will be deleted automatically when we exit)
! InitPluginsDir
! ; Check if any command-line parameter was supplied
Call GetParameters
! Pop ${L_GUI}
! StrCmp ${L_GUI} "" 0 check_port
MessageBox MB_OK "POPFile Silent Shutdown Utility v${VERSION} \
! Copyright (c) 2001-2003 John Graham-Cumming\
! $\r$\n$\r$\n\
! This utility shuts POPFile down silently, without opening a browser window.\
! $\r$\n$\r$\n\
! Usage: STOP_PF <PORT>\
! $\r$\n$\r$\n\
! where <PORT> is the port number used to access the POPFile User Interface (normally 8080)\
! $\r$\n$\r$\n\
! A success/fail error code is returned which can be checked in a batch file:\
! $\r$\n\
! $\r$\n @ECHO OFF\
! $\r$\n START /W STOP_PF 8080\
! $\r$\n IF ERRORLEVEL 1 GOTO FAILED\
! $\r$\n ECHO Shutdown succeeded\
! $\r$\n GOTO DONE\
! $\r$\n :FAILED\
! $\r$\n ECHO **** Shutdown failed ****\
! $\r$\n :DONE\
! $\r$\n$\r$\n\
! Distributed under the terms of the GNU General Public License (GPL).\
! "
! Goto ok
! check_port:
! ; Valid port numbers are in the range 1 to 65535 inclusive
! Push ${L_GUI}
! Call StrCheckDecimal
Pop ${L_GUI}
! StrCmp ${L_GUI} "" port_error
IntCmp ${L_GUI} 0 port_error port_error
IntCmp ${L_GUI} 65535 0 0 port_error
; Attempt to shutdown POPFile silently (nothing is displayed, no browser window is opened)
NSISdl::download_quiet http://127.0.0.1:${L_GUI}/shutdown "$PLUGINSDIR\shutdown.htm"
! Pop ${L_GUI}
! StrCmp ${L_GUI} "success" ok
port_error:
Abort ; Return error code 1 (failure)
ok: ; Return error code 0 (success)
SectionEnd
#--------------------------------------------------------------------------
# General Purpose Library Function: GetParameters
--- 110,248 ----
Section Shutdown
! !define L_GUI $R9 ; holds POPFile User Interface (UI) port number
! !define L_PARAMS $R8 ; parameter(s) extracted from the command-line
! !define L_REPORT $R7 ; 'none' = no msgs, 'errors' = only errors, 'all' = errors & success
! !define L_RESULT $R6 ; the status returned from the shutdown request
! !define L_TEMP $R5
! StrCpy ${L_REPORT} "none" ; default is to display no success or failure messages
! ; It does not matter if the command-line parameters are uppercase or lowercase
Call GetParameters
! Pop ${L_PARAMS}
! StrCmp ${L_PARAMS} "" usage
! StrCmp ${L_PARAMS} "/?" usage
! StrCmp ${L_PARAMS} "/help" usage
!
! Push ${L_PARAMS} ; Command-line may have more than one parameter
! Call GetNextParam
! Pop ${L_PARAMS} ; rest of the command-line
! Pop ${L_RESULT} ; first parameter from command-line
! StrCmp ${L_RESULT} "" usage
!
! ; If the first parameter starts with a digit, assume it is the PORT parameter
! ; and use the default REPORT mode (no messages displayed)
!
! StrCpy ${L_TEMP} ${L_RESULT} 1
! Push ${L_TEMP}
! Call StrCheckInteger
! Pop ${L_TEMP}
! StrCmp ${L_TEMP} "" 0 port_checks
! StrCmp ${L_RESULT} "/showerrors" only_errors
! StrCmp ${L_RESULT} "/showall" all_cases
! StrCmp ${L_RESULT} "/none" other_param
! Goto option_error
!
! usage:
MessageBox MB_OK "POPFile Silent Shutdown Utility v${VERSION} \
! Copyright (c) 2001-2003 John Graham-Cumming\
! $\r$\n$\r$\n\
! This command-line utility shuts POPFile down silently, without opening a browser window.\
! $\r$\n$\r$\n\
! Usage: STOP_PF [ <REPORT> ] <PORT>\
! $\r$\n$\r$\n\
! where <PORT> is the port number used to access the POPFile User Interface (normally 8080)\
! $\r$\n$\r$\n\
! and the optional <REPORT> is /SHOWERRORS (only error messages shown), /SHOWALL\
! $\r$\n\
! (success or error messages always shown), or /NONE (no messages - this is the default).\
! $\r$\n$\r$\n\
! A success/fail error code is always returned which can be checked in a batch file:\
! $\r$\n\
! $\r$\n @ECHO OFF\
! $\r$\n START /W STOP_PF 8080\
! $\r$\n IF ERRORLEVEL 1 GOTO FAILED\
! $\r$\n ECHO Shutdown succeeded\
! $\r$\n GOTO DONE\
! $\r$\n :FAILED\
! $\r$\n ECHO **** Shutdown failed ****\
! $\r$\n :DONE\
! $\r$\n$\r$\n\
! Distributed under the terms of the GNU General Public License (GPL)."
! Goto error_exit
! only_errors:
! StrCpy ${L_REPORT} "errors"
! Goto other_param
! all_cases:
! StrCpy ${L_REPORT} "all"
! other_param:
! Push ${L_PARAMS}
! Call GetNextParam
! Pop ${L_PARAMS}
! Pop ${L_RESULT} ; the second parameter from the command-line
!
! port_checks:
! StrCmp ${L_RESULT} "" no_port_supplied
! Push ${L_RESULT}
! Call StrCheckInteger
Pop ${L_GUI}
! StrCmp ${L_GUI} "" integer_error
IntCmp ${L_GUI} 0 port_error port_error
IntCmp ${L_GUI} 65535 0 0 port_error
+ ; Create the plugins directory (it will be deleted automatically when we exit)
+
+ InitPluginsDir
+
; Attempt to shutdown POPFile silently (nothing is displayed, no browser window is opened)
NSISdl::download_quiet http://127.0.0.1:${L_GUI}/shutdown "$PLUGINSDIR\shutdown.htm"
! Pop ${L_RESULT}
! StrCmp ${L_RESULT} "success" ok
! StrCmp ${L_REPORT} "none" exit
! MessageBox MB_OK|MB_ICONEXCLAMATION \
! "Silent shutdown using port '${L_GUI}' failed\
! $\r$\n\
! (error: ${L_RESULT})"
! Goto error_exit
!
! no_port_supplied:
! StrCmp ${L_REPORT} "none" exit
! MessageBox MB_OK|MB_ICONEXCLAMATION "No UI port was supplied"
! Goto error_exit
!
! integer_error:
! StrCmp ${L_REPORT} "none" exit
! MessageBox MB_OK|MB_ICONEXCLAMATION "Port number '${L_RESULT}' should only contain the \
! digits 0 to 9"
! Goto error_exit
port_error:
+ StrCmp ${L_REPORT} "none" exit
+ MessageBox MB_OK|MB_ICONEXCLAMATION "Port number '${L_GUI}' is not in range 1 to 65535"
+ Goto error_exit
+
+ option_error:
+ MessageBox MB_OK|MB_ICONEXCLAMATION "Unknown option supplied$\r$\n(${L_RESULT})"
+
+ error_exit:
Abort ; Return error code 1 (failure)
ok: ; Return error code 0 (success)
+ StrCmp ${L_REPORT} "none" exit
+ StrCmp ${L_REPORT} "errors" exit
+ MessageBox MB_OK|MB_ICONINFORMATION \
+ "Silent shutdown OK\
+ $\r$\n\
+ (port '${L_GUI}' used)"
+
+ exit:
SectionEnd
+
#--------------------------------------------------------------------------
# General Purpose Library Function: GetParameters
***************
*** 176,180 ****
Push $R2
Push $R3
!
StrCpy $R0 $CMDLINE 1
StrCpy $R1 '"'
--- 270,274 ----
Push $R2
Push $R3
!
StrCpy $R0 $CMDLINE 1
StrCpy $R1 '"'
***************
*** 183,187 ****
StrCmp $R0 '"' loop
StrCpy $R1 ' ' ; we're scanning for a space instead of a quote
!
loop:
StrCpy $R0 $CMDLINE 1 $R2
--- 277,281 ----
StrCmp $R0 '"' loop
StrCpy $R1 ' ' ; we're scanning for a space instead of a quote
!
loop:
StrCpy $R0 $CMDLINE 1 $R2
***************
*** 190,194 ****
IntOp $R2 $R2 + 1
Goto loop
!
loop2:
IntOp $R2 $R2 + 1
--- 284,288 ----
IntOp $R2 $R2 + 1
Goto loop
!
loop2:
IntOp $R2 $R2 + 1
***************
*** 196,200 ****
StrCmp $R0 " " loop2
StrCpy $R0 $CMDLINE "" $R2
!
Pop $R3
Pop $R2
--- 290,294 ----
StrCmp $R0 " " loop2
StrCpy $R0 $CMDLINE "" $R2
!
Pop $R3
Pop $R2
***************
*** 205,209 ****
#--------------------------------------------------------------------------
! # General Purpose Library Function: StrCheckDecimal
#--------------------------------------------------------------------------
#
--- 299,372 ----
#--------------------------------------------------------------------------
! # General Purpose Library Function: GetNextParam
! #--------------------------------------------------------------------------
! #
! # Extracts the next parameter (if any) from a list of space-separated parameters
! #
! # Inputs:
! # (top of stack) - a list of parameters separated by spaces (list may be empty)
! #
! # Outputs:
! # (top of stack) - the remaining parameters (if any)
! # (top of stack - 1) - the first parameter found in the list
! #
! # Usage:
! # Push "ABC 123 XYZ"
! # Call GetNextParam
! # Pop $R0
! # Pop $R1
! #
! # ($R0 at this point is "123 XYZ")
! # ($R1 at this point is "ABC")
! #
! #--------------------------------------------------------------------------
!
! Function GetNextParam
!
! !define L_CHAR $R9 ; a character from the input list
! !define L_LIST $R8 ; input list of parameters (may be empty)
! !define L_PARAM $R7 ; the first parameter found
!
! Exch ${L_LIST}
! Push ${L_PARAM}
! Push ${L_CHAR}
!
! StrCpy ${L_PARAM} ""
!
! loop_L:
! StrCpy ${L_CHAR} ${L_LIST} 1 ; get next char from input list
! StrCmp ${L_CHAR} "" done
! StrCpy ${L_LIST} ${L_LIST} "" 1 ; remove char from input list
! StrCmp ${L_CHAR} " " loop_L
!
! loop_P:
! StrCpy ${L_PARAM} ${L_PARAM}${L_CHAR}
! StrCpy ${L_CHAR} ${L_LIST} 1 ; get next char from input list
! StrCmp ${L_CHAR} "" done
! StrCpy ${L_LIST} ${L_LIST} "" 1
! StrCmp ${L_CHAR} " " 0 loop_P ; loop until a space is found
!
! loop_T:
! StrCpy ${L_CHAR} ${L_LIST} 1 ; get next char from input list
! StrCmp ${L_CHAR} "" done
! StrCmp ${L_CHAR} " " 0 done
! StrCpy ${L_LIST} ${L_LIST} "" 1 ; remove trailing spaces
! Goto loop_T
!
! done:
! Pop ${L_CHAR}
! Exch ${L_PARAM} ; put parameter on stack (may be "")
! Exch
! Exch ${L_LIST} ; put revised list on stack (may be "")
!
! !undef L_CHAR
! !undef L_LIST
! !undef L_PARAM
!
! FunctionEnd
!
!
! #--------------------------------------------------------------------------
! # General Purpose Library Function: StrCheckInteger
#--------------------------------------------------------------------------
#
***************
*** 212,216 ****
#
# Inputs:
! # (top of stack) - string which may contain a decimal number
#
# Outputs:
--- 375,379 ----
#
# Inputs:
! # (top of stack) - string which may contain an integer number
#
# Outputs:
***************
*** 219,223 ****
# Usage:
# Push "12345"
! # Call StrCheckDecimal
# Pop $R0
#
--- 382,386 ----
# Usage:
# Push "12345"
! # Call StrCheckInteger
# Pop $R0
#
***************
*** 226,230 ****
#--------------------------------------------------------------------------
! Function StrCheckDecimal
!define DECIMAL_DIGIT "0123456789"
--- 389,393 ----
#--------------------------------------------------------------------------
! Function StrCheckInteger
!define DECIMAL_DIGIT "0123456789"
|
|
From: <xue...@us...> - 2003-09-16 23:09:49
|
Update of /cvsroot/popfile/windows/languages In directory sc8-pr-cvs1:/tmp/cvs-serv19768 Modified Files: PortugueseBR-mui.nsh PortugueseBR-pfi.nsh Log Message: Brazilian Portuguese translations for the installer/uninstaller. Index: PortugueseBR-mui.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/PortugueseBR-mui.nsh,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** PortugueseBR-mui.nsh 1 Aug 2003 00:30:29 -0000 1.3 --- PortugueseBR-mui.nsh 16 Sep 2003 23:09:44 -0000 1.4 *************** *** 1,56 **** ! #-------------------------------------------------------------------------- ! # PortugueseBR-mui.nsh ! # ! # This file contains additional "PortugueseBR" text strings used by the Windows installer ! # for POPFile (these strings are customised versions of strings provided by NSIS). ! # ! # See 'PortugueseBR-pfi.nsh' for the strings which are used on the custom pages. ! # ! # These strings are grouped according to the page/window where they are used ! # ! # Copyright (c) 2001-2003 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 ! # ! #-------------------------------------------------------------------------- ! ! !ifndef PFI_VERBOSE ! !verbose 3 ! !endif ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Welcome ! # ! # The sequence \r\n\r\n inserts a blank line (note that the MUI_TEXT_WELCOME_INFO_TEXT string ! # should end with a \r\n\r\n sequence because another paragraph follows this string). ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_WELCOME_INFO_TEXT \ ! "Este assistente te guiará durante a instalação do POPFile.\r\n\r\nÉ recomendado que você feche todas as outras aplicações antes de iniciar a Instalação.\r\n\r\n" ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Finish ! # ! # The MUI_TEXT_FINISH_RUN text should be a short phrase (not a long paragraph) ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_FINISH_RUN \ ! "POPFile Interface de Usuário" ! ! #-------------------------------------------------------------------------- ! # End of 'PortugueseBR-mui.nsh' ! #-------------------------------------------------------------------------- --- 1,58 ---- ! #-------------------------------------------------------------------------- ! # PortugueseBR-mui.nsh ! # ! # Translated by Adriano Rafael Gomes <adr...@us...> ! # ! # This file contains additional "PortugueseBR" text strings used by the Windows installer ! # for POPFile (these strings are customised versions of strings provided by NSIS). ! # ! # See 'PortugueseBR-pfi.nsh' for the strings which are used on the custom pages. ! # ! # These strings are grouped according to the page/window where they are used ! # ! # Copyright (c) 2001-2003 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 ! # ! #-------------------------------------------------------------------------- ! ! !ifndef PFI_VERBOSE ! !verbose 3 ! !endif ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Welcome ! # ! # The sequence \r\n\r\n inserts a blank line (note that the MUI_TEXT_WELCOME_INFO_TEXT string ! # should end with a \r\n\r\n sequence because another paragraph follows this string). ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_WELCOME_INFO_TEXT \ ! "Este assistente te guiará durante a instalação do POPFile.\r\n\r\nÉ recomendado que você feche todas as outras aplicações antes de iniciar a Instalação.\r\n\r\n" ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Finish ! # ! # The MUI_TEXT_FINISH_RUN text should be a short phrase (not a long paragraph) ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_FINISH_RUN \ ! "Interface de Usuário do POPFile" ! ! #-------------------------------------------------------------------------- ! # End of 'PortugueseBR-mui.nsh' ! #-------------------------------------------------------------------------- Index: PortugueseBR-pfi.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/PortugueseBR-pfi.nsh,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** PortugueseBR-pfi.nsh 1 Aug 2003 00:33:27 -0000 1.8 --- PortugueseBR-pfi.nsh 16 Sep 2003 23:09:44 -0000 1.9 *************** *** 1,282 **** ! #-------------------------------------------------------------------------- ! # PortugueseBR-pfi.nsh ! # ! # This file contains additional "PortugueseBR" text strings used by the Windows installer ! # for POPFile (these strings are unique to POPFile). ! # ! # See 'PortugueseBR-mui.nsh' for the strings which modify standard NSIS MUI messages. ! # ! # These strings are grouped according to the page/window where they are used ! # ! # Copyright (c) 2001-2003 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 ! # ! #-------------------------------------------------------------------------- ! # String Formatting (applies to PFI_LANG_*_MB* text used for message boxes): ! # ! # (1) The sequence $\r$\n inserts a newline ! # (2) The sequence $\r$\n$\r\$n 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 \r\n inserts a newline ! # (2) The sequence \r\n\r\n 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) ! #-------------------------------------------------------------------------- ! ! !ifndef PFI_VERBOSE ! !verbose 3 ! !endif ! ! #-------------------------------------------------------------------------- ! # Mark the start of the language data ! #-------------------------------------------------------------------------- ! ! !define PFI_LANG "PORTUGUESEBR" ! ! #-------------------------------------------------------------------------- ! # Startup message box offering to display the Release Notes ! #-------------------------------------------------------------------------- ! ! !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)" ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Choose Components ! #-------------------------------------------------------------------------- ! ! !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." ! ! #-------------------------------------------------------------------------- ! # Custom Page - POPFile Installation Options ! #-------------------------------------------------------------------------- ! ! ; 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 (runs in background)" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_IO_WARNING "IMPORTANT WARNING" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_IO_MESSAGE "IF UPGRADING POPFILE --- INSTALLER WILL SHUTDOWN EXISTING VERSION" ! ! ; Message Boxes used when validating user's selections ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBUNINST_1 "Previous installation found at" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBUNINST_2 "Do you want to uninstall it ?" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBUNINST_3 "'Yes' recommended" ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBPOP3_1 "The POP3 port cannot be set to" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBPOP3_2 "The port must be a number in the range 1 to 65535." ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBPOP3_3 "Please change your POP3 port selection." ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBGUI_1 "The 'User Interface' port cannot be set to" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBGUI_2 "The port must be a number in the range 1 to 65535." ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBGUI_3 "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." ! ! ; Banner message displayed whilst uninstalling old version ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_BANNER_1 "Please be patient." ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_BANNER_2 "This may take a few seconds..." ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Installing POPfile ! #-------------------------------------------------------------------------- ! ! ; Installation Progress Reports displayed above the progress bar ! ! !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_UPGRADE "Checking if this is an upgrade installation..." ! !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_SHORT "Creating POPFile shortcuts..." ! !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_SKINS "Installing POPFile skin files..." ! !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Clique em Avançar para continuar" ! ! ; Installation Log Messages ! ! !insertmacro PFI_LANG_STRING PFI_LANG_INST_LOG_1 "Shutting down previous version of POPFile using port" ! ! ; Message Box text strings ! ! !insertmacro PFI_LANG_STRING PFI_LANG_MBSTPWDS_1 "file from previous installation found." ! !insertmacro PFI_LANG_STRING PFI_LANG_MBSTPWDS_2 "OK to update this file ?" ! !insertmacro PFI_LANG_STRING PFI_LANG_MBSTPWDS_3 "Click 'Yes' to update it (old file will be saved as" ! !insertmacro PFI_LANG_STRING PFI_LANG_MBSTPWDS_4 "Click 'No' to keep the old file (new file will saved as" ! ! !insertmacro PFI_LANG_STRING PFI_LANG_MBCFGBK_1 "Backup copy of" ! !insertmacro PFI_LANG_STRING PFI_LANG_MBCFGBK_2 "already exists" ! !insertmacro PFI_LANG_STRING PFI_LANG_MBCFGBK_3 "OK to overwrite this file?" ! !insertmacro PFI_LANG_STRING PFI_LANG_MBCFGBK_4 "Click 'Yes' to overwrite, click 'No' to skip making a backup copy" ! ! #-------------------------------------------------------------------------- ! # Custom Page - POPFile Classification Bucket Creation ! #-------------------------------------------------------------------------- ! ! ; 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.\r\n\r\nBucket 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 "Remover" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_CONTINUE "Continuar" ! ! ; Text strings used for status messages under the bucket list ! ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_MSG_1 "There is no need to add more buckets" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_MSG_2 "You must define AT LEAST TWO buckets" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_MSG_3 "At least one more bucket is required" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_MSG_4 "Installer cannot create more than" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_MSG_5 "buckets" ! ! ; Message box text strings ! ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDUPERR_1 "A bucket called" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDUPERR_2 "has already been defined." ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDUPERR_3 "Please choose a different name for the new bucket." ! ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAXERR_1 "The installer can only create up to" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAXERR_2 "buckets." ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAXERR_3 "Once POPFile has been installed you can create more than" ! ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBNAMERR_1 "The name" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBNAMERR_2 "is not a valid name for a bucket." ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBNAMERR_3 "Nomes de balde somente podem conter as letras de a até z minúsculas, números de 0 a 9, mais - e _" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBNAMERR_4 "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,$\r$\n$\r$\neither by picking a suggested name from the drop-down list$\r$\n$\r$\nor 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_1 "buckets have been defined for use by POPFile." ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDONE_2 "Do you want to configure POPFile to use these buckets?" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDONE_3 "Click 'No' if you wish to change your bucket selections." ! ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAKERR_1 "The installer was unable to create" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAKERR_2 "of the" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAKERR_3 "buckets you selected." ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAKERR_4 "Once POPFile has been installed you can use its 'User Interface'$\r$\n$\r$\ncontrol panel to create the missing bucket(s)." ! ! #-------------------------------------------------------------------------- ! # Custom Page - Reconfigure Outlook Express ! #-------------------------------------------------------------------------- ! ! ; Page Title and Sub-title displayed in the page header ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_TITLE "Reconfigure Outlook Express" ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_SUBTITLE "POPFile can reconfigure Outlook Express for you" ! ! ; Text displayed on the custom page ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_INTRO "POPFile has detected the following Outlook Express email account and can automatically configure it to work with POPFile" ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_CHECKBOX "Reconfigure this account to work with POPFile" ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_EMAIL "Email address:" ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_SERVER "POP3 server:" ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_USERNAME "POP3 username:" ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_RESTORE "If you uninstall POPFile the original settings will be restored" ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_LINK_1 "account for the" ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_LINK_2 "identity" ! ! #-------------------------------------------------------------------------- ! # Custom Page - POPFile can now be started ! #-------------------------------------------------------------------------- ! ! ; 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_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..." ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Uninstall POPFile ! #-------------------------------------------------------------------------- ! ! ; Uninstall Progress Reports displayed above the progress bar ! ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_1 "Shutting down POPFile..." ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_2 "Deleting 'Start Menu' entries for POPFile..." ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_3 "Deleting POPFile core files..." ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_4 "Restoring Outlook Express settings..." ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_5 "Deleting POPFile skins files..." ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_6 "Deleting minimal Perl files..." ! ! ; Uninstall Log Messages ! ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_1 "Shutting down POPFile using port" ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_2 "Opened" ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_3 "Restored" ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_4 "Closed" ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_5 "Removing all files from POPFile directory" ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_6 "Note: unable to remove all files from POPFile directory" ! ! ; Message Box text strings ! ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_MBNOTFOUND_1 "It does not appear that POPFile is installed in the directory" ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_MBNOTFOUND_2 "Continue anyway (not recommended) ?" ! ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_ABORT_1 "Uninstall aborted by user" ! ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_MBREMDIR_1 "Do you want to remove all files in your POPFile directory?$\r$\n$\r$\n(If you have anything you created that you want to keep, click No)" ! ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_MBREMERR_1 "Note" ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_MBREMERR_2 "could not be removed." ! ! #-------------------------------------------------------------------------- ! # Mark the end of the language data ! #-------------------------------------------------------------------------- ! ! !undef PFI_LANG ! ! #-------------------------------------------------------------------------- ! # End of 'PortugueseBR-pfi.nsh' ! #-------------------------------------------------------------------------- --- 1,284 ---- ! #-------------------------------------------------------------------------- ! # PortugueseBR-pfi.nsh ! # ! # Translated by Adriano Rafael Gomes <adr...@us...> ! # ! # This file contains additional "PortugueseBR" text strings used by the Windows installer ! # for POPFile (these strings are unique to POPFile). ! # ! # See 'PortugueseBR-mui.nsh' for the strings which modify standard NSIS MUI messages. ! # ! # These strings are grouped according to the page/window where they are used ! # ! # Copyright (c) 2001-2003 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 ! # ! #-------------------------------------------------------------------------- ! # String Formatting (applies to PFI_LANG_*_MB* text used for message boxes): ! # ! # (1) The sequence $\r$\n inserts a newline ! # (2) The sequence $\r$\n$\r\$n 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 \r\n inserts a newline ! # (2) The sequence \r\n\r\n 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) ! #-------------------------------------------------------------------------- ! ! !ifndef PFI_VERBOSE ! !verbose 3 ! !endif ! ! #-------------------------------------------------------------------------- ! # Mark the start of the language data ! #-------------------------------------------------------------------------- ! ! !define PFI_LANG "PORTUGUESEBR" ! ! #-------------------------------------------------------------------------- ! # Startup message box offering to display the Release Notes ! #-------------------------------------------------------------------------- ! ! !insertmacro PFI_LANG_STRING PFI_LANG_MBRELNOTES_1 "Exibir as Notas de Liberação do POPFile ?" ! !insertmacro PFI_LANG_STRING PFI_LANG_MBRELNOTES_2 "É recomendado responder Sim se você estiver atualizando o POPFile (pode ser necessário você fazer uma cópia de segurança ANTES de atualizar)" ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Choose Components ! #-------------------------------------------------------------------------- ! ! !insertmacro PFI_LANG_STRING DESC_SecPOPFile "Instala os arquivos principais necessários para o POPFile, incluindo uma versão mínima do Perl." ! !insertmacro PFI_LANG_STRING DESC_SecSkins "Instala skins do POPFile que permitem a você trocar a aparência da interface de usuário do POPFile." ! !insertmacro PFI_LANG_STRING DESC_SecLangs "Instala versões da interface de usuário em outras línguas." ! ! #-------------------------------------------------------------------------- ! # Custom Page - POPFile Installation Options ! #-------------------------------------------------------------------------- ! ! ; Page Title and Sub-title displayed in the page header ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_TITLE "Opções de Instalação do POPFile" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_SUBTITLE "Não altere estas opções a menos que você precise realmente mudá-las" ! ! ; Text strings displayed on the custom page ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_IO_POP3 "Escolha a porta padrão para conexões POP3 (recomendado 110)" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_IO_GUI "Escolha a porta padrão para conexões da 'Interface de Usuário' (recomendado 8080)" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_IO_STARTUP "Executar o POPFile automaticamente quando o Windows iniciar (executa em segundo plano)" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_IO_WARNING "AVISO IMPORTANTE" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_IO_MESSAGE "SE ESTIVER ATUALIZANDO O POPFILE --- O INSTALADOR VAI DESLIGAR A VERSÃO EXISTENTE" ! ! ; Message Boxes used when validating user's selections ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBUNINST_1 "Instalação anterior encontrada em" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBUNINST_2 "Você quer desinstalar ?" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBUNINST_3 "'Sim' recomendado" ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBPOP3_1 "A porta POP3 não pode ser definida" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBPOP3_2 "A porta deve ser um número entre 1 e 65535." ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBPOP3_3 "Por favor altere sua seleção de porta POP3." ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBGUI_1 "A porta 'Interface de Usuário' não pode ser definida" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBGUI_2 "A porta deve ser um número entre 1 e 65535." ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBGUI_3 "Por favor altere sua seleção de porta para 'Interface de Usuário'." ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBDIFF_1 "A porta POP3 deve ser diferente da porta 'Interface de Usuário'." ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBDIFF_2 "Por favor altere sua seleção de portas." ! ! ; Banner message displayed whilst uninstalling old version ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_BANNER_1 "Espere por favor." ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_BANNER_2 "Isto pode levar alguns segundos..." ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Installing POPfile ! #-------------------------------------------------------------------------- ! ! ; Installation Progress Reports displayed above the progress bar ! ! !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_UPGRADE "Verificando se esta é uma instalação para atualização..." ! !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_CORE "Instalando os arquivos principais do POPFile..." ! !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_PERL "Instalando os arquivos mínimos do Perl..." ! !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_SHORT "Criando os atalhos do POPFile..." ! !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_SKINS "Instalando os arquivos de skins do POPFile..." ! !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Instalando os arquivos de línguas do POPFile..." ! !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Clique em Avançar para continuar" ! ! ; Installation Log Messages ! ! !insertmacro PFI_LANG_STRING PFI_LANG_INST_LOG_1 "Desligando a versão anterior do POPFile usando a porta" ! ! ; Message Box text strings ! ! !insertmacro PFI_LANG_STRING PFI_LANG_MBSTPWDS_1 "encontrado arquivo de uma instalação anterior." ! !insertmacro PFI_LANG_STRING PFI_LANG_MBSTPWDS_2 "Atualizar este arquivo ?" ! !insertmacro PFI_LANG_STRING PFI_LANG_MBSTPWDS_3 "Clique 'Sim' para atualizar (o arquivo antigo será salvo como" ! !insertmacro PFI_LANG_STRING PFI_LANG_MBSTPWDS_4 "Clique 'Não' para manter o arquivo antigo (o arquivo novo será salvo como" ! ! !insertmacro PFI_LANG_STRING PFI_LANG_MBCFGBK_1 "Cópia de segurança de" ! !insertmacro PFI_LANG_STRING PFI_LANG_MBCFGBK_2 "já existe" ! !insertmacro PFI_LANG_STRING PFI_LANG_MBCFGBK_3 "Sobrescrever este arquivo ?" ! !insertmacro PFI_LANG_STRING PFI_LANG_MBCFGBK_4 "Clique 'Sim' para sobrescrever, clique 'Não' para pular fazendo uma cópia de segurança" ! ! #-------------------------------------------------------------------------- ! # Custom Page - POPFile Classification Bucket Creation ! #-------------------------------------------------------------------------- ! ! ; Page Title and Sub-title displayed in the page header ! ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_TITLE "Criação de Balde de Classificação do POPFile" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_SUBTITLE "O POPFile precisa PELO MENOS DOIS baldes para poder classificar seus emails" ! ! ; Text strings displayed on the custom page ! ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_INTRO "Depois da instalação, o POPFile torna fácil alterar o número de baldes (e seus nomes) para satisfazer suas necessidades.\r\n\r\nOs nomes dos baldes devem ser palavras únicas, usando letras minúsculas, dígitos de 0 a 9, hífens e sublinhados." ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_CREATE "Crie um novo balde selecionando um nome da lista abaixo ou digitando um nome de sua escolha." ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_DELETE "Para deletar um ou mais baldes da lista, marque a(s) caixa(s) 'Remover' relevante(s) e clique no botão 'Continuar'." ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_LISTHDR "Baldes a serem usados pelo POPFile" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_REMOVE "Remover" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_CONTINUE "Continuar" ! ! ; Text strings used for status messages under the bucket list ! ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_MSG_1 "Não é necessário adicionar mais nenhum balde" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_MSG_2 "Você deve definir PELO MENOS DOIS baldes" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_MSG_3 "Pelo menos mais um balde é requerido" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_MSG_4 "O instalador não pode criar mais que" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_MSG_5 "baldes" ! ! ; Message box text strings ! ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDUPERR_1 "Um balde chamado" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDUPERR_2 "já foi definido." ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDUPERR_3 "Por favor escolha um nome diferente para o novo balde." ! ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAXERR_1 "O instalador pode somente criar até" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAXERR_2 "baldes." ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAXERR_3 "Uma vez que o POPFile tenha sido instalado, você poderá criar mais que" ! ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBNAMERR_1 "O nome" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBNAMERR_2 "não é um nome válido para um balde." ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBNAMERR_3 "Nomes de balde somente podem conter as letras de a até z minúsculas, números de 0 a 9, mais - e _" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBNAMERR_4 "Por favor escolha um nome diferente para o novo balde." ! ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBCONTERR_1 "O POPFile requer PELO MENOS DOIS baldes para poder classificar seus emails." ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBCONTERR_2 "Por favor entre o nome de um balde para ser criado,$\r$\n$\r$\nescolhendo um nome sugerido da lista$\r$\n$\r$\nou digitando um nome de sua escolha." ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBCONTERR_3 "Você deve definir PELO MENOS DOIS baldes antes de continuar sua instalação do POPFile." ! ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDONE_1 "baldes foram definidos para uso do POPFile." ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDONE_2 "Você quer configurar o POPFile para usar estes baldes ?" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDONE_3 "Clique 'Não' se você quer alterar sua seleção de baldes." ! ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAKERR_1 "O instalador não foi capaz de criar" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAKERR_2 "de" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAKERR_3 "baldes que você selecionou." ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAKERR_4 "Uma vez que o POPFile tenha sido instalado, você pode usar seu painél de controle$\r$\n$\r$\n na 'Interface de Usuário' para criar o(s) balde(s) que faltar(em)." ! ! #-------------------------------------------------------------------------- ! # Custom Page - Reconfigure Outlook Express ! #-------------------------------------------------------------------------- ! ! ; Page Title and Sub-title displayed in the page header ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_TITLE "Reconfigurar o Outlook Express" ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_SUBTITLE "O POPFile pode reconfigurar o Outlook Express para você" ! ! ; Text displayed on the custom page ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_INTRO "O POPFile detectou a seguinte conta de email do Outlook Express e pode automaticamente configurá-la para funcionar com o POPFile" ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_CHECKBOX "Reconfigurar esta conta para funcionar com o POPFile" ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_EMAIL "Endereço de email:" ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_SERVER "Servidor POP3:" ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_USERNAME "Nome de usuário POP3:" ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_RESTORE "Se você desinstalar o POPFile as configurações originais serão restauradas" ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_LINK_1 "conta para a" ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_LINK_2 "identidade" ! ! #-------------------------------------------------------------------------- ! # Custom Page - POPFile can now be started ! #-------------------------------------------------------------------------- ! ! ; Page Title and Sub-title displayed in the page header ! ! !insertmacro PFI_LANG_STRING PFI_LANG_LAUNCH_TITLE "O POPFile pode ser iniciado agora" ! !insertmacro PFI_LANG_STRING PFI_LANG_LAUNCH_SUBTITLE "A Interface de Usuário do POPFile somente funciona se o POPFile tiver sido iniciado" ! ! ; Text displayed on the custom page ! ! !insertmacro PFI_LANG_STRING PFI_LANG_LAUNCH_IO_INTRO "Iniciar o POPFile agora ?" ! !insertmacro PFI_LANG_STRING PFI_LANG_LAUNCH_IO_NO "Não (a 'Interface de Usuário' não pode ser usada se o POPFile não for iniciado)" ! !insertmacro PFI_LANG_STRING PFI_LANG_LAUNCH_IO_DOSBOX "Executar o POPFile (em uma janela)" ! !insertmacro PFI_LANG_STRING PFI_LANG_LAUNCH_IO_BCKGRND "Executar o POPFile em segundo plano (nenhuma janela é exibida)" ! !insertmacro PFI_LANG_STRING PFI_LANG_LAUNCH_IO_NOTE_1 "Uma vez que o POPFile tenha sido iniciado, você pode exibir a 'Interface de Usuário'" ! !insertmacro PFI_LANG_STRING PFI_LANG_LAUNCH_IO_NOTE_2 "(a) dando um duplo-clique no ícone do POPFile na bandeja do sistema, OU" ! !insertmacro PFI_LANG_STRING PFI_LANG_LAUNCH_IO_NOTE_3 "(b) usando Iniciar --> Programas --> POPFile --> Interface de Usuário do POPFile." ! ! ; Banner message displayed whilst waiting for POPFile to start ! ! !insertmacro PFI_LANG_STRING PFI_LANG_LAUNCH_BANNER_1 "Preparando para iniciar o POPFile." ! !insertmacro PFI_LANG_STRING PFI_LANG_LAUNCH_BANNER_2 "Isto pode levar alguns segundos..." ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Uninstall POPFile ! #-------------------------------------------------------------------------- ! ! ; Uninstall Progress Reports displayed above the progress bar ! ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_1 "Desligando o POPFile..." ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_2 "Deletando entradas no 'Menu Iniciar' para o POPFile..." ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_3 "Deletando arquivos principais do POPFile..." ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_4 "Restaurando configurações do Outlook Express..." ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_5 "Deletando arquivos de skins do POPFile..." ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_6 "Deletando arquivos mínimos do Perl..." ! ! ; Uninstall Log Messages ! ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_1 "Desligando o POPFile usando a porta" ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_2 "Aberto" ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_3 "Restaurado" ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_4 "Fechado" ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_5 "Removendo todos os arquivos da pasta do POPFile" ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_6 "Nota: impossível remover todos os arquivos da pasta do POPFile" ! ! ; Message Box text strings ! ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_MBNOTFOUND_1 "Não parece que o POPFile esteja instalado nesta pasta" ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_MBNOTFOUND_2 "Continuar mesmo assim (não recomendado) ?" ! ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_ABORT_1 "Desinstalação cancelada pelo usuário" ! ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_MBREMDIR_1 "Você quer remover todos os arquivos da sua pasta do POPFile ?$\r$\n$\r$\n(Se você tiver qualquer coisa que você criou e quer manter, clique Não)" ! ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_MBREMERR_1 "Nota" ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_MBREMERR_2 "não pode ser removido." ! ! #-------------------------------------------------------------------------- ! # Mark the end of the language data ! #-------------------------------------------------------------------------- ! ! !undef PFI_LANG ! ! #-------------------------------------------------------------------------- ! # End of 'PortugueseBR-pfi.nsh' ! #-------------------------------------------------------------------------- |
|
From: <xue...@us...> - 2003-09-16 17:39:10
|
Update of /cvsroot/popfile/windows
In directory sc8-pr-cvs1:/tmp/cvs-serv20519
Added Files:
shutdown.ico stop_popfile.nsi
Log Message:
A simple 'Silent Shutdown' utility for POPFile.
--- NEW FILE: shutdown.ico ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: stop_popfile.nsi ---
#-------------------------------------------------------------------------------------------
#
# stop_popfile.nsi --- A simple 'command-line' utility to shutdown POPFile silently.
#
# One parameter is required: the port number used to access the
# POPFile User Interface (the UI port number, in range 1 to 65535).
#
# Returns error code 0 if shutdown was successful (otherwise returns 1)
#
# If an invalid parameter is given (eg 131072), an error is returned.
# If no parameter is supplied, the usage information is displayed.
#
# Copyright (c) 2001-2003 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
#
#-------------------------------------------------------------------------------------------
#
# An example of a simple batch file to shut down POPFile using the default port:
#
# STOP_PF.EXE 8080
#
# A batch file which checks the error code after trying to shutdown POPFile using port 9090:
#
# @ECHO OFF
# START /W STOP_PF 9090
# IF ERRORLEVEL 1 GOTO FAILED
# ECHO Shutdown succeeded
# GOTO DONE
# :FAILED
# ECHO **** Shutdown failed ****
# :DONE
#
# The '/W' parameter is important, otherwise the 'failed' case will not be detected.
#-------------------------------------------------------------------------------------------
# This version was tested using NSIS 2.0b4 (CVS) with the 27 August 2003 (19:44 GMT) update
#-------------------------------------------------------------------------------------------
; The default NSIS caption is "Name Setup" so we override it here
Name "POPFile Silent Shutdown Utility"
Caption "POPFile Silent Shutdown Utility"
!define VERSION "0.3.0" ; see 'VIProductVersion' comment below for format details
; Specify EXE filename and icon for the 'installer'
OutFile stop_pf.exe
Icon "shutdown.ico"
; Selecting 'silent' mode makes the installer behave like a command-line utility
SilentInstall silent
#--------------------------------------------------------------------------
; 'VIProductVersion' format is X.X.X.X where X is a number in range 0 to 65535
; representing the following values: Major.Minor.Release.Build
VIProductVersion "${VERSION}.1"
VIAddVersionKey "ProductName" "POPFile Silent Shutdown Utility - stops POPFile without \
opening a browser window."
VIAddVersionKey "Comments" "POPFile Homepage: http://popfile.sourceforge.net"
VIAddVersionKey "CompanyName" "The POPFile Project"
VIAddVersionKey "LegalCopyright" "© 2001-2003 John Graham-Cumming"
VIAddVersionKey "FileDescription" "POPFile Silent Shutdown Utility"
VIAddVersionKey "FileVersion" "${VERSION}"
VIAddVersionKey "Build Date/Time" "${__DATE__} @ ${__TIME__}"
VIAddVersionKey "Build Script" "${__FILE__}$\r$\n(${__TIMESTAMP__})"
#----------------------------------------------------------------------------------------
;-------------------
; Section: Shutdown
;-------------------
Section Shutdown
!define L_GUI $R9
; Create the plugins directory (it will be deleted automatically when we exit)
InitPluginsDir
; Check if any command-line parameter was supplied
Call GetParameters
Pop ${L_GUI}
StrCmp ${L_GUI} "" 0 check_port
MessageBox MB_OK "POPFile Silent Shutdown Utility v${VERSION} \
Copyright (c) 2001-2003 John Graham-Cumming\
$\r$\n$\r$\n\
This utility shuts POPFile down silently, without opening a browser window.\
$\r$\n$\r$\n\
Usage: STOP_PF <PORT>\
$\r$\n$\r$\n\
where <PORT> is the port number used to access the POPFile User Interface (normally 8080)\
$\r$\n$\r$\n\
A success/fail error code is returned which can be checked in a batch file:\
$\r$\n\
$\r$\n @ECHO OFF\
$\r$\n START /W STOP_PF 8080\
$\r$\n IF ERRORLEVEL 1 GOTO FAILED\
$\r$\n ECHO Shutdown succeeded\
$\r$\n GOTO DONE\
$\r$\n :FAILED\
$\r$\n ECHO **** Shutdown failed ****\
$\r$\n :DONE\
$\r$\n$\r$\n\
Distributed under the terms of the GNU General Public License (GPL).\
"
Goto ok
check_port:
; Valid port numbers are in the range 1 to 65535 inclusive
Push ${L_GUI}
Call StrCheckDecimal
Pop ${L_GUI}
StrCmp ${L_GUI} "" port_error
IntCmp ${L_GUI} 0 port_error port_error
IntCmp ${L_GUI} 65535 0 0 port_error
; Attempt to shutdown POPFile silently (nothing is displayed, no browser window is opened)
NSISdl::download_quiet http://127.0.0.1:${L_GUI}/shutdown "$PLUGINSDIR\shutdown.htm"
Pop ${L_GUI}
StrCmp ${L_GUI} "success" ok
port_error:
Abort ; Return error code 1 (failure)
ok: ; Return error code 0 (success)
SectionEnd
#--------------------------------------------------------------------------
# General Purpose Library Function: GetParameters
#--------------------------------------------------------------------------
#
# Extracts the command-line parameters (if any)
#
# Inputs:
# (NSIS provides the command-line as $CMDLINE)
#
# Outputs:
# (top of stack) - the command-line parameters supplied (if any)
#
# Usage:
# Call GetParameters
# Pop $R0
#
# ($R0 at this point is "" if no parameters were supplied)
#
#--------------------------------------------------------------------------
Function GetParameters
Push $R0
Push $R1
Push $R2
Push $R3
StrCpy $R0 $CMDLINE 1
StrCpy $R1 '"'
StrCpy $R2 1
StrLen $R3 $CMDLINE
StrCmp $R0 '"' loop
StrCpy $R1 ' ' ; we're scanning for a space instead of a quote
loop:
StrCpy $R0 $CMDLINE 1 $R2
StrCmp $R0 $R1 loop2
StrCmp $R2 $R3 loop2
IntOp $R2 $R2 + 1
Goto loop
loop2:
IntOp $R2 $R2 + 1
StrCpy $R0 $CMDLINE 1 $R2
StrCmp $R0 " " loop2
StrCpy $R0 $CMDLINE "" $R2
Pop $R3
Pop $R2
Pop $R1
Exch $R0
FunctionEnd
#--------------------------------------------------------------------------
# General Purpose Library Function: StrCheckDecimal
#--------------------------------------------------------------------------
#
# This function checks that a given string contains only the digits 0 to 9
# (if the string contains any invalid characters, "" is returned)
#
# Inputs:
# (top of stack) - string which may contain a decimal number
#
# Outputs:
# (top of stack) - the input string (if valid) or "" (if invalid)
#
# Usage:
# Push "12345"
# Call StrCheckDecimal
# Pop $R0
#
# ($R0 at this point is "12345")
#
#--------------------------------------------------------------------------
Function StrCheckDecimal
!define DECIMAL_DIGIT "0123456789"
Exch $0 ; The input string
Push $1 ; Holds the result: either "" (if input is invalid) or the input string (if valid)
Push $2 ; A character from the input string
Push $3 ; The offset to a character in the "validity check" string
Push $4 ; A character from the "validity check" string
Push $5 ; Holds the current "validity check" string
StrCpy $1 ""
next_input_char:
StrCpy $2 $0 1 ; Get the next character from the input string
StrCmp $2 "" done
StrCpy $5 ${DECIMAL_DIGIT}$2 ; Add it to end of "validity check" to guarantee a match
StrCpy $0 $0 "" 1
StrCpy $3 -1
next_valid_char:
IntOp $3 $3 + 1
StrCpy $4 $5 1 $3 ; Extract next "valid" character (from "validity check" string)
StrCmp $2 $4 0 next_valid_char
IntCmp $3 10 invalid 0 invalid ; If match is with the char we added, input string is bad
StrCpy $1 $1$4 ; Add "valid" character to the result
goto next_input_char
invalid:
StrCpy $1 ""
done:
StrCpy $0 $1 ; Result is either a string of decimal digits or ""
Pop $5
Pop $4
Pop $3
Pop $2
Pop $1
Exch $0 ; place result on top of the stack
!undef DECIMAL_DIGIT
FunctionEnd
;-------------
; end-of-file
;-------------
|
|
From: <jgr...@us...> - 2003-09-15 15:48:18
|
Update of /cvsroot/popfile/engine/languages In directory sc8-pr-cvs1:/tmp/cvs-serv27119 Modified Files: Português do Brasil.msg Log Message: Update to Brasilian Portugese Index: Português do Brasil.msg =================================================================== RCS file: /cvsroot/popfile/engine/languages/Português do Brasil.msg,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** Português do Brasil.msg 22 Aug 2003 14:33:01 -0000 1.16 --- Português do Brasil.msg 15 Sep 2003 15:48:13 -0000 1.17 *************** *** 102,105 **** --- 102,108 ---- Configuration_NNTPPort Porta de escuta NNTP Configuration_NNTPUpdate A porta NNTP foi alterada para %s; esta alteração não terá efeito até que você reinicie o POPFile + Configuration_POPFork Permitir conexões POP3 concorrentes + Configuration_SMTPFork Permitir conexões SMTP concorrentes + Configuration_NNTPFork Permitir conexões NNTP concorrentes Configuration_POP3Separator Caracter de separação POP3 servidor:porta:usuário Configuration_NNTPSeparator Caracter de separação NNTP servidor:porta:usuário *************** *** 163,167 **** History_MagnetUsed Ímã usado History_MagnetBecause <b>Ímã Utilizado</b><p>Classificado para <font color="%s">%s</font> por causa do ímã %s </p> ! History_ChangedTo Alterado para <font color="%s">%s History_Already Reclassificado como <font color="%s">%s</font> History_RemoveAll Remover Tudo --- 166,170 ---- History_MagnetUsed Ímã usado History_MagnetBecause <b>Ímã Utilizado</b><p>Classificado para <font color="%s">%s</font> por causa do ímã %s </p> ! History_ChangedTo Alterado para <font color="%s">%s</font> History_Already Reclassificado como <font color="%s">%s</font> History_RemoveAll Remover Tudo |
|
From: <jgr...@us...> - 2003-09-15 15:46:27
|
Update of /cvsroot/popfile/engine/UI
In directory sc8-pr-cvs1:/tmp/cvs-serv26749
Modified Files:
HTML.pm
Log Message:
Favicon fix from texasfett
Index: HTML.pm
===================================================================
RCS file: /cvsroot/popfile/engine/UI/HTML.pm,v
retrieving revision 1.203
retrieving revision 1.204
diff -C2 -d -r1.203 -r1.204
*** HTML.pm 15 Sep 2003 14:55:36 -0000 1.203
--- HTML.pm 15 Sep 2003 15:46:24 -0000 1.204
***************
*** 606,609 ****
--- 606,611 ----
$result .= "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=$self->{language__}{LanguageCharset}\">\n</head>\n";
+ $result .= "<link rel=\"icon\" href=\"favicon.ico\">\n";
+
# If we are handling the shutdown page, then send the CSS along with the
# page to avoid a request back from the browser _after_ we've shutdown,
***************
*** 622,630 ****
$result .= "<link rel=\"stylesheet\" type=\"text/css\" ";
$result .= "href=\"skins/" . $self->config_( 'skin' ) . ".css\" title=\"" . $self->config_( 'skin' ) . "\">\n";
- $result .= "<link rel=\"shortcut icon\" type=\"image/x-icon\" ";
- $result .= "href=\"favicon.ico\">\n";
}
-
- $result .= "<link rel=\"icon\" href=\"popfile.ico\" type=\"image/ico\">\n";
return $result;
--- 624,628 ----
|
|
From: <jgr...@us...> - 2003-09-15 14:56:13
|
Update of /cvsroot/popfile/engine/tests
In directory sc8-pr-cvs1:/tmp/cvs-serv15349/tests
Modified Files:
TestBayes.tst TestHTML.script TestHTML.tst TestHTTP.tst
TestPOP3.tst
Log Message:
BROUGHT TEST SUITE TO 100% AFTER BERKELEYDB CHANGE
HTML.pm:
Small modification to the way that showing an individual bucket works
so that when it is cleared we show the same page with a zero word
count and no words.
Bayes.pm:
Mechanism for marking a bucket deleted even though the files in
its directory have not all disappeared. This is needed because if
a user deletes a bucket while a download is occurring POPFile will
have a connection open to the db which will prevent it from getting
deleted. Now have a helper delete_bucket_files__ that will do the
delete and add the special delete file as needed.
clear_bucket can't rely on being able to remove the table.db for
the same reasons as the above, so change the way in which it operates.
TestBayes.tst:
Tests to cover upgrading of corpus tables, fork handling and deal
with the fact that the corpus is no longer in flat files.
TestHTML.tst:
Have to call prefork/forked/postfork when forking. Test the new
force_fork UI elements.
TestPOP3.tst:
Have to call prefork/forked/postfork when forking.
TestProxy.tst:
Add code to test the forking/non-forking version of the proxy code.
Index: TestBayes.tst
===================================================================
RCS file: /cvsroot/popfile/engine/tests/TestBayes.tst,v
retrieving revision 1.27
retrieving revision 1.28
diff -C2 -d -r1.27 -r1.28
*** TestBayes.tst 9 Sep 2003 00:28:20 -0000 1.27
--- TestBayes.tst 15 Sep 2003 14:55:37 -0000 1.28
***************
*** 62,66 ****
--- 62,72 ----
$b->initialize();
+
+ # Hide the upgrading messages
+
+ open STDOUT, ">temp.tmp";
test_assert( $b->start() );
+ close STDOUT;
+ unlink 'temp.tmp';
# Test the unclassifier_probability parameter
***************
*** 90,99 ****
test_assert_equal( $b->get_bucket_word_count($buckets[2]), 12114 );
! # get_bucket_word_list
! my @words = $b->get_bucket_word_list( 'personal' );
test_assert_equal( $#words, 1 );
! test_assert_equal( $words[0], '|bar 2||baz 100|' );
! test_assert_equal( $words[1], '|foo 1|' );
# get_word_count
--- 96,114 ----
test_assert_equal( $b->get_bucket_word_count($buckets[2]), 12114 );
! # get_bucket_word_list and prefixes
! my @words = $b->get_bucket_word_prefixes( 'personal' );
test_assert_equal( $#words, 1 );
! test_assert_equal( $words[0], 'b' );
! test_assert_equal( $words[1], 'f' );
!
! @words = $b->get_bucket_word_list( 'personal', 'b' );
! test_assert_equal( $#words, 1 );
! test_assert_equal( $words[0], 'bar' );
! test_assert_equal( $words[1], 'baz' );
!
! @words = $b->get_bucket_word_list( 'personal', 'f' );
! test_assert_equal( $#words, 0 );
! test_assert_equal( $words[0], 'foo' );
# get_word_count
***************
*** 190,199 ****
test_assert( -e 'corpus/zebra' );
! test_assert( -e 'corpus/zebra/table' );
!
! open FILE, "<corpus/zebra/table";
! my $line = <FILE>;
! test_assert_regexp( $line, '__CORPUS__ __VERSION__ 1' );
! close FILE;
# rename_bucket
--- 205,209 ----
test_assert( -e 'corpus/zebra' );
! test_assert( -e 'corpus/zebra/table.db' );
# rename_bucket
***************
*** 219,230 ****
test_assert( -e 'corpus/zeotrope' );
! test_assert( -e 'corpus/zeotrope/table' );
!
! open FILE, "<corpus/zeotrope/table";
! $line = <FILE>;
! test_assert_regexp( $line, '__CORPUS__ __VERSION__ 1' );
! $line = <FILE>;
! test_assert( !defined( $line ) );
! close FILE;
# add_message_to_bucket
--- 229,233 ----
test_assert( -e 'corpus/zeotrope' );
! test_assert( -e 'corpus/zeotrope/table.db' );
# add_message_to_bucket
***************
*** 242,267 ****
test_assert( !$b->add_message_to_bucket( 'none', 'TestMailParse021.msg' ) );
test_assert( $b->add_message_to_bucket( 'zeotrope', 'TestMailParse021.msg' ) );
! open FILE, "<corpus/zeotrope/table";
! $line = <FILE>;
! test_assert_regexp( $line, '__CORPUS__ __VERSION__ 1' );
! while ( <FILE> ) {
! if ( /(.+) (\d+)/ ) {
! test_assert_equal( $words{$1}, $2, "zeotrope: $1 $2 $words{$1}" );
! }
}
- close FILE;
- `cp corpus/zeotrope/table temp.wrd`;
test_assert( $b->add_message_to_bucket( 'zeotrope', 'TestMailParse021.msg' ) );
! open FILE, "<corpus/zeotrope/table";
! $line = <FILE>;
! test_assert_regexp( $line, '__CORPUS__ __VERSION__ 1' );
! while ( <FILE> ) {
! if ( /(.+) (\d+)/ ) {
! test_assert_equal( ($words{$1}*2), $2, "zeotrope: $1 $2 $words{$1}" );
! }
}
- close FILE;
# remove_message_from_bucket
--- 245,258 ----
test_assert( !$b->add_message_to_bucket( 'none', 'TestMailParse021.msg' ) );
test_assert( $b->add_message_to_bucket( 'zeotrope', 'TestMailParse021.msg' ) );
!
! foreach my $word (keys %words) {
! test_assert_equal( $b->get_base_value_( 'zeotrope', $word ), $words{$word}, "zeotrope: $word $words{$word}" );
}
test_assert( $b->add_message_to_bucket( 'zeotrope', 'TestMailParse021.msg' ) );
! foreach my $word (keys %words) {
! test_assert_equal( $b->get_base_value_( 'zeotrope', $word ), $words{$word}*2, "zeotrope: $word $words{$word}" );
}
# remove_message_from_bucket
***************
*** 271,294 ****
test_assert( $b->remove_message_from_bucket( 'zeotrope', 'TestMailParse021.msg' ) );
! open FILE, "<corpus/zeotrope/table";
! $line = <FILE>;
! test_assert_regexp( $line, '__CORPUS__ __VERSION__ 1' );
! $line = <FILE>;
! test_assert( !defined( $line ) );
! close FILE;
# add_messages_to_bucket
! test_assert( $b->add_message_to_bucket( 'zeotrope', [ 'TestMailParse021.msg', 'TestMailParse021.msg' ] ) );
! open FILE, "<corpus/zeotrope/table";
! $line = <FILE>;
! test_assert_regexp( $line, '__CORPUS__ __VERSION__ 1' );
! while ( <FILE> ) {
! if ( /(.+) (\d+)/ ) {
! test_assert_equal( ($words{$1}*2), $2, "zeotrope: $1 $2 $words{$1}" );
! }
}
! close FILE;
# Test corrupting the corpus
--- 262,285 ----
test_assert( $b->remove_message_from_bucket( 'zeotrope', 'TestMailParse021.msg' ) );
! test_assert_equal( $b->get_bucket_word_count( 'zeotrope' ), 0 );
# add_messages_to_bucket
! test_assert( $b->add_messages_to_bucket( 'zeotrope', ( 'TestMailParse021.msg', 'TestMailParse021.msg' ) ) );
! foreach my $word (keys %words) {
! test_assert_equal( $b->get_base_value_( 'zeotrope', $word ), $words{$word}*2, "zeotrope: $word $words{$word}" );
}
!
! # Make sure that fork functions keep the database open
!
! $b->prefork();
! test_assert( !defined( $b->{matrix__}{zeotrope} ) );
! $b->forked();
! test_assert( defined( $b->{matrix__}{zeotrope} ) );
! $b->prefork();
! test_assert( !defined( $b->{matrix__}{zeotrope} ) );
! $b->postfork();
! test_assert( defined( $b->{matrix__}{zeotrope} ) );
# Test corrupting the corpus
***************
*** 299,322 ****
open STDERR, ">temp.tmp";
- test_assert( !$b->add_message_to_bucket( 'zeotrope', 'TestMailParse021.msg' ) );
- close STDERR;
- open FILE, "<temp.tmp";
- $line = <FILE>;
- test_assert_regexp( $line, 'Incompatible corpus version in zeotrope' );
- close FILE;
-
- open STDERR, ">temp.tmp";
- test_assert( !$b->remove_message_from_bucket( 'zeotrope', 'TestMailParse021.msg' ) );
- close STDERR;
- open FILE, "<temp.tmp";
- $line = <FILE>;
- test_assert_regexp( $line, 'Incompatible corpus version in zeotrope' );
- close FILE;
-
- open STDERR, ">temp.tmp";
test_assert( !$b->load_bucket_( 'zeotrope' ) );
close STDERR;
open FILE, "<temp.tmp";
! $line = <FILE>;
test_assert_regexp( $line, 'Incompatible corpus version in zeotrope' );
close FILE;
--- 290,297 ----
open STDERR, ">temp.tmp";
test_assert( !$b->load_bucket_( 'zeotrope' ) );
close STDERR;
open FILE, "<temp.tmp";
! my $line = <FILE>;
test_assert_regexp( $line, 'Incompatible corpus version in zeotrope' );
close FILE;
***************
*** 404,408 ****
$b->clear_bucket( 'zeotrope' );
! test_assert( !( -e 'corpus/zeotrope/table' ) );
test_assert_equal( $b->get_bucket_word_count('zeotrope'), 0 );
--- 379,383 ----
$b->clear_bucket( 'zeotrope' );
! test_assert( -e 'corpus/zeotrope/table.db' );
test_assert_equal( $b->get_bucket_word_count('zeotrope'), 0 );
***************
*** 425,429 ****
test_assert( !$b->delete_bucket( 'zebrazerba' ) );
test_assert( $b->delete_bucket( 'zeotrope' ) );
! test_assert( !( -e 'corpus/zeotrope/table' ) );
test_assert( !( -e 'corpus/zeotrope' ) );
--- 400,404 ----
test_assert( !$b->delete_bucket( 'zebrazerba' ) );
test_assert( $b->delete_bucket( 'zeotrope' ) );
! test_assert( !( -e 'corpus/zeotrope/table.db' ) );
test_assert( !( -e 'corpus/zeotrope' ) );
***************
*** 438,447 ****
test_assert_equal( $b->get_value_( 'personal', 'foo' ), log(1/103) );
test_assert_equal( $b->get_sort_value_( 'personal', 'foo' ), log(1/103) );
- $b->{total__}{personal} = 100;
$b->set_value_( 'personal', 'foo', 100 );
test_assert_equal( $b->get_value_( 'personal', 'foo' ), 0 );
test_assert_equal( $b->get_sort_value_( 'personal', 'foo' ), $b->{not_likely__} );
- $b->{total__}{personal} = 1000;
$b->set_value_( 'personal', 'foo', 100 );
test_assert_equal( $b->get_value_( 'personal', 'foo' ), -log(10) );
test_assert_equal( $b->get_sort_value_( 'personal', 'foo' ), -log(10) );
--- 413,423 ----
test_assert_equal( $b->get_value_( 'personal', 'foo' ), log(1/103) );
test_assert_equal( $b->get_sort_value_( 'personal', 'foo' ), log(1/103) );
$b->set_value_( 'personal', 'foo', 100 );
+ $b->{matrix__}{personal}{__POPFILE__TOTAL__} = 100;
test_assert_equal( $b->get_value_( 'personal', 'foo' ), 0 );
test_assert_equal( $b->get_sort_value_( 'personal', 'foo' ), $b->{not_likely__} );
$b->set_value_( 'personal', 'foo', 100 );
+ $b->{matrix__}{personal}{__POPFILE__TOTAL__} = 1000;
+ test_assert_equal( $b->get_base_value_( 'personal', 'foo' ), 100 );
test_assert_equal( $b->get_value_( 'personal', 'foo' ), -log(10) );
test_assert_equal( $b->get_sort_value_( 'personal', 'foo' ), -log(10) );
Index: TestHTML.script
===================================================================
RCS file: /cvsroot/popfile/engine/tests/TestHTML.script,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** TestHTML.script 9 Sep 2003 00:28:20 -0000 1.17
--- TestHTML.script 15 Sep 2003 14:55:37 -0000 1.18
***************
*** 650,653 ****
--- 650,663 ----
INPUTIS pop3_separator ;
+ # Check fork for POP3
+
+ INPUTIS pop3_force_fork 1
+ CONFIGIS pop3_force_fork 0
+ SETSUBMIT pop3_force_fork 0
+ INPUTIS pop3_force_fork 1
+ CONFIGIS pop3_force_fork 0
+ SETSUBMIT pop3_force_fork 1
+ INPUTIS pop3_force_fork 0
+
# Check Subject Line Modification
***************
*** 964,968 ****
CLICK clearbucket
! MATCH <td width="1%"> </td><td align="right">0</td><td width="1%"> </td>
# Test removal of history files that are out of date (old and new style)
--- 974,978 ----
CLICK clearbucket
! MATCH (0 unique)</td>
# Test removal of history files that are out of date (old and new style)
Index: TestHTML.tst
===================================================================
RCS file: /cvsroot/popfile/engine/tests/TestHTML.tst,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** TestHTML.tst 8 Sep 2003 18:03:58 -0000 1.19
--- TestHTML.tst 15 Sep 2003 14:55:37 -0000 1.20
***************
*** 141,144 ****
--- 141,148 ----
my $b = new Classifier::Bayes;
+ $b->configuration( $c );
+ $b->mq( $mq );
+ $b->logger( $l );
+
$c->configuration( $c );
$c->mq( $mq );
***************
*** 156,181 ****
$mq->logger( $l );
- $b->configuration( $c );
- $b->mq( $mq );
- $b->logger( $l );
-
- $b->initialize();
- test_assert( $b->start() );
-
my $p = new Proxy::POP3;
$p->configuration( $c );
$p->mq( $mq );
- $p->logger( $l );
$p->classifier( $b );
$p->version( 'vtest.suite.ver' );
$p->initialize();
our $h = new UI::HTML;
$h->configuration( $c );
$h->mq( $mq );
$h->logger( $l );
- $h->classifier( $b );
$h->initialize();
$h->version( 'vtest.suite.ver' );
--- 160,184 ----
$mq->logger( $l );
my $p = new Proxy::POP3;
$p->configuration( $c );
$p->mq( $mq );
$p->classifier( $b );
+ $p->logger( $l );
$p->version( 'vtest.suite.ver' );
$p->initialize();
+ $b->initialize();
+ open STDOUT, ">temp.tmp";
+ test_assert( $b->start() );
+ close STDOUT;
+ unlink 'temp.tmp';
+
our $h = new UI::HTML;
+ $h->classifier( $b );
$h->configuration( $c );
$h->mq( $mq );
$h->logger( $l );
$h->initialize();
$h->version( 'vtest.suite.ver' );
***************
*** 192,202 ****
test_assert_equal( $h->url_encode_( '[foo]' ), '%5bfoo%5d' );
! our $port = 9000 + int(rand(1000));
pipe my $dreader, my $dwriter;
pipe my $ureader, my $uwriter;
my $pid = fork();
if ( $pid == 0 ) {
# CHILD THAT WILL RUN THE HTML INTERFACE
--- 195,208 ----
test_assert_equal( $h->url_encode_( '[foo]' ), '%5bfoo%5d' );
! our $port = 9001 + int(rand(1000));
pipe my $dreader, my $dwriter;
pipe my $ureader, my $uwriter;
+ $b->prefork();
my $pid = fork();
if ( $pid == 0 ) {
+ $b->forked();
+
# CHILD THAT WILL RUN THE HTML INTERFACE
***************
*** 306,309 ****
--- 312,317 ----
exit(0);
} else {
+
+ $b->postfork();
# PARENT THAT WILL SEND COMMANDS TO THE WEB INTERFACE
Index: TestHTTP.tst
===================================================================
RCS file: /cvsroot/popfile/engine/tests/TestHTTP.tst,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** TestHTTP.tst 8 Sep 2003 18:03:58 -0000 1.3
--- TestHTTP.tst 15 Sep 2003 14:55:37 -0000 1.4
***************
*** 253,256 ****
--- 253,258 ----
}
+ $h->stop();
+
exit(0);
} else {
Index: TestPOP3.tst
===================================================================
RCS file: /cvsroot/popfile/engine/tests/TestPOP3.tst,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** TestPOP3.tst 28 Aug 2003 17:54:55 -0000 1.13
--- TestPOP3.tst 15 Sep 2003 14:55:37 -0000 1.14
***************
*** 294,301 ****
--- 294,304 ----
mkdir( 'messages' );
+ $b->prefork();
my $pid = fork();
if ( $pid == 0 ) {
+ $b->forked();
+
# CHILD THAT WILL RUN THE POP3 SERVER
***************
*** 320,323 ****
--- 323,328 ----
} else {
+ $b->postfork();
+
my $port = 9000 + int(rand(1000));
***************
*** 340,347 ****
--- 345,355 ----
pipe my $dreader, my $dwriter;
pipe my $ureader, my $uwriter;
+ $b->prefork();
my $pid2 = fork();
if ( $pid2 == 0 ) {
+ $b->forked();
+
# CHILD THAT WILL RUN THE POP3 PROXY
***************
*** 414,417 ****
--- 422,427 ----
exit(0);
} else {
+
+ $b->postfork();
# PARENT THAT WILL SEND COMMAND TO THE PROXY
|
|
From: <jgr...@us...> - 2003-09-15 14:56:13
|
Update of /cvsroot/popfile/engine/tests/languages In directory sc8-pr-cvs1:/tmp/cvs-serv15349/tests/languages Modified Files: English.msg Log Message: BROUGHT TEST SUITE TO 100% AFTER BERKELEYDB CHANGE HTML.pm: Small modification to the way that showing an individual bucket works so that when it is cleared we show the same page with a zero word count and no words. Bayes.pm: Mechanism for marking a bucket deleted even though the files in its directory have not all disappeared. This is needed because if a user deletes a bucket while a download is occurring POPFile will have a connection open to the db which will prevent it from getting deleted. Now have a helper delete_bucket_files__ that will do the delete and add the special delete file as needed. clear_bucket can't rely on being able to remove the table.db for the same reasons as the above, so change the way in which it operates. TestBayes.tst: Tests to cover upgrading of corpus tables, fork handling and deal with the fact that the corpus is no longer in flat files. TestHTML.tst: Have to call prefork/forked/postfork when forking. Test the new force_fork UI elements. TestPOP3.tst: Have to call prefork/forked/postfork when forking. TestProxy.tst: Add code to test the forking/non-forking version of the proxy code. Index: English.msg =================================================================== RCS file: /cvsroot/popfile/engine/tests/languages/English.msg,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** English.msg 8 Sep 2003 18:03:58 -0000 1.2 --- English.msg 15 Sep 2003 14:55:37 -0000 1.3 *************** *** 100,103 **** --- 100,106 ---- Configuration_NNTPPort NNTP listen port Configuration_NNTPUpdate Updated NNTP port to %s; this change will not take affect until you restart POPFile + Configuration_POPFork Allow concurrent POP3 connections + Configuration_SMTPFork Allow concurrent SMTP connections + Configuration_NNTPFork Allow concurrent NNTP connections Configuration_POP3Separator POP3 host:port:user separator character Configuration_NNTPSeparator NNTP host:port:user separator character |
|
From: <jgr...@us...> - 2003-09-15 14:56:13
|
Update of /cvsroot/popfile/engine
In directory sc8-pr-cvs1:/tmp/cvs-serv15349
Modified Files:
Makefile tests.pl
Log Message:
BROUGHT TEST SUITE TO 100% AFTER BERKELEYDB CHANGE
HTML.pm:
Small modification to the way that showing an individual bucket works
so that when it is cleared we show the same page with a zero word
count and no words.
Bayes.pm:
Mechanism for marking a bucket deleted even though the files in
its directory have not all disappeared. This is needed because if
a user deletes a bucket while a download is occurring POPFile will
have a connection open to the db which will prevent it from getting
deleted. Now have a helper delete_bucket_files__ that will do the
delete and add the special delete file as needed.
clear_bucket can't rely on being able to remove the table.db for
the same reasons as the above, so change the way in which it operates.
TestBayes.tst:
Tests to cover upgrading of corpus tables, fork handling and deal
with the fact that the corpus is no longer in flat files.
TestHTML.tst:
Have to call prefork/forked/postfork when forking. Test the new
force_fork UI elements.
TestPOP3.tst:
Have to call prefork/forked/postfork when forking.
TestProxy.tst:
Add code to test the forking/non-forking version of the proxy code.
Index: Makefile
===================================================================
RCS file: /cvsroot/popfile/engine/Makefile,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** Makefile 12 Sep 2003 00:34:36 -0000 1.20
--- Makefile 15 Sep 2003 14:55:36 -0000 1.21
***************
*** 47,51 ****
winexe: popfile.exe popfileb.exe
! TRAY_OPTIONS = --exe $@ --force --clean --dependent --xclude --icon ../windows/POPFileIcon/popfile.ico --script $< --info CompanyName="The POPFile Project" --info LegalCopyright="Copyright (c) 2003 John Graham-Cumming" --info ProductName=POPFile --info ProductVersion=$(POPFILE_VERSION).0 --info FileDescription=POPFile --info FileVersion=$(POPFILE_VERSION).0
popfile.exe: popfilew.pl POPFile/Loader.pm
--- 47,54 ----
winexe: popfile.exe popfileb.exe
! TRAY_OPTIONS = --exe $@ --force --clean --dependent --xclude --icon ../windows/POPFileIcon/popfile.ico --script $< --info CompanyName="The POPFile Project" --info LegalCopyright="Copyright (c) 2003 John Graham-Cumming" --info ProductName=POPFile --info ProductVersion=$(POPFILE_VERSION).0 --info FileDescription=POPFile --info FileVersion=$(POPFILE_VERSION).0
! ifeq ($(TRAY_DEBUG),1)
! TRAY_OPTIONS += --debug
! endif
popfile.exe: popfilew.pl POPFile/Loader.pm
Index: tests.pl
===================================================================
RCS file: /cvsroot/popfile/engine/tests.pl,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -d -r1.29 -r1.30
*** tests.pl 22 Aug 2003 02:06:27 -0000 1.29
--- tests.pl 15 Sep 2003 14:55:36 -0000 1.30
***************
*** 61,67 ****
}
$test_failures += 1;
! # print "Test fail at $file:$line\n";
} else {
! # print "Test pass at $file:$line\n";
}
--- 61,67 ----
}
$test_failures += 1;
! # print "Test fail at $file:$line ($context)\n";
} else {
! # print "Test pass at $file:$line ($context)\n";
}
|
|
From: <jgr...@us...> - 2003-09-15 14:56:13
|
Update of /cvsroot/popfile/engine/UI
In directory sc8-pr-cvs1:/tmp/cvs-serv15349/UI
Modified Files:
HTML.pm
Log Message:
BROUGHT TEST SUITE TO 100% AFTER BERKELEYDB CHANGE
HTML.pm:
Small modification to the way that showing an individual bucket works
so that when it is cleared we show the same page with a zero word
count and no words.
Bayes.pm:
Mechanism for marking a bucket deleted even though the files in
its directory have not all disappeared. This is needed because if
a user deletes a bucket while a download is occurring POPFile will
have a connection open to the db which will prevent it from getting
deleted. Now have a helper delete_bucket_files__ that will do the
delete and add the special delete file as needed.
clear_bucket can't rely on being able to remove the table.db for
the same reasons as the above, so change the way in which it operates.
TestBayes.tst:
Tests to cover upgrading of corpus tables, fork handling and deal
with the fact that the corpus is no longer in flat files.
TestHTML.tst:
Have to call prefork/forked/postfork when forking. Test the new
force_fork UI elements.
TestPOP3.tst:
Have to call prefork/forked/postfork when forking.
TestProxy.tst:
Add code to test the forking/non-forking version of the proxy code.
Index: HTML.pm
===================================================================
RCS file: /cvsroot/popfile/engine/UI/HTML.pm,v
retrieving revision 1.202
retrieving revision 1.203
diff -C2 -d -r1.202 -r1.203
*** HTML.pm 10 Sep 2003 22:33:57 -0000 1.202
--- HTML.pm 15 Sep 2003 14:55:36 -0000 1.203
***************
*** 1700,1704 ****
$body .= "<form action=\"/buckets\"><input type=\"hidden\" name=\"session\" value=\"$self->{session_key__}\" />";
! $body .= "<input type=\"hidden\" name=\"bucket\" value=\"$self->{form_}{showbucket}\" />";
$body .= "<input type=\"submit\" name=\"clearbucket\" value=\"$self->{language__}{SingleBucket_ClearBucket}\" />";
$body .= "</form>";
--- 1700,1704 ----
$body .= "<form action=\"/buckets\"><input type=\"hidden\" name=\"session\" value=\"$self->{session_key__}\" />";
! $body .= "<input type=\"hidden\" name=\"showbucket\" value=\"$self->{form_}{showbucket}\" />";
$body .= "<input type=\"submit\" name=\"clearbucket\" value=\"$self->{language__}{SingleBucket_ClearBucket}\" />";
$body .= "</form>";
***************
*** 1822,1826 ****
if ( defined( $self->{form_}{clearbucket} ) ) {
! $self->{classifier__}->clear_bucket( $self->{form_}{bucket} );
}
--- 1822,1826 ----
if ( defined( $self->{form_}{clearbucket} ) ) {
! $self->{classifier__}->clear_bucket( $self->{form_}{showbucket} );
}
***************
*** 1838,1842 ****
if ( defined($self->{form_}{showbucket}) ) {
! bucket_page( $self, $client);
return;
}
--- 1838,1842 ----
if ( defined($self->{form_}{showbucket}) ) {
! $self->bucket_page( $client );
return;
}
|
|
From: <jgr...@us...> - 2003-09-15 14:56:13
|
Update of /cvsroot/popfile/engine/Classifier
In directory sc8-pr-cvs1:/tmp/cvs-serv15349/Classifier
Modified Files:
Bayes.pm
Log Message:
BROUGHT TEST SUITE TO 100% AFTER BERKELEYDB CHANGE
HTML.pm:
Small modification to the way that showing an individual bucket works
so that when it is cleared we show the same page with a zero word
count and no words.
Bayes.pm:
Mechanism for marking a bucket deleted even though the files in
its directory have not all disappeared. This is needed because if
a user deletes a bucket while a download is occurring POPFile will
have a connection open to the db which will prevent it from getting
deleted. Now have a helper delete_bucket_files__ that will do the
delete and add the special delete file as needed.
clear_bucket can't rely on being able to remove the table.db for
the same reasons as the above, so change the way in which it operates.
TestBayes.tst:
Tests to cover upgrading of corpus tables, fork handling and deal
with the fact that the corpus is no longer in flat files.
TestHTML.tst:
Have to call prefork/forked/postfork when forking. Test the new
force_fork UI elements.
TestPOP3.tst:
Have to call prefork/forked/postfork when forking.
TestProxy.tst:
Add code to test the forking/non-forking version of the proxy code.
Index: Bayes.pm
===================================================================
RCS file: /cvsroot/popfile/engine/Classifier/Bayes.pm,v
retrieving revision 1.196
retrieving revision 1.197
diff -C2 -d -r1.196 -r1.197
*** Bayes.pm 11 Sep 2003 08:06:03 -0000 1.196
--- Bayes.pm 15 Sep 2003 14:55:36 -0000 1.197
***************
*** 480,483 ****
--- 480,491 ----
next if ( lc($bucket) ne $bucket );
+ # Look for the delete file that indicates that this bucket
+ # is no longer needed
+
+ if ( -e "$bucket/delete" ) {
+ $self->delete_bucket_files__( $bucket );
+ next;
+ }
+
my $color = '';
***************
*** 617,623 ****
# tied hash from it thus performing an automatic upgrade.
! $self->{db__}{$bucket} = tie %{$self->{matrix__}{$bucket}}, "BerkeleyDB::Hash",
-Filename => $self->config_( 'corpus' ) . "/$bucket/table.db",
! -Flags => DB_CREATE;
if ( !defined( $self->get_bucket_word_count( $bucket ) ) ) {
--- 625,631 ----
# tied hash from it thus performing an automatic upgrade.
! $self->{db__}{$bucket} = tie %{$self->{matrix__}{$bucket}}, "BerkeleyDB::Hash", # PROFILE BLOCK START
-Filename => $self->config_( 'corpus' ) . "/$bucket/table.db",
! -Flags => DB_CREATE; # PROFILE BLOCK STOP
if ( !defined( $self->get_bucket_word_count( $bucket ) ) ) {
***************
*** 632,638 ****
if ( open WORDS, '<' . $self->config_( 'corpus' ) . "/$bucket/table" ) {
! print "\nUpgrading bucket $bucket...";
! flush STDOUT;
! my $wc = 0;
my $first = <WORDS>;
--- 640,644 ----
if ( open WORDS, '<' . $self->config_( 'corpus' ) . "/$bucket/table" ) {
! my $wc = 1;
my $first = <WORDS>;
***************
*** 641,645 ****
--- 647,655 ----
print STDERR "Incompatible corpus version in $bucket\n";
close WORDS;
+ return 0;
} else {
+ print "\nUpgrading bucket $bucket...";
+ flush STDOUT;
+
while ( <WORDS> ) {
if ( $wc % 100 == 0 ) {
***************
*** 658,665 ****
}
! print "(completed $wc words)";
close WORDS;
} else {
close WORDS;
}
--- 668,676 ----
}
! print "(completed ", $wc-1, " words)";
close WORDS;
} else {
close WORDS;
+ return 0;
}
***************
*** 874,880 ****
my $certainty = ($c1-$c0 + 1) / 2;
! if ( $certainty < 0.4 ) {
! $class = 'unsure';
! }
if ($self->{wordscores__} && defined($ui) ) {
--- 885,889 ----
my $certainty = ($c1-$c0 + 1) / 2;
! $class = 'unsure' if ( $certainty < 0.4 );
if ($self->{wordscores__} && defined($ui) ) {
***************
*** 1431,1435 ****
my ( $self, $bucket ) = @_;
! return $self->{matrix__}{$bucket}{__POPFILE__TOTAL__};
}
--- 1440,1446 ----
my ( $self, $bucket ) = @_;
! my $total = $self->{matrix__}{$bucket}{__POPFILE__TOTAL__};
!
! return defined( $total )?$total:0;
}
***************
*** 1528,1532 ****
my ( $self, $bucket ) = @_;
! return $self->{colors__}{$bucket};
}
--- 1539,1545 ----
my ( $self, $bucket ) = @_;
! my $color = $self->{colors__}{$bucket};
!
! return defined( $color )?$color:'black';
}
***************
*** 1628,1634 ****
mkdir( $self->config_( 'corpus' ) . "/$bucket" );
! tie %{$self->{matrix__}{$bucket}}, "BerkeleyDB::Hash",
-Filename => $self->config_( 'corpus' ) . "/$bucket/table.db",
! -Flags => DB_CREATE;
$self->load_word_matrix_();
--- 1641,1647 ----
mkdir( $self->config_( 'corpus' ) . "/$bucket" );
! tie %{$self->{matrix__}{$bucket}}, "BerkeleyDB::Hash", # PROFILE BLOCK START
-Filename => $self->config_( 'corpus' ) . "/$bucket/table.db",
! -Flags => DB_CREATE; # PROFILE BLOCK STOP
$self->load_word_matrix_();
***************
*** 1652,1668 ****
}
- my $bucket_directory = $self->config_( 'corpus' ) . "/$bucket";
-
$self->close_database__();
unlink( "$bucket_directory/table.db" );
unlink( "$bucket_directory/color" );
unlink( "$bucket_directory/params" );
unlink( "$bucket_directory/magnets" );
rmdir( $bucket_directory );
! $self->load_word_matrix_();
! return 1;
}
--- 1665,1707 ----
}
$self->close_database__();
+ $self->delete_bucket_files__( $bucket );
+ $self->load_word_matrix_();
+
+ return 1;
+ }
+
+ # ---------------------------------------------------------------------------------------------
+ #
+ # delete_bucket_files__
+ #
+ # Helper that removes the files associated with a bucket
+ #
+ # $bucket The bucket to tidy up
+ #
+ # ---------------------------------------------------------------------------------------------
+ sub delete_bucket_files__
+ {
+ my ( $self, $bucket ) = @_;
+ my $bucket_directory = $self->config_( 'corpus' ) . "/$bucket";
unlink( "$bucket_directory/table.db" );
+ unlink( "$bucket_directory/table" );
unlink( "$bucket_directory/color" );
unlink( "$bucket_directory/params" );
unlink( "$bucket_directory/magnets" );
+ unlink( "$bucket_directory/delete" );
rmdir( $bucket_directory );
! # If the bucket directory still exists then it indicates that the
! # table was open in another process. We create a special file
! # called 'delete' which if present will cause the loader to try
! # to delete the bucket
! if ( -e $bucket_directory ) {
! open DELETER, ">$bucket_directory/delete";
! print DELETER "Special file used by POPFile to indicate that this bucket is to be deleted\n";
! close DELETER;
! }
}
***************
*** 1723,1728 ****
}
- $self->load_word_matrix_();
-
return 1;
}
--- 1762,1765 ----
***************
*** 1882,1890 ****
my ( $self, $bucket ) = @_;
! my $bucket_directory = $self->config_( 'corpus' ) . "/$bucket";
! undef $self->{db__}{$bucket};
! untie %{$self->{matrix__}{$bucket}};
! unlink( "$bucket_directory/table.db" );
$self->load_word_matrix_();
--- 1919,1928 ----
my ( $self, $bucket ) = @_;
! foreach my $word (keys %{$self->{matrix__}{$bucket}}) {
! delete $self->{matrix__}{$bucket}{$word};
! }
! $self->{matrix__}{$bucket}{__POPFILE__TOTAL__} = 0;
! $self->{matrix__}{$bucket}{__POPFILE__UNIQUE__} = 0;
$self->load_word_matrix_();
|
|
From: <jgr...@us...> - 2003-09-15 14:56:12
|
Update of /cvsroot/popfile/engine/Test
In directory sc8-pr-cvs1:/tmp/cvs-serv15349/Test
Modified Files:
SimpleProxy.pm
Log Message:
BROUGHT TEST SUITE TO 100% AFTER BERKELEYDB CHANGE
HTML.pm:
Small modification to the way that showing an individual bucket works
so that when it is cleared we show the same page with a zero word
count and no words.
Bayes.pm:
Mechanism for marking a bucket deleted even though the files in
its directory have not all disappeared. This is needed because if
a user deletes a bucket while a download is occurring POPFile will
have a connection open to the db which will prevent it from getting
deleted. Now have a helper delete_bucket_files__ that will do the
delete and add the special delete file as needed.
clear_bucket can't rely on being able to remove the table.db for
the same reasons as the above, so change the way in which it operates.
TestBayes.tst:
Tests to cover upgrading of corpus tables, fork handling and deal
with the fact that the corpus is no longer in flat files.
TestHTML.tst:
Have to call prefork/forked/postfork when forking. Test the new
force_fork UI elements.
TestPOP3.tst:
Have to call prefork/forked/postfork when forking.
TestProxy.tst:
Add code to test the forking/non-forking version of the proxy code.
Index: SimpleProxy.pm
===================================================================
RCS file: /cvsroot/popfile/engine/Test/SimpleProxy.pm,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** SimpleProxy.pm 31 Jul 2003 16:32:21 -0000 1.11
--- SimpleProxy.pm 15 Sep 2003 14:55:36 -0000 1.12
***************
*** 165,169 ****
sub child__
{
! my ( $self, $client, $download_count, $pipe ) = @_;
$self->log_( "Child started" );
--- 165,169 ----
sub child__
{
! my ( $self, $client, $download_count, $pipe, $ppipe, $pid ) = @_;
$self->log_( "Child started" );
***************
*** 174,177 ****
--- 174,178 ----
print $pipe "NEWFL:newfile$eol";
print $pipe "LOGIN:username$eol";
+ $self->yield_( $ppipe, $pid );
# Connect to the simple server that
|
Update of /cvsroot/popfile/windows/languages In directory sc8-pr-cvs1:/tmp/cvs-serv9304 Modified Files: Bulgarian-pfi.nsh Czech-pfi.nsh Danish-pfi.nsh Dutch-pfi.nsh English-pfi.nsh Finnish-pfi.nsh French-pfi.nsh German-pfi.nsh Hungarian-pfi.nsh Japanese-pfi.nsh Korean-pfi.nsh Polish-pfi.nsh Portuguese-pfi.nsh Russian-pfi.nsh SimpChinese-pfi.nsh Slovak-pfi.nsh Spanish-pfi.nsh Swedish-pfi.nsh TradChinese-pfi.nsh Ukrainian-pfi.nsh Log Message: Ensure all lines end in LF (and not CRLF). Index: Bulgarian-pfi.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/Bulgarian-pfi.nsh,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Bulgarian-pfi.nsh 1 Aug 2003 00:33:27 -0000 1.8 --- Bulgarian-pfi.nsh 13 Sep 2003 20:28:13 -0000 1.9 *************** *** 1,282 **** ! #-------------------------------------------------------------------------- ! # Bulgarian-pfi.nsh ! # ! # This file contains additional "Bulgarian" text strings used by the Windows installer ! # for POPFile (these strings are unique to POPFile). ! # ! # See 'Bulgarian-mui.nsh' for the strings which modify standard NSIS MUI messages. ! # ! # These strings are grouped according to the page/window where they are used ! # ! # Copyright (c) 2001-2003 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 ! # ! #-------------------------------------------------------------------------- ! # String Formatting (applies to PFI_LANG_*_MB* text used for message boxes): ! # ! # (1) The sequence $\r$\n inserts a newline ! # (2) The sequence $\r$\n$\r\$n 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 \r\n inserts a newline ! # (2) The sequence \r\n\r\n 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) ! #-------------------------------------------------------------------------- ! ! !ifndef PFI_VERBOSE ! !verbose 3 ! !endif ! ! #-------------------------------------------------------------------------- ! # Mark the start of the language data ! #-------------------------------------------------------------------------- ! ! !define PFI_LANG "BULGARIAN" ! ! #-------------------------------------------------------------------------- ! # Startup message box offering to display the Release Notes ! #-------------------------------------------------------------------------- ! ! !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)" ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Choose Components ! #-------------------------------------------------------------------------- ! ! !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." ! ! #-------------------------------------------------------------------------- ! # Custom Page - POPFile Installation Options ! #-------------------------------------------------------------------------- ! ! ; 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 (runs in background)" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_IO_WARNING "IMPORTANT WARNING" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_IO_MESSAGE "IF UPGRADING POPFILE --- INSTALLER WILL SHUTDOWN EXISTING VERSION" ! ! ; Message Boxes used when validating user's selections ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBUNINST_1 "Previous installation found at" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBUNINST_2 "Do you want to uninstall it ?" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBUNINST_3 "'Yes' recommended" ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBPOP3_1 "The POP3 port cannot be set to" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBPOP3_2 "The port must be a number in the range 1 to 65535." ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBPOP3_3 "Please change your POP3 port selection." ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBGUI_1 "The 'User Interface' port cannot be set to" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBGUI_2 "The port must be a number in the range 1 to 65535." ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBGUI_3 "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." ! ! ; Banner message displayed whilst uninstalling old version ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_BANNER_1 "Please be patient." ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_BANNER_2 "This may take a few seconds..." ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Installing POPfile ! #-------------------------------------------------------------------------- ! ! ; Installation Progress Reports displayed above the progress bar ! ! !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_UPGRADE "Checking if this is an upgrade installation..." ! !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_SHORT "Creating POPFile shortcuts..." ! !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_SKINS "Installing POPFile skin files..." ! !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Íàòèñíåòå 'Íàïðåä', çà äà ïðîäúëæèòå." ! ! ; Installation Log Messages ! ! !insertmacro PFI_LANG_STRING PFI_LANG_INST_LOG_1 "Shutting down previous version of POPFile using port" ! ! ; Message Box text strings ! ! !insertmacro PFI_LANG_STRING PFI_LANG_MBSTPWDS_1 "file from previous installation found." ! !insertmacro PFI_LANG_STRING PFI_LANG_MBSTPWDS_2 "OK to update this file ?" ! !insertmacro PFI_LANG_STRING PFI_LANG_MBSTPWDS_3 "Click 'Yes' to update it (old file will be saved as" ! !insertmacro PFI_LANG_STRING PFI_LANG_MBSTPWDS_4 "Click 'No' to keep the old file (new file will saved as" ! ! !insertmacro PFI_LANG_STRING PFI_LANG_MBCFGBK_1 "Backup copy of" ! !insertmacro PFI_LANG_STRING PFI_LANG_MBCFGBK_2 "already exists" ! !insertmacro PFI_LANG_STRING PFI_LANG_MBCFGBK_3 "OK to overwrite this file?" ! !insertmacro PFI_LANG_STRING PFI_LANG_MBCFGBK_4 "Click 'Yes' to overwrite, click 'No' to skip making a backup copy" ! ! #-------------------------------------------------------------------------- ! # Custom Page - POPFile Classification Bucket Creation ! #-------------------------------------------------------------------------- ! ! ; 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.\r\n\r\nBucket 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 "Ïðåìàõíè" ! !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_1 "There is no need to add more buckets" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_MSG_2 "You must define AT LEAST TWO buckets" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_MSG_3 "At least one more bucket is required" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_MSG_4 "Installer cannot create more than" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_MSG_5 "buckets" ! ! ; Message box text strings ! ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDUPERR_1 "A bucket called" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDUPERR_2 "has already been defined." ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDUPERR_3 "Please choose a different name for the new bucket." ! ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAXERR_1 "The installer can only create up to" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAXERR_2 "buckets." ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAXERR_3 "Once POPFile has been installed you can create more than" ! ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBNAMERR_1 "The name" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBNAMERR_2 "is not a valid name for a bucket." ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBNAMERR_3 "Èìåíàòà íà êîøîâåòå ìîæå äà ñúäúðæàò ñàìî ìàëêè ëàòèíñêè áóêâè îò a äî z ïëþñ çíàöèòå - è _" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBNAMERR_4 "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,$\r$\n$\r$\neither by picking a suggested name from the drop-down list$\r$\n$\r$\nor 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_1 "buckets have been defined for use by POPFile." ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDONE_2 "Do you want to configure POPFile to use these buckets?" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDONE_3 "Click 'No' if you wish to change your bucket selections." ! ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAKERR_1 "The installer was unable to create" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAKERR_2 "of the" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAKERR_3 "buckets you selected." ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAKERR_4 "Once POPFile has been installed you can use its 'User Interface'$\r$\n$\r$\ncontrol panel to create the missing bucket(s)." ! ! #-------------------------------------------------------------------------- ! # Custom Page - Reconfigure Outlook Express ! #-------------------------------------------------------------------------- ! ! ; Page Title and Sub-title displayed in the page header ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_TITLE "Reconfigure Outlook Express" ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_SUBTITLE "POPFile can reconfigure Outlook Express for you" ! ! ; Text displayed on the custom page ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_INTRO "POPFile has detected the following Outlook Express email account and can automatically configure it to work with POPFile" ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_CHECKBOX "Reconfigure this account to work with POPFile" ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_EMAIL "Email address:" ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_SERVER "POP3 server:" ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_USERNAME "POP3 username:" ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_RESTORE "If you uninstall POPFile the original settings will be restored" ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_LINK_1 "account for the" ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_LINK_2 "identity" ! ! #-------------------------------------------------------------------------- ! # Custom Page - POPFile can now be started ! #-------------------------------------------------------------------------- ! ! ; 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_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..." ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Uninstall POPFile ! #-------------------------------------------------------------------------- ! ! ; Uninstall Progress Reports displayed above the progress bar ! ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_1 "Shutting down POPFile..." ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_2 "Deleting 'Start Menu' entries for POPFile..." ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_3 "Deleting POPFile core files..." ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_4 "Restoring Outlook Express settings..." ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_5 "Deleting POPFile skins files..." ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_6 "Deleting minimal Perl files..." ! ! ; Uninstall Log Messages ! ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_1 "Shutting down POPFile using port" ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_2 "Opened" ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_3 "Restored" ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_4 "Closed" ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_5 "Removing all files from POPFile directory" ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_6 "Note: unable to remove all files from POPFile directory" ! ! ; Message Box text strings ! ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_MBNOTFOUND_1 "It does not appear that POPFile is installed in the directory" ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_MBNOTFOUND_2 "Continue anyway (not recommended) ?" ! ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_ABORT_1 "Uninstall aborted by user" ! ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_MBREMDIR_1 "Do you want to remove all files in your POPFile directory?$\r$\n$\r$\n(If you have anything you created that you want to keep, click No)" ! ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_MBREMERR_1 "Note" ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_MBREMERR_2 "could not be removed." ! ! #-------------------------------------------------------------------------- ! # Mark the end of the language data ! #-------------------------------------------------------------------------- ! ! !undef PFI_LANG ! ! #-------------------------------------------------------------------------- ! # End of 'Bulgarian-pfi.nsh' ! #-------------------------------------------------------------------------- --- 1,282 ---- ! #-------------------------------------------------------------------------- ! # Bulgarian-pfi.nsh ! # ! # This file contains additional "Bulgarian" text strings used by the Windows installer ! # for POPFile (these strings are unique to POPFile). ! # ! # See 'Bulgarian-mui.nsh' for the strings which modify standard NSIS MUI messages. ! # ! # These strings are grouped according to the page/window where they are used ! # ! # Copyright (c) 2001-2003 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 ! # ! #-------------------------------------------------------------------------- ! # String Formatting (applies to PFI_LANG_*_MB* text used for message boxes): ! # ! # (1) The sequence $\r$\n inserts a newline ! # (2) The sequence $\r$\n$\r\$n 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 \r\n inserts a newline ! # (2) The sequence \r\n\r\n 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) ! #-------------------------------------------------------------------------- ! ! !ifndef PFI_VERBOSE ! !verbose 3 ! !endif ! ! #-------------------------------------------------------------------------- ! # Mark the start of the language data ! #-------------------------------------------------------------------------- ! ! !define PFI_LANG "BULGARIAN" ! ! #-------------------------------------------------------------------------- ! # Startup message box offering to display the Release Notes ! #-------------------------------------------------------------------------- ! ! !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)" ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Choose Components ! #-------------------------------------------------------------------------- ! ! !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." ! ! #-------------------------------------------------------------------------- ! # Custom Page - POPFile Installation Options ! #-------------------------------------------------------------------------- ! ! ; 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 (runs in background)" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_IO_WARNING "IMPORTANT WARNING" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_IO_MESSAGE "IF UPGRADING POPFILE --- INSTALLER WILL SHUTDOWN EXISTING VERSION" ! ! ; Message Boxes used when validating user's selections ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBUNINST_1 "Previous installation found at" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBUNINST_2 "Do you want to uninstall it ?" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBUNINST_3 "'Yes' recommended" ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBPOP3_1 "The POP3 port cannot be set to" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBPOP3_2 "The port must be a number in the range 1 to 65535." ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBPOP3_3 "Please change your POP3 port selection." ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBGUI_1 "The 'User Interface' port cannot be set to" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBGUI_2 "The port must be a number in the range 1 to 65535." ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBGUI_3 "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." ! ! ; Banner message displayed whilst uninstalling old version ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_BANNER_1 "Please be patient." ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_BANNER_2 "This may take a few seconds..." ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Installing POPfile ! #-------------------------------------------------------------------------- ! ! ; Installation Progress Reports displayed above the progress bar ! ! !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_UPGRADE "Checking if this is an upgrade installation..." ! !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_SHORT "Creating POPFile shortcuts..." ! !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_SKINS "Installing POPFile skin files..." ! !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Íàòèñíåòå 'Íàïðåä', çà äà ïðîäúëæèòå." ! ! ; Installation Log Messages ! ! !insertmacro PFI_LANG_STRING PFI_LANG_INST_LOG_1 "Shutting down previous version of POPFile using port" ! ! ; Message Box text strings ! ! !insertmacro PFI_LANG_STRING PFI_LANG_MBSTPWDS_1 "file from previous installation found." ! !insertmacro PFI_LANG_STRING PFI_LANG_MBSTPWDS_2 "OK to update this file ?" ! !insertmacro PFI_LANG_STRING PFI_LANG_MBSTPWDS_3 "Click 'Yes' to update it (old file will be saved as" ! !insertmacro PFI_LANG_STRING PFI_LANG_MBSTPWDS_4 "Click 'No' to keep the old file (new file will saved as" ! ! !insertmacro PFI_LANG_STRING PFI_LANG_MBCFGBK_1 "Backup copy of" ! !insertmacro PFI_LANG_STRING PFI_LANG_MBCFGBK_2 "already exists" ! !insertmacro PFI_LANG_STRING PFI_LANG_MBCFGBK_3 "OK to overwrite this file?" ! !insertmacro PFI_LANG_STRING PFI_LANG_MBCFGBK_4 "Click 'Yes' to overwrite, click 'No' to skip making a backup copy" ! ! #-------------------------------------------------------------------------- ! # Custom Page - POPFile Classification Bucket Creation ! #-------------------------------------------------------------------------- ! ! ; 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.\r\n\r\nBucket 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 "Ïðåìàõíè" ! !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_1 "There is no need to add more buckets" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_MSG_2 "You must define AT LEAST TWO buckets" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_MSG_3 "At least one more bucket is required" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_MSG_4 "Installer cannot create more than" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_MSG_5 "buckets" ! ! ; Message box text strings ! ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDUPERR_1 "A bucket called" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDUPERR_2 "has already been defined." ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDUPERR_3 "Please choose a different name for the new bucket." ! ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAXERR_1 "The installer can only create up to" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAXERR_2 "buckets." ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAXERR_3 "Once POPFile has been installed you can create more than" ! ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBNAMERR_1 "The name" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBNAMERR_2 "is not a valid name for a bucket." ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBNAMERR_3 "Èìåíàòà íà êîøîâåòå ìîæå äà ñúäúðæàò ñàìî ìàëêè ëàòèíñêè áóêâè îò a äî z ïëþñ çíàöèòå - è _" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBNAMERR_4 "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,$\r$\n$\r$\neither by picking a suggested name from the drop-down list$\r$\n$\r$\nor 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_1 "buckets have been defined for use by POPFile." ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDONE_2 "Do you want to configure POPFile to use these buckets?" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDONE_3 "Click 'No' if you wish to change your bucket selections." ! ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAKERR_1 "The installer was unable to create" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAKERR_2 "of the" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAKERR_3 "buckets you selected." ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAKERR_4 "Once POPFile has been installed you can use its 'User Interface'$\r$\n$\r$\ncontrol panel to create the missing bucket(s)." ! ! #-------------------------------------------------------------------------- ! # Custom Page - Reconfigure Outlook Express ! #-------------------------------------------------------------------------- ! ! ; Page Title and Sub-title displayed in the page header ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_TITLE "Reconfigure Outlook Express" ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_SUBTITLE "POPFile can reconfigure Outlook Express for you" ! ! ; Text displayed on the custom page ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_INTRO "POPFile has detected the following Outlook Express email account and can automatically configure it to work with POPFile" ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_CHECKBOX "Reconfigure this account to work with POPFile" ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_EMAIL "Email address:" ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_SERVER "POP3 server:" ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_USERNAME "POP3 username:" ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_RESTORE "If you uninstall POPFile the original settings will be restored" ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_LINK_1 "account for the" ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_LINK_2 "identity" ! ! #-------------------------------------------------------------------------- ! # Custom Page - POPFile can now be started ! #-------------------------------------------------------------------------- ! ! ; 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_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..." ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Uninstall POPFile ! #-------------------------------------------------------------------------- ! ! ; Uninstall Progress Reports displayed above the progress bar ! ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_1 "Shutting down POPFile..." ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_2 "Deleting 'Start Menu' entries for POPFile..." ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_3 "Deleting POPFile core files..." ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_4 "Restoring Outlook Express settings..." ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_5 "Deleting POPFile skins files..." ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_6 "Deleting minimal Perl files..." ! ! ; Uninstall Log Messages ! ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_1 "Shutting down POPFile using port" ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_2 "Opened" ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_3 "Restored" ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_4 "Closed" ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_5 "Removing all files from POPFile directory" ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_6 "Note: unable to remove all files from POPFile directory" ! ! ; Message Box text strings ! ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_MBNOTFOUND_1 "It does not appear that POPFile is installed in the directory" ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_MBNOTFOUND_2 "Continue anyway (not recommended) ?" ! ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_ABORT_1 "Uninstall aborted by user" ! ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_MBREMDIR_1 "Do you want to remove all files in your POPFile directory?$\r$\n$\r$\n(If you have anything you created that you want to keep, click No)" ! ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_MBREMERR_1 "Note" ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_MBREMERR_2 "could not be removed." ! ! #-------------------------------------------------------------------------- ! # Mark the end of the language data ! #-------------------------------------------------------------------------- ! ! !undef PFI_LANG ! ! #-------------------------------------------------------------------------- ! # End of 'Bulgarian-pfi.nsh' ! #-------------------------------------------------------------------------- Index: Czech-pfi.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/Czech-pfi.nsh,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Czech-pfi.nsh 1 Aug 2003 00:33:27 -0000 1.3 --- Czech-pfi.nsh 13 Sep 2003 20:28:13 -0000 1.4 *************** *** 1,282 **** ! #-------------------------------------------------------------------------- ! # Czech-pfi.nsh ! # ! # This file contains additional "Czech" text strings used by the Windows installer ! # for POPFile (these strings are unique to POPFile). ! # ! # See 'Czech-mui.nsh' for the strings which modify standard NSIS MUI messages. ! # ! # These strings are grouped according to the page/window where they are used ! # ! # Copyright (c) 2001-2003 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 ! # ! #-------------------------------------------------------------------------- ! # String Formatting (applies to PFI_LANG_*_MB* text used for message boxes): ! # ! # (1) The sequence $\r$\n inserts a newline ! # (2) The sequence $\r$\n$\r\$n 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 \r\n inserts a newline ! # (2) The sequence \r\n\r\n 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) ! #-------------------------------------------------------------------------- ! ! !ifndef PFI_VERBOSE ! !verbose 3 ! !endif ! ! #-------------------------------------------------------------------------- ! # Mark the start of the language data ! #-------------------------------------------------------------------------- ! ! !define PFI_LANG "CZECH" ! ! #-------------------------------------------------------------------------- ! # Startup message box offering to display the Release Notes ! #-------------------------------------------------------------------------- ! ! !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)" ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Choose Components ! #-------------------------------------------------------------------------- ! ! !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." ! ! #-------------------------------------------------------------------------- ! # Custom Page - POPFile Installation Options ! #-------------------------------------------------------------------------- ! ! ; 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 (runs in background)" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_IO_WARNING "IMPORTANT WARNING" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_IO_MESSAGE "IF UPGRADING POPFILE --- INSTALLER WILL SHUTDOWN EXISTING VERSION" ! ! ; Message Boxes used when validating user's selections ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBUNINST_1 "Previous installation found at" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBUNINST_2 "Do you want to uninstall it ?" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBUNINST_3 "'Yes' recommended" ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBPOP3_1 "The POP3 port cannot be set to" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBPOP3_2 "The port must be a number in the range 1 to 65535." ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBPOP3_3 "Please change your POP3 port selection." ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBGUI_1 "The 'User Interface' port cannot be set to" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBGUI_2 "The port must be a number in the range 1 to 65535." ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBGUI_3 "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." ! ! ; Banner message displayed whilst uninstalling old version ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_BANNER_1 "Please be patient." ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_BANNER_2 "This may take a few seconds..." ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Installing POPfile ! #-------------------------------------------------------------------------- ! ! ; Installation Progress Reports displayed above the progress bar ! ! !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_UPGRADE "Checking if this is an upgrade installation..." ! !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_SHORT "Creating POPFile shortcuts..." ! !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_SKINS "Installing POPFile skin files..." ! !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." ! !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "Kliknìte na Dalí pro pokraèování" ! ! ; Installation Log Messages ! ! !insertmacro PFI_LANG_STRING PFI_LANG_INST_LOG_1 "Shutting down previous version of POPFile using port" ! ! ; Message Box text strings ! ! !insertmacro PFI_LANG_STRING PFI_LANG_MBSTPWDS_1 "file from previous installation found." ! !insertmacro PFI_LANG_STRING PFI_LANG_MBSTPWDS_2 "OK to update this file ?" ! !insertmacro PFI_LANG_STRING PFI_LANG_MBSTPWDS_3 "Click 'Yes' to update it (old file will be saved as" ! !insertmacro PFI_LANG_STRING PFI_LANG_MBSTPWDS_4 "Click 'No' to keep the old file (new file will saved as" ! ! !insertmacro PFI_LANG_STRING PFI_LANG_MBCFGBK_1 "Backup copy of" ! !insertmacro PFI_LANG_STRING PFI_LANG_MBCFGBK_2 "already exists" ! !insertmacro PFI_LANG_STRING PFI_LANG_MBCFGBK_3 "OK to overwrite this file?" ! !insertmacro PFI_LANG_STRING PFI_LANG_MBCFGBK_4 "Click 'Yes' to overwrite, click 'No' to skip making a backup copy" ! ! #-------------------------------------------------------------------------- ! # Custom Page - POPFile Classification Bucket Creation ! #-------------------------------------------------------------------------- ! ! ; 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.\r\n\r\nBucket 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 "Odstranit" ! !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_1 "There is no need to add more buckets" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_MSG_2 "You must define AT LEAST TWO buckets" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_MSG_3 "At least one more bucket is required" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_MSG_4 "Installer cannot create more than" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_MSG_5 "buckets" ! ! ; Message box text strings ! ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDUPERR_1 "A bucket called" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDUPERR_2 "has already been defined." ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDUPERR_3 "Please choose a different name for the new bucket." ! ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAXERR_1 "The installer can only create up to" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAXERR_2 "buckets." ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAXERR_3 "Once POPFile has been installed you can create more than" ! ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBNAMERR_1 "The name" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBNAMERR_2 "is not a valid name for a bucket." ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBNAMERR_3 "Názvy koù mùou obsahovat jen znaky od a do z (malé písmo) plus - a _" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBNAMERR_4 "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,$\r$\n$\r$\neither by picking a suggested name from the drop-down list$\r$\n$\r$\nor 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_1 "buckets have been defined for use by POPFile." ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDONE_2 "Do you want to configure POPFile to use these buckets?" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDONE_3 "Click 'No' if you wish to change your bucket selections." ! ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAKERR_1 "The installer was unable to create" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAKERR_2 "of the" ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAKERR_3 "buckets you selected." ! !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAKERR_4 "Once POPFile has been installed you can use its 'User Interface'$\r$\n$\r$\ncontrol panel to create the missing bucket(s)." ! ! #-------------------------------------------------------------------------- ! # Custom Page - Reconfigure Outlook Express ! #-------------------------------------------------------------------------- ! ! ; Page Title and Sub-title displayed in the page header ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_TITLE "Reconfigure Outlook Express" ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_SUBTITLE "POPFile can reconfigure Outlook Express for you" ! ! ; Text displayed on the custom page ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_INTRO "POPFile has detected the following Outlook Express email account and can automatically configure it to work with POPFile" ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_CHECKBOX "Reconfigure this account to work with POPFile" ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_EMAIL "Email address:" ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_SERVER "POP3 server:" ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_USERNAME "POP3 username:" ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_RESTORE "If you uninstall POPFile the original settings will be restored" ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_LINK_1 "account for the" ! !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_LINK_2 "identity" ! ! #-------------------------------------------------------------------------- ! # Custom Page - POPFile can now be started ! #-------------------------------------------------------------------------- ! ! ; 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_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..." ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Uninstall POPFile ! #-------------------------------------------------------------------------- ! ! ; Uninstall Progress Reports displayed above the progress bar ! ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_1 "Shutting down POPFile..." ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_2 "Deleting 'Start Menu' entries for POPFile..." ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_3 "Deleting POPFile core files..." ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_4 "Restoring Outlook Express settings..." ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_5 "Deleting POPFile skins files..." ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_6 "Deleting minimal Perl files..." ! ! ; Uninstall Log Messages ! ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_1 "Shutting down POPFile using port" ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_2 "Opened" ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_3 "Restored" ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_4 "Closed" ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_5 "Removing all files from POPFile directory" ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_6 "Note: unable to remove all files from POPFile directory" ! ! ; Message Box text strings ! ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_MBNOTFOUND_1 "It does not appear that POPFile is installed in the directory" ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_MBNOTFOUND_2 "Continue anyway (not recommended) ?" ! ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_ABORT_1 "Uninstall aborted by user" ! ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_MBREMDIR_1 "Do you want to remove all files in your POPFile directory?$\r$\n$\r$\n(If you have anything you created that you want to keep, click No)" ! ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_MBREMERR_1 "Note" ! !insertmacro PFI_LANG_UNSTRING PFI_LANG_MBREMERR_2 "could not be removed." ! ! #-------------------------------------------------------------------------- ! # Mark the end of the language data ! #-------------------------------------------------------------------------- ! ! !undef PFI_LANG ! ! #-------------------------------------------------------------------------- ! # End of 'Czech-pfi.nsh' ! #-------------------------------------------------------------------------- --- 1,282 ---- ! #-------------------------------------------------------------------------- ! # Czech-pfi.nsh ! # ! # This file contains additional "Czech" text strings used by the Windows installer ! # for POPFile (these strings are unique to POPFile). ! # ! # See 'Czech-mui.nsh' for the strings which modify standard NSIS MUI messages. ! # ! # These strings are grouped according to the page/window where they are used ! # ! # Copyright (c) 2001-2003 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 ! # ! #-------------------------------------------------------------------------- ! # String Formatting (applies to PFI_LANG_*_MB* text used for message boxes): ! # ! # (1) The sequence $\r$\n inserts a newline ! # (2) The sequence $\r$\n$\r\$n 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 \r\n inserts a newline ! # (2) The sequence \r\n\r\n 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) ! #-------------------------------------------------------------------------- ! ! !ifndef PFI_VERBOSE ! !verbose 3 ! !endif ! ! #-------------------------------------------------------------------------- ! # Mark the start of the language data ! #-------------------------------------------------------------------------- ! ! !define PFI_LANG "CZECH" ! ! #-------------------------------------------------------------------------- ! # Startup message box offering to display the Release Notes ! #-------------------------------------------------------------------------- ! ! !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)" ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Choose Components ! #-------------------------------------------------------------------------- ! ! !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." ! ! #-------------------------------------------------------------------------- ! # Custom Page - POPFile Installation Options ! #-------------------------------------------------------------------------- ! ! ; 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 (runs in background)" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_IO_WARNING "IMPORTANT WARNING" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_IO_MESSAGE "IF UPGRADING POPFILE --- INSTALLER WILL SHUTDOWN EXISTING VERSION" ! ! ; Message Boxes used when validating user's selections ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBUNINST_1 "Previous installation found at" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBUNINST_2 "Do you want to uninstall it ?" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBUNINST_3 "'Yes' recommended" ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBPOP3_1 "The POP3 port cannot be set to" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBPOP3_2 "The port must be a number in the range 1 to 65535." ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBPOP3_3 "Please change your POP3 port selection." ! ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBGUI_1 "The 'User Interface' port cannot be set to" ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBGUI_2 "The port must be a number in the range 1 to 65535." ! !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBGUI_3 "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." ! ! ; Banner message ... [truncated message content] |
Update of /cvsroot/popfile/windows/languages In directory sc8-pr-cvs1:/tmp/cvs-serv8882 Modified Files: Bulgarian-mui.nsh Czech-mui.nsh Danish-mui.nsh Dutch-mui.nsh English-mui.nsh Finnish-mui.nsh French-mui.nsh German-mui.nsh Hungarian-mui.nsh Japanese-mui.nsh Korean-mui.nsh Polish-mui.nsh Portuguese-mui.nsh Russian-mui.nsh SimpChinese-mui.nsh Slovak-mui.nsh Spanish-mui.nsh Swedish-mui.nsh TradChinese-mui.nsh Ukrainian-mui.nsh Log Message: Ensure all lines end in LF (and not CRLF). Index: Bulgarian-mui.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/Bulgarian-mui.nsh,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Bulgarian-mui.nsh 1 Aug 2003 00:30:28 -0000 1.4 --- Bulgarian-mui.nsh 13 Sep 2003 20:25:16 -0000 1.5 *************** *** 1,75 **** ! #-------------------------------------------------------------------------- ! # Bulgarian-mui.nsh ! # ! # This file contains additional "Bulgarian" text strings used by the Windows installer ! # for POPFile (these strings are customised versions of strings provided by NSIS). ! # ! # See 'Bulgarian-pfi.nsh' for the strings which are used on the custom pages. ! # ! # These strings are grouped according to the page/window where they are used ! # ! # Copyright (c) 2001-2003 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 ! # ! #-------------------------------------------------------------------------- ! ! !ifndef PFI_VERBOSE ! !verbose 3 ! !endif ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Welcome ! # ! # The sequence \r\n\r\n inserts a blank line (note that the MUI_TEXT_WELCOME_INFO_TEXT string ! # should end with a \r\n\r\n sequence because another paragraph follows this string). ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_WELCOME_INFO_TEXT \ ! "Òîé ùå èíñòàëèðà POPFile íà âàøèÿ êîìïþòúð.\r\n\r\nÏðåïîðú÷âà ñå äà çàòâîðèòå âñè÷êè äðóãè ïðèëîæåíèÿ, ïðåäè äà ñòàðòèðàòå èíñòàëàöèÿòà.\r\n\r\n" ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - License Agreement ! #-------------------------------------------------------------------------- ! ! ; As of 27 June 2003, the NSIS MUI language file is not compatible with MUI 1.65 ! ; (this is a temporary (and crude) patch to allow installer to support the Bulgarian language) ! ! ; English text for MUI_INNERTEXT_LICENSE_BOTTOM_CHECKBOX: ! ;"If you accept the terms of the agreement, click the check box below. You must accept the agreement to install POPFile." ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_INNERTEXT_LICENSE_BOTTOM_CHECKBOX \ ! "Àêî ïðèåìàòå âñè÷êè óñëîâèÿ îò ñïîðàçóìåíèåòî, Èçáåðåòå 'Ñúãëàñåí', çà äà ïðîäúëæèòå. Òðÿáâà äà ïðèåìåòå ñïîðàçóìåíèåòî, çà äà èíñòàëèðàòå POPFile." ! ! ; English text for MUI_INNERTEXT_LICENSE_BOTTOM_RADIOBUTTONS: ! ;"If you accept the terms of the agreement, select the first option below. You must accept the agreement to install POPFile." ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_INNERTEXT_LICENSE_BOTTOM_RADIOBUTTONS \ ! "Àêî ïðèåìàòå âñè÷êè óñëîâèÿ îò ñïîðàçóìåíèåòî, Èçáåðåòå 'Ñúãëàñåí', çà äà ïðîäúëæèòå. Òðÿáâà äà ïðèåìåòå ñïîðàçóìåíèåòî, çà äà èíñòàëèðàòå POPFile." ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Finish ! # ! # The MUI_TEXT_FINISH_RUN text should be a short phrase (not a long paragraph) ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_FINISH_RUN \ ! "POPFile Ïîòðåáèòåëñêè èíòåðôåéñ" ! ! #-------------------------------------------------------------------------- ! # End of 'Bulgarian-mui.nsh' ! #-------------------------------------------------------------------------- --- 1,75 ---- ! #-------------------------------------------------------------------------- ! # Bulgarian-mui.nsh ! # ! # This file contains additional "Bulgarian" text strings used by the Windows installer ! # for POPFile (these strings are customised versions of strings provided by NSIS). ! # ! # See 'Bulgarian-pfi.nsh' for the strings which are used on the custom pages. ! # ! # These strings are grouped according to the page/window where they are used ! # ! # Copyright (c) 2001-2003 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 ! # ! #-------------------------------------------------------------------------- ! ! !ifndef PFI_VERBOSE ! !verbose 3 ! !endif ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Welcome ! # ! # The sequence \r\n\r\n inserts a blank line (note that the MUI_TEXT_WELCOME_INFO_TEXT string ! # should end with a \r\n\r\n sequence because another paragraph follows this string). ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_WELCOME_INFO_TEXT \ ! "Òîé ùå èíñòàëèðà POPFile íà âàøèÿ êîìïþòúð.\r\n\r\nÏðåïîðú÷âà ñå äà çàòâîðèòå âñè÷êè äðóãè ïðèëîæåíèÿ, ïðåäè äà ñòàðòèðàòå èíñòàëàöèÿòà.\r\n\r\n" ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - License Agreement ! #-------------------------------------------------------------------------- ! ! ; As of 27 June 2003, the NSIS MUI language file is not compatible with MUI 1.65 ! ; (this is a temporary (and crude) patch to allow installer to support the Bulgarian language) ! ! ; English text for MUI_INNERTEXT_LICENSE_BOTTOM_CHECKBOX: ! ;"If you accept the terms of the agreement, click the check box below. You must accept the agreement to install POPFile." ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_INNERTEXT_LICENSE_BOTTOM_CHECKBOX \ ! "Àêî ïðèåìàòå âñè÷êè óñëîâèÿ îò ñïîðàçóìåíèåòî, Èçáåðåòå 'Ñúãëàñåí', çà äà ïðîäúëæèòå. Òðÿáâà äà ïðèåìåòå ñïîðàçóìåíèåòî, çà äà èíñòàëèðàòå POPFile." ! ! ; English text for MUI_INNERTEXT_LICENSE_BOTTOM_RADIOBUTTONS: ! ;"If you accept the terms of the agreement, select the first option below. You must accept the agreement to install POPFile." ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_INNERTEXT_LICENSE_BOTTOM_RADIOBUTTONS \ ! "Àêî ïðèåìàòå âñè÷êè óñëîâèÿ îò ñïîðàçóìåíèåòî, Èçáåðåòå 'Ñúãëàñåí', çà äà ïðîäúëæèòå. Òðÿáâà äà ïðèåìåòå ñïîðàçóìåíèåòî, çà äà èíñòàëèðàòå POPFile." ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Finish ! # ! # The MUI_TEXT_FINISH_RUN text should be a short phrase (not a long paragraph) ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_FINISH_RUN \ ! "POPFile Ïîòðåáèòåëñêè èíòåðôåéñ" ! ! #-------------------------------------------------------------------------- ! # End of 'Bulgarian-mui.nsh' ! #-------------------------------------------------------------------------- Index: Czech-mui.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/Czech-mui.nsh,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Czech-mui.nsh 1 Aug 2003 00:30:28 -0000 1.2 --- Czech-mui.nsh 13 Sep 2003 20:25:16 -0000 1.3 *************** *** 1,56 **** ! #-------------------------------------------------------------------------- ! # Czech-mui.nsh ! # ! # This file contains additional "Czech" text strings used by the Windows installer ! # for POPFile (these strings are customised versions of strings provided by NSIS). ! # ! # See 'Czech-pfi.nsh' for the strings which are used on the custom pages. ! # ! # These strings are grouped according to the page/window where they are used ! # ! # Copyright (c) 2001-2003 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 ! # ! #-------------------------------------------------------------------------- ! ! !ifndef PFI_VERBOSE ! !verbose 3 ! !endif ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Welcome ! # ! # The sequence \r\n\r\n inserts a blank line (note that the MUI_TEXT_WELCOME_INFO_TEXT string ! # should end with a \r\n\r\n sequence because another paragraph follows this string). ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_WELCOME_INFO_TEXT \ ! "Chystáte se nainstalovat POPFile na svùj poèítaè.\r\n\r\nPøed zaèátkem instalace je doporuèeno zavøít vechny ostatní aplikace.\r\n\r\n" ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Finish ! # ! # The MUI_TEXT_FINISH_RUN text should be a short phrase (not a long paragraph) ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_FINISH_RUN \ ! "POPFile Uivatelské rozhraní" ! ! #-------------------------------------------------------------------------- ! # End of 'Czech-mui.nsh' ! #-------------------------------------------------------------------------- --- 1,56 ---- ! #-------------------------------------------------------------------------- ! # Czech-mui.nsh ! # ! # This file contains additional "Czech" text strings used by the Windows installer ! # for POPFile (these strings are customised versions of strings provided by NSIS). ! # ! # See 'Czech-pfi.nsh' for the strings which are used on the custom pages. ! # ! # These strings are grouped according to the page/window where they are used ! # ! # Copyright (c) 2001-2003 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 ! # ! #-------------------------------------------------------------------------- ! ! !ifndef PFI_VERBOSE ! !verbose 3 ! !endif ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Welcome ! # ! # The sequence \r\n\r\n inserts a blank line (note that the MUI_TEXT_WELCOME_INFO_TEXT string ! # should end with a \r\n\r\n sequence because another paragraph follows this string). ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_WELCOME_INFO_TEXT \ ! "Chystáte se nainstalovat POPFile na svùj poèítaè.\r\n\r\nPøed zaèátkem instalace je doporuèeno zavøít vechny ostatní aplikace.\r\n\r\n" ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Finish ! # ! # The MUI_TEXT_FINISH_RUN text should be a short phrase (not a long paragraph) ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_FINISH_RUN \ ! "POPFile Uivatelské rozhraní" ! ! #-------------------------------------------------------------------------- ! # End of 'Czech-mui.nsh' ! #-------------------------------------------------------------------------- Index: Danish-mui.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/Danish-mui.nsh,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Danish-mui.nsh 1 Aug 2003 00:30:29 -0000 1.4 --- Danish-mui.nsh 13 Sep 2003 20:25:16 -0000 1.5 *************** *** 1,75 **** ! #-------------------------------------------------------------------------- ! # Danish-mui.nsh ! # ! # This file contains additional "Danish" text strings used by the Windows installer ! # for POPFile (these strings are customised versions of strings provided by NSIS). ! # ! # See 'Danish-pfi.nsh' for the strings which are used on the custom pages. ! # ! # These strings are grouped according to the page/window where they are used ! # ! # Copyright (c) 2001-2003 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 ! # ! #-------------------------------------------------------------------------- ! ! !ifndef PFI_VERBOSE ! !verbose 3 ! !endif ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Welcome ! # ! # The sequence \r\n\r\n inserts a blank line (note that the MUI_TEXT_WELCOME_INFO_TEXT string ! # should end with a \r\n\r\n sequence because another paragraph follows this string). ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_WELCOME_INFO_TEXT \ ! "Dette vil installere POPFile på din computer.\r\n\r\ndet foretrækkes at du lukker alle kørende programmer inden start af guiden.\r\n\r\n" ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - License Agreement ! #-------------------------------------------------------------------------- ! ! ; As of 27 June2003, the NSIS MUI language file is not compatible with MUI 1.65 ! ; (this is a temporary (and crude) patch to allow installer to support the Danish language) ! ! ; English text for MUI_INNERTEXT_LICENSE_BOTTOM_CHECKBOX: ! ;"If you accept the terms of the agreement, click the check box below. You must accept the agreement to install POPFile." ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_INNERTEXT_LICENSE_BOTTOM_CHECKBOX \ ! "hvis du accepterer alle reglerne, klik Jeg accepterer for at komme videre. Du skal acceptere reglerne for at komme videre POPFile." ! ! ; English text for MUI_INNERTEXT_LICENSE_BOTTOM_RADIOBUTTONS: ! ;"If you accept the terms of the agreement, select the first option below. You must accept the agreement to install POPFile." ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_INNERTEXT_LICENSE_BOTTOM_RADIOBUTTONS \ ! "hvis du accepterer alle reglerne, klik Jeg accepterer for at komme videre. Du skal acceptere reglerne for at komme videre POPFile." ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Finish ! # ! # The MUI_TEXT_FINISH_RUN text should be a short phrase (not a long paragraph) ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_FINISH_RUN \ ! "POPFile Kontrolcenter" ! ! #-------------------------------------------------------------------------- ! # End of 'Danish-mui.nsh' ! #-------------------------------------------------------------------------- --- 1,75 ---- ! #-------------------------------------------------------------------------- ! # Danish-mui.nsh ! # ! # This file contains additional "Danish" text strings used by the Windows installer ! # for POPFile (these strings are customised versions of strings provided by NSIS). ! # ! # See 'Danish-pfi.nsh' for the strings which are used on the custom pages. ! # ! # These strings are grouped according to the page/window where they are used ! # ! # Copyright (c) 2001-2003 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 ! # ! #-------------------------------------------------------------------------- ! ! !ifndef PFI_VERBOSE ! !verbose 3 ! !endif ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Welcome ! # ! # The sequence \r\n\r\n inserts a blank line (note that the MUI_TEXT_WELCOME_INFO_TEXT string ! # should end with a \r\n\r\n sequence because another paragraph follows this string). ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_WELCOME_INFO_TEXT \ ! "Dette vil installere POPFile på din computer.\r\n\r\ndet foretrækkes at du lukker alle kørende programmer inden start af guiden.\r\n\r\n" ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - License Agreement ! #-------------------------------------------------------------------------- ! ! ; As of 27 June2003, the NSIS MUI language file is not compatible with MUI 1.65 ! ; (this is a temporary (and crude) patch to allow installer to support the Danish language) ! ! ; English text for MUI_INNERTEXT_LICENSE_BOTTOM_CHECKBOX: ! ;"If you accept the terms of the agreement, click the check box below. You must accept the agreement to install POPFile." ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_INNERTEXT_LICENSE_BOTTOM_CHECKBOX \ ! "hvis du accepterer alle reglerne, klik Jeg accepterer for at komme videre. Du skal acceptere reglerne for at komme videre POPFile." ! ! ; English text for MUI_INNERTEXT_LICENSE_BOTTOM_RADIOBUTTONS: ! ;"If you accept the terms of the agreement, select the first option below. You must accept the agreement to install POPFile." ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_INNERTEXT_LICENSE_BOTTOM_RADIOBUTTONS \ ! "hvis du accepterer alle reglerne, klik Jeg accepterer for at komme videre. Du skal acceptere reglerne for at komme videre POPFile." ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Finish ! # ! # The MUI_TEXT_FINISH_RUN text should be a short phrase (not a long paragraph) ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_FINISH_RUN \ ! "POPFile Kontrolcenter" ! ! #-------------------------------------------------------------------------- ! # End of 'Danish-mui.nsh' ! #-------------------------------------------------------------------------- Index: Dutch-mui.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/Dutch-mui.nsh,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Dutch-mui.nsh 1 Aug 2003 00:30:29 -0000 1.3 --- Dutch-mui.nsh 13 Sep 2003 20:25:16 -0000 1.4 *************** *** 1,56 **** ! #-------------------------------------------------------------------------- ! # Dutch-mui.nsh ! # ! # This file contains additional "Dutch" text strings used by the Windows installer ! # for POPFile (these strings are customised versions of strings provided by NSIS). ! # ! # See 'Dutch-pfi.nsh' for the strings which are used on the custom pages. ! # ! # These strings are grouped according to the page/window where they are used ! # ! # Copyright (c) 2001-2003 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 ! # ! #-------------------------------------------------------------------------- ! ! !ifndef PFI_VERBOSE ! !verbose 3 ! !endif ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Welcome ! # ! # The sequence \r\n\r\n inserts a blank line (note that the MUI_TEXT_WELCOME_INFO_TEXT string ! # should end with a \r\n\r\n sequence because another paragraph follows this string). ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_WELCOME_INFO_TEXT \ ! "Deze wizard zal POPFile op uw systeem installeren.\r\n\r\nHet is aanbevolen dat u alle andere programma's afsluit voordat u Setup start.\r\n\r\n" ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Finish ! # ! # The MUI_TEXT_FINISH_RUN text should be a short phrase (not a long paragraph) ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_FINISH_RUN \ ! "POPFile Gebruikers Interface" ! ! #-------------------------------------------------------------------------- ! # End of 'Dutch-mui.nsh' ! #-------------------------------------------------------------------------- --- 1,56 ---- ! #-------------------------------------------------------------------------- ! # Dutch-mui.nsh ! # ! # This file contains additional "Dutch" text strings used by the Windows installer ! # for POPFile (these strings are customised versions of strings provided by NSIS). ! # ! # See 'Dutch-pfi.nsh' for the strings which are used on the custom pages. ! # ! # These strings are grouped according to the page/window where they are used ! # ! # Copyright (c) 2001-2003 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 ! # ! #-------------------------------------------------------------------------- ! ! !ifndef PFI_VERBOSE ! !verbose 3 ! !endif ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Welcome ! # ! # The sequence \r\n\r\n inserts a blank line (note that the MUI_TEXT_WELCOME_INFO_TEXT string ! # should end with a \r\n\r\n sequence because another paragraph follows this string). ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_WELCOME_INFO_TEXT \ ! "Deze wizard zal POPFile op uw systeem installeren.\r\n\r\nHet is aanbevolen dat u alle andere programma's afsluit voordat u Setup start.\r\n\r\n" ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Finish ! # ! # The MUI_TEXT_FINISH_RUN text should be a short phrase (not a long paragraph) ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_FINISH_RUN \ ! "POPFile Gebruikers Interface" ! ! #-------------------------------------------------------------------------- ! # End of 'Dutch-mui.nsh' ! #-------------------------------------------------------------------------- Index: English-mui.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/English-mui.nsh,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** English-mui.nsh 13 Sep 2003 16:36:00 -0000 1.4 --- English-mui.nsh 13 Sep 2003 20:25:16 -0000 1.5 *************** *** 1,56 **** ! #-------------------------------------------------------------------------- ! # English-mui.nsh ! # ! # This file contains additional "English" text strings used by the Windows installer ! # for POPFile (these strings are customised versions of strings provided by NSIS). ! # ! # See 'English-pfi.nsh' for the strings which are used on the custom pages. ! # ! # These strings are grouped according to the page/window where they are used ! # ! # Copyright (c) 2001-2003 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 ! # ! #-------------------------------------------------------------------------- ! ! !ifndef PFI_VERBOSE ! !verbose 3 ! !endif ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Welcome ! # ! # The sequence \r\n\r\n inserts a blank line (note that the MUI_TEXT_WELCOME_INFO_TEXT string ! # should end with a \r\n\r\n sequence because another paragraph follows this string). ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_WELCOME_INFO_TEXT \ ! "This wizard will guide you through the installation of POPFile.\r\n\r\nIt is recommended that you close all other applications before starting Setup.\r\n\r\n" ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Finish ! # ! # The MUI_TEXT_FINISH_RUN text should be a short phrase (not a long paragraph) ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_FINISH_RUN \ ! "POPFile User Interface" ! ! #-------------------------------------------------------------------------- ! # End of 'English-mui.nsh' ! #-------------------------------------------------------------------------- --- 1,56 ---- ! #-------------------------------------------------------------------------- ! # English-mui.nsh ! # ! # This file contains additional "English" text strings used by the Windows installer ! # for POPFile (these strings are customised versions of strings provided by NSIS). ! # ! # See 'English-pfi.nsh' for the strings which are used on the custom pages. ! # ! # These strings are grouped according to the page/window where they are used ! # ! # Copyright (c) 2001-2003 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 ! # ! #-------------------------------------------------------------------------- ! ! !ifndef PFI_VERBOSE ! !verbose 3 ! !endif ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Welcome ! # ! # The sequence \r\n\r\n inserts a blank line (note that the MUI_TEXT_WELCOME_INFO_TEXT string ! # should end with a \r\n\r\n sequence because another paragraph follows this string). ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_WELCOME_INFO_TEXT \ ! "This wizard will guide you through the installation of POPFile.\r\n\r\nIt is recommended that you close all other applications before starting Setup.\r\n\r\n" ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Finish ! # ! # The MUI_TEXT_FINISH_RUN text should be a short phrase (not a long paragraph) ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_FINISH_RUN \ ! "POPFile User Interface" ! ! #-------------------------------------------------------------------------- ! # End of 'English-mui.nsh' ! #-------------------------------------------------------------------------- Index: Finnish-mui.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/Finnish-mui.nsh,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Finnish-mui.nsh 1 Aug 2003 00:30:29 -0000 1.6 --- Finnish-mui.nsh 13 Sep 2003 20:25:16 -0000 1.7 *************** *** 1,75 **** ! #-------------------------------------------------------------------------- ! # Finnish-mui.nsh ! # ! # This file contains additional "Finnish" text strings used by the Windows installer ! # for POPFile (these strings are customised versions of strings provided by NSIS). ! # ! # See 'Finnish-pfi.nsh' for the strings which are used on the custom pages. ! # ! # These strings are grouped according to the page/window where they are used ! # ! # Copyright (c) 2001-2003 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 ! # ! #-------------------------------------------------------------------------- ! ! !ifndef PFI_VERBOSE ! !verbose 3 ! !endif ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Welcome ! # ! # The sequence \r\n\r\n inserts a blank line (note that the MUI_TEXT_WELCOME_INFO_TEXT string ! # should end with a \r\n\r\n sequence because another paragraph follows this string). ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_WELCOME_INFO_TEXT \ ! "Tämä avustaja ohjaa sinut ohjelman POPFile asennuksen läpi.\r\n\r\nOn suositeltavaa sulkea kaikki muut ohjelmat ennen Asennuksen käynnistämistä, sillä silloin Asennus voi päivittää tiettyjä järjestelmätiedostoja käynnistämättä konetta uudelleen.\r\n\r\n" ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - License Agreement ! #-------------------------------------------------------------------------- ! ! ; As of 27 June 2003, the NSIS MUI language file is not compatible with MUI 1.65 ! ; (this is a temporary (and crude) patch to allow installer to support the Finnish language) ! ! ; English text for MUI_INNERTEXT_LICENSE_BOTTOM_CHECKBOX: ! ;"If you accept the terms of the agreement, click the check box below. You must accept the agreement to install POPFile." ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_INNERTEXT_LICENSE_BOTTOM_CHECKBOX \ ! "Jos hyväksyt kaikki ehdot, valitse Hyväksyn jatkaaksesi. Sinun pitää hyväksyä ehdot asentaaksesi ohjelman POPFile." ! ! ; English text for MUI_INNERTEXT_LICENSE_BOTTOM_RADIOBUTTONS: ! ;"If you accept the terms of the agreement, select the first option below. You must accept the agreement to install POPFile." ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_INNERTEXT_LICENSE_BOTTOM_RADIOBUTTONS \ ! "Jos hyväksyt kaikki ehdot, valitse Hyväksyn jatkaaksesi. Sinun pitää hyväksyä ehdot asentaaksesi ohjelman POPFile." ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Finish ! # ! # The MUI_TEXT_FINISH_RUN text should be a short phrase (not a long paragraph) ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_FINISH_RUN \ ! "POPFile User Interface" ! ! #-------------------------------------------------------------------------- ! # End of 'Finnish-mui.nsh' ! #-------------------------------------------------------------------------- --- 1,75 ---- ! #-------------------------------------------------------------------------- ! # Finnish-mui.nsh ! # ! # This file contains additional "Finnish" text strings used by the Windows installer ! # for POPFile (these strings are customised versions of strings provided by NSIS). ! # ! # See 'Finnish-pfi.nsh' for the strings which are used on the custom pages. ! # ! # These strings are grouped according to the page/window where they are used ! # ! # Copyright (c) 2001-2003 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 ! # ! #-------------------------------------------------------------------------- ! ! !ifndef PFI_VERBOSE ! !verbose 3 ! !endif ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Welcome ! # ! # The sequence \r\n\r\n inserts a blank line (note that the MUI_TEXT_WELCOME_INFO_TEXT string ! # should end with a \r\n\r\n sequence because another paragraph follows this string). ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_WELCOME_INFO_TEXT \ ! "Tämä avustaja ohjaa sinut ohjelman POPFile asennuksen läpi.\r\n\r\nOn suositeltavaa sulkea kaikki muut ohjelmat ennen Asennuksen käynnistämistä, sillä silloin Asennus voi päivittää tiettyjä järjestelmätiedostoja käynnistämättä konetta uudelleen.\r\n\r\n" ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - License Agreement ! #-------------------------------------------------------------------------- ! ! ; As of 27 June 2003, the NSIS MUI language file is not compatible with MUI 1.65 ! ; (this is a temporary (and crude) patch to allow installer to support the Finnish language) ! ! ; English text for MUI_INNERTEXT_LICENSE_BOTTOM_CHECKBOX: ! ;"If you accept the terms of the agreement, click the check box below. You must accept the agreement to install POPFile." ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_INNERTEXT_LICENSE_BOTTOM_CHECKBOX \ ! "Jos hyväksyt kaikki ehdot, valitse Hyväksyn jatkaaksesi. Sinun pitää hyväksyä ehdot asentaaksesi ohjelman POPFile." ! ! ; English text for MUI_INNERTEXT_LICENSE_BOTTOM_RADIOBUTTONS: ! ;"If you accept the terms of the agreement, select the first option below. You must accept the agreement to install POPFile." ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_INNERTEXT_LICENSE_BOTTOM_RADIOBUTTONS \ ! "Jos hyväksyt kaikki ehdot, valitse Hyväksyn jatkaaksesi. Sinun pitää hyväksyä ehdot asentaaksesi ohjelman POPFile." ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Finish ! # ! # The MUI_TEXT_FINISH_RUN text should be a short phrase (not a long paragraph) ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_FINISH_RUN \ ! "POPFile User Interface" ! ! #-------------------------------------------------------------------------- ! # End of 'Finnish-mui.nsh' ! #-------------------------------------------------------------------------- Index: French-mui.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/French-mui.nsh,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** French-mui.nsh 1 Aug 2003 00:30:29 -0000 1.3 --- French-mui.nsh 13 Sep 2003 20:25:16 -0000 1.4 *************** *** 1,56 **** ! #-------------------------------------------------------------------------- ! # French-mui.nsh ! # ! # This file contains additional "French" text strings used by the Windows installer ! # for POPFile (these strings are customised versions of strings provided by NSIS). ! # ! # See 'French-pfi.nsh' for the strings which are used on the custom pages. ! # ! # These strings are grouped according to the page/window where they are used ! # ! # Copyright (c) 2001-2003 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 ! # ! #-------------------------------------------------------------------------- ! ! !ifndef PFI_VERBOSE ! !verbose 3 ! !endif ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Welcome ! # ! # The sequence \r\n\r\n inserts a blank line (note that the MUI_TEXT_WELCOME_INFO_TEXT string ! # should end with a \r\n\r\n sequence because another paragraph follows this string). ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_WELCOME_INFO_TEXT \ ! "Vous êtes sur le point d'installer POPFile sur votre ordinateur.\r\n\r\nAvant de débuter l'installation, il est recommandé de fermer toutes les autres applications.\r\n\r\n" ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Finish ! # ! # The MUI_TEXT_FINISH_RUN text should be a short phrase (not a long paragraph) ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_FINISH_RUN \ ! "POPFile Interface Utilisateur" ! ! #-------------------------------------------------------------------------- ! # End of 'French-mui.nsh' ! #-------------------------------------------------------------------------- --- 1,56 ---- ! #-------------------------------------------------------------------------- ! # French-mui.nsh ! # ! # This file contains additional "French" text strings used by the Windows installer ! # for POPFile (these strings are customised versions of strings provided by NSIS). ! # ! # See 'French-pfi.nsh' for the strings which are used on the custom pages. ! # ! # These strings are grouped according to the page/window where they are used ! # ! # Copyright (c) 2001-2003 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 ! # ! #-------------------------------------------------------------------------- ! ! !ifndef PFI_VERBOSE ! !verbose 3 ! !endif ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Welcome ! # ! # The sequence \r\n\r\n inserts a blank line (note that the MUI_TEXT_WELCOME_INFO_TEXT string ! # should end with a \r\n\r\n sequence because another paragraph follows this string). ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_WELCOME_INFO_TEXT \ ! "Vous êtes sur le point d'installer POPFile sur votre ordinateur.\r\n\r\nAvant de débuter l'installation, il est recommandé de fermer toutes les autres applications.\r\n\r\n" ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Finish ! # ! # The MUI_TEXT_FINISH_RUN text should be a short phrase (not a long paragraph) ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_FINISH_RUN \ ! "POPFile Interface Utilisateur" ! ! #-------------------------------------------------------------------------- ! # End of 'French-mui.nsh' ! #-------------------------------------------------------------------------- Index: German-mui.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/German-mui.nsh,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** German-mui.nsh 13 Sep 2003 16:36:00 -0000 1.4 --- German-mui.nsh 13 Sep 2003 20:25:16 -0000 1.5 *************** *** 1,56 **** ! #-------------------------------------------------------------------------- ! # German-mui.nsh ! # ! # This file contains additional "German" text strings used by the Windows installer ! # for POPFile (these strings are customised versions of strings provided by NSIS). ! # ! # See 'German-pfi.nsh' for the strings which are used on the custom pages. ! # ! # These strings are grouped according to the page/window where they are used ! # ! # Copyright (c) 2001-2003 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 ! # ! #-------------------------------------------------------------------------- ! ! !ifndef PFI_VERBOSE ! !verbose 3 ! !endif ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Welcome ! # ! # The sequence \r\n\r\n inserts a blank line (note that the MUI_TEXT_WELCOME_INFO_TEXT string ! # should end with a \r\n\r\n sequence because another paragraph follows this string). ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_WELCOME_INFO_TEXT \ ! "Dieser Assistent wird Sie durch die Installation von POPFile begleiten.\r\n\r\nEs wird empfohlen vor der Installation alle anderen Programme zu schließen.\r\n\r\n" ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Finish ! # ! # The MUI_TEXT_FINISH_RUN text should be a short phrase (not a long paragraph) ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_FINISH_RUN \ ! "POPFile Benutzeroberfläche" ! ! #-------------------------------------------------------------------------- ! # End of 'German-mui.nsh' ! #-------------------------------------------------------------------------- --- 1,56 ---- ! #-------------------------------------------------------------------------- ! # German-mui.nsh ! # ! # This file contains additional "German" text strings used by the Windows installer ! # for POPFile (these strings are customised versions of strings provided by NSIS). ! # ! # See 'German-pfi.nsh' for the strings which are used on the custom pages. ! # ! # These strings are grouped according to the page/window where they are used ! # ! # Copyright (c) 2001-2003 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 ! # ! #-------------------------------------------------------------------------- ! ! !ifndef PFI_VERBOSE ! !verbose 3 ! !endif ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Welcome ! # ! # The sequence \r\n\r\n inserts a blank line (note that the MUI_TEXT_WELCOME_INFO_TEXT string ! # should end with a \r\n\r\n sequence because another paragraph follows this string). ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_WELCOME_INFO_TEXT \ ! "Dieser Assistent wird Sie durch die Installation von POPFile begleiten.\r\n\r\nEs wird empfohlen vor der Installation alle anderen Programme zu schließen.\r\n\r\n" ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Finish ! # ! # The MUI_TEXT_FINISH_RUN text should be a short phrase (not a long paragraph) ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_FINISH_RUN \ ! "POPFile Benutzeroberfläche" ! ! #-------------------------------------------------------------------------- ! # End of 'German-mui.nsh' ! #-------------------------------------------------------------------------- Index: Hungarian-mui.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/Hungarian-mui.nsh,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Hungarian-mui.nsh 1 Aug 2003 00:30:29 -0000 1.3 --- Hungarian-mui.nsh 13 Sep 2003 20:25:16 -0000 1.4 *************** *** 1,56 **** ! #-------------------------------------------------------------------------- ! # Hungarian-mui.nsh ! # ! # This file contains additional "Hungarian" text strings used by the Windows installer ! # for POPFile (these strings are customised versions of strings provided by NSIS). ! # ! # See 'Hungarian-pfi.nsh' for the strings which are used on the custom pages. ! # ! # These strings are grouped according to the page/window where they are used ! # ! # Copyright (c) 2001-2003 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 ! # ! #-------------------------------------------------------------------------- ! ! !ifndef PFI_VERBOSE ! !verbose 3 ! !endif ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Welcome ! # ! # The sequence \r\n\r\n inserts a blank line (note that the MUI_TEXT_WELCOME_INFO_TEXT string ! # should end with a \r\n\r\n sequence because another paragraph follows this string). ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_WELCOME_INFO_TEXT \ ! "A(z) POPFile telepítése következik a számítógépre.\r\n\r\nJavasoljuk, hogy indítás elõtt zárja be a futó alkalmazásokat. Így a telepítõ a rendszer újraindítása nélkül tudja frissíteni a szükséges rendszerfájlokat.\r\n\r\n" ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Finish ! # ! # The MUI_TEXT_FINISH_RUN text should be a short phrase (not a long paragraph) ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_FINISH_RUN \ ! "POPFile Felhasználói felület" ! ! #-------------------------------------------------------------------------- ! # End of 'Hungarian-mui.nsh' ! #-------------------------------------------------------------------------- --- 1,56 ---- ! #-------------------------------------------------------------------------- ! # Hungarian-mui.nsh ! # ! # This file contains additional "Hungarian" text strings used by the Windows installer ! # for POPFile (these strings are customised versions of strings provided by NSIS). ! # ! # See 'Hungarian-pfi.nsh' for the strings which are used on the custom pages. ! # ! # These strings are grouped according to the page/window where they are used ! # ! # Copyright (c) 2001-2003 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 ! # ! #-------------------------------------------------------------------------- ! ! !ifndef PFI_VERBOSE ! !verbose 3 ! !endif ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Welcome ! # ! # The sequence \r\n\r\n inserts a blank line (note that the MUI_TEXT_WELCOME_INFO_TEXT string ! # should end with a \r\n\r\n sequence because another paragraph follows this string). ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_WELCOME_INFO_TEXT \ ! "A(z) POPFile telepítése következik a számítógépre.\r\n\r\nJavasoljuk, hogy indítás elõtt zárja be a futó alkalmazásokat. Így a telepítõ a rendszer újraindítása nélkül tudja frissíteni a szükséges rendszerfájlokat.\r\n\r\n" ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Finish ! # ! # The MUI_TEXT_FINISH_RUN text should be a short phrase (not a long paragraph) ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_FINISH_RUN \ ! "POPFile Felhasználói felület" ! ! #-------------------------------------------------------------------------- ! # End of 'Hungarian-mui.nsh' ! #-------------------------------------------------------------------------- Index: Japanese-mui.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/Japanese-mui.nsh,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Japanese-mui.nsh 18 Aug 2003 11:57:13 -0000 1.5 --- Japanese-mui.nsh 13 Sep 2003 20:25:16 -0000 1.6 *************** *** 1,56 **** ! #-------------------------------------------------------------------------- ! # Japanese-mui.nsh ! # ! # This file contains additional "Japanese" text strings used by the Windows installer ! # for POPFile (these strings are customised versions of strings provided by NSIS). ! # ! # See 'Japanese-pfi.nsh' for the strings which are used on the custom pages. ! # ! # These strings are grouped according to the page/window where they are used ! # ! # Copyright (c) 2001-2003 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 ! # ! #-------------------------------------------------------------------------- ! ! !ifndef PFI_VERBOSE ! !verbose 3 ! !endif ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Welcome ! # ! # The sequence \r\n\r\n inserts a blank line (note that the MUI_TEXT_WELCOME_INFO_TEXT string ! # should end with a \r\n\r\n sequence because another paragraph follows this string). ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_WELCOME_INFO_TEXT \ ! "±ÌEBU[hÍAPOPFile ÌCXg[ðKChµÄ¢«Ü·B\r\n\r\nZbgAbvðJn·éOÉA¼Ì·×ÄÌAvP[VðI¹·é±Æð§µÜ·B\r\n\r\n" ! ! #-------------------------------------------------------------------------- ! # Standard MUI Page - Finish ! # ! # The MUI_TEXT_FINISH_RUN text should be a short phrase (not a long paragraph) ! #-------------------------------------------------------------------------- ! ! !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_FINISH_RUN \ ! "POPFile [U[C^[tF[X" ! ! #-------------------------------------------------------------------------- ! # End of 'Japanese-mui.nsh' ! #-------------------------------------------------------------------------- --- 1,56 ---- ! #-------------------------------------------------------------------------- ! # Japanese-mui.nsh ! # ! # This file contains additional "Japanese" text strings used by the Windows installer ! # for POPFile (these strings are customised versions of strings provided by NSIS). ! # ! # See 'Japanese-pfi.nsh' for the stri... [truncated message content] |
|
From: <xue...@us...> - 2003-09-13 17:32:10
|
Update of /cvsroot/popfile/windows
In directory sc8-pr-cvs1:/tmp/cvs-serv9633
Modified Files:
installer.nsi
Log Message:
Add support for Greek (a recent addition to the list of UI languages).
Index: installer.nsi
===================================================================
RCS file: /cvsroot/popfile/windows/installer.nsi,v
retrieving revision 1.112
retrieving revision 1.113
diff -C2 -d -r1.112 -r1.113
*** installer.nsi 13 Sep 2003 11:35:30 -0000 1.112
--- installer.nsi 13 Sep 2003 17:32:07 -0000 1.113
***************
*** 392,395 ****
--- 392,396 ----
!insertmacro PFI_LANG_LOAD "Spanish"
!insertmacro PFI_LANG_LOAD "French"
+ !insertmacro PFI_LANG_LOAD "Greek"
!insertmacro PFI_LANG_LOAD "Japanese"
!insertmacro PFI_LANG_LOAD "Korean"
***************
*** 895,898 ****
--- 896,900 ----
!insertmacro UI_LANG_CONFIG "SPANISH" "Español"
!insertmacro UI_LANG_CONFIG "FRENCH" "Francais"
+ !insertmacro UI_LANG_CONFIG "GREEK" "Hellenic"
!insertmacro UI_LANG_CONFIG "JAPANESE" "Nihongo"
!insertmacro UI_LANG_CONFIG "KOREAN" "Korean"
|
|
From: <xue...@us...> - 2003-09-13 17:30:12
|
Update of /cvsroot/popfile/windows/languages In directory sc8-pr-cvs1:/tmp/cvs-serv9179 Added Files: Greek-mui.nsh Greek-pfi.nsh Log Message: Add support for Greek (a recent addition to the list of UI languages). --- NEW FILE: Greek-mui.nsh --- #-------------------------------------------------------------------------- # Greek-mui.nsh # # This file contains additional "Greek" text strings used by the Windows installer # for POPFile (these strings are customised versions of strings provided by NSIS). # # See 'Greek-pfi.nsh' for the strings which are used on the custom pages. # # These strings are grouped according to the page/window where they are used # # Copyright (c) 2001-2003 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 # #-------------------------------------------------------------------------- !ifndef PFI_VERBOSE !verbose 3 !endif #-------------------------------------------------------------------------- # Standard MUI Page - Welcome # # The sequence \r\n\r\n inserts a blank line (note that the MUI_TEXT_WELCOME_INFO_TEXT string # should end with a \r\n\r\n sequence because another paragraph follows this string). #-------------------------------------------------------------------------- !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_WELCOME_INFO_TEXT \ "Ï ïäçãüò áõôüò èá óáò êáèïäçãÞóåé êáôÜ ôç äéÜñêåéá ôçò åãêáôÜóôáóçò ôïõ 'POPFile'.\r\n\r\nÓõíéóôÜôáé íá êëåßóåôå üëåò ôéò Üëëåò åöáñìïãÝò ðñéí îåêéíÞóåôå ôçí ÅãêáôÜóôáóç.\r\n\r\n" #-------------------------------------------------------------------------- # Standard MUI Page - Finish # # The MUI_TEXT_FINISH_RUN text should be a short phrase (not a long paragraph) #-------------------------------------------------------------------------- !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_FINISH_RUN \ "ÅðéöÜíåéá ÅëÝã÷ïõ POPFile" #-------------------------------------------------------------------------- # End of 'Greek-mui.nsh' #-------------------------------------------------------------------------- --- NEW FILE: Greek-pfi.nsh --- #-------------------------------------------------------------------------- # Greek-pfi.nsh # # This file contains additional "Greek" text strings used by the Windows installer # for POPFile (these strings are unique to POPFile). # # See 'Greek-mui.nsh' for the strings which modify standard NSIS MUI messages. # # These strings are grouped according to the page/window where they are used # # Copyright (c) 2001-2003 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 # #-------------------------------------------------------------------------- # String Formatting (applies to PFI_LANG_*_MB* text used for message boxes): # # (1) The sequence $\r$\n inserts a newline # (2) The sequence $\r$\n$\r\$n 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 \r\n inserts a newline # (2) The sequence \r\n\r\n 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) #-------------------------------------------------------------------------- !ifndef PFI_VERBOSE !verbose 3 !endif #-------------------------------------------------------------------------- # Mark the start of the language data #-------------------------------------------------------------------------- !define PFI_LANG "GREEK" #-------------------------------------------------------------------------- # Startup message box offering to display the Release Notes #-------------------------------------------------------------------------- !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)" #-------------------------------------------------------------------------- # Standard MUI Page - Choose Components #-------------------------------------------------------------------------- !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." #-------------------------------------------------------------------------- # Custom Page - POPFile Installation Options #-------------------------------------------------------------------------- ; 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 (runs in background)" !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_IO_WARNING "IMPORTANT WARNING" !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_IO_MESSAGE "IF UPGRADING POPFILE --- INSTALLER WILL SHUTDOWN EXISTING VERSION" ; Message Boxes used when validating user's selections !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBUNINST_1 "Previous installation found at" !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBUNINST_2 "Do you want to uninstall it ?" !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBUNINST_3 "'Yes' recommended" !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBPOP3_1 "The POP3 port cannot be set to" !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBPOP3_2 "The port must be a number in the range 1 to 65535." !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBPOP3_3 "Please change your POP3 port selection." !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBGUI_1 "The 'User Interface' port cannot be set to" !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBGUI_2 "The port must be a number in the range 1 to 65535." !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_MBGUI_3 "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." ; Banner message displayed whilst uninstalling old version !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_BANNER_1 "Please be patient." !insertmacro PFI_LANG_STRING PFI_LANG_OPTIONS_BANNER_2 "This may take a few seconds..." #-------------------------------------------------------------------------- # Standard MUI Page - Installing POPfile #-------------------------------------------------------------------------- ; Installation Progress Reports displayed above the progress bar !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_UPGRADE "Checking if this is an upgrade installation..." !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_SHORT "Creating POPFile shortcuts..." !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_SKINS "Installing POPFile skin files..." !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_LANGS "Installing POPFile UI language files..." !insertmacro PFI_LANG_STRING PFI_LANG_INST_PROG_ENDSEC "ÊÜíôå êëéê óôï Åðüìåíï ãéá íá óõíå÷ßóåôå" ; Installation Log Messages !insertmacro PFI_LANG_STRING PFI_LANG_INST_LOG_1 "Shutting down previous version of POPFile using port" ; Message Box text strings !insertmacro PFI_LANG_STRING PFI_LANG_MBSTPWDS_1 "file from previous installation found." !insertmacro PFI_LANG_STRING PFI_LANG_MBSTPWDS_2 "OK to update this file ?" !insertmacro PFI_LANG_STRING PFI_LANG_MBSTPWDS_3 "Click 'Yes' to update it (old file will be saved as" !insertmacro PFI_LANG_STRING PFI_LANG_MBSTPWDS_4 "Click 'No' to keep the old file (new file will saved as" !insertmacro PFI_LANG_STRING PFI_LANG_MBCFGBK_1 "Backup copy of" !insertmacro PFI_LANG_STRING PFI_LANG_MBCFGBK_2 "already exists" !insertmacro PFI_LANG_STRING PFI_LANG_MBCFGBK_3 "OK to overwrite this file?" !insertmacro PFI_LANG_STRING PFI_LANG_MBCFGBK_4 "Click 'Yes' to overwrite, click 'No' to skip making a backup copy" #-------------------------------------------------------------------------- # Custom Page - POPFile Classification Bucket Creation #-------------------------------------------------------------------------- ; 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.\r\n\r\nBucket 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 "ÁðáëïéöÞ" !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_1 "There is no need to add more buckets" !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_MSG_2 "You must define AT LEAST TWO buckets" !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_MSG_3 "At least one more bucket is required" !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_MSG_4 "Installer cannot create more than" !insertmacro PFI_LANG_STRING PFI_LANG_CBP_IO_MSG_5 "buckets" ; Message box text strings !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDUPERR_1 "A bucket called" !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDUPERR_2 "has already been defined." !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDUPERR_3 "Please choose a different name for the new bucket." !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAXERR_1 "The installer can only create up to" !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAXERR_2 "buckets." !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAXERR_3 "Once POPFile has been installed you can create more than" !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBNAMERR_1 "The name" !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBNAMERR_2 "is not a valid name for a bucket." !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBNAMERR_3 "Ôá ïíüìáôá ôùí áñ÷åßùí ìðïñïýí íá ðåñéÝ÷ïõí ìüíï ôá ðåæÜ áããëéêÜ ãñÜììáôá a Ýùò z, ôïõò áñéèìïýò 0 åùò 9, êáé ôïõò ÷áñáêôÞñåò - êáé _" !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBNAMERR_4 "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,$\r$\n$\r$\neither by picking a suggested name from the drop-down list$\r$\n$\r$\nor 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_1 "buckets have been defined for use by POPFile." !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDONE_2 "Do you want to configure POPFile to use these buckets?" !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBDONE_3 "Click 'No' if you wish to change your bucket selections." !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAKERR_1 "The installer was unable to create" !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAKERR_2 "of the" !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAKERR_3 "buckets you selected." !insertmacro PFI_LANG_STRING PFI_LANG_CBP_MBMAKERR_4 "Once POPFile has been installed you can use its 'User Interface'$\r$\n$\r$\ncontrol panel to create the missing bucket(s)." #-------------------------------------------------------------------------- # Custom Page - Reconfigure Outlook Express #-------------------------------------------------------------------------- ; Page Title and Sub-title displayed in the page header !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_TITLE "Reconfigure Outlook Express" !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_SUBTITLE "POPFile can reconfigure Outlook Express for you" ; Text displayed on the custom page !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_INTRO "POPFile has detected the following Outlook Express email account and can automatically configure it to work with POPFile" !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_CHECKBOX "Reconfigure this account to work with POPFile" !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_EMAIL "Email address:" !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_SERVER "POP3 server:" !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_USERNAME "POP3 username:" !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_RESTORE "If you uninstall POPFile the original settings will be restored" !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_LINK_1 "account for the" !insertmacro PFI_LANG_STRING PFI_LANG_OECFG_IO_LINK_2 "identity" #-------------------------------------------------------------------------- # Custom Page - POPFile can now be started #-------------------------------------------------------------------------- ; 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_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..." #-------------------------------------------------------------------------- # Standard MUI Page - Uninstall POPFile #-------------------------------------------------------------------------- ; Uninstall Progress Reports displayed above the progress bar !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_1 "Shutting down POPFile..." !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_2 "Deleting 'Start Menu' entries for POPFile..." !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_3 "Deleting POPFile core files..." !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_4 "Restoring Outlook Express settings..." !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_5 "Deleting POPFile skins files..." !insertmacro PFI_LANG_UNSTRING PFI_LANG_PROGRESS_6 "Deleting minimal Perl files..." ; Uninstall Log Messages !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_1 "Shutting down POPFile using port" !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_2 "Opened" !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_3 "Restored" !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_4 "Closed" !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_5 "Removing all files from POPFile directory" !insertmacro PFI_LANG_UNSTRING PFI_LANG_LOG_6 "Note: unable to remove all files from POPFile directory" ; Message Box text strings !insertmacro PFI_LANG_UNSTRING PFI_LANG_MBNOTFOUND_1 "It does not appear that POPFile is installed in the directory" !insertmacro PFI_LANG_UNSTRING PFI_LANG_MBNOTFOUND_2 "Continue anyway (not recommended) ?" !insertmacro PFI_LANG_UNSTRING PFI_LANG_ABORT_1 "Uninstall aborted by user" !insertmacro PFI_LANG_UNSTRING PFI_LANG_MBREMDIR_1 "Do you want to remove all files in your POPFile directory?$\r$\n$\r$\n(If you have anything you created that you want to keep, click No)" !insertmacro PFI_LANG_UNSTRING PFI_LANG_MBREMERR_1 "Note" !insertmacro PFI_LANG_UNSTRING PFI_LANG_MBREMERR_2 "could not be removed." #-------------------------------------------------------------------------- # Mark the end of the language data #-------------------------------------------------------------------------- !undef PFI_LANG #-------------------------------------------------------------------------- # End of 'Greek-pfi.nsh' #-------------------------------------------------------------------------- |
|
From: <xue...@us...> - 2003-09-13 16:36:04
|
Update of /cvsroot/popfile/windows/languages In directory sc8-pr-cvs1:/tmp/cvs-serv31898 Modified Files: English-mui.nsh German-mui.nsh SimpChinese-mui.nsh TradChinese-mui.nsh Log Message: Remove spurious character from message strings. Index: English-mui.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/English-mui.nsh,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** English-mui.nsh 1 Aug 2003 00:30:29 -0000 1.3 --- English-mui.nsh 13 Sep 2003 16:36:00 -0000 1.4 *************** *** 41,45 **** !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_WELCOME_INFO_TEXT \ ! "This wizard will guide you through the installation of POPFile.\r\n\r\n\It is recommended that you close all other applications before starting Setup.\r\n\r\n" #-------------------------------------------------------------------------- --- 41,45 ---- !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_WELCOME_INFO_TEXT \ ! "This wizard will guide you through the installation of POPFile.\r\n\r\nIt is recommended that you close all other applications before starting Setup.\r\n\r\n" #-------------------------------------------------------------------------- Index: German-mui.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/German-mui.nsh,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** German-mui.nsh 1 Aug 2003 00:30:29 -0000 1.3 --- German-mui.nsh 13 Sep 2003 16:36:00 -0000 1.4 *************** *** 41,45 **** !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_WELCOME_INFO_TEXT \ ! "Dieser Assistent wird Sie durch die Installation von POPFile begleiten.\r\n\r\n\Es wird empfohlen vor der Installation alle anderen Programme zu schließen.\r\n\r\n" #-------------------------------------------------------------------------- --- 41,45 ---- !insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_WELCOME_INFO_TEXT \ ! "Dieser Assistent wird Sie durch die Installation von POPFile begleiten.\r\n\r\nEs wird empfohlen vor der Installation alle anderen Programme zu schließen.\r\n\r\n" #-------------------------------------------------------------------------- Index: SimpChinese-mui.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/SimpChinese-mui.nsh,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** SimpChinese-mui.nsh 1 Aug 2003 00:30:29 -0000 1.4 --- SimpChinese-mui.nsh 13 Sep 2003 16:36:00 -0000 1.5 *************** *** 43,47 **** ;!insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_WELCOME_INFO_TEXT \ ! ;"This wizard will guide you through the installation of POPFile.\r\n\r\n\It is recommended that you close all other applications before starting Setup.\r\n\r\n" ; Default NSIS message: --- 43,47 ---- ;!insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_WELCOME_INFO_TEXT \ ! ;"This wizard will guide you through the installation of POPFile.\r\n\r\nIt is recommended that you close all other applications before starting Setup.\r\n\r\n" ; Default NSIS message: Index: TradChinese-mui.nsh =================================================================== RCS file: /cvsroot/popfile/windows/languages/TradChinese-mui.nsh,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** TradChinese-mui.nsh 1 Aug 2003 00:30:29 -0000 1.4 --- TradChinese-mui.nsh 13 Sep 2003 16:36:00 -0000 1.5 *************** *** 43,47 **** ;!insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_WELCOME_INFO_TEXT \ ! ;"This wizard will guide you through the installation of POPFile.\r\n\r\n\It is recommended that you close all other applications before starting Setup.\r\n\r\n" ; Default NSIS message: --- 43,47 ---- ;!insertmacro MUI_LANGUAGEFILE_STRING MUI_TEXT_WELCOME_INFO_TEXT \ ! ;"This wizard will guide you through the installation of POPFile.\r\n\r\nIt is recommended that you close all other applications before starting Setup.\r\n\r\n" ; Default NSIS message: |
|
From: <xue...@us...> - 2003-09-13 11:35:35
|
Update of /cvsroot/popfile/windows
In directory sc8-pr-cvs1:/tmp/cvs-serv6528
Modified Files:
installer.nsi
Log Message:
No point in installing/uninstalling files we don't use.
Index: installer.nsi
===================================================================
RCS file: /cvsroot/popfile/windows/installer.nsi,v
retrieving revision 1.111
retrieving revision 1.112
diff -C2 -d -r1.111 -r1.112
*** installer.nsi 11 Sep 2003 18:48:07 -0000 1.111
--- installer.nsi 13 Sep 2003 11:35:30 -0000 1.112
***************
*** 746,753 ****
File "${C_PERL_DIR}\lib\UNIVERSAL.pm"
- SetOutPath $INSTDIR\BerkeleyDB
- File "${C_PERL_DIR}\site\lib\BerkeleyDB\Btree.pm"
- File "${C_PERL_DIR}\site\lib\BerkeleyDB\Hash.pm"
-
SetOutPath $INSTDIR\auto\BerkeleyDB
File "${C_PERL_DIR}\site\lib\auto\BerkeleyDB\autosplit.ix"
--- 746,749 ----
***************
*** 2221,2225 ****
!insertmacro SafeRecursiveRMDir "$INSTDIR\warnings"
!insertmacro SafeRecursiveRMDir "$INSTDIR\Win32"
- !insertmacro SafeRecursiveRMDir "$INSTDIR\BerkeleyDB"
StrCmp ${L_UPGRADE} "yes" Removed
--- 2217,2220 ----
|
|
From: <jgr...@us...> - 2003-09-12 15:11:43
|
Update of /cvsroot/popfile/engine/languages In directory sc8-pr-cvs1:/tmp/cvs-serv6403 Added Files: Hellenic.msg Log Message: Added Greek translation --- NEW FILE: Hellenic.msg --- # Copyright (c) 2001-2003 John Graham-Cumming # Identify the language and character set used for the interface LanguageCode gr LanguageCharset ISO-8859-7 # This is used to get the appropriate subdirectory for the manual ManualLanguage en # Common words that are used on their own all over the interface Apply ÅöáñìïãÞ On Åíåñãü Off Áíåíåñãü TurnOn Åíåñãïðïßçóç TurnOff Áðåíåñãïðïßçóç Add ÐñïóèÞêç Remove ÁðáëïéöÞ Previous Ðñïçãïýìåíï Next Åðüìåíï From ÁðïóôïëÝáò Subject ÈÝìá Cc Êïéí. Classification Ôáîéíüìçóç Reclassify Åðáíáôáîéíüìçóç Probability Ðéèáíüôçôá Scores Âáèìüëïãßåò QuickMagnets ÃñÞãïñïé ÌáãíÞôåò Undo Undo Close Êëåßóéìï Find Åýñåóç Filter Ößëôñï Yes Íáß No Ï÷é ChangeToYes ÁëëáãÞ óå Íáß ChangeToNo ÁëëáãÞ óå ¼÷é Bucket Áñ÷åßï Magnet ÌáãíÞôçò Delete ÄéáãñáöÞ Create Äçìéïõñãßá To Ðñüò Total Óýíïëï Rename Ìåôïíïìáóßá Frequency Óõ÷íüôçôá Probability Ðéèáíüôçôá Score Âáèìüò Lookup Åýñåõóç Word ËÝîç Count Åìöáíßóåéò Update ÅíçìÝñùóç Refresh ÖñåóêÜñéóìá # The header and footer that appear on every UI page Header_Title Êåíôñï ÅëÝã÷ïõ POPFile Header_Shutdown Êëåßóéìï POPFile Header_History Éóôïñéêü Header_Buckets Áñ÷åßá Header_Configuration ÅðéëïãÝò Header_Advanced Ðñï÷ùñçìÝíåò ÅðéëïãÝò Header_Security ÁóöÜëåéá Header_Magnets ÌáãíÞôåò Footer_HomePage Éóôïóåëßäá POPFile Footer_Manual Åã÷åéñßäéï Footer_Forums ÓõæõôÞóåéò Footer_FeedMe ÏéêïíïìéêÞ ÓõíåéóöïñÜ Footer_RequestFeature ÆçôÞóôå ÍÝá ×áñáêôçñéóôéêÜ Footer_MailingList ËéóôÜ çë.ôá÷õäñïìåßïõ Configuration_Error1 Ï äéá÷ùñéóôéêüò ÷áñáêôÞñáò ðñÝðåé íá åßíáé ìüíï Ýíáò. Configuration_Error2 Ôï user interface port ðñÝðåé íá åßíáé ìåôáîý 1 êáé 65535 Configuration_Error3 Ôï POP3 listen port ðñÝðåé íá åßíáé ìåôáîý 1 êáé 65535 Configuration_Error4 Ôï ìÝãåèïò óåëßäáò ðñÝðåé íá åßíáé ìåôáîý 1 êáé 1000 Configuration_Error5 Ï áñéèìüò çìåñþí ãéá ôÞñçóç éóôïñéêïý ðñÝðåé íá åßíáé ìåôáîý 1 êáé 366 Configuration_Error6 Ç ðáñÜìåôñïò TCP timeout ðñÝðåé íá åßíáé ìåôáîý 10 êáé 300 Configuration_Error7 Ç ðáñÜìåôñïò XML RPC listen port ðñÝðåé íá åßíáé ìåôáîý 1 êáé 65535 Configuration_POP3Port POP3 listen port Configuration_POP3Update Ç ðáñÜìåôñïò POP3 port Üëëáîå óå %s; Ïé áëëáãÝò èá ãßíïõí åíåñãÝò óôçí åðüìåíç åêêßíçóç ôïõ POPFile Configuration_XMLRPCUpdate Ç ðáñÜìåôñïò XML-RPC port Üëëáîå óå %s; Ïé áëëáãÝò èá ãßíïõí åíåñãÝò óôçí åðüìåíç åêêßíçóç ôïõ POPFile Configuration_XMLRPCPort XML-RPC listen port Configuration_SMTPPort SMTP listen port Configuration_SMTPUpdate Ç ðáñÜìåôñïò SMTP port Üëëáîå óå %s; Ïé áëëáãÝò èá ãßíïõí åíåñãÝò óôçí åðüìåíç åêêßíçóç ôïõ POPFile Configuration_NNTPPort NNTP listen port Configuration_NNTPUpdate Ç ðáñÜìåôñïò NNTP port Üëëáîå óå %s; Ïé áëëáãÝò èá ãßíïõí åíåñãÝò óôçí åðüìåíç åêêßíçóç ôïõ POPFile Configuration_POP3Separator POP3 host:port:÷áñáêôÞñáò äéá÷ùñéóìïý Configuration_NNTPSeparator NNTP host:port:×áñáêôÞñáò äéá÷ùñéóìïý Configuration_POP3SepUpdate ÁëëáãÞ ÷áñáêôÞñá äéá÷ùñéóìïý POP3 óå %s Configuration_NNTPSepUpdate ÁëëáãÞ ÷áñáêôÞñá äéá÷ùñéóìïý NNTP óå %s Configuration_UI Web port åðéöÜíåéáò åëÝã÷ïõ Configuration_UIUpdate Updated user interface web port to %s; this change will not take affect until you restart POPFile Configuration_History Áñéèìüò ìõíçìÜôùí áíÜ Óåëßäá Configuration_HistoryUpdate ÁëëáãÞ áñéèìïý ìõíçìÜôùí áíÜ óåëßäá óå %s Configuration_Days Áñèéìüò çìåñþí ðïõ êñáôïýíôáé óå éóôïñéêü Configuration_DaysUpdate ÁëëáãÞ áñèéìïý çìåñþí ðïõ êñáôïýíôáé óå éóôïñéêü óå %s Configuration_UserInterface ÅðéöÜíåéá ÅëÝã÷ïõ Configuration_Skins ÅìöÜíéóç Configuration_SkinsChoose ÅðéëïãÞ åìöÜíéóçò Configuration_Language Ãëþóóá Configuration_LanguageChoose ÅðéëïãÞ Ãëþóóáò Configuration_ListenPorts ÅðéëïãÝò åðéêïéíùíßáò Configuration_HistoryView Éóôïñéêü Configuration_TCPTimeout Connection Timeout Configuration_TCPTimeoutSecs Connection timeout óå äåõôåñüëåðôá Configuration_TCPTimeoutUpdate ÁëëáãÞ connection timeout óå %s Configuration_ClassificationInsertion ÅéóáãùãÞ ÊåéìÝíïõ óå ìõíÞìáôá Configuration_SubjectLine ÁëëáãÞ ÈÝìáôïò ÌõíçìÜôùí Configuration_XTCInsertion X-Text-Classification Header Configuration_XPLInsertion X-POPFile-Link Header Configuration_Logging Çìåñïëüãéï Åíåñãåéþí Configuration_None ÊáíÝíá Configuration_ToScreen Óôçí Ïèüíç Configuration_ToFile Óå Áñ÷åßï Configuration_ToScreenFile Óôçí Ïèüíç êáé óå áñ÷åßï Configuration_LoggerOutput ÅìöÜíéóç Çìåñïëïãßïõ Åíåñãåéþí Configuration_GeneralSkins Åìöáíßóåéò Configuration_SmallSkins ÌéêñÝò Åìöáíßóåéò Configuration_TinySkins Ðéï ÌéêñÝò Åìöáíßóåéò Configuration_CurrentLogFile <current log file> Advanced_Error1 '%s' åßíáé Þäç óôéò åîáéñïýìåíåò ëÝîåéò Advanced_Error2 Ïé åîáéñïýìåíåò ëÝîåéò ìðïñïýí íá óõìðåñéëáìâÜíïõí ìüíï áëöáíïõìåñéêÝò ëÝîåéò , ., _, -, ç @ ÷áñáêôÞñåò Advanced_Error3 '%s' ðñïóôÝèçêå óôéò åîáéñïýìåíåò ëÝîåéò Advanced_Error4 '%s' äåí áíÞêåé óôéò åîáéñïýìåíåò ëÝîåéò Advanced_Error5 '%s' áöáéñÝèçêå áðü ôéò åîáéñïýìåíåò ëÝîåéò Advanced_StopWords ËÝîåéò ðïõ åîáéñïýíôáé Advanced_Message1 Ôï POPFile åîáéñåß ôéò áêüëïõèåò óõ÷íÜ åìöáíéæüìåíåò ëÝîåéò : Advanced_AddWord ÐñïóèÞêç ËÝîçò Advanced_RemoveWord Áöáßñåóç ËÝîçò History_Filter (åìöáíßæåôáé ìüíïí áñ÷åßï <font color="%s">%s</font>) History_FilterBy ÖéëôñÜñéóìá ìå ÷ñÞóç History_Search (áíáæÞôçóç ãéá ÁðïóôïëÝá/ÈÝìá %s) History_Title Ðñïóöáôá ÌõíÞìáôá History_Jump ÌõíÞìáôá áðü History_ShowAll ÅìöÜíéóç üëùí History_ShouldBe Íá ôáîéìïìçèåß þò History_NoFrom Äåí Ý÷åé áðïóôïëÝá History_NoSubject Äåí õðÜñ÷åé èÝìá History_ClassifyAs Íá ôáîéíïìçèåß óáí History_MagnetUsed ÌáãíÞôçò óå ÷ñÞóç History_MagnetBecause <b>ÌáãíÞôçò óå ÷ñÞóç</b><p>Å÷åé ôáîéíïìçèåß óå <font color="%s">%s</font> ëüãù ìáãíÞôç %s </p> History_ChangedTo Áëëáîå óå <font color="%s">%s History_Already Å÷åé Þäç åðáíáôáîéíïìçèåß óå <font color="%s">%s</font> History_RemoveAll ÄéáãñáöÞ Ïëùí History_RemovePage ÄéáãñáöÞ Óåëßäáò History_Remove Ãéá íá äéáãñÜøåôå óôïé÷åßá ôïõ éóôïñéêïý ðáôÞóôå History_SearchMessage ÁíáîÞôçóç ÁðïóôïëÝá/ÈÝìá History_NoMessages Äåí õðÜñ÷ïõí Ìçíýìáôá History_ShowMagnet ìáãíçôéóìÝíï History_ShowNoMagnet ìç ìáãíçôéóìÝíï History_Magnet (åìöÜíéóç ìüíï ìáãíçôéóìÝíùí ìõíçìÜôùí) History_NoMagnet (åìöÜíéóç ìüíï ìÞ ìáãíçôéóìÝíùí ìõíçìÜôùí) History_ResetSearch ÅðáíáöïñÜ Password_Title Óýíèçìá Password_Enter ÃñÜøôå óýíèçìá Password_Go Ðñï÷ùñÞóôå! Password_Error1 ËÜèïò óýíèçìá Security_Error1 Ôï port ðñÝðåé íá åßíáé Ýíáò áñéèìüò ìåôáîý 1 êáé 65535 Security_Stealth Ëåéôïõñãßá ÁðüêñõøÞò/Ëåéôïõñãßá Server Security_NoStealthMode Ï÷é ( Ëåéôïõñãßá Áðüêñõøçò ) Security_ExplainStats (Ìå áõôÞ ôçí åðéëïãÞ åíåñãÞ ôï POPFile óôÝëíåé êÜèå çìÝñá ôéò áêüëïõèåò ôñåßò ðáñáìÝôñïõò óå Ýíá ðñüãñáììá óôï www.usethesource.com: bc (óýíïëï áñ÷åßùí ðïõ ÷ñçóéìïðïéïýíôáé ), mc (óýíïëï ôáîéíïìçìÝíùí ìõíçìÜôùí) and ec (óýíïëï ëáèþí ôáîéíüìçóçò). ÁõôÜ áñ÷åéïèåôïýíôáé êáé ÷ñçóéìïðïéïýíôáé ãéá íá óõíôá÷èïýí óôáôéóôéêÝò ãéá ôï ðþò ïé ÷ñÞóôåò ÷ñçóéìïðïéïýí ôï POPFile áëëÜ êáé ðüóï áðïôåëåóìáôéêÜ áõôü äïõëåýåés. Ôá áñ÷åßá óâÞíïíôáé ìå ôçí ðáñÝëåõóç ðåíèçìÝñïõ; Äåí ãßíïíôáé óõó÷åôéóìïß ìåôáîý ôùí óôáôéóôéêþí êáé ôùí ìåìïíïìÝíùí äéåõèýíóåùí IP.) Security_ExplainUpdate (Ìå áõôÞ ôçí åðéëïãÞ åíåñãÞ ôï POPFile óôÝëíåé êÜèå çìÝñá ôéò áêüëïõèåò ôñåßò ðáñáìÝôñïõò óå Ýíá ðñüãñáììá óôï www.usethesource.com:: ma (ôïí êýñéï áñéèìü Ýêäïóçò ôïõ åí ÷ñÞóç POPFile), mi (ôïí äåõôåñåýïíôá áñéèìü Ýêäïóçò ôïõ åí ÷ñÞóç POPFile) êáé bn (ôïí áñéèìü Ýêäïóçò ôïõ åí ÷ñÞóç POPFile). Ôï POPFile ëáìâÜíåé ìßá áðÜíôçóç ìå ôçí ìïñöÞ ãñáöéêïý ðïõ åìöáíßæåôáé óôçí Üíù ìåñéÜ ôçò óåëßäáò, êáé óáò åéäïðïéåß üôé õðÜñ÷åé íÝá åíçìåñùìÝíç Ýêäïóç. Ôá áñ÷åßá óâÞíïíôáé ìå ôçí ðáñÝëåõóç ðåíèçìÝñïõ; Äåí ãßíïíôáé óõó÷åôéóìïß ìåôáîý ôùí óôáôéóôéêþí êáé ôùí ìåìïíïìÝíùí äéåõèýíóåùí IP.) Security_PasswordTitle Óýíèçìá ÅðéöÜíåéáò ×ñÞóçò Security_Password Óýíèçìá Security_PasswordUpdate Ôï óýíèçìá Üëëáîå óå %s Security_AUTHTitle Remote Servers Security_SecureServer POP3 SPA/AUTH server Security_SecureServerUpdate Ç ðáñÜìåôñïò POP3 SPA/AUTH secure server Üëëáîå óå %s; Ïé áëëáãÝò èá ãßíïõí åíåñãÝò óôçí åðüìåíç åêêßíçóç ôïõ POPFile Security_SecurePort POP3 SPA/AUTH port Security_SecurePortUpdate Ç ðáñÜìåôñïò POP3 SPA/AUTH port Üëëáîå óå %s; Ïé áëëáãÝò èá ãßíïõí åíåñãÝò óôçí åðüìåíç åêêßíçóç ôïõ POPFile Security_SMTPServer SMTP chain server Security_SMTPServerUpdate Ç ðáñÜìåôñïò SMTP chain server Üëëáîå óå %s; Ïé áëëáãÝò èá ãßíïõí åíåñãÝò óôçí åðüìåíç åêêßíçóç ôïõ POPFile Security_SMTPPort SMTP chain port Security_SMTPPortUpdate Ç ðáñÜìåôñïò SMTP chain port Üëëáîå óå %s; Ïé áëëáãÝò èá ãßíïõí åíåñãÝò óôçí åðüìåíç åêêßíçóç ôïõ POPFile Security_POP3 Íá ãßíïíôáé áðïäåêôÝò óõíäÝóåéò POP3 áðü Ç/Õ óôï äßêôõï (÷ñåéÜæåôáé åðáíåêêßíçóç ôïõ POPFile ) Security_SMTP Íá ãßíïíôáé áðïäåêôÝò óõíäÝóåéò SMTP áðü Ç/Õ óôï äßêôõï (÷ñåéÜæåôáé åðáíåêêßíçóç ôïõ POPFile ) Security_NNTP Íá ãßíïíôáé áðïäåêôÝò óõíäÝóåéò NNTP áðü Ç/Õ óôï äßêôõï (÷ñåéÜæåôáé åðáíåêêßíçóç ôïõ POPFile ) Security_UI Íá ãßíïíôáé áðïäåêôÝò óõíäÝóåéò HTTP áðü Ç/Õ óôï äßêôõï (÷ñåéÜæåôáé åðáíåêêßíçóç ôïõ POPFile ) Security_XMLRPC Íá ãßíïíôáé áðïäåêôÝò óõíäÝóåéò XML-RPC áðü Ç/Õ óôï äßêôõï (÷ñåéÜæåôáé åðáíåêêßíçóç ôïõ POPFile ) Security_UpdateTitle Áõôüìáôïò Åëåã÷ïò ãéá ÅíçìåñùìÝíåò Åêäüóåéò Security_Update Êáèçìåñéíüò Ýëåã÷ïò ãéá ÅíçìåñùìÝíåò Åêäüóåéò ôïõ POPFile Security_StatsTitle ÁðïóôïëÞ Óôáôéóôéêþí Security_Stats ÊáèçìåñéíÞ ÁðïóôïëÞ Óôáôéóôéêþí Magnet_Error1 Ï ÌáãíÞôçò '%s' õðÜñ÷åé Þäç óôï áñ÷åßï '%s' Magnet_Error2 Ï íÝïò ÌáãíÞôçò '%s' åßíáé óå áíôßöáóç ìå ôïí Þäç õðÜñ÷ïíôá '%s' óôï áñ÷åßï '%s' êáé áõôü èá ïäçãïýóå óå ëáíèáóìÝíåò ôáîéíïìÞóåéò. Ï íÝïò ìáãíÞôçò äåí ðñïóåôÝèåé.. Magnet_Error3 Äçìéïõñãßá íÝïõ ìáãíÞôç '%s' óôï áñ÷åßï '%s' Magnet_CurrentMagnets ÕðÜñ÷ïíôåò ÌáãíÞôåò Magnet_Message1 Ïé áêüëïõèïé ìáãíÞôåò ðÜíôá ôáîéíïìïýí ôá ìõíÞìáôá óáò óôï ðñïêáèïñéóìÝíï áñ÷åßï :. Magnet_CreateNew Äçìéïõñãßá íÝïõ ìáãíÞôç Magnet_Explanation Áõôïß ïé ôýðïé ìáãíÞôç åßíáé äéáèÝóéìïé:</b> <ul><li><b>Áðü Äéõõèõíóç ç Ïíïìá:</b> Ð.÷.: jo...@co... ãéá óõãêåêñéìÝíç äéåõèõíóçs, <br />company.com ãéá üëåò ôéò äéåõèýíóåéò ðïõ êáôáëÞãïõí óå company.com, <br />John Doe ãéá óõãêåêñéìÝíï üíïìá, John ãéá üëïõò ìå ðñþôï üíïìá John</li><li><b>Ðñïò/Êïéí. äéåýèõíóç ç üíïìá:</b> ¨Ïðùò ãéá ÁðïóôïëÝá áëëá áöïñÜ ôá ðåäßá Ðñüò/ Êïéí.:</li> <li><b>ÈÝìá :</b> Ð.÷.: hello ãéá íá ìáãíçôéóèïýí üëá ôá ìõíÞìáôá ðïõ ðåñéÝ÷ïõí ôçí ëÝîç hello óôï èÝìá</li></ul> Magnet_MagnetType Ôýðïé Ìáãíçôþí Magnet_Value Áîßá Magnet_Always Ðáíôá ôáîéíïìåßôáé óôï áñ÷åßï Magnet_Jump ÌáãíÞôåò áðü Bucket_Error1 Ôá ïíüìáôá ôùí áñ÷åßùí ìðïñïýí íá ðåñéÝ÷ïõí ìüíï ôá ðåæÜ áããëéêÜ ãñÜììáôá a Ýùò z, ôïõò áñéèìïýò 0 åùò 9, êáé ôïõò ÷áñáêôÞñåò - êáé _ Bucket_Error2 Áñ÷åßï %s õðÜñ÷åé Þäç Bucket_Error3 ÄçìéïõñãÞèçêå áñ÷åßï ìå üíïìá %s Bucket_Error4 Ðáñáêáëïýìå åéóÜãåôå ìé ü÷é êåíÞ ëÝîç Bucket_Error5 Ôï áñ÷åßï %s ìåôïíïìÜóôçêå óå %s Bucket_Error6 ÄéáãñÜöèçêå ôï áñ÷åßï %s Bucket_Title Ðåñßëçøç Bucket_BucketName Áñ÷åßï Bucket_WordCount ÐëÞèïò ËÝîåùí Bucket_WordCounts ÓôáôéóôéêÜ ËÝîåùí Bucket_UniqueWords ÌïíáäéêÝò ËÝîåéò Bucket_SubjectModification ÁëëáãÞ ÈÝìáôïò ÌõíçìÜôùí Bucket_ChangeColor ÁëëáãÞ ×ñþìáôïò Bucket_NotEnoughData ÁíåðáñêÞ ÄåäïìÝíá Bucket_ClassificationAccuracy Áêñßâåéá Ôáîéíüìçóçò Bucket_EmailsClassified ÔáîéíïìçìÝíá ìõíÞìáôá Bucket_EmailsClassifiedUpper ÔáîéíïìçìÝíá ÌõíÞìáôá Bucket_ClassificationErrors ÓöÜëìáôá Ôáîéíüìçóçò Bucket_Accuracy Áêñßâåéá Ôáîéíüìçóçò Bucket_ClassificationCount Áñéèì. ÔáîéíïìÞóåùí Bucket_ClassificationFP ØåõäÞ ÈåôéêÜ Bucket_ClassificationFN ØåõäÞ ÁñíçôéêÜ Bucket_ResetStatistics Ìçäåíéóìüò Óôáôéóôéêþí Bucket_LastReset Ôåëåõôáßïò Ìçäåíéóìüò Bucket_CurrentColor ôñÝ÷ùí ÷ñþìá %s åßíáé %s Bucket_SetColorTo Ïñéóìüò ÷ñþìáôïò %s óå %s Bucket_Maintenance ÓõíôÞñçóç Áñ÷åßùí Bucket_CreateBucket Äçìéïõñãßá áñ÷åßïõ ìå üíïìá Bucket_DeleteBucket ÄéáãñáöÞ áñ÷åßïõ ìå üíïìá Bucket_RenameBucket Ìåôïíïìáóßá áñ÷åßïõ ìå üíïìá Bucket_Lookup Åýñåóç Bucket_LookupMessage Åýñåõóç ëÝîåùò óå áñ÷åßá Bucket_LookupMessage2 ÁðïôåëÝóìáôá åýñåóçò ëÝîåùò Bucket_LookupMostLikely <b>%s</b> åßíáé ðéï ðéèáíü íá áíÞêåé óôï <font color="%s">%s</font> Bucket_DoesNotAppear <p><b>%s</b> äåí áíÞêåé óå êáíÝíá áðü ôá áñ÷åßá Bucket_DisabledGlobally Ãåíéêþò ÁðåíåñãïðïéçìÝíï Bucket_To óå Bucket_Quarantine Êáñáíôßíá SingleBucket_Title ËåðôïìÝñåéåò ôïõ áñ÷åßïõ %s SingleBucket_WordCount Áñéèìüò ëÝîåùí áñ÷åßïõ SingleBucket_TotalWordCount ÓõíïëéêÝò åìöáíßóåéò ëÝîåùí SingleBucket_Percentage Ðïóïóôü åðß óõíüëïõ SingleBucket_WordTable Ðßíáêáò ëÝîåùí ãéá %s SingleBucket_Message1 ÊÜíôå êëßê ðÜíù óå Ýíá ãñÜììá ãéá íá äåßôå ôéò ëÝîåéò ðïõ áñ÷ßæïõí áðü áõôü. ÊÜíôå êëßê óå ìßá ëÝîç ãéá íá äåßôå ôéò ðéèáíüôçôåò íá áíÞêåé óå ïðïéïäÞðïôå áñ÷åßï.. SingleBucket_Unique %s ìïíáäéêÝò SingleBucket_ClearBucket ÄéáãñáöÞ üëùí ôùí ëÝîåùí Session_Title Ç óõíåäñßá ôïõ POPFile Ý÷åé ëÞîåé Session_Error Ç ðáñïýóá óõíåäñßá POPFile Ý÷åé ëÞîåé. Áõôü ìðïåß íá åßíáé áðïôÝëåóìá ôçò åðáíåêêßíçóçò ôïõ POPFile åíüóù ôï ðñüãñáììá åìöÜíéóçò éóôïóåëßäùí óáò ðáñÝìåéíå áíïéêôü. Ðáñáêáëïýìå êÜíôå êëßê óå êÜðïéá áðü ôéò Üíùèé óõíäÝóåéò ãéá íá áðïêáôáóôÞóåôå ôçí åðéêïéíùíßá ìå ôï POPFile. View_Title ÅìöÜíéóç ÌåìïíïìÝíïõ ÌõíÞìáôïò Header_MenuSummary This table is the navigation menu which allows access to each of the different pages of the control center. History_MainTableSummary This table shows the sender and subject of recently received messages and allows them to be reviewed and reclassified. Clicking on the subject line will show the full message text, along with information about why it was classified as it was. The 'Should be' column allows you to specify which bucket the message belongs in, or to undo that change. The 'Delete' column allows you to delete specific messages from the history if you don't need them anymore. History_OpenMessageSummary This table contains the full text of a message message, with the words that are used for classification highlighted according to the bucket that was most relevant for each. Bucket_MainTableSummary This table provides an overview of the classification buckets. Each row shows the bucket name, the word count total for that bucket, the actual number of individual words in each bucket, whether the message's subject line will be modified when it gets classified to that bucket, whether to quarantine the messages received in that bucket, and a table to pick the color used in displaying anything related to that bucket in the control center. Bucket_StatisticsTableSummary This table provides three sets of statistics on the overall performance of POPFile. The first is how accurate its classification is, the second is how many messages have been classified, and to which buckets, and the third is how many words are in each bucket, and what their relative percentages are. Bucket_MaintenanceTableSummary This table contains forms that allow you to create, delete or rename buckets, and to lookup a word in all of the buckets to see its relative probabilities. Bucket_AccuracyChartSummary This table graphically represents the accuracy of the message classification. Bucket_BarChartSummary This table graphically represents a percentage allocation for each of the different buckets. It is used for both number of messages classified, and total word counts. Bucket_LookupResultsSummary This table shows the probabilities associated with any given word of the corpus. For each bucket, it shows the frequency that that word occurs, the probability that it will occur in that bucket, and the overall effect on the score of the bucket if that word exists in a message. Bucket_WordListTableSummary This table provides a listing of all the words for a particular bucket, organized by common first letter for each row. Magnet_MainTableSummary This table shows the list of magnets that are used to automatically classify message according to fixed rules. Each row shows how the magnet is defined, what bucket it is intended for, and a button to delete the magnet. Configuration_MainTableSummary This table contains a number of forms to allow you to control the configuration of POPFile. Configuration_InsertionTableSummary This table contains buttons that determine whether or not certain modifications are made to the headers or subject line of the message before it is passed on to the message client. Security_MainTableSummary This table provides sets of controls that affect the security of the overall configuration of POPFile, whether it should automatically check for updates to the program, and whether statistics about POPFile's performance should be sent to the central datastore of the program's author for general information. Advanced_MainTableSummary This table provides a list of words that POPFile ignores when classifying message due to their relative frequency in message in general. They are organized per row according to the first letter of the words. |
|
From: <jgr...@us...> - 2003-09-12 00:34:40
|
Update of /cvsroot/popfile/engine/Platform
In directory sc8-pr-cvs1:/tmp/cvs-serv12319/Platform
Modified Files:
MSWin32.pm
Log Message:
USING PERLTRAY TO BUILD A POPFILE.EXE FOR WINDOWS
Makefile:
Suitable targets to use PerlTray to created popfile.exe and
popfileb.exe.
POPFile/Loader.pm:
Added version() accessor for version string and an option to
service so that it can be called from an external poller.
popfilew.pl:
Equivalent of popfile.pl which uses PerlTray to show an icon
in the system tray on Windows. This is designed to be turned
into popfile.exe by PerlTray.
Index: MSWin32.pm
===================================================================
RCS file: /cvsroot/popfile/engine/Platform/MSWin32.pm,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** MSWin32.pm 10 Sep 2003 18:26:28 -0000 1.10
--- MSWin32.pm 12 Sep 2003 00:34:36 -0000 1.11
***************
*** 5,10 ****
@ISA = ("POPFile::Module");
- use Win32::API;
-
#----------------------------------------------------------------------------
#
--- 5,8 ----
***************
*** 144,227 ****
return '';
- }
-
- # ---------------------------------------------------------------------------------------------
- #
- # prefork
- #
- # Called when a fork is about to occur
- #
- # ---------------------------------------------------------------------------------------------
- sub prefork
- {
- my ( $self ) = @_;
-
- # If the fork occurs and the DLL handling the icon is still present then
- # there's going to be a problem because the DLL will get unloaded and we'll
- # still have a pointer into it, so here we unload the DLL, it will get reloaded
- # automatically later
-
- undef $self->{getmessage__};
- }
-
- # ---------------------------------------------------------------------------------------------
- #
- # service
- #
- # Called to handle interface requests
- #
- # ---------------------------------------------------------------------------------------------
- sub service
- {
- my ( $self ) = @_;
-
- if ( !$self->config_( 'trayicon' ) ) {
- return 1;
- }
-
- if ( !defined( $self->{getmessage__} ) ) {
- $self->{getmessage__} = Win32::API->new( "Platform/POPFileIcon.dll", "GetMenuMessage", "", "N" );
- }
-
- my $event = $self->{getmessage__}->Call();
-
- # User wants the icon hidden
-
- if ( $event == 3 ) {
- $self->config_( 'trayicon', 0 );
-
- $self->{hideicon__} = Win32::API->new( "Platform/POPFileIcon.dll", "HideIcon", "", "N" );
- $self->{hideicon__}->Call();
- undef $self->{hideicon__};
-
- return 1;
- }
-
- # Double click icon, or select Open option in menu results in
- # navigating to the UI
-
- if ( $event == 2 ) {
-
- my $execute = Win32::API->new( "Shell32", "ShellExecute", "NPPPPN", "N" );
-
- # Get the port that the UI is running on and then use the
- # windows start function to start the browser running
-
- my $url = 'http://127.0.0.1:' . $self->module_config_( 'html', 'port' );
-
- if ( defined( $execute ) ) {
- $execute->Call( 0, "open", $url, "", "", 0 );
- } else {
- system( "start $url" );
- }
- }
-
- # Exit action from try context menu - return 0, to cause exit
-
- if ( $event == 1 ) {
- return 0;
- }
-
- return 1;
}
--- 142,145 ----
|
|
From: <jgr...@us...> - 2003-09-12 00:34:40
|
Update of /cvsroot/popfile/engine
In directory sc8-pr-cvs1:/tmp/cvs-serv12319
Modified Files:
Makefile
Added Files:
popfilew.pl
Log Message:
USING PERLTRAY TO BUILD A POPFILE.EXE FOR WINDOWS
Makefile:
Suitable targets to use PerlTray to created popfile.exe and
popfileb.exe.
POPFile/Loader.pm:
Added version() accessor for version string and an option to
service so that it can be called from an external poller.
popfilew.pl:
Equivalent of popfile.pl which uses PerlTray to show an icon
in the system tray on Windows. This is designed to be turned
into popfile.exe by PerlTray.
--- NEW FILE: popfilew.pl ---
#!/usr/bin/perl
# ---------------------------------------------------------------------------------------------
#
# popfilew.pl --- Message analyzer and sorter (Windows loader used with PerlTray)
#
# Acts as a server and client designed to sit between a real mail/news client and a real mail/
# news server using POP3. Inserts an extra header X-Text-Classification: into the header to
# tell the client which category the message belongs in and much more...
#
# Copyright (c) 2001-2003 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
#
# ---------------------------------------------------------------------------------------------
use strict;
use locale;
use POPFile::Loader;
use PerlTray;
# POPFile is actually loaded by the POPFile::Loader object which does all
# the work
our $POPFile = POPFile::Loader->new();
# ---------------------------------------------------------------------------------------------
#
# PopupMenu
#
# Called by PerlTray when it needs the content of the popup menu
#
# ---------------------------------------------------------------------------------------------
sub PopupMenu
{
my $url = 'http://127.0.0.1:'; # $self->module_config_( 'html', 'port' );
return [ [ "*POPFile UI", "Execute '$url'" ],
[ "--------" ],
[ "Shutdown POPFile", \&popfile_shutdown ] ];
}
# ---------------------------------------------------------------------------------------------
#
# ToolTip
#
# Called by PerlTray when it needs the to show a tool tip on the tray icon
#
# ---------------------------------------------------------------------------------------------
sub ToolTip
{
return "POPFile " . $POPFile->version();
}
# ---------------------------------------------------------------------------------------------
#
# Timer
#
# Called by PerlTray when the timer expires
#
# ---------------------------------------------------------------------------------------------
sub Timer
{
SetTimer( 0 );
if ( !$POPFile->CORE_service(1) ) {
popfile_shutdown();
}
SetTimer( 50 );
}
# ---------------------------------------------------------------------------------------------
#
# popfile_shutdown
#
# Called by PerlTray when the user click Shutdown on the pop up menu
#
# ---------------------------------------------------------------------------------------------
sub popfile_shutdown
{
$POPFile->CORE_stop();
exit(0);
}
# Indicate that we should create output on STDOUT (the POPFile
# load sequence) and initialize with the version
$POPFile->debug(1);
$POPFile->CORE_loader_init();
$POPFile->CORE_version(0, 20, 0);
# Redefine POPFile's signals
$POPFile->CORE_signals();
# Create the main objects that form the core of POPFile. Consists of the configuration
# modules, the classifier, the UI (currently HTML based), platform specific code,
# and the POP3 proxy. The link the components together, intialize them all, load
# the configuration from disk, start the modules running
$POPFile->CORE_load();
$POPFile->CORE_link_components();
$POPFile->CORE_initialize();
$POPFile->CORE_config();
$POPFile->CORE_start();
# We terminate here because that lets PerlTray start and it will call the Timer
# function above
Timer();
Index: Makefile
===================================================================
RCS file: /cvsroot/popfile/engine/Makefile,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** Makefile 11 Sep 2003 23:04:59 -0000 1.19
--- Makefile 12 Sep 2003 00:34:36 -0000 1.20
***************
*** 47,57 ****
winexe: popfile.exe popfileb.exe
! TRAY_OPTIONS = --exe $@ --force --clean --dependent --xclude --icon ../windows/POPFileIcon/popfile.ico --script popfile.pl --info CompanyName="The POPFile Project" --info LegalCopyright="Copyright (c) 2003 John Graham-Cumming" --info ProductName=POPFile --info ProductVersion=$(POPFILE_VERSION).0 --info FileDescription=POPFile --info FileVersion=$(POPFILE_VERSION).0
!
! popfile.exe: popfile.pl
! perltray $(TRAY_OPTIONS)
! popfileb.exe: popfile.pl
perltray --nogui $(TRAY_OPTIONS)
# windows builds the Windows installer
--- 47,57 ----
winexe: popfile.exe popfileb.exe
! TRAY_OPTIONS = --exe $@ --force --clean --dependent --xclude --icon ../windows/POPFileIcon/popfile.ico --script $< --info CompanyName="The POPFile Project" --info LegalCopyright="Copyright (c) 2003 John Graham-Cumming" --info ProductName=POPFile --info ProductVersion=$(POPFILE_VERSION).0 --info FileDescription=POPFile --info FileVersion=$(POPFILE_VERSION).0
! popfile.exe: popfilew.pl POPFile/Loader.pm
perltray --nogui $(TRAY_OPTIONS)
+
+ popfileb.exe: popfilew.pl POPFile/Loader.pm
+ perltray $(TRAY_OPTIONS)
# windows builds the Windows installer
|
|
From: <jgr...@us...> - 2003-09-12 00:34:40
|
Update of /cvsroot/popfile/engine/POPFile
In directory sc8-pr-cvs1:/tmp/cvs-serv12319/POPFile
Modified Files:
Loader.pm
Log Message:
USING PERLTRAY TO BUILD A POPFILE.EXE FOR WINDOWS
Makefile:
Suitable targets to use PerlTray to created popfile.exe and
popfileb.exe.
POPFile/Loader.pm:
Added version() accessor for version string and an option to
service so that it can be called from an external poller.
popfilew.pl:
Equivalent of popfile.pl which uses PerlTray to show an icon
in the system tray on Windows. This is designed to be turned
into popfile.exe by PerlTray.
Index: Loader.pm
===================================================================
RCS file: /cvsroot/popfile/engine/POPFile/Loader.pm,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** Loader.pm 11 Sep 2003 17:27:11 -0000 1.7
--- Loader.pm 12 Sep 2003 00:34:36 -0000 1.8
***************
*** 109,113 ****
$self->{reaper__} = sub { $self->CORE_reaper(@_) };
! print "\nPOPFile Engine $self->{version_string__} loading\n" if $self->{debug__};
}
--- 109,113 ----
$self->{reaper__} = sub { $self->CORE_reaper(@_) };
! print "\nPOPFile Engine loading\n" if $self->{debug__};
}
***************
*** 566,569 ****
--- 566,572 ----
print '} ' if $self->{debug__};
}
+
+ print "\n\nPOPFile Engine ", $self->version(), " running\n" if $self->{debug__};
+ flush STDOUT;
}
***************
*** 575,586 ****
# sleeps briefly
#
#
#---------------------------------------------------------------------------------------------
sub CORE_service
{
! my ( $self ) = @_;
! print "\n\nPOPFile Engine $self->{version_string__} running\n" if $self->{debug__};
! flush STDOUT;
# MAIN LOOP - Call each module's service() method to all it to
--- 578,589 ----
# sleeps briefly
#
+ # $nowait If 1 then don't sleep and don't loop
#
#---------------------------------------------------------------------------------------------
sub CORE_service
{
! my ( $self, $nowait ) = @_;
! $nowait = 0 if ( !defined( $nowait ) );
# MAIN LOOP - Call each module's service() method to all it to
***************
*** 600,604 ****
# CPU
! select(undef, undef, undef, 0.05);
# If we are on Windows then reap children here
--- 603,607 ----
# CPU
! select(undef, undef, undef, 0.05) if !$nowait;
# If we are on Windows then reap children here
***************
*** 611,615 ****
--- 614,622 ----
}
}
+
+ last if $nowait;
}
+
+ return $self->{alive__};
}
***************
*** 742,746 ****
}
! # SETTER
sub debug
--- 749,760 ----
}
! # GETTER/SETTER
!
! sub version
! {
! my ( $self ) = @_;
!
! return $self->{version_string__};
! }
sub debug
|
|
From: <jgr...@us...> - 2003-09-11 23:05:02
|
Update of /cvsroot/popfile/engine In directory sc8-pr-cvs1:/tmp/cvs-serv27554 Modified Files: Makefile vars.mak Log Message: Update Makefile to create popfile.exe and popfileb.exe using ActiveState's PerlTray application Index: Makefile =================================================================== RCS file: /cvsroot/popfile/engine/Makefile,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** Makefile 20 Aug 2003 01:40:12 -0000 1.18 --- Makefile 11 Sep 2003 23:04:59 -0000 1.19 *************** *** 17,21 **** @echo " (test and coverage pass the TESTARGS variable to the test suite)" @echo ! @echo "windows - Build Windows installer" @echo "macosx - Build Mac OS X package installer" @echo "package - Build Windows installer, and create" --- 17,21 ---- @echo " (test and coverage pass the TESTARGS variable to the test suite)" @echo ! @echo "windows - Build Windows executables and installer" @echo "macosx - Build Mac OS X package installer" @echo "package - Build Windows installer, and create" *************** *** 43,49 **** macosx: ; @$(MAKE) -C ../macosx # windows builds the Windows installer ! windows: ; @$(MAKE) -C ../windows # build a ZIPped up package of POPFile --- 43,61 ---- macosx: ; @$(MAKE) -C ../macosx + # Builds the tray application using PerlTray + + winexe: popfile.exe popfileb.exe + + TRAY_OPTIONS = --exe $@ --force --clean --dependent --xclude --icon ../windows/POPFileIcon/popfile.ico --script popfile.pl --info CompanyName="The POPFile Project" --info LegalCopyright="Copyright (c) 2003 John Graham-Cumming" --info ProductName=POPFile --info ProductVersion=$(POPFILE_VERSION).0 --info FileDescription=POPFile --info FileVersion=$(POPFILE_VERSION).0 + + popfile.exe: popfile.pl + perltray $(TRAY_OPTIONS) + + popfileb.exe: popfile.pl + perltray --nogui $(TRAY_OPTIONS) + # windows builds the Windows installer ! windows: winexe; @$(MAKE) -C ../windows # build a ZIPped up package of POPFile Index: vars.mak =================================================================== RCS file: /cvsroot/popfile/engine/vars.mak,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** vars.mak 9 Jun 2003 18:35:58 -0000 1.1 --- vars.mak 11 Sep 2003 23:04:59 -0000 1.2 *************** *** 6,10 **** # Copyright (c) 2003 John Graham-Cumming ! export POPFILE_VERSION=0.19.0 --- 6,10 ---- # Copyright (c) 2003 John Graham-Cumming ! export POPFILE_VERSION=0.20.0 |
|
From: <jgr...@us...> - 2003-09-11 22:43:54
|
Update of /cvsroot/popfile/engine/languages In directory sc8-pr-cvs1:/tmp/cvs-serv21375 Modified Files: Czech.msg Log Message: Updated Czech translation Index: Czech.msg =================================================================== RCS file: /cvsroot/popfile/engine/languages/Czech.msg,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Czech.msg 5 Aug 2003 21:27:12 -0000 1.3 --- Czech.msg 11 Sep 2003 22:43:50 -0000 1.4 *************** *** 1,21 **** # Copyright (c) 2001-2003 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 Jan Pavloviè (xp...@fi...) version 1.1 # Identify the language and character set used for the interface --- 1,4 ---- # Copyright (c) 2001-2003 John Graham-Cumming ! # Translation Jan Chochola (jch...@vo...) # Identify the language and character set used for the interface *************** *** 28,47 **** # Common words that are used on their own all over the interface Apply Pouít ! On Zapnuté ! Off Vypnuté TurnOn Zapnout TurnOff Vypnout Add Pøidat Remove Odstranit ! Previous Pøedcházející ! Next Nasledující ! From Odesílatel ! Subject Subjekt Classification Klasifikace ! Reclassify Rekrasifikovat Undo Vrátit Close Zavøít ! Find Najít ! Filter Filter Yes Ano No Ne --- 11,34 ---- # Common words that are used on their own all over the interface Apply Pouít ! On Zapnuto ! Off Vypnuto TurnOn Zapnout TurnOff Vypnout Add Pøidat Remove Odstranit ! Previous Pøedchozí ! Next Následující ! From Od ! Subject Pøedmìt ! Cc Cc Classification Klasifikace ! Reclassify Znova klasifikovat ! Probability Pravdìpodobnost ! Scores Skóre ! QuickMagnets <I>QuickMagnet</I>y Undo Vrátit Close Zavøít ! Find Hledat ! Filter Filtr Yes Ano No Ne *************** *** 50,54 **** Bucket Ko Magnet Magnet ! Delete Zmazat Create Vytvoøit To Pøíjemce --- 37,41 ---- Bucket Ko Magnet Magnet ! Delete Odstranit Create Vytvoøit To Pøíjemce *************** *** 56,100 **** Rename Pøejmenovat Frequency Frekvence - Probability Pravdìpodobnost - Score Hodnocení Lookup Hledání Word Slovo Count Poèet ! Update Aktualizovat Refresh Obnovit # The header and footer that appear on every UI page ! Header_Title POPFile øídící panel ! Header_Shutdown Zastavit POPFile Header_History Historie Header_Buckets Koe Header_Configuration Konfigurace ! Header_Advanced Rozíøení ! Header_Security Bezpeènost Header_Magnets Magnety ! Footer_HomePage POPFile domovská stránka Footer_Manual Manuál ! Footer_Forums Diskuze ! Footer_FeedMe Podpoøit ! Footer_RequestFeature Poadavky na funkcionalitu ! Footer_MailingList Potovní skupina ! Configuration_Error1 Znak oddìlovaèe musí být jen jeden znak ! Configuration_Error2 Port uivatelského rozhraní musí být v rozpìtí èísel 1 a 65535 ! Configuration_Error3 Port pro POP3 musí být v rozpìtí èísel 1 a 65535 ! Configuration_Error4 Velikost stránky musí být v rozpìtí èísel 1 a 1000 ! Configuration_Error5 Poèet dní v historii musí být v rozpìtí èísel 1 a 366 ! Configuration_Error6 Hodnota èekání na TCP musí by v rozpìtí èísel 10 a 300 ! Configuration_POP3Port Port pro POP3 ! Configuration_POP3Update Port zmìnìný na %s; tato zmìna vstoupí v platnost a po restartu POPFile ! Configuration_Separator Znak oddìlovaèe ! Configuration_SepUpdate Oddìlovaè zmìnìný na %s ! Configuration_UI Port uivatelského rozhraní ! Configuration_UIUpdate Port uivatelského rozhraní zmìnìný na %s; zmìny budou patrné a po restartu ! Configuration_History Poèet zpráv na stránku ! Configuration_HistoryUpdate Zmìnìný poèet zpráv na stránku na %s ! Configuration_Days Poèet dní uchování historie ! Configuration_DaysUpdate Zmìnìný poèet dní uchování historie na %s Configuration_UserInterface Uivatelské rozhraní Configuration_Skins Vzhled --- 43,94 ---- Rename Pøejmenovat Frequency Frekvence Lookup Hledání Word Slovo Count Poèet ! Update Aktualizace Refresh Obnovit # The header and footer that appear on every UI page ! Header_Title Ovládací panel POPFile ! Header_Shutdown Ukonèit POPFile Header_History Historie Header_Buckets Koe Header_Configuration Konfigurace ! Header_Advanced Rozíøené ! Header_Security Zabezpeèení Header_Magnets Magnety ! Footer_HomePage Domovská stránka POPFile Footer_Manual Manuál ! Footer_Forums Fóra ! Footer_FeedMe Podpoøte vývoj ! Footer_RequestFeature Poadavek na funkci ! Footer_MailingList Mailing List ! Configuration_Error1 Oddìlovaè musí být jediný znak ! Configuration_Error2 Port uivatelského rozhraní musí být èíslo mezi 1 a 65535 ! Configuration_Error3 Port protokolu POP3 musí být èíslo mezi 1 a 65535 ! Configuration_Error4 Velikost stránky musí být èíslo mezi 1 a 1000 ! Configuration_Error5 Poèet dnù platnosti historie musí být èíslo mezi 1 a 366 ! Configuration_Error6 Doba èekání TCP musí být èíslo mezi 10 a 300 ! Configuration_Error7 Port pro XML-RPC musí být èíslo mezi 1 a 65535 ! Configuration_POP3Port Port protokolu POP3 ! Configuration_POP3Update Nový port POP3 je %s; tato zmìna se projeví a po restartu POPFile ! Configuration_XMLRPCUpdate Nový port pro XML-RPC je %s; tato zmìna se projeví a po restartu POPFile ! Configuration_XMLRPCPort Port pro XML-RPC ! Configuration_SMTPPort Port protokolu SMTP ! Configuration_SMTPUpdate Nový port pro SMTP je %s; tato zmìna se projeví a po restartu POPFile ! Configuration_NNTPPort Port protokolu NNTP ! Configuration_NNTPUpdate Nový port pro NNTP je %s; tato zmìna se projeví a po restartu POPFile ! Configuration_POP3Separator Oddìlovací znak pro POP3 host:port:user ! Configuration_NNTPSeparator Oddìlovací znak pro NNTP host:port:user ! Configuration_POP3SepUpdate Nový oddìlovaè pro POP3 je %s ! Configuration_NNTPSepUpdate Nový oddìlovaè pro NNTP je %s ! Configuration_UI Port webového uivatelského rozhraní ! Configuration_UIUpdate Nový port webového uivatelského rozhraní je %s; tato zmìna se projeví a po restartu POPFile ! Configuration_History Poèet zpráv na stránce ! Configuration_HistoryUpdate Nový poèet zpráv na stránce je %s ! Configuration_Days Poèet dnù platnosti historie ! Configuration_DaysUpdate Nový poèet dnù platnosti historie je %s Configuration_UserInterface Uivatelské rozhraní Configuration_Skins Vzhled *************** *** 104,257 **** Configuration_ListenPorts Porty Configuration_HistoryView Zobrazení historie ! Configuration_POP3Separator POP3 host:port:user oddìlovací znak ! Configuration_TCPTimeout Èekání na pøipojení TCP ! Configuration_TCPTimeoutSecs Èekání na pøipojení TCP v sekundách ! Configuration_TCPTimeoutUpdate Èekání na pøipojení TCP zmìnìné na %s ! Configuration_ClassificationInsertion Vkládání textù do zprávy ! Configuration_SubjectLine Zmìna textu subjektu Configuration_XTCInsertion Pøidání hlavièky X-Text-Classification Configuration_XPLInsertion Pøidání hlavièky X-POPFile-Link ! Configuration_Logging Protokol zpracování ! Configuration_None ádný Configuration_ToScreen Na obrazovku Configuration_ToFile Do souboru ! Configuration_ToScreenFile Na obrazovku a do souboru ! Configuration_LoggerOutput Výstup protokolu Configuration_GeneralSkins Vzhled ! Configuration_SmallSkins Malý vzhled ! Configuration_TinySkins Drobný vzhled ! Advanced_Error1 '%s' se u nachází v seznamu Ignorovaná slova ! Advanced_Error2 Ignorovaná slova mùou obsahovat jen: alfanumerické znaky, ., _, -, @ ! Advanced_Error3 '%s' pøidané do seznamu Ignorovaná slova ! Advanced_Error4 '%s' se nenachází v seznamu Ignorovaná slova ! Advanced_Error5 '%s' odstranìné ze seznamu Ignorovaná slova Advanced_StopWords Ignorovaná slova ! Advanced_Message1 POPFile ignoruje nasledující, èasto pouívaná slova: Advanced_AddWord Pøidat slovo ! Advanced_RemoveWord Odstranit slovo ! History_Filter (zobrazuje se jen ko <font color="%s">%s</font>) ! History_FilterBy Filtrovat podle ! History_Search (vyhledávání podle odesilatele/subjektu %s) History_Title Poslední zprávy ! History_Jump Pøejdi na zprávu ! History_ShowAll Zobraz vechny History_ShouldBe Má být ! History_NoFrom prázdný øádek odesilatele ! History_NoSubject prázdny øádek subjektu ! History_ClassifyAs Klasifikuj ako ! History_MagnetUsed Pouitý magnet ! History_ChangedTo Zmeò na <font color="%s">%s ! History_Already U reklasifikované na <font color="%s">%s</font> ! History_RemoveAll Odstraò vechno ! History_RemovePage Odstraò stranu ! History_Remove Pokud chce smazat záznamy z historie, klikni ! History_SearchMessage Hledej odesilatele/subjekt ! History_NoMessages ádné zprávy ! History_ShowMagnet zmagnetizované ! History_Magnet (zobrazují se jen záznamy klasifikované magnetem) ! History_ResetSearch Vyprázdnit Password_Title Heslo ! Password_Enter Zadej heslo ! Password_Go Vstup! Password_Error1 Nesprávné heslo ! Security_Error1 Bezpeènostní port musí být v rozpìtí èísel 1 a 65535 ! Security_Stealth Utajený mód/Èinnost serveru ! Security_NoStealthMode Ne (Utajený mód) ! Security_ExplainStats (Pokud je toto zapnuté, POPFile pole jednou za den následující tøi hodnoty na stránku www.usethesource.com: bc (celkový poèet koù, které má), mc (celkový poèet zpráv, které POPFile klasifikoval) a ec (celkový poèet chybných klasifikací). Tyto hodnoty se ukladají do souboru a budou pouité na vyhodnocení nìkterých statistik o tom jak lidé pouívají POPFile a jak dobøe funguje. Mùj web server uchováva tyto informacie pøibline 5 dní a poté je smae; Neuchovávam informace propojující statistické údaje s konkrétnímy IP adresamy.) ! Security_ExplainUpdate (pokud je toto zapnuté, POPFile pole jednou za den následující tøi hodnoty na stránku www.usethesource.com: ma (hlavní èíslo verze pouívaného POPFile), mi (vedlejí èíslo verze pouívaného POPFile) a bn (èíslo kompilace pouívaného POPFile). POPFile dostane odpoveï ve formì obrázku, který se zobrazí na vrchu stránky, pokud je k dispozici nová verze. Mùj web server uchováva tyto informacie pøibline 5 dní a poté je smae; Neuchovávam informace propojující statistické údaje s konkrétnímy IP adresamy.) Security_PasswordTitle Heslo uivatelského rozhraní Security_Password Heslo ! Security_PasswordUpdate Heslo zmìnìné na %s ! Security_AUTHTitle Bezpeèné ovìøování hesla/AUTH ! Security_SecureServer POP3 SPA/AUTH server ! Security_SecureServerUpdate Zabezpeèený server zmìnìný na %s; tato zmìna vstoupí v platnost a po restartu POPFile ! Security_SecurePort POP3 SPA/AUTH port ! Security_SecurePortUpdate Port zmìnìný na %s; tato zmìna vstoupí v platnost a po restartu POPFile ! Security_POP3 Povol POP3 pøipojení ze vzdálených poèítaèù (vyaduje restart POPFile) ! Security_UI Povol HTTP (uívatelské rozhraní) pøipojení ze vzdálených poèítaèù (vyaduje restart POPFile) ! Security_UpdateTitle Automatická kontrola nových verzí ! Security_Update Kontroluj dennì nové verze programu POPFile ! Security_StatsTitle Oznamovat statistiky ! Security_Stats Posílat statistiky dennì ! Magnet_Error1 Magnet '%s' u existuje v koi '%s' ! Magnet_Error2 Nový magnet '%s' by se bil s existujícim magnetem '%s' v koi '%s' a mohl by zpùsobit dvojsmyslné výsledky. Nový magnet nebyl pøidaný. ! Magnet_Error3 Vytvorený nový magnet '%s' v koi '%s' ! Magnet_CurrentMagnets Aktuální magnety ! Magnet_Message1 Následující magnety klasifikují potu vdy do urèeného koe. ! Magnet_CreateNew Vytvoøi nový magnet ! Magnet_Explanation Existují tøi typy magnetù:</b> <ul><li><b>Adresa nebo jméno odesilatele:</b> (políèko From: v pote) Napø.: jo...@co... pro konkrétní adresu, <br />company.com pro kadého odesílatele z adresy company.com, <br />John Doe pro konkrétní osobu, John pro kadného Johna</li><li><b>Adresa nebo jméno pøíjemcù:</b> To samé jako pøedchádzející, ale pro políèko To: poty</li> <li><b>Slova v subjektu:</b> Napø.: hello zaøadí kadou potu, která má hello v subjektu</li></ul> Magnet_MagnetType Typ magnetu Magnet_Value Hodnota ! Magnet_Always Zaøadí se vdy do koe ! Bucket_Error1 Názvy koù mùou obsahovat jen znaky od a do z (malé písmo) plus - a _ ! Bucket_Error2 Ko s názvem %s u existuje ! Bucket_Error3 Vytvoøený ko s názvem %s ! Bucket_Error4 Prosím, nezadávej prázdné názvy ! Bucket_Error5 Ko je pøejmenovaný z %s na %s ! Bucket_Error6 Zmazaný ko %s ! Bucket_Title Pøehled ! Bucket_BucketName Název koe Bucket_WordCount Poèet slov Bucket_WordCounts Poèty slov ! Bucket_UniqueWords Jedineèná slova ! Bucket_SubjectModification Modifikace subjektu Bucket_ChangeColor Zmìna barvy ! Bucket_NotEnoughData Nedostatek údajù Bucket_ClassificationAccuracy Pøesnost klasifikace ! Bucket_EmailsClassified Klasifikovaná pota ! Bucket_EmailsClassifiedUpper Klasifikovaná pota Bucket_ClassificationErrors Chyby klasifikace Bucket_Accuracy Pøesnost ! Bucket_ClassificationCount Poèty klasifikace ! Bucket_ResetStatistics Vynulování statistiky ! Bucket_LastReset Poslední vynulování ! Bucket_CurrentColor aktuální bavba %s je %s ! Bucket_SetColorTo Nastav barvu %s na %s Bucket_Maintenance Údrba ! Bucket_CreateBucket Vytvoø ko s názvem ! Bucket_DeleteBucket Sma ko s názvem ! Bucket_RenameBucket Pøejmenuj ko s názvem ! Bucket_Lookup Vyhledávání ! Bucket_LookupMessage Vyhledávání slova v koích ! Bucket_LookupMessage2 Výsledek hledání pro ! Bucket_LookupMostLikely <b>%s</b> se najèastìji nachází v koi <font color="%s">%s</font> ! Bucket_DoesNotAppear <p><b>%s</b> se nenachází v ani jednom koi ! Bucket_DisabledGlobally Globální vypnutí Bucket_To na Bucket_Quarantine Karanténa ! SingleBucket_Title Detail pro %s SingleBucket_WordCount Poèet slov v koi SingleBucket_TotalWordCount Celkový poèet slov ! SingleBucket_Percentage Procento z celku SingleBucket_WordTable Tabulka slov pro %s ! SingleBucket_Message1 Slová oznaèená s (*) byla pouita na klasifikaci v prùbìhu aktuálního spustìní POPFile. Klikni na kterékoli slovo, pokud chce vidìt jeho výskyt ve vech koích. ! SingleBucket_Unique %s jedineèných ! Session_Title Platnost POPFile session vyprela ! Session_Error Platnost POPFile session vyprela. Mohlo to nastat vypnutím a zapnutím POPFile, pøièem si nechal otevøený webový prohlíeè. Prosím, pokud chce pokraèovat v práci s POPFile, kliknite na nìkterý z vrchních linek. ! Header_MenuSummary Tato tabulka je navigaèní menu, které zpøístupòuje vechny ostatní stránky øídícího panelu. ! History_MainTableSummary Tato tabulka zobrazuje odesílatele a subjekty aktuálnì pøijatých zpráv a umoòuje jich rozdìlit a klasifikovat. Kliknutím na text subjektu se zobrazí znìní zprávy, spolu s informací proè byla klasifikována tak, jak byla. Stoupec 'Má být' umoòuje urèi, do kterého koe zpráva patøí, anebo zruit tuhle zmìnu. Stoupec 'Odstranit' umoòuje smazat danou správu z historie, pokud ji ji nepotøebuje. ! History_OpenMessageSummary Tato tabulka obsahuje celý text zprávy, spolu se zvýraznìnými slovy, které byly pouité pøi klasifiksci do daného koe. ! Bucket_MainTableSummary Tato tabulka obsahuje prehled klasifikaèních koù. Kadý øádek zobrazuje název koe, celkový poèet slov v tomto koi, aktuální poèet individuálních slov v kadém koi, zdali bude text subjektu zprávy zmìnìný pokud bude zpráva klasifikována, èi zaøadit zprávy v tomto koi do karantény a tabulku, kde se dá vybrat barva kterou se bude zobrazovat vechno na øídícím panelu, týkající se tohoto koe. ! Bucket_StatisticsTableSummary Tato tabulka poskytuje tøi atatistické pøehtedy o výkonu POPFile. První zobrazuje pøesnost klasifikace, druhý kolik zpráv bylo klasifikovaných a do kterých koù a tøetí zobrazuje kolik slov obsahuje který ko a jaké je jejich relativní procentuální zastoupení. ! Bucket_MaintenanceTableSummary Tato tabulka obsahuje formuláøe, které umonují vytvoøit, smazat a nebo pøejmenovat koe a vyhledat zastoupení slova ve vech koích a jeho relativní výskyt. ! Bucket_AccuracyChartSummary Tato tabulka graficky zobrazuje pøesnost klasifikace zpráv. ! Bucket_BarChartSummary Tato tabulka graficky zobrazuje procentuální zaplnìní jednotlivých koù. Je pouitá zároveò pro poèet klasifikovaných zpráv a celkový poèet slov. ! Bucket_LookupResultsSummary Tato tabulka zobrazuje pravdìpodobnost pøiøazenou k jednotlivým slovùm v korpuse. Pro kadý ko zobrazuje frekvenci výskytu slova, pravdìpodobnost s jakou se vyskytuje v koi a celkový vliv slova na zaøazaní zprávy do koe pokud se v ní dané slovo vyskytuje. ! Bucket_WordListTableSummary Tato tabulka zobrazuje seznam vech slov pro ko, slová jsou seøazebá podle poèáteèních znakù pro kadý øádek. ! Magnet_MainTableSummary Tato tabulka zobrazuje seznam magnetù, které jsou pouívané na automatické klasifikováníe zpráv podle pøesných pravidel. Kadý øádek zobrazuje jak je magnet definovaný, pro který ko slouí a tlaèítko na smazaní magnetu. ! Configuration_MainTableSummary Tato tabulka obsahuje formuláøe které umoòují konfigurovat POPFile. ! Configuration_InsertionTableSummary Tato tabulka obsahuje tlaèítka, které urèují zdali se mají a nebo nemají vykonat nìkteré zmìny v záhlaví èi v textu subjektu zprávy døíve, ne se pøedá e-mailovému klientovi. ! Security_MainTableSummary Tato tabulka poskytuje nìkolik nastavení, které ovlivòují bezpeènost celé konfigurace POPFile, zdali se má vykonávat automatická kontrola existence zmìn programu a zdali se má zasílat statistika zpracování do centrální databáze autora programu. ! Advanced_MainTableSummary Tato tabulka zobrazuje seznam slov, které POPFile ignoruje pøi klasifikování zpráv z dùvodu jejich relativnì èastého výskytu ve vech zprávach. Jsou zobrazené v øádcích v závislosti podle prvního znaku. --- 98,279 ---- Configuration_ListenPorts Porty Configuration_HistoryView Zobrazení historie ! Configuration_TCPTimeout Èekání na spojení ! Configuration_TCPTimeoutSecs Èekání na spojení v sekundách ! Configuration_TCPTimeoutUpdate Nové èekání na spojení je %s ! Configuration_ClassificationInsertion Vkládání textu do zprávy ! Configuration_SubjectLine Zmìna pøedmìtu zprávy Configuration_XTCInsertion Pøidání hlavièky X-Text-Classification Configuration_XPLInsertion Pøidání hlavièky X-POPFile-Link ! Configuration_Logging Protokolování ! Configuration_None Není Configuration_ToScreen Na obrazovku Configuration_ToFile Do souboru ! Configuration_ToScreenFile Na obrazovku i do souboru ! Configuration_LoggerOutput Protokol Configuration_GeneralSkins Vzhled ! Configuration_SmallSkins Malý ! Configuration_TinySkins Drobný ! Configuration_CurrentLogFile <aktuální protokol> ! Advanced_Error1 '%s' je u v seznamu ignorovaných slov ! Advanced_Error2 Ignorovaná slova mohou obsahovat jen alfanumerické znaky a znaky '.', '_', '-' nebo '@' ! Advanced_Error3 '%s' pøidáno do seznamu ignorovaných slov ! Advanced_Error4 '%s' není v seznamu ignorovaných slov ! Advanced_Error5 '%s' odstranìno ze seznamu ignorovaných slov Advanced_StopWords Ignorovaná slova ! Advanced_Message1 POPFile ignoruje tato èasto uívaná slova: Advanced_AddWord Pøidat slovo ! Advanced_RemoveWord Odebrat slovo ! History_Filter (zobrazuje se ko <font color="%s">%s</font>) ! History_FilterBy Filtr ! History_Search (vyhledáno podle Odesílatele/Pøedmìtu %s) History_Title Poslední zprávy ! History_Jump Pøejít ke zprávì ! History_ShowAll Ukázat ve History_ShouldBe Má být ! History_NoFrom schází øádek 'Odesílatel' ! History_NoSubject schází øádek 'Pøedmìt' ! History_ClassifyAs Klasifikovat jako ! History_MagnetUsed Pouit magnet ! History_MagnetBecause <b>Pouit magnet</b><p>Klasifikováno jako <font color="%s">%s</font>, protoe byl pouit magnet %s </p> ! History_ChangedTo Zmìnìno na <font color="%s">%s ! History_Already Klasifikace ji zmìnìna na <font color="%s">%s</font> ! History_RemoveAll Odstranit ve ! History_RemovePage Odstranit stránku ! History_Remove Kliknout pro odstranìní poloek v historii ! History_SearchMessage Hledat Odesílatele/Pøedmìt ! History_NoMessages Zpráva nenalezena ! History_ShowMagnet zmagnetováno ! History_ShowNoMagnet nezmagnetováno ! History_Magnet (jen zprávy klasifikované magnetem) ! History_NoMagnet (jen zprávy neklasifikované magnetem) ! History_ResetSearch Vynulovat Password_Title Heslo ! Password_Enter Vloit heslo ! Password_Go Vstoupit Password_Error1 Nesprávné heslo ! Security_Error1 Port musí být èíslo mezi 1 a 65535 ! Security_Stealth Utajený reim/reim serveru ! Security_NoStealthMode Ne (Utajený reim) ! Security_ExplainStats (Pokud je to zapnuto, POPFile jedenkrát dennì odele skriptu na www.usethesource.com následující údaje: <B>bc</B> [celkový poèet koù], <B>mc</B> [celkový poèet zpráv, které POPFile klasifikoval] a <B>ec</B> [celkový poèet chyb klasifikace]. Tyto údaje jsou ukládány a pouiji je pro statistiku o tom, jak lidé POPFile pouívají a jak je úspìný. Mùj web server data udruje 5 dnù a pak je ruí. Neukládá se ádná informace o propojení mezi statistikami a pøíslunými IP adresami.) ! Security_ExplainUpdate (Pokud je to zapnuto, POPFile jedenkrát dennì odele skriptu na www.usethesource.com následující údaje: <B>ma</B> [hlavní èíslo verze vaeho POPFile], <B>mi</B> [vedlejí èíslo verze] a <B>bn</B> (èíslo sestavení POPFile). Pokud je dostupná nová verze, POPFile to graficky zobrazí v horní èásti stránky. Mùj web server data udruje 5 dnù a pak je ruí. Neukládá se ádná informace o propojení mezi údaji a pøíslunými IP adresami.) Security_PasswordTitle Heslo uivatelského rozhraní Security_Password Heslo ! Security_PasswordUpdate Nové heslo je %s ! Security_AUTHTitle Vzdálené servery ! Security_SecureServer Server POP3 SPA/AUTH ! Security_SecureServerUpdate Nový bezpeèný server POP3 SPA/AUTH je %s; tato zmìna se projeví a po restartu POPFile ! Security_SecurePort Port pro POP3 SPA/AUTH ! Security_SecurePortUpdate Nový port pro POP3 SPA/AUTH je %s; tato zmìna se projeví a po restartu POPFile ! Security_SMTPServer Zøetìzený SMTP server ! Security_SMTPServerUpdate Nový zøetìzený SMTP server je %s; tato zmìna se projeví a po restartu POPFile ! Security_SMTPPort Port pro zøetìzený SMTP server ! Security_SMTPPortUpdate Nový port pro zøetìzený SMTP server je %s; tato zmìna se projeví a po restartu POPFile ! Security_POP3 Pøijmout POP3 spojení od vzdálených poèítaèù (vyaduje restart POPFile) ! Security_SMTP Pøijmout SMTP spojení od vzdálených poèítaèù (vyaduje restart POPFile) ! Security_NNTP Pøijmout NNTP spojení od vzdálených poèítaèù (vyaduje restart POPFile) ! Security_UI Pøijmout HTTP (uivatelské rozhraní) spojení od vzdálených poèítaèù (vyaduje restart POPFile) ! Security_XMLRPC Pøijmout XML-RPC spojení od vzdálených poèítaèù (vyaduje restart POPFile) ! Security_UpdateTitle Automatická kontrola verze ! Security_Update Dennì kontrolovat dostupnost aktualizace POPFile ! Security_StatsTitle Hláení statistik ! Security_Stats Dennì odesílat statistiky ! Magnet_Error1 Magnet '%s' u je v koi '%s' ! Magnet_Error2 Nový magnet '%s' koliduje s magnetem '%s' v koi '%s' a mohl by zpùsobit nejednoznaèné výsledky. Nový magnet nebyl pøidán. ! Magnet_Error3 Vytvoøit nový magnet '%s' v koi '%s' ! Magnet_CurrentMagnets Platné magnety ! Magnet_Message1 Následující magnety zpùsobí, e zprávy budou vdy zaøazeny do urèeného koe. ! Magnet_CreateNew Zaloit nový magnet ! Magnet_Explanation Jsou dostupné tyto typy magnetù:</b> <ul><li><b>From: Adresa nebo jméno odesílatele:</b> Napøíklad: jo...@co... pro konkrétní adresu, <br />company.com pro vechny odesílatele z company.com, <br />John Doe pro konkrétní osobu, John pro vechny Johny</li><li><b>To/Cc: Adresa nebo jméno pøíjemce/pøíjemcù:</b> Obdobnì jako magnet From: pro adresy pøíjemcù (hlavièky To: a Cc:).</li> <li><b>Subject: slova v pøedmìtu</b>Napøíklad: hello pro vechny zprávy se slovem hello v pøedmìtu</li></ul> Magnet_MagnetType Typ magnetu Magnet_Value Hodnota ! Magnet_Always Zaøadit vdy do koe ! Magnet_Jump Pøechod na stránku magnetù ! Bucket_Error1 Jména koù mohou obsahovat jen malá písmena 'a' a 'z', èíslice '0' a '9', a znaky '-' a '_' ! Bucket_Error2 Ko %s ji existuje ! Bucket_Error3 Ko %s byl zaloen ! Bucket_Error4 Vlote neprázdné slovo ! Bucket_Error5 Ko %s byl pøejmenován na %s ! Bucket_Error6 Ko %s byl odstranìn ! Bucket_Title Shrnutí ! Bucket_BucketName Jméno koe Bucket_WordCount Poèet slov Bucket_WordCounts Poèty slov ! Bucket_UniqueWords Unikátní slova ! Bucket_SubjectModification Modifikace pøedmìtu Bucket_ChangeColor Zmìna barvy ! Bucket_NotEnoughData Pøíli málo dat Bucket_ClassificationAccuracy Pøesnost klasifikace ! Bucket_EmailsClassified Poèet klasifikovaných zpráv ! Bucket_EmailsClassifiedUpper Poèet klasifikovaných zpráv Bucket_ClassificationErrors Chyby klasifikace Bucket_Accuracy Pøesnost ! Bucket_ClassificationCount Poèet klasifikací ! Bucket_ClassificationFP Poèet chyb "False Positive" ! Bucket_ClassificationFN Poèet chyb "False Negative" ! Bucket_ResetStatistics Vynulovat statistiky ! Bucket_LastReset Poslední nulování ! Bucket_CurrentColor %s má barvu %s ! Bucket_SetColorTo Nastavit barvu %s na %s Bucket_Maintenance Údrba ! Bucket_CreateBucket Zaloit ko s názvem ! Bucket_DeleteBucket Odstranit ko s názvem ! Bucket_RenameBucket Pøejmenovat ko s názvem ! Bucket_Lookup Vyhledání ! Bucket_LookupMessage Vyhledat slovo v koích ! Bucket_LookupMessage2 Výsledky hledání ! Bucket_LookupMostLikely <b>%s</b> se nejèastìji objevuje v koi <font color="%s">%s</font> ! Bucket_DoesNotAppear <p><b>%s</b> se nenalo v ádném koi ! Bucket_DisabledGlobally Globálnì vypnuto Bucket_To na Bucket_Quarantine Karanténa ! SingleBucket_Title Detail %s SingleBucket_WordCount Poèet slov v koi SingleBucket_TotalWordCount Celkový poèet slov ! SingleBucket_Percentage Procento SingleBucket_WordTable Tabulka slov pro %s ! SingleBucket_Message1 Pro zobrazení slov zaèínajících urèitým písmenem je mono kliknout na toto písmeno v indexu. Kliknutím na slovo se zobrazí jeho pravdìpodobnosti pro vechny koe. ! SingleBucket_Unique %s unikátních ! SingleBucket_ClearBucket Odstranit vechna slova ! Session_Title Relace POPFile vyprela ! Session_Error Vae relace POPFile vyprela. To mùe být zpùsobeno zastavením a novým sputìním POPFile, zatímco prohlíeè zùstal otevøený. Pro pokraèování práce s POPFile je nutno kliknout na nìkterý z odkazù nahoøe. + View_Title Pohled na jednu zprávu ! Header_MenuSummary Tato tabulka tvoøí navigaèní menu umoòující pøístup k jednotlivým stránkám Ovládacího panelu. + History_MainTableSummary Tato tabulka zobrazuje odesílatele a pøedmìt doruèených zpráv a umoòuje jejich prohlédnutí a zmìnu klasifikace. Po kliknutí na pøedmìt se zobrazí celý text zprávy souèasnì s informací, proè byla klasifikována tak, jak byla. Sloupec 'Má být' umoòuje urèit ko, do kterého zpráva patøí, nebo odvolat tuto zmìnu. Sloupec 'Odstranit' umoòuje zruit zprávy, které ji nejsou zapotøebí. + + History_OpenMessageSummary Tato tabulka obsahuje celý text zprávy. Slova pouitá pøi klasifikaci jsou oznaèena barvou koe, pro který jsou nejvíce relevantní. + + Bucket_MainTableSummary Tato tabulka poskytuje pøehled klasifikaèních koù. Kadý øádek obsahuje jméno koe, celkový poèet slov pro daný ko, aktuální poèet slov, zda je pøi klasifikaci modifikován pøedmìt zprávy, zda jsou zprávy umisovány do karantény, a tabulka pro výbìr barvy koe. + + Bucket_StatisticsTableSummary Tato tabulka poskytuje tøi sady statistických údajù o èinnosti POPFile. První z nich zobrazuje pøesnost klasifikace, druhá poèet klasifikovaných zpráv pro jednotlivé koe a tøetí poèty slov v jednotlivých koích a jejich relativní zastoupení. + + Bucket_MaintenanceTableSummary Tato tabulka obsahuje formuláøe pro zakládání, ruení a pøejmenovávání koù a pro vyhledání slova v koích a zjitìní jeho relativní pravdìpodobnosti. + + Bucket_AccuracyChartSummary Tato tabulka graficky znázoròuje pøesnost klasifikace zpráv. + + Bucket_BarChartSummary Tato tabulka graficky znázoròuje relativní zastoupení klasifikovaných zpráv a celkového poètu slov pro jednotlivé koe. + + Bucket_LookupResultsSummary Tato tabulka poskytuje pravdìpodobnosti pro kadé slovo z korpusu. Pro kadý ko je zobrazena frekvence výskytu slova, pravdìpodobnost, e se v koi objeví, a celkový vliv na skóre pro daný ko, pokud se ve zprávì vyskytuje. + + Bucket_WordListTableSummary Tato tabulka nabízí seznam vech slov pro daný ko. + + Magnet_MainTableSummary Tato tabulka zobrazuje seznam vech magnetù, které jsou pouity pro automatickou klasifikaci zpráv podle pevných pravidel. Kadý øádek obsahuje informace o tom, jak je magnet definován a pro který ko je urèen, a tlaèítko pro jeho zruení. + + Configuration_MainTableSummary Tato tabulka obsahuje øadu formuláøù urèených k nastavování konfigurace POPFile. + + Configuration_InsertionTableSummary Tato tabulka osahuje tlaèítka urèující, zda se budou provádìt urèité modifikace hlavièky zprávy pøed jejím pøedáním potovnímu klientu. + + Security_MainTableSummary Tato tabulka umoòuje nastavit zabezpeèení konfigurace POPFile, automatickou kontrolu nových verzí programu a zasílání statistických údajù do centrálního úloitì autora. + + Advanced_MainTableSummary Tato tabulka obsahuje seznam slov, která POPFile pøi klasifikaci pro jejich vysokou èetnost ve zprávách ignoruje. |