debian/0000755000000000000000000000000012305423765007175 5ustar debian/letodms.postrm0000644000000000000000000000425412223342050012101 0ustar #!/bin/sh # postrm script for letodms # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `remove' # * `purge' # * `upgrade' # * `failed-upgrade' # * `abort-install' # * `abort-install' # * `abort-upgrade' # * `disappear' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package if [ -f /usr/share/debconf/confmodule ]; then . /usr/share/debconf/confmodule fi if [ -f /usr/share/dbconfig-common/dpkg/postrm.mysql ]; then . /usr/share/dbconfig-common/dpkg/postrm.mysql dbc_go letodms $@ fi if [ "$1" = "remove" ] || [ "$1" = "purge" ] ; then COMMON_STATE=$(dpkg-query -f '${Status}' -W 'apache2.2-common' 2>/dev/null | awk '{print $3}' || true) if [ -e /usr/share/apache2/apache2-maintscript-helper ] ; then . /usr/share/apache2/apache2-maintscript-helper apache2_invoke disconf letodms.conf || exit $? elif [ "$COMMON_STATE" = "installed" ] || [ "$COMMON_STATE" = "unpacked" ] ; then [ ! -L /etc/apache2/conf.d/letodms.conf ] || rm /etc/apache2/conf.d/letodms.conf fi fi if [ "$1" = "purge" ]; then rm -f /etc/letodms/settings.xml if which ucf >/dev/null 2>&1; then ucf --purge /etc/letodms/settings.xml ucfr --purge letodms /etc/letodms/settings.xml fi # Remove all files. for dir in /var/lib/letodms/ /usr/share/letodms/ do [ -d "$dir" ] && { find "$dir" -type d -o -exec rm -f {} \; find "$dir" -type d -depth -exec rmdir {} \; } done fi case "$1" in purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) ;; *) echo "postrm called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0 debian/letodms.sh0000644000000000000000000000033612220755077011202 0ustar #!/bin/sh WWW=`cat /etc/letodms/letodms.local.conf` if [ "$1" ]; then WWW="$1" ; fi if [ -x /usr/bin/sensible-browser ]; then /usr/bin/sensible-browser $WWW else echo "Error: Does not exists local browser installed" fi debian/letodms.conf0000644000000000000000000000056712220757234011520 0ustar Alias /letodms "/usr/share/letodms" Options -Indexes -MultiViews +FollowSymLinks Redirect /letodms/conf/settings.xml http://localhost/letodms/ AllowOverride None = 2.3> Require local Order deny,allow Deny from all Allow from 127.0.0.0/255.0.0.0 ::1/128 debian/letodms.postinst0000644000000000000000000000440712305333656012455 0ustar #!/bin/sh # postinst script for letodms # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `configure' # * `abort-upgrade' # * `abort-remove' `in-favour' # # * `abort-remove' # * `abort-deconfigure' `in-favour' # `removing' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package # Database config work . /usr/share/debconf/confmodule . /usr/share/dbconfig-common/dpkg/postinst.mysql dbc_generate_include=template:/etc/letodms/settings.xml dbc_generate_include_owner="root:www-data" dbc_generate_include_perms='640' dbc_generate_include_args=' -o template_infile=/usr/share/letodms/conf/settings.xml.template -U' if ! dbc_go letodms $@; then echo 'Automatic configuration using dbconfig-common failed!' fi # contents permissions chmod -R 2775 /var/lib/letodms/data chown -R root:www-data /var/lib/letodms/data install -d /usr/share/letodms/js if [ -f /usr/share/javascript/jquery/jquery.min.js ] && [ ! -h /usr/share/letodms/js/jquery.min.js ]; then ln -s /usr/share/javascript/jquery/jquery.min.js /usr/share/letodms/js/jquery.min.js fi if [ ! -f /usr/share/letodms/conf/settings.xml ]; then ln -s /etc/letodms/settings.xml /usr/share/letodms/conf/settings.xml fi if [ "$1" = "configure" ] ; then COMMON_STATE=$(dpkg-query -f '${Status}' -W 'apache2.2-common' 2>/dev/null | awk '{print $3}' || true) if [ -e /usr/share/apache2/apache2-maintscript-helper ] ; then . /usr/share/apache2/apache2-maintscript-helper apache2_invoke enconf letodms.conf || exit $? elif [ "$COMMON_STATE" = "installed" ] || [ "$COMMON_STATE" = "unpacked" ] ; then if [ -d /etc/apache2/conf.d/ -a ! -L /etc/apache2/conf.d/letodms.conf ]; then ln -s ../conf-available/letodms.conf /etc/apache2/conf.d/letodms.conf fi fi fi # Reloading apache -- No needed for apache2.4 #if which invoke-rc.d >/dev/null 2>&1; then # invoke-rc.d apache2 reload #else # /etc/init.d/apache2 reload #fi #DEBHELPER# exit 0 debian/letodms.NEWS0000644000000000000000000000375612220755040011343 0ustar letodms (3.3.4+dfsg-1) unstable; urgency=low Since letodms-3.3.4+dfsg-1 MaxDirID variable is set to 0 by default. This value means that there is no limit of documents (directories). The real limit is set by filesystem (for example: 31998 directories for ext3). This change is due to compatibilize with previous letodms versions. Since letodms-3.3.0 upstream version have changed data folder structure, mainly due to security reasons, that requieres some manual changes in case of need the var maxDirID value different to 0. If you need to set a maxDirID value different to 0, you have to follow next steps: 0- Make a backup of all your data and database. 1- # cd /var/lib/letodms/data/1048576 (or your letodms data directory path). 2- Move all your directories : 1/* 2/* 3/* ... If the maximun document id is <= maxDirID, to: 1/1/* 1/2/* 1/3/* ... else if maximun document id is <= 2* maxDirID, to: 2/1/* 2/2/* 2/3/* ... And so on. Please read carefully '/usr/share/doc/letodms/update.txt' file -- Francisco Manuel Garcia Claramonte Sun, 09 Apr 2012 20:49:46 +0200 letodms (3.2.0+dfsg-1) unstable; urgency=low Since letodms-3.2.0+dfsg-1, the config file /etc/letodms/conf.Settings.php is deprecated. Now, the new config file is /etc/letodms/settings.xml. The installation of letodms Debian package creates the new settings file, and when upgrading old instances of previous versions of letodms, the old config file is not removed, althought it is unneeded. Please, upgrade the new settings file with your own settings. By default it is configured with debconf data on install. By now, old config file is untouched on upgrades (as backup). Please, ensure you remove or hide your old config file, after configure the new one. Do the same with all letodms instances installed on your system. -- Francisco Manuel Garcia Claramonte Sun, 18 Sep 2011 23:01:01 +0200 debian/control0000644000000000000000000000331012305423673010573 0ustar Source: letodms Section: web Priority: optional Maintainer: Francisco Manuel Garcia Claramonte Build-Depends: debhelper (>= 7.0.0) Standards-Version: 3.9.5 Homepage: http://www.letodms.com/ Package: letodms Architecture: all Depends: ${shlibs:Depends}, ${misc:Depends}, php5-mysql, php5, php5-gd, libphp-adodb (>= 4.64-4), debconf | debconf-2.0, dbconfig-common (>= 1.8.4), php-letodms-core (>=3.3.0-1), libjs-jquery, php-letodms-lucene, php-log Recommends: apache2 | httpd, mysql-server | mariadb-server Suggests: mysql-client | mariadb-client Description: document management system based on PHP and MySQL LetoDMS combines all these features with a nice-looking web interface which makes it possible to access your documents not only via intranet in your office but worldwide via the Internet. . In detail LetoDMS offers you these features: * Upload files through web interface * Create folders to group your documents * Edit document and folder properties online * Detailed information on uploaded documents * Lock and unlock documents * Update documents - old versions are saved * Individual icons for different MIME types * Set expiration date for documents * Users are notified about new, updated or expired documents via email * Download documents or view them online within your browser * Control access via detailed ACLs (access control lists) * User and Group management * Powerful search engine * Multi language support * Template system * User can choose language and theme on login * Intuitive user interface * Should work with every browser * Automatic conversion of various document formats to HTML for online viewing * Supports multiple instances. debian/letodms.dirs0000644000000000000000000000031212220755040011511 0ustar usr/share/letodms usr/share/dbconfig-common/data/letodms/install var/lib/letodms/data etc/letodms etc/apache2/sites-available etc/apache2/sites-enabled usr/bin usr/share/pixmaps usr/share/applications debian/watch0000644000000000000000000000013212220755040010210 0ustar version=2 opts=dversionmangle=s/\+dfsg// \ http://sf.net/mydms/LetoDMS-([\d\.]+)\.tar\.gz debian/source/0000755000000000000000000000000012220755040010463 5ustar debian/source/format0000755000000000000000000000001412220755040011674 0ustar 3.0 (quilt) debian/letodms.local.conf0000644000000000000000000000003212220755077012577 0ustar http://localhost/letodms/ debian/letodms.menu0000644000000000000000000000031712220755040011521 0ustar ?package(letodms):needs="x11"\ section="Applications/Office"\ title="LetoDMS"\ command="/usr/bin/letodms"\ icon="/usr/share/pixmaps/logo_letodms_32x32.xpm"\ longtitle="Document Management System" debian/letodms.config0000644000000000000000000000057212220755040012025 0ustar #!/bin/sh set -e if [ -f /usr/share/debconf/confmodule ]; then . /usr/share/debconf/confmodule fi if [ -f /usr/share/dbconfig-common/dpkg/config.mysql ]; then dbc_dbuser="letodms" dbc_dbname="letodms" . /usr/share/dbconfig-common/dpkg/config.mysql if ! dbc_go letodms $@ ; then echo 'Automatic configuration using dbconfig-common failed!' fi fi #DEBHELPER# debian/letodms.10000644000000000000000000000410312220755040010712 0ustar .TH "LetoDMS" "1" "3.0.0" "Francisco M. García" "Document Management System" .SH "NAME" .LP LetoDMS \- Document Management System .SH "SYNTAX" .LP letodms [\fIlocation\fP] .br .SH "COPYRIGHT" .if n MyDMS is Copyright (C) 2002\-2005 by Markus Westphal .if t MyDMS is Copyright \(co 2002\-2005 by Markus Westphal .br .if n MyDMS is Copyright (C) 2006\-2008 by Malcolm Cowe .if t MyDMS is Copyright \(co 2006\-2008 by Malcolm Cowe .br .if n LetoDMS is Copyright (C) 2010 by Uwe Steinmann .if t LetoDMS is Copyright \(co 2010 by Uwe Steinmann .br .if n LetoDMS is Copyright (C) 2010 by Matteo Lucarelli .if t LetoDMS is Copyright \(co 2010 by Matteo Lucarelli .br .SH "DESCRIPTION" .LP The letodms program launch a browser pointing LetoDMS front page. LetoDMS is a document management system based on PHP and MySQL LetoDMS combines all these features with a nice\-looking web interface which makes it possible to access your documents not only via intranet in your office but worldwide via the internet. In detail LetoDMS offers you these features: * Create folders to group your documents * Edit document and folder properties online * Detailed information on uploaded documents * Lock and unlock documents * Update documents \- old versions are saved * Individual Icons for different Mime\-Types * Set expiration\-date for documents * Users are notified about new/updated or expired documents via email * Download documents or view them online within your Browser * Control access via detailed ACLs (access control lists) * User\- and Group\-Management * Powerful search engine * Multi language support * Supports multiple databases through ADOdb .SH "OPTIONS" .LP .TP \fB[\fIlocation\fP]\fR Alternate location for letodms homepage. The default value is http://localhost/letodms/ .SH "FILES" .LP \fI/etc/letodms/letodms.conf\fP Contains the default homepage for letodms .SH "AUTHORS" .LP LetoDMS author is Markus Westphal. This manual has been wroten by Miguel Gea Milvaques .br Updated by Francisco Manuel Garcia Claramonte debian/letodms.docs0000644000000000000000000000007312220755040011504 0ustar install/update-3.3.0/update.txt README README.Notification debian/logo_letodms_32x32.xpm0000644000000000000000000001704212220755040013245 0ustar /* XPM */ static char * logo_letodms_32x32_xpm[] = { "32 32 342 2", " c None", ". c #FFFFFE", "+ c #FEFFFF", "@ c #FFFFFF", "# c #FFFBF0", "$ c #F1F2F4", "% c #D2DEFF", "& c #E4F0D5", "* c #CDCCFF", "= c #FEFAEF", "- c #FFFCF5", "; c #EFF2FB", "> c #E6ECFF", ", c #EBF0FD", "' c #FFFEF7", ") c #FFFEF3", "! c #CFDBFF", "~ c #EAEDF7", "{ c #DBEBDC", "] c #D8E4E6", "^ c #FFFFF7", "/ c #ECEFF7", "( c #E6E9FF", "_ c #D1DCFE", ": c #EDF0FF", "< c #ECF0FE", "[ c #FFFEF4", "} c #D5E0FE", "| c #FFFDEF", "1 c #FFFBF1", "2 c #FEFEFE", "3 c #FFFEFB", "4 c #D9E2FC", "5 c #E4EAF9", "6 c #FFFCEF", "7 c #FEFAF0", "8 c #FBF9EC", "9 c #BCDABB", "0 c #D2DCFF", "a c #D5DBFF", "b c #E0FFFF", "c c #CCEDFF", "d c #FCFBF0", "e c #EDF2FF", "f c #FEFDF9", "g c #FFFDF3", "h c #D8E5ED", "i c #D3E6CF", "j c #F4F3F2", "k c #F3F6FE", "l c #FFFEF9", "m c #FFFDF5", "n c #DDE6FA", "o c #E1E8FD", "p c #D4FFFE", "q c #E4FFFF", "r c #D2FEFF", "s c #D4EFFE", "t c #D2FFFF", "u c #EFF1FE", "v c #FCFBF5", "w c #F6F5F1", "x c #EEEFF7", "y c #C6DFC7", "z c #F4F6FF", "A c #FFFEFE", "B c #C7CBF4", "C c #D0EFFF", "D c #D4FAFF", "E c #D4FFFF", "F c #D4DAFF", "G c #D3F9FF", "H c #EFF2FF", "I c #F6FAF6", "J c #C6E0C7", "K c #D4E5CD", "L c #F6F8FD", "M c #FFFFFC", "N c #BCD9BF", "O c #C7F0FD", "P c #D4E2FF", "Q c #D4DCFF", "R c #D3DEFF", "S c #EFF3FF", "T c #EDEBED", "U c #F1EEF1", "V c #FAFAFF", "W c #FFFDFA", "X c #FFFAED", "Y c #FFFAEF", "Z c #BBD9C0", "` c #C4F0FC", " . c #D4DBFF", ".. c #D4F4FF", "+. c #D4DDFF", "@. c #EAF3FF", "#. c #F2F7F3", "$. c #FAF9ED", "%. c #A7C1AB", "&. c #FBF9ED", "*. c #FFFDF7", "=. c #FFFEFC", "-. c #BED9C1", ";. c #D1F0FF", ">. c #D4DFFF", ",. c #D4DEFF", "'. c #DEF3FF", "). c #B6C5B7", "!. c #F9F5F5", "~. c #FCF8ED", "{. c #FFFAEE", "]. c #FFFDF8", "^. c #BDD9C0", "/. c #CBF2FF", "(. c #D3DFFF", "_. c #D7DFFF", ":. c #BEDFFF", "<. c #ABABAE", "[. c #FDFEFD", "}. c #C4D7FC", "|. c #D5DFFF", "1. c #ABDEFE", "2. c #A7DFFF", "3. c #C7E1C7", "4. c #CCE1CC", "5. c #B7D7B5", "6. c #D2DFFF", "7. c #B9DFFF", "8. c #B4DFFF", "9. c #A9DFFF", "0. c #A7D7F9", "a. c #BAE0FF", "b. c #DEEDFB", "c. c #FFFFFB", "d. c #C0B5BF", "e. c #CCD4F4", "f. c #FFFDF0", "g. c #C8D7FC", "h. c #A5DFFF", "i. c #A9DDFD", "j. c #A9DCFD", "k. c #A5C8EE", "l. c #A1C7F0", "m. c #DEEBF9", "n. c #C0B5BE", "o. c #E5E3E4", "p. c #FFFFFD", "q. c #AFD9FD", "r. c #A6CEF2", "s. c #A6CAF0", "t. c #A5C9EF", "u. c #A9CBEE", "v. c #7DBEFF", "w. c #E0ECF8", "x. c #B5CBCB", "y. c #B9C9B8", "z. c #DAE0D1", "A. c #FFFBEF", "B. c #FFFAF0", "C. c #BCD9C0", "D. c #A7D5FA", "E. c #A5C8EF", "F. c #A6CAEF", "G. c #8CC3F9", "H. c #7FBFFE", "I. c #E2EAE6", "J. c #FFFBED", "K. c #D1DDCA", "L. c #FFE2FD", "M. c #A4C9F1", "N. c #A5C9F0", "O. c #A9CCEE", "P. c #7CADFF", "Q. c #E6EBDC", "R. c #B8C9B8", "S. c #DEE6F7", "T. c #E6DDD8", "U. c #FEE9F9", "V. c #FFFCF1", "W. c #D4E5D3", "X. c #A9CBF6", "Y. c #A9CAEE", "Z. c #96C3F5", "`. c #7DB3FF", " + c #7F9BFE", ".+ c #7FB3FE", "++ c #B3A9B3", "@+ c #E7EFE8", "#+ c #FEFBEF", "$+ c #99A49D", "%+ c #C4D0BB", "&+ c #9FC9F6", "*+ c #7EC1FF", "=+ c #7E9CFF", "-+ c #7E9EFF", ";+ c #7F9FFF", ">+ c #7F9FFE", ",+ c #E0EDF8", "'+ c #FFFEF1", ")+ c #FFFDEE", "!+ c #EEF0F5", "~+ c #EFF0FA", "{+ c #AAA9A9", "]+ c #FEFFFB", "^+ c #BEDCBD", "/+ c #DDDEF0", "(+ c #EEE3FC", "_+ c #E7EBF8", ":+ c #C7D1B9", "<+ c #7AB8FF", "[+ c #7F9CFE", "}+ c #729FFF", "|+ c #FDFAF0", "1+ c #FDF9F0", "2+ c #CFDCFE", "3+ c #D1DDFB", "4+ c #C2DDC6", "5+ c #A2A4AE", "6+ c #ACC0AB", "7+ c #E5F0DB", "8+ c #FDF9F2", "9+ c #FEEFF6", "0+ c #DBE3FC", "a+ c #FFFCEE", "b+ c #7CB9FF", "c+ c #7F9EFF", "d+ c #7E9FFF", "e+ c #4F9F9B", "f+ c #809FFF", "g+ c #FBFAF7", "h+ c #C1DCC2", "i+ c #BFDBBD", "j+ c #C1DDC4", "k+ c #A0A4A6", "l+ c #C3DEC1", "m+ c #C9D6DA", "n+ c #C1DAD1", "o+ c #E6EBFA", "p+ c #D2DDFF", "q+ c #DCE4FB", "r+ c #FFFEEE", "s+ c #DFE6FA", "t+ c #FFFDF4", "u+ c #C8D3BA", "v+ c #7CA5F9", "w+ c #7F9EBC", "x+ c #769FC4", "y+ c #519FC5", "z+ c #549FA6", "A+ c #639FC5", "B+ c #E1EDFB", "C+ c #CDDEE6", "D+ c #C0DCBF", "E+ c #BCD6BC", "F+ c #BDD9BD", "G+ c #9FA4A3", "H+ c #C6DDCD", "I+ c #DCEAD7", "J+ c #ECE6DD", "K+ c #E5EAFA", "L+ c #E2E8FA", "M+ c #F8F6F4", "N+ c #E0E8F1", "O+ c #BFDAC6", "P+ c #B9CFAF", "Q+ c #7C9CFF", "R+ c #809FFB", "S+ c #6A9FA4", "T+ c #789FA8", "U+ c #519FA8", "V+ c #549EA9", "W+ c #E3ECFD", "X+ c #E0ECDC", "Y+ c #ABC0AB", "Z+ c #A9C0A9", "`+ c #AEC7AE", " @ c #888C88", ".@ c #FAF7F5", "+@ c #C6DCDB", "@@ c #C1CBE8", "#@ c #E7EBF9", "$@ c #FBF8F4", "%@ c #FEFCF9", "&@ c #CEE6D1", "*@ c #B6C6B3", "=@ c #AFC2B7", "-@ c #B5CFB4", ";@ c #C4DDCC", ">@ c #BDD0B6", ",@ c #5397B0", "'@ c #5999A2", ")@ c #5C9FA1", "!@ c #799FF1", "~@ c #7099F0", "{@ c #BDD3F0", "]@ c #FEFDFF", "^@ c #F0F3FF", "/@ c #D2E4CB", "(@ c #A8A6A7", "_@ c #AAA1AA", ":@ c #7D817C", "<@ c #FFFDF6", "[@ c #BED9CF", "}@ c #FFFFF2", "|@ c #E2EAEF", "1@ c #E0E4D7", "2@ c #BAD9C4", "3@ c #ABABB9", "4@ c #C2B6BC", "5@ c #CBDDCC", "6@ c #D5E7D0", "7@ c #D5E7D3", "8@ c #D4E7D4", "9@ c #BFD5B6", "0@ c #809CFF", "a@ c #839FEA", "b@ c #7D9DEC", "c@ c #65A8B8", "d@ c #C7D3FF", "e@ c #E0E8FF", "f@ c #A4B3A2", "g@ c #9D9B9F", "h@ c #B1B2B1", "i@ c #BCCDD4", "j@ c #B1CDB3", "k@ c #FAFBF7", "l@ c #FCFDFF", "m@ c #FFFEFD", "n@ c #FFFCF2", "o@ c #CCD6BB", "p@ c #599CF6", "q@ c #5E9FA8", "r@ c #65A6BA", "s@ c #F4F8FD", "t@ c #FEFDF6", "u@ c #E7F0FE", "v@ c #C8C8CA", "w@ c #EAF0FF", "x@ c #CAD5BC", "y@ c #4F95F9", "z@ c #ADBABD", "A@ c #B8C8B0", " ", " ", " . ", " + @ . @ @ # $ % & * @ ", " @ = - ; > > , ' ) ! ~ { ] ^ / ( _ : @ < ", " [ } | 1 @ @ 2 3 4 5 6 7 8 9 0 a b @ c d e ", " f g @ ' h i j k l @ = m n o p q r r s t u ", " @ @ v w x y z @ + A @ A @ @ B C D E E E F G H ", " I J K L M @ . @ @ @ @ @ @ @ N O P E E E Q R S ", " @ T U V W X Y W @ @ @ @ @ @ @ Z ` Q Q ...+.R @. ", " #.$.%.&.*.Y Y # =.A @ @ @ @ -.;.Q >.>.,.>.R '. ", " @ ).!.~.Y # # # {.].@ @ @ @ ^./.Q >.(._.:.R '. ", " @ <.@ [.Y # # # # # Y Y A @ Z }.>.>.|.1.2.R '. ", " @ 3.4.5.g # # # # # # # Y @ Z }.6.7.8.9.0.a.b. ", " c.d.e.f.# # # # # # # # M Z g.h.i.j.i.k.l.m. ", " @ n.o.p.# # # # # # # # m Z q.r.s.t.t.u.v.w. ", " @ x.y.z.A.B.# # # # # # g C.D.E.s.s.F.G.H.w. ", " + I.J.K.L.6 # # # # # # g C.M.s.s.N.O.P.H.w. ", " Q.R.S.T.U.A.# # # # # # V.W.X.F.Y.Z.`. +.+w. ", " @ ++@+#+$+1 A.# # # # # # = # %+&+*+=+-+;+>+,+ ", " '+)+!+~+{+]+^+/+# (+_+)+7 # # # # # :+<+[+;+>+}+>+,+ ", " |+1+2+3+R 4+5+@ 6+7+8+9+7 0+a+A.7 # # # :+b+c+;+d+e+f+,+ ", " g+! h+i+i+j+k+@ l+m+n+o+p+q+r+s+6 # 6 t+u+v+w+x+y+z+A+B+ ", " + . C+D+E+F+G+@ H+I+J+K+R % L+| V.M+N+O+P+Q+R+S+T+U+V+W+ ", " + X+Y+Z+`+ @@ .@+@@@#@} $@%@&@*@=@-@;@>@,@'@)@!@~@{@]@ ", " A ^@/@(@_@:@@ <@[@}@|@1@2@3@4@5@6@7@8@9@0@a@b@c@d@@ ", " A e@f@g@h@@ i@Y+j@~.k@l@p.@ m@ n@o@p@q@r@s@@ ", " @ t@u@@ v@w@c.@ + x@y@z@V @ ", " @ @ @ @ > A@. A ", " . @ ", " ", " "}; debian/letodms.desktop0000644000000000000000000000044212220755040012225 0ustar [Desktop Entry] Version=1.0 Name=LetoDMS GenericName=LetoDMS Comment=Open source Document Management System Comment[en]=Open source Document Management System Comment[es]=Sistema de gestión documental Open source Type=Application Exec=letodms Icon=logo_letodms_32x32.xpm Categories=Office;debian/compat0000644000000000000000000000000212220755040010361 0ustar 7 debian/letodms.prerm0000644000000000000000000000020012220755040011671 0ustar #!/bin/sh set -e . /usr/share/debconf/confmodule . /usr/share/dbconfig-common/dpkg/prerm.mysql dbc_go letodms $@ #DEBHELPER# debian/letodms.examples0000644000000000000000000000016712220755040012376 0ustar install/create_tables-innodb.sql install/create_tables.sql delete_all_contents.sql drop-tables-innodb.sql reset_db.sql debian/patches/0000755000000000000000000000000012223343567010624 5ustar debian/patches/paths0000644000000000000000000000163512220755040011661 0ustar # Description: Patch proper paths for LetoDMS in Debian. # Author: Francisco Manuel Garcia Claramonte # Last-Update: 22-03-2012 Index: letodms/conf/settings.xml.template =================================================================== --- letodms.orig/conf/settings.xml.template 2012-03-22 22:02:12.000000000 +0100 +++ letodms/conf/settings.xml.template 2012-03-22 22:04:05.000000000 +0100 @@ -66,11 +66,11 @@ - partitionsize: size of chunk uploaded by jumploader --> # Last-Update: 02-10-2013 --- a/out/out.GroupView.php +++ b/out/out.GroupView.php @@ -63,7 +63,7 @@ echo " : ".htmlspecialchars($group->getComment()); foreach($managers as $manager) if($manager->getId() == $user->getId()) { - echo " : you are the manager of this group"; + echo ': '.getMLText("you_are_the_manager_of_this_group"); $ismanager = true; } echo ""; debian/patches/series0000644000000000000000000000025712221050736012034 0ustar add_message_to_translation_to_php_script Russian_translation adodb_path disable_largefileupload paths enable_password_forgotten french_translation missed_en_message_and_typos debian/patches/enable_password_forgotten0000644000000000000000000000074112220755040015776 0ustar # Description: Enable Password Forgotten feature by default. # Author: Francisco Manuel Garcia Claramonte # Last-Update: 23-04-2012 --- a/conf/settings.xml.template +++ b/conf/settings.xml.template @@ -87,7 +87,7 @@ --> # Last-Update: 02-10-2013 --- a/languages/English/lang.inc +++ b/languages/English/lang.inc @@ -61,7 +61,7 @@ $text["approvers"] = "Approvers"; $text["april"] = "April"; $text["archive_creation"] = "Archive creation"; -$text["archive_creation_warning"] = "With this operation you can create achive containing the files of entire DMS folders. After the creation the archive will be saved in the data folder of your server.
WARNING: an archive created as human readable will be unusable as server backup."; +$text["archive_creation_warning"] = "With this operation you can create archive containing the files of entire DMS folders. After the creation the archive will be saved in the data folder of your server.
WARNING: an archive created as human readable will be unusable as server backup."; $text["assign_approvers"] = "Assign Approvers"; $text["assign_reviewers"] = "Assign Reviewers"; $text["assign_user_property_to"] = "Assign user's properties to"; @@ -131,7 +131,7 @@ $text["details_version"] = "Details for version: [version]"; $text["disclaimer"] = "This is a classified area. Access is permitted only to authorized personnel. Any violation will be prosecuted according to the national and international laws."; $text["do_object_repair"] = "Repair all folders and documents."; -$text["document_already_locked"] = "This document is aleady locked"; +$text["document_already_locked"] = "This document is already locked"; $text["document_deleted"] = "Document deleted"; $text["document_deleted_email"] = "Document deleted"; $text["document"] = "Document"; @@ -157,7 +157,7 @@ $text["draft_pending_review"] = "Draft - pending review"; $text["dump_creation"] = "DB dump creation"; $text["dump_creation_warning"] = "With this operation you can create a dump file of your database content. After the creation the dump file will be saved in the data folder of your server."; -$text["dump_list"] = "Existings dump files"; +$text["dump_list"] = "Existing dump files"; $text["dump_remove"] = "Remove dump file"; $text["edit_comment"] = "Edit comment"; $text["edit_default_keywords"] = "Edit keywords"; @@ -183,7 +183,7 @@ $text["error"] = "Error"; $text["error_no_document_selected"] = "No document selected"; $text["error_no_folder_selected"] = "No folder selected"; -$text["error_occured"] = "An error has occured"; +$text["error_occured"] = "An error has occurred"; $text["event_details"] = "Event details"; $text["expired"] = "Expired"; $text["expires"] = "Expires"; @@ -325,7 +325,7 @@ $text["no_review_needed"] = "No review pending."; $text["notify_added_email"] = "You've been added to notify list"; $text["notify_deleted_email"] = "You've been removed from notify list"; -$text["no_update_cause_locked"] = "You can therefore not update this document. Please contanct the locking user."; +$text["no_update_cause_locked"] = "You can therefore not update this document. Please contact the locking user."; $text["no_user_image"] = "No image found"; $text["november"] = "November"; $text["objectcheck"] = "Folder/Document check"; @@ -352,7 +352,7 @@ $text["removed_approver"] = "has been removed from the list of approvers."; $text["removed_file_email"] = "Removed attachment"; $text["removed_reviewer"] = "has been removed from the list of reviewers."; -$text["repairing_objects"] = "Reparing documents and folders."; +$text["repairing_objects"] = "Repairing documents and folders."; $text["results_page"] = "Results Page"; $text["review_deletion_email"] = "Review request deleted"; $text["reviewer_already_assigned"] = "is already assigned as a reviewer"; @@ -409,7 +409,7 @@ $text["settings_activate_module"] = "Activate module"; $text["settings_activate_php_extension"] = "Activate PHP extension"; $text["settings_adminIP"] = "Admin IP"; -$text["settings_adminIP_desc"] = "If set admin can login only by specified IP addres, leave empty to avoid the control. NOTE: works only with local autentication (no LDAP)"; +$text["settings_adminIP_desc"] = "If set admin can login only by specified IP address, leave empty to avoid the control. NOTE: works only with local autentication (no LDAP)"; $text["settings_ADOdbPath"] = "ADOdb Path"; $text["settings_ADOdbPath_desc"] = "Path to adodb. This is the directory containing the adodb directory"; $text["settings_Advanced"] = "Advanced"; @@ -540,6 +540,7 @@ $text["settings_smtpServer_desc"] = "SMTP Server hostname"; $text["settings_smtpServer"] = "SMTP Server hostname"; $text["settings_SMTP"] = "SMTP Server settings"; +$text["settings_stagingDir_desc"] = "Where the partially uploaded files are stored"; $text["settings_stagingDir"] = "Directory for partial uploads"; $text["settings_strictFormCheck_desc"] = "Strict form checking. If set to true, then all fields in the form will be checked for a value. If set to false, then (most) comments and keyword fields become optional. Comments are always required when submitting a review or overriding document status"; $text["settings_strictFormCheck"] = "Strict Form Check"; @@ -581,6 +582,7 @@ $text["theme"] = "Theme"; $text["thursday"] = "Thursday"; $text["toggle_manager"] = "Toggle manager"; +$text["you_are_the_manager_of_this_group"] = "you are the manager of this group"; $text["to"] = "To"; $text["tuesday"] = "Tuesday"; $text["under_folder"] = "In folder"; debian/patches/adodb_path0000644000000000000000000000125012220755040012620 0ustar # Description: Patch the proper path for libphp-adodb. # Author: Francisco Manuel Garcia Claramonte # Last-Update: 22-03-2012 Index: letodms/conf/settings.xml.template =================================================================== --- letodms.orig/conf/settings.xml.template 2012-03-21 21:52:41.000000000 +0100 +++ letodms/conf/settings.xml.template 2012-03-22 21:53:51.000000000 +0100 @@ -136,7 +136,7 @@ - dbPass: password for database-access --> # Last-Update: 23-05-2013 --- a/languages/Francais/lang.inc +++ b/languages/Francais/lang.inc @@ -2,7 +2,8 @@ // MyDMS. Document Management System // Copyright (C) 2002-2005 Markus Westphal // Copyright (C) 2006-2008 Malcolm Cowe - +// Copyright (C) 2010 Matteo Lucarelli +// Copyright (C) 2012 Uwe Steinmann // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -22,556 +23,608 @@ $text["accept"] = "Accepter"; $text["access_denied"] = "Accès refusé."; $text["access_inheritance"] = "Héritage d'accès"; -$text["access_mode"] = "mode d'accès"; -$text["access_mode_all"] = "All permissions"; -$text["access_mode_none"] = "Pas d'accès"; +$text["access_mode"] = "Droits d'accès"; +$text["access_mode_all"] = "Contrôle total"; +$text["access_mode_none"] = "Aucun accès"; $text["access_mode_read"] = "Lecture"; $text["access_mode_readwrite"] = "Lecture-Ecriture"; -$text["access_permission_changed_email"] = "Permission changed"; +$text["access_permission_changed_email"] = "Permission modifiée"; $text["actions"] = "Actions"; $text["add"] = "Ajouter"; -$text["add_doc_reviewer_approver_warning"] = "N.B. Les Documents sont autoamtiquement marqués comme réalisés si il n'y a pas de correcteur ou d'approbateur assigné."; +$text["add_doc_reviewer_approver_warning"] = "N.B. Les documents sont automatiquement marqués comme publiés si il n'y a pas de correcteur ou d'approbateur désigné."; $text["add_document"] = "Ajouter un document"; $text["add_document_link"] = "Ajouter un lien"; -$text["add_event"] = "Add event"; -$text["add_group"] = "Ajouter un nouveau groupe"; +$text["add_event"] = "Ajouter un événement"; +$text["add_group"] = "Ajouter un groupe"; $text["add_member"] = "Ajouter un membre"; -$text["add_multiple_documents"] = "Add multiple documents"; -$text["add_multiple_files"] = "Add multiple files (will use filename as document name)"; -$text["add_subfolder"] = "Ajout de sous-dossier"; -$text["add_user"] = "Ajouter nouvel utilisateur"; +$text["add_multiple_documents"] = "Ajouter plusieurs documents"; +$text["add_multiple_files"] = "Ajouter plusieurs fichiers (le nom du fichier servira de nom de document)"; +$text["add_subfolder"] = "Ajouter un sous-dossier"; +$text["add_user"] = "Ajouter un utilisateur"; +$text["add_user_to_group"] = "Ajouter utilisateur dans groupe"; $text["admin"] = "Administrateur"; -$text["admin_tools"] = "outils d'administration"; -$text["all_categories"] = "All categories"; -$text["all_documents"] = "tous les Documents"; -$text["all_pages"] = "All"; +$text["admin_tools"] = "Outils d'administration"; +$text["all_categories"] = "Toutes les catégories"; +$text["all_documents"] = "Tous les documents"; +$text["all_pages"] = "Tous"; $text["all_users"] = "Tous les utilisateurs"; -$text["already_subscribed"] = "Already subscribed"; +$text["already_subscribed"] = "Déjà abonné"; $text["and"] = "et"; -$text["apply"] = "Apply"; -$text["approval_deletion_email"] = "Approval request deleted"; +$text["apply"] = "Appliquer"; +$text["approval_deletion_email"] = "Demande d'approbation supprimée"; $text["approval_group"] = "Groupe d'approbation"; -$text["approval_request_email"] = "Approval request"; +$text["approval_request_email"] = "Demande d'approbation"; $text["approval_status"] = "Statut d'approbation"; -$text["approval_submit_email"] = "Submitted approval"; +$text["approval_submit_email"] = "Approbation soumise"; $text["approval_summary"] = "Sommaire d'approbation"; -$text["approval_update_failed"] = "Erreur de la mise à jour du statut d'approbation. Mise à jour échouée."; +$text["approval_update_failed"] = "Erreur de la mise à jour du statut d'approbation. Echec de la mise à jour."; $text["approvers"] = "Approbateurs"; -$text["april"] = "April"; -$text["archive_creation"] = "Archive creation"; -$text["archive_creation_warning"] = "With this operation you can create achive containing the files of entire DMS folders. After the creation the archive will be saved in the data folder of your server.
WARNING: an archive created as human readable will be unusable as server backup."; -$text["assign_approvers"] = "Assign Approvers"; -$text["assign_reviewers"] = "Assign Reviewers"; +$text["april"] = "Avril"; +$text["archive_creation"] = "Création d'archivage"; +$text["archive_creation_warning"] = "Avec cette fonction, vous pouvez créer une archive contenant les fichiers de tout les dossiers DMS. Après la création, l'archive sera sauvegardé dans le dossier de données de votre serveur.
AVERTISSEMENT: Une archive créée comme lisible par l'homme sera inutilisable en tant que sauvegarde du serveur."; +$text["assign_approvers"] = "Approbateurs désignés"; +$text["assign_reviewers"] = "Correcteurs désignés"; $text["assign_user_property_to"] = "Assign user's properties to"; -$text["assumed_released"] = "Assumed released"; -$text["august"] = "August"; -$text["automatic_status_update"] = "Automatic status change"; +$text["assumed_released"] = "Supposé publié"; +$text["august"] = "Août"; +$text["automatic_status_update"] = "Changement de statut automatique"; $text["back"] = "Retour"; -$text["backup_list"] = "Existings backup list"; -$text["backup_remove"] = "Remove backup file"; -$text["backup_tools"] = "Backup tools"; +$text["backup_list"] = "Liste de sauvegardes existantes"; +$text["backup_remove"] = "Supprimer le fichier de sauvegarde"; +$text["backup_tools"] = "Outils de sauvegarde"; $text["between"] = "entre"; -$text["calendar"] = "Calendar"; +$text["calendar"] = "Agenda"; $text["cancel"] = "Annuler"; -$text["cannot_assign_invalid_state"] = "Ne peut assigner des nouveaux correcteurs à un document qui n'est pas sous révision ou sous approbation."; -$text["cannot_change_final_states"] = " Attention : impossible de modifier le statut pour les documents pour les documents qui ont été rejetés, marqués obsolète ou expiré."; -$text["cannot_delete_yourself"] = "Cannot delete yourself"; -$text["cannot_move_root"] = "Erreur : Ne peut bouger le dossier racine."; +$text["cannot_assign_invalid_state"] = "Impossible de modifier un document obsolète ou rejeté"; +$text["cannot_change_final_states"] = "Attention: Vous ne pouvez pas modifier le statut d'un document rejeté, expiré ou en attente de révision ou d'approbation"; +$text["cannot_delete_yourself"] = "Vous ne pouvez pas supprimer vous-même"; +$text["cannot_move_root"] = "Erreur : Impossible de déplacer le dossier racine."; $text["cannot_retrieve_approval_snapshot"] = "Impossible de retrouver l'instantané de statut d'approbation pour cette version de document."; -$text["cannot_retrieve_review_snapshot"] = "Impossible de retrouver l'instantané de statut de révision pour cette version de document."; +$text["cannot_retrieve_review_snapshot"] = "Impossible de retrouver l'instantané de statut de correction pour cette version du document."; $text["cannot_rm_root"] = "Erreur : Dossier racine ineffaçable."; -$text["category"] = "Category"; -$text["category_filter"] = "Only categories"; +$text["category"] = "Catégorie"; +$text["category_exists"] = "Catégorie existe déjà."; +$text["category_filter"] = "Uniquement les catégories"; $text["category_in_use"] = "This category is currently used by documents."; -$text["categories"] = "Categories"; -$text["change_assignments"] = "Change Assignments"; -$text["change_status"] = "Change Status"; -$text["choose_category"] = "--SVP Choisir--"; -$text["choose_group"] = "--Choisir un groupe--"; -$text["choose_target_category"] = "Choose category"; +$text["category_noname"] = "Aucun nom de catégorie fourni."; +$text["categories"] = "Catégories"; +$text["change_assignments"] = "Changer affectations"; +$text["change_password"] = "Changer mot de passe"; +$text["change_password_message"] = "Votre mot de passe a été changé."; +$text["change_status"] = "Modifier le statut"; +$text["choose_category"] = "SVP choisir"; +$text["choose_group"] = "Choisir un groupe"; +$text["choose_target_category"] = "Choisir une catégorie"; $text["choose_target_document"] = "Choisir un document"; $text["choose_target_folder"] = "Choisir un dossier cible"; -$text["choose_user"] = "--Choisir un utilisateur--"; -$text["comment_changed_email"] = "Comment changed"; -$text["comment"] = "Commentaires"; +$text["choose_user"] = "Choisir un utilisateur"; +$text["comment_changed_email"] = "Commentaire changé"; +$text["comment"] = "Commentaire"; $text["comment_for_current_version"] = "Commentaires pour la version actuelle"; -$text["confirm_create_fulltext_index"] = "Yes, I would like to recreate the fulltext index!"; +$text["confirm_create_fulltext_index"] = "Oui, je souhaite recréer l'index de texte intégral!"; $text["confirm_pwd"] = "Confirmer le mot de passe"; -$text["confirm_rm_backup"] = "Do you really want to remove the file \"[arkname]\"?
Be careful: This action cannot be undone."; -$text["confirm_rm_document"] = "Voulez-vous réellemen effacer le document \"[documentname]\"?
Attention : cette action ne peut être annulée."; -$text["confirm_rm_dump"] = "Do you really want to remove the file \"[dumpname]\"?
Be careful: This action cannot be undone."; -$text["confirm_rm_event"] = "Do you really want to remove event \"[name]\"?
Be careful: This action cannot be undone."; -$text["confirm_rm_file"] = "Do you really want to remove file \"[name]\" of document \"[documentname]\"?
Be careful: This action cannot be undone."; -$text["confirm_rm_folder"] = "Voulez-vous réellement effacer \"[foldername]\" et son contenu ?
Attention : cette action ne peut être annulée."; -$text["confirm_rm_folder_files"] = "Do you really want to remove all the files of the folder \"[foldername]\" and of its subfolders?
Be careful: This action cannot be undone."; -$text["confirm_rm_group"] = "Do you really want to remove the group \"[groupname]\"?
Be careful: This action cannot be undone."; -$text["confirm_rm_log"] = "Do you really want to remove log file \"[logname]\"?
Be careful: This action cannot be undone."; -$text["confirm_rm_user"] = "Do you really want to remove the user \"[username]\"?
Be careful: This action cannot be undone."; -$text["confirm_rm_version"] = "Voulez-vous réellement effacer la [version] du document \"[documentname]\"?
Attention : cette action ne peut être annulée."; +$text["confirm_rm_backup"] = "Voulez-vous vraiment supprimer le fichier \"[arkname]\"?
Attention: Cette action ne peut pas être annulée."; +$text["confirm_rm_document"] = "Voulez-vous réellement supprimer le document \"[documentname]\"?
Attention : cette action ne peut être annulée."; +$text["confirm_rm_dump"] = "Voulez-vous vraiment supprimer le fichier \"[dumpname]\"?
Attention: Cette action ne peut pas être annulée."; +$text["confirm_rm_event"] = "Voulez-vous vraiment supprimer l'événement \"[name]\"?
Attention: Cette action ne peut pas être annulée."; +$text["confirm_rm_file"] = "Voulez-vous vraiment supprimer le fichier \"[name]\" du document \"[documentname]\"?
Attention: Cette action ne peut pas être annulée."; +$text["confirm_rm_folder"] = "Voulez-vous réellement supprimer \"[foldername]\" et son contenu ?
Attention : cette action ne peut être annulée."; +$text["confirm_rm_folder_files"] = "Voulez-vous vraiment supprimer tous les fichiers du dossier \"[foldername]\" et ses sous-dossiers?
Attention: Cette action ne peut pas être annulée."; +$text["confirm_rm_group"] = "Voulez-vous vraiment supprimer le groupe \"[groupname]\"?
Attention: Cette action ne peut pas être annulée."; +$text["confirm_rm_log"] = "Voulez-vous vraiment supprimer le fichier log \"[logname]\"?
Attention: Cette action ne peut pas être annulée."; +$text["confirm_rm_user"] = "Voulez-vous vraiment supprimer l'utilisateur \"[username]\"?
Attention: Cette action ne peut pas être annulée."; +$text["confirm_rm_version"] = "Voulez-vous réellement supprimer la [version] du document \"[documentname]\"?
Attention: Cette action ne peut pas être annulée."; $text["content"] = "Contenu"; $text["continue"] = "Continuer"; -$text["create_fulltext_index"] = "Create fulltext index"; -$text["create_fulltext_index_warning"] = "You are to recreate the fulltext index. This can take a considerable amount of time and reduce your overall system performance. If you really want to recreate the index, please confirm your operation."; -$text["creation_date"] = "Créé"; +$text["create_fulltext_index"] = "Créer un index de texte intégral"; +$text["create_fulltext_index_warning"] = "Vous allez recréer l'index de texte intégral. Cela peut prendre une grande quantité de temps et de réduire les performances de votre système dans son ensemble. Si vous voulez vraiment recréer l'index, merci de confirmer votre opération."; +$text["creation_date"] = "Créé le"; +$text["current_password"] = "Mot de passe actuel"; $text["current_version"] = "Version actuelle"; -$text["daily"] = "Daily"; -$text["databasesearch"] = "Database search"; -$text["december"] = "December"; -$text["default_access"] = "Mode d'accès par défaut"; +$text["daily"] = "Journalier"; +$text["databasesearch"] = "Recherche dans la base de données"; +$text["december"] = "Décembre"; +$text["default_access"] = "Droits d'accès par défaut"; $text["default_keyword_category"] = "Catégories"; -$text["delete"] = "Effacer"; +$text["delete"] = "Supprimer"; $text["details"] = "Détails"; $text["details_version"] = "Détails de la version: [version]"; -$text["disclaimer"] = "This is a classified area. Access is permitted only to authorized personnel. Any violation will be prosecuted according to the english and international laws."; +$text["disclaimer"] = "Cet espace est protégé. Son accès est strictement réservé aux utilisateurs autorisés.
Tout accès non autorisé est punissable par les lois internationales."; +$text["do_object_repair"] = "Réparer tous les dossiers et documents."; $text["document_already_locked"] = "Ce document est déjà verrouillé"; -$text["document_deleted"] = "Document deleted"; -$text["document_deleted_email"] = "Document deleted"; +$text["document_deleted"] = "Document supprimé"; +$text["document_deleted_email"] = "Document supprimé"; $text["document"] = "Document"; -$text["document_infos"] = "Information de Document"; +$text["document_infos"] = "Informations sur le document"; $text["document_is_not_locked"] = "Ce document n'est pas verrouillé"; $text["document_link_by"] = "Liés par"; $text["document_link_public"] = "Public"; -$text["document_moved_email"] = "Document moved"; -$text["document_renamed_email"] = "Document renamed"; +$text["document_moved_email"] = "Document déplacé"; +$text["document_renamed_email"] = "Document renommé"; $text["documents"] = "Documents"; $text["documents_in_process"] = "Documents en cours"; -$text["documents_locked_by_you"] = "Documents locked by you"; -$text["document_status_changed_email"] = "Document status changed"; -$text["documents_to_approve"] = "Documents attendant l'approbation de l'utilisateur"; -$text["documents_to_review"] = "Documents attendant la révision de l'utilisateur"; -$text["documents_user_requiring_attention"] = "Documents détenu par l'utilisateur qui nécessite attention"; +$text["documents_locked_by_you"] = "Documents verrouillés"; +$text["document_status_changed_email"] = "Statut du document modifié"; +$text["documents_to_approve"] = "Documents en attente d'approbation"; +$text["documents_to_review"] = "Documents en attente de correction"; +$text["documents_user_requiring_attention"] = "Documents à surveiller"; $text["document_title"] = "Document '[documentname]'"; -$text["document_updated_email"] = "Document updated"; -$text["does_not_expire"] = "N'expire pas"; +$text["document_updated_email"] = "Document mis à jour"; +$text["does_not_expire"] = "N'expire jamais"; $text["does_not_inherit_access_msg"] = "Accès hérité"; $text["download"] = "Téléchargement"; -$text["draft_pending_approval"] = "Ébauche - sous approbation"; -$text["draft_pending_review"] = "Ébauche - sous révision"; -$text["dump_creation"] = "DB dump creation"; -$text["dump_creation_warning"] = "With this operation you can create a dump file of your database content. After the creation the dump file will be saved in the data folder of your server."; -$text["dump_list"] = "Existings dump files"; -$text["dump_remove"] = "Remove dump file"; -$text["edit_comment"] = "Edit comment"; -$text["edit_default_keywords"] = "Editer les mots-clefs"; -$text["edit_document_access"] = "Editer l'accès"; -$text["edit_document_notify"] = "Liste de Notification"; -$text["edit_document_props_again"] = "Editer document à nouveau"; -$text["edit"] = "éditer"; -$text["edit_event"] = "Edit event"; -$text["edit_existing_access"] = "Editer la liste d'accès"; -$text["edit_existing_notify"] = "Editer la liste de notification"; -$text["edit_folder_access"] = "Editer l'accès"; -$text["edit_folder_notify"] = "Liste de Notification"; -$text["edit_folder_props"] = "Editer dossier"; -$text["edit_group"] = "Editer groupe"; -$text["edit_user_details"] = "Editer les détails d'utilisateur"; -$text["edit_user"] = "Editer un utilisateur"; +$text["draft_pending_approval"] = "Ebauche - En cours d'approbation"; +$text["draft_pending_review"] = "Ebauche - En cours de correction"; +$text["dump_creation"] = "création sauvegarde BD"; +$text["dump_creation_warning"] = "Avec cette opération, vous pouvez une sauvegarde du contenu de votre base de données. Après la création, le fichier de sauvegarde sera sauvegardé dans le dossier de données de votre serveur."; +$text["dump_list"] = "Fichiers de sauvegarde existants"; +$text["dump_remove"] = "Supprimer fichier de sauvegarde"; +$text["edit_comment"] = "Modifier le commentaire"; +$text["edit_default_keywords"] = "Modifier les mots-clés"; +$text["edit_document_access"] = "Modifier les droits d'accès"; +$text["edit_document_notify"] = "Notifications de documents"; +$text["edit_document_props"] = "Modifier le document"; +$text["edit"] = "Modifier"; +$text["edit_event"] = "Modifier l'événement"; +$text["edit_existing_access"] = "Modifier les droits d'accès"; +$text["edit_existing_notify"] = "Modifier les notifications"; +$text["edit_folder_access"] = "Modifier les droits d'accès"; +$text["edit_folder_notify"] = "Notification de dossiers"; +$text["edit_folder_props"] = "Modifier le dossier"; +$text["edit_group"] = "Modifier un groupe"; +$text["edit_user_details"] = "Modifier les détails d'utilisateur"; +$text["edit_user"] = "Modifier un utilisateur"; $text["email"] = "E-mail"; -$text["email_footer"] = "You can always change your e-mail settings using 'My Account' functions"; -$text["email_header"] = "This is an automatic message from the DMS server."; +$text["email_error_title"] = "Aucun e-mail indiqué"; +$text["email_footer"] = "Vous pouvez modifier les paramètres de messagerie via 'Mon compte'."; +$text["email_header"] = "Ceci est un message automatique généré par le serveur DMS."; +$text["email_not_given"] = "SVP Entrer une adresse email valide."; $text["empty_notify_list"] = "Aucune entrée"; -$text["error_no_document_selected"] = "No document selected"; -$text["error_no_folder_selected"] = "No folder selected"; +$text["error"] = "Erreur"; +$text["error_no_document_selected"] = "Aucun document sélectionné"; +$text["error_no_folder_selected"] = "Aucun dossier sélectionné"; $text["error_occured"] = "Une erreur s'est produite"; -$text["event_details"] = "Event details"; +$text["event_details"] = "Détails de l'événement"; $text["expired"] = "Expiré"; -$text["expires"] = "Expire"; -$text["expiry_changed_email"] = "Expiry date changed"; -$text["february"] = "February"; +$text["expires"] = "Expiration"; +$text["expiry_changed_email"] = "Date d'expiration modifiée"; +$text["february"] = "Février"; $text["file"] = "Fichier"; -$text["files_deletion"] = "Files deletion"; -$text["files_deletion_warning"] = "With this option you can delete all files of entire DMS folders. The versioning information will remain visible."; -$text["files"] = "Files"; +$text["files_deletion"] = "Suppression de fichiers"; +$text["files_deletion_warning"] = "Avec cette option, vous pouvez supprimer tous les fichiers d'un dossier DMS. Les informations de version resteront visible."; +$text["files"] = "Fichiers"; $text["file_size"] = "Taille"; $text["folder_contents"] = "Dossiers"; -$text["folder_deleted_email"] = "Folder deleted"; -$text["folder"] = "Folder"; -$text["folder_infos"] = "Information du dossier"; -$text["folder_moved_email"] = "Folder moved"; -$text["folder_renamed_email"] = "Folder renamed"; -$text["folders_and_documents_statistic"] = "Contents overview"; -$text["folders"] = "Folders"; +$text["folder_deleted_email"] = "Dossier supprimé"; +$text["folder"] = "Dossier"; +$text["folder_infos"] = "Informations sur le dossier"; +$text["folder_moved_email"] = "Dossier déplacé"; +$text["folder_renamed_email"] = "Dossier renommé"; +$text["folders_and_documents_statistic"] = "Aperçu du contenu"; +$text["folders"] = "Dossiers"; $text["folder_title"] = "Dossier '[foldername]'"; -$text["friday"] = "Friday"; -$text["from"] = "From"; -$text["fullsearch"] = "Full text search"; -$text["fullsearch_hint"] = "Use fulltext index"; +$text["friday"] = "Vendredi"; +$text["from"] = "Du"; +$text["fullsearch"] = "Recherche dans le contenu"; +$text["fullsearch_hint"] = "Recherche dans le contenu"; $text["fulltext_info"] = "Fulltext index info"; -$text["global_default_keywords"] = "Mots-clefs globaux"; -$text["global_document_categories"] = "Categories"; -$text["group_approval_summary"] = "Group approval summary"; +$text["global_default_keywords"] = "Mots-clés globaux"; +$text["global_document_categories"] = "Catégories"; +$text["group_approval_summary"] = "Résumé groupe d'approbation"; $text["group_exists"] = "Ce groupe existe déjà."; $text["group"] = "Groupe"; $text["group_management"] = "Groupes"; $text["group_members"] = "Membres de groupes"; -$text["group_review_summary"] = "Group review summary"; +$text["group_review_summary"] = "Résumé groupe correcteur"; $text["groups"] = "Groupes"; $text["guest_login_disabled"] = "Connexion d'invité désactivée."; $text["guest_login"] = "Connecter comme invité"; -$text["help"] = "Help"; -$text["hourly"] = "Hourly"; -$text["human_readable"] = "Human readable archive"; -$text["include_documents"] = "Include documents"; -$text["include_subdirectories"] = "Include subdirectories"; +$text["help"] = "Aide"; +$text["hourly"] = "Une fois par heure"; +$text["human_readable"] = "Archive lisible par l'homme"; +$text["include_documents"] = "Inclure les documents"; +$text["include_subdirectories"] = "Inclure les sous-dossiers"; $text["individuals"] = "Individuels"; $text["inherits_access_msg"] = "L'accès est hérité."; $text["inherits_access_copy_msg"] = "Copier la liste des accès hérités"; $text["inherits_access_empty_msg"] = "Commencer avec une liste d'accès vide"; $text["internal_error_exit"] = "Erreur interne. Impossible d'achever la demande. Sortie du programme."; $text["internal_error"] = "Erreur interne"; -$text["invalid_access_mode"] = "mode d'accès invalide"; +$text["invalid_access_mode"] = "droits d'accès invalides"; $text["invalid_action"] = "Action invalide"; $text["invalid_approval_status"] = "Statut d'approbation invalide"; $text["invalid_create_date_end"] = "Date de fin invalide pour la plage de dates de création."; $text["invalid_create_date_start"] = "Date de départ invalide pour la plage de dates de création."; -$text["invalid_doc_id"] = "identifiant de document invalide"; -$text["invalid_file_id"] = "Invalid file ID"; +$text["invalid_doc_id"] = "Identifiant de document invalide"; +$text["invalid_file_id"] = "Identifiant de fichier invalide"; $text["invalid_folder_id"] = "Identifiant de dossier invalide"; $text["invalid_group_id"] = "Identifiant de groupe invalide"; $text["invalid_link_id"] = "Identifiant de lien invalide"; -$text["invalid_request_token"] = "Invalid Request Token"; -$text["invalid_review_status"] = "Statut de révision invalide"; +$text["invalid_request_token"] = "Jeton de demande incorrect"; +$text["invalid_review_status"] = "Statut de correction invalide"; $text["invalid_sequence"] = "Valeur de séquence invalide"; $text["invalid_status"] = "Statut de document invalide"; $text["invalid_target_doc_id"] = "Identifiant de document cible invalide"; $text["invalid_target_folder"] = "Identifiant de dossier cible invalide"; -$text["invalid_user_id"] = "Identifiant invalide"; -$text["invalid_version"] = "Version de document invalid"; -$text["is_hidden"] = "Hide from users list"; -$text["january"] = "January"; +$text["invalid_user_id"] = "Identifiant utilisateur invalide"; +$text["invalid_version"] = "Version de document invalide"; +$text["is_hidden"] = "Cacher de la liste utilisateur"; +$text["january"] = "Janvier"; $text["js_no_approval_group"] = "SVP Sélectionnez un groupe d'approbation"; $text["js_no_approval_status"] = "SVP Sélectionnez le statut d'approbation"; $text["js_no_comment"] = "Il n'y a pas de commentaires"; $text["js_no_email"] = "Saisissez votre adresse e-mail"; $text["js_no_file"] = "SVP Sélectionnez un fichier"; -$text["js_no_keywords"] = "Spécifiez quelques mots-clefs"; +$text["js_no_keywords"] = "Spécifiez quelques mots-clés"; $text["js_no_login"] = "SVP Saisissez un identifiant"; $text["js_no_name"] = "SVP Saisissez un nom"; $text["js_no_override_status"] = "SVP Sélectionner le nouveau [override] statut"; $text["js_no_pwd"] = "Vous devez saisir votre mot de passe"; -$text["js_no_query"] = "Saisir dans une requête"; -$text["js_no_review_group"] = "SVP Sélectionner un groupe de révision"; -$text["js_no_review_status"] = "SVP Sélectionner le statut de révision"; +$text["js_no_query"] = "Saisir une requête"; +$text["js_no_review_group"] = "SVP Sélectionner un groupe de correcteur"; +$text["js_no_review_status"] = "SVP Sélectionner le statut de correction"; $text["js_pwd_not_conf"] = "Mot de passe et Confirmation de mot de passe non identiques"; $text["js_select_user_or_group"] = "Sélectionner au moins un utilisateur ou un groupe"; $text["js_select_user"] = "SVP Sélectionnez un utilisateur"; -$text["july"] = "July"; -$text["june"] = "June"; -$text["keyword_exists"] = "Mot-clef déjà existant"; -$text["keywords"] = "Mots-clefs"; -$text["language"] = "Langage"; -$text["last_update"] = "Last Update"; -$text["link_alt_updatedocument"] = "If you would like to upload files bigger than the current maximum upload size, please use the alternative upload page."; +$text["july"] = "Juillet"; +$text["june"] = "Juin"; +$text["keyword_exists"] = "Mot-clé déjà existant"; +$text["keywords"] = "Mots-clés"; +$text["language"] = "Langue"; +$text["last_update"] = "Dernière modification"; +$text["link_alt_updatedocument"] = "Pour déposer des fichiers de taille supérieure, utilisez la page d'ajout multiple."; $text["linked_documents"] = "Documents liés"; -$text["linked_files"] = "Attachments"; +$text["linked_files"] = "Fichiers attachés"; $text["local_file"] = "Fichier local"; -$text["locked_by"] = "Locked by"; -$text["lock_document"] = "Verrouillage"; -$text["lock_message"] = "Ce document a été verrouillé par [username].
seuls les utilisateurs autorisés peuvent déverrouiller ce document (voir fin de page)."; +$text["locked_by"] = "Verrouillé par"; +$text["lock_document"] = "Verrouiller"; +$text["lock_message"] = "Ce document a été verrouillé par [username].
Seuls les utilisateurs autorisés peuvent déverrouiller ce document (voir fin de page)."; $text["lock_status"] = "Statut"; +$text["login"] = "Identifiant"; $text["login_error_text"] = "Erreur à la connexion. Identifiant ou mot de passe incorrect."; $text["login_error_title"] = "Erreur de connexion"; -$text["login_not_given"] = "Identifiant non fourni"; +$text["login_not_given"] = "Nom utilisateur non fourni"; $text["login_ok"] = "Connexion établie"; -$text["log_management"] = "Log files management"; +$text["log_management"] = "Gestion des fichiers Log"; $text["logout"] = "Déconnexion"; -$text["manager"] = "Manager"; -$text["march"] = "March"; -$text["max_upload_size"] = "Maximum upload size for each file"; -$text["may"] = "May"; -$text["monday"] = "Monday"; -$text["month_view"] = "Month view"; -$text["monthly"] = "Monthly"; -$text["move_document"] = "déplacer un document"; -$text["move_folder"] = "Déplacer un dossier"; -$text["move"] = "Move"; -$text["my_account"] = "Mon Compte"; -$text["my_documents"] = "Mes Documents"; +$text["manager"] = "Responsable"; +$text["march"] = "Mars"; +$text["max_upload_size"] = "Taille maximum de fichier déposé"; +$text["may"] = "Mai"; +$text["monday"] = "Lundi"; +$text["month_view"] = "Vue par mois"; +$text["monthly"] = "Mensuel"; +$text["move_document"] = "Déplacer le document"; +$text["move_folder"] = "Déplacer le dossier"; +$text["move"] = "Déplacer"; +$text["my_account"] = "Mon compte"; +$text["my_documents"] = "Mes documents"; $text["name"] = "Nom"; $text["new_default_keyword_category"] = "Ajouter une catégorie"; -$text["new_default_keywords"] = "Ajouter des mots-clefs"; -$text["new_document_category"] = "Add category"; -$text["new_document_email"] = "New document"; -$text["new_file_email"] = "New attachment"; -$text["new_folder"] = "New folder"; -$text["new"] = "New"; -$text["new_subfolder_email"] = "New folder"; -$text["new_user_image"] = "New image"; +$text["new_default_keywords"] = "Ajouter des mots-clés"; +$text["new_document_category"] = "Ajouter une catégorie"; +$text["new_document_email"] = "Nouveau document"; +$text["new_file_email"] = "Nouvel attachement"; +$text["new_folder"] = "Nouveau dossier"; +$text["new"] = "Nouveau"; +$text["new_subfolder_email"] = "Nouveau dossier"; +$text["new_user_image"] = "Nouvelle image"; $text["no_action"] = "Aucune action n'est nécessaire"; -$text["no_approval_needed"] = "No approval pending."; -$text["no_attached_files"] = "No attached files"; -$text["no_default_keywords"] = "Aucun mot-clef valable"; -$text["no_docs_locked"] = "No documents locked."; -$text["no_docs_to_approve"] = "Aucun document ne nécessite actuellement une approbation."; -$text["no_docs_to_look_at"] = "No documents that need attention."; -$text["no_docs_to_review"] = "Aucun document ne nécessite actuellement une révision."; -$text["no_group_members"] = "Ce groupe ne contient pas de membre"; +$text["no_approval_needed"] = "Aucune approbation en attente"; +$text["no_attached_files"] = "Aucun fichier attaché"; +$text["no_default_keywords"] = "Aucun mot-clé valide"; +$text["no_docs_locked"] = "Aucun document verrouillé"; +$text["no_docs_to_approve"] = "Aucun document ne nécessite actuellement une approbation"; +$text["no_docs_to_look_at"] = "Aucun document à surveiller"; +$text["no_docs_to_review"] = "Aucun document en attente de correction"; +$text["no_group_members"] = "Ce groupe ne contient aucun membre"; $text["no_groups"] = "Aucun groupe"; $text["no"] = "Non"; -$text["no_linked_files"] = "No linked files"; -$text["no_previous_versions"] = "Aucune autre version trouvé"; -$text["no_review_needed"] = "No review pending."; -$text["notify_added_email"] = "You've been added to notify list"; -$text["notify_deleted_email"] = "You've been removed from notify list"; +$text["no_linked_files"] = "Aucun fichier lié"; +$text["no_previous_versions"] = "Aucune autre version trouvée"; +$text["no_review_needed"] = "Aucune correction en attente"; +$text["notify_added_email"] = "Vous avez été ajouté à la liste des notifications."; +$text["notify_deleted_email"] = "Vous avez été supprimé de la liste des notifications."; $text["no_update_cause_locked"] = "Vous ne pouvez actuellement pas mettre à jour ce document. Contactez l'utilisateur qui l'a verrouillé."; $text["no_user_image"] = "Aucune image trouvée"; -$text["november"] = "November"; -$text["obsolete"] = "Obsolete"; -$text["october"] = "October"; -$text["old"] = "Old"; -$text["only_jpg_user_images"] = "Images d'utilisateur en .jpg seulement"; +$text["november"] = "Novembre"; +$text["objectcheck"] = "Vérification des dossiers et documents"; +$text["obsolete"] = "Obsolète"; +$text["october"] = "Octobre"; +$text["old"] = "Ancien"; +$text["only_jpg_user_images"] = "Images d'utilisateur au format .jpg seulement"; $text["owner"] = "Propriétaire"; -$text["ownership_changed_email"] = "Owner changed"; +$text["ownership_changed_email"] = "Propriétaire modifié"; $text["password"] = "Mot de passe"; -$text["personal_default_keywords"] = "Mots-clefs personnels"; +$text["password_repeat"] = "Répétez le mot de passe"; +$text["password_forgotten"] = "Mot de passe oublié ?"; +$text["password_forgotten_email_subject"] = "Mot de passe oublié"; +$text["password_forgotten_email_body"] = "Cher utilisateur de LetoDMS,nnnous avons reçu une demande de modification de votre mot de passe.nnPour ce faire, cliquez sur le lien suivant:nn###URL_PREFIX###out/out.ChangePassword.php?hash=###HASH###nnEn cas de problème persistant, veuillez contacter votre administrateur."; +$text["password_forgotten_send_hash"] = "La procédure à suivre a bien été envoyée à l'adresse indiquée"; +$text["password_forgotten_text"] = "Remplissez le formulaire ci-dessous et suivez les instructions dans le courrier électronique qui vous sera envoyé."; +$text["password_forgotten_title"] = "Mot de passe oublié"; +$text["password_wrong"] = "Mauvais mot de passe"; +$text["personal_default_keywords"] = "Mots-clés personnels"; $text["previous_versions"] = "Versions précédentes"; -$text["refresh"] = "Refresh"; +$text["refresh"] = "Actualiser"; $text["rejected"] = "Rejeté"; -$text["released"] = "Réalisé"; +$text["released"] = "Publié"; $text["removed_approver"] = "a été retiré de la liste des approbateurs."; -$text["removed_file_email"] = "Removed attachment"; +$text["removed_file_email"] = "Attachment supprimé"; $text["removed_reviewer"] = "a été retiré de la liste des correcteurs."; +$text["repairing_objects"] = "Réparation des documents et des dossiers."; $text["results_page"] = "Results Page"; -$text["review_deletion_email"] = "Review request deleted"; +$text["review_deletion_email"] = "Demande de correction supprimée"; $text["reviewer_already_assigned"] = "est déjà déclaré en tant que correcteur"; -$text["reviewer_already_removed"] = "a déjà été retiré du processus de révision ou a déjà soumis une révision"; +$text["reviewer_already_removed"] = "a déjà été retiré du processus de correction ou a déjà soumis une correction"; $text["reviewers"] = "Correcteurs"; -$text["review_group"] = "Groupe de révision"; -$text["review_request_email"] = "Review request"; -$text["review_status"] = "Statut de révision"; -$text["review_submit_email"] = "Submitted review"; -$text["review_summary"] = "Sommaire de révision"; -$text["review_update_failed"] = "Erreur lors de la mise à jour de la révision. Mise à jour échouée."; -$text["rm_default_keyword_category"] = "Effacer catégorie"; -$text["rm_document"] = "Effacer document"; -$text["rm_document_category"] = "Delete category"; -$text["rm_file"] = "Remove file"; -$text["rm_folder"] = "Effacer dossier"; -$text["rm_group"] = "Retirer ce groupe"; -$text["rm_user"] = "Retirer cet utilisateur"; -$text["rm_version"] = "Retirer version"; -$text["role_admin"] = "Administrator"; -$text["role_guest"] = "Guest"; -$text["role_user"] = "User"; -$text["role"] = "Role"; -$text["saturday"] = "Saturday"; +$text["review_group"] = "Groupe de correction"; +$text["review_request_email"] = "Demande de correction"; +$text["review_status"] = "Statut de correction"; +$text["review_submit_email"] = "Correction demandée"; +$text["review_summary"] = "Sommaire de correction"; +$text["review_update_failed"] = "Erreur lors de la mise à jour de la correction. Echec de la mise à jour."; +$text["rm_default_keyword_category"] = "Supprimer la catégorie"; +$text["rm_document"] = "Supprimer le document"; +$text["rm_document_category"] = "Supprimer la catégorie"; +$text["rm_file"] = "Supprimer le fichier"; +$text["rm_folder"] = "Supprimer le dossier"; +$text["rm_group"] = "Supprimer ce groupe"; +$text["rm_user"] = "Supprimer cet utilisateur"; +$text["rm_version"] = "Retirer la version"; +$text["role_admin"] = "Administrateur"; +$text["role_guest"] = "Invité"; +$text["role_user"] = "Utilisateur"; +$text["role"] = "Rôle"; +$text["saturday"] = "Samedi"; $text["save"] = "Enregistrer"; -$text["search_fulltext"] = "Search in fulltext"; -$text["search_in"] = "Search in"; +$text["search_fulltext"] = "Rechercher dans le texte"; +$text["search_in"] = "Rechercher dans"; $text["search_mode_and"] = "tous les mots"; $text["search_mode_or"] = "au moins un mot"; $text["search_no_results"] = "Il n'y a pas de documents correspondant à la recherche"; -$text["search_query"] = "Recherche de"; -$text["search_report"] = "Trouvé [count] documents"; +$text["search_query"] = "Rechercher"; +$text["search_report"] = "[doccount] documents trouvé(s) et [foldercount] dossiers en [searchtime] sec."; +$text["search_report_fulltext"] = "[doccount] documents trouvé(s)"; $text["search_results_access_filtered"] = "Les résultats de la recherche propose du contenu dont l'accès est refusé."; $text["search_results"] = "Résultats de recherche"; -$text["search"] = "Search"; +$text["search"] = "Recherche"; $text["search_time"] = "Temps écoulé: [time] sec."; $text["selection"] = "Sélection"; -$text["select_one"] = "Selectionner un item"; -$text["september"] = "September"; +$text["select_one"] = "-- Selectionner --"; +$text["september"] = "Septembre"; $text["seq_after"] = "Après \"[prevname]\""; -$text["seq_end"] = "À la fin"; +$text["seq_end"] = "A la fin"; $text["seq_keep"] = "Conserver la position"; $text["seq_start"] = "Première position"; $text["sequence"] = "Séquence"; -$text["set_expiry"] = "Réglage de l'expiration"; +$text["set_expiry"] = "Modifier la date d'expiration"; $text["set_owner_error"] = "Error setting owner"; -$text["set_owner"] = "Réglage du propriétaire"; -$text["settings_activate_module"] = "Activate module"; -$text["settings_activate_php_extension"] = "Activate PHP extension"; +$text["set_owner"] = "Sélection du propriétaire"; +$text["settings_install_welcome_title"] = "Bienvenue dans l'installation de letoDMS"; +$text["settings_install_welcome_text"] = "

Avant de commencer l'installation de letoDMS assurez vous d'avoir créé un fichier 'ENABLE_INSTALL_TOOL' dans votre répertoire de configuration, sinon l'installation ne fonctionnera pas. Sur des systèmes Unix, cela peut se faire simplement avec 'touch / ENABLE_INSTALL_TOOL'. Une fois que vous avez terminé l'installation de supprimer le fichier.

letoDMS a des exigences très minimes. Vous aurez besoin d'une base de données mysql et un serveur web php. pour le recherche texte complète lucene, vous aurez également besoin du framework Zend installé sur le disque où elle peut être trouvée en php. Depuis la version 3.2.0 de letoDMS ADOdb ne fait plus partie de la distribution. obtenez une copie à partir de http://adodb.sourceforge.net et l'installer. Le chemin d’accès peut être défini ultérieurement pendant l’installation.

Si vous préférez créer la base de d + onnées avant de commencer l'installation, créez la manuellement avec votre outil favori, éventuellement créer un utilisateur de base de données avec accès sur la base et importer une sauvegarde de base dans le répertoire de configuration. Le script d'installation peut le faire pour vous, mais il requiert un accès à la base de données avec les droits suffisants pour créer des bases de données.

"; +$text["settings_start_install"] = "Démarrer l'installation"; +$text["settings_stopWordsFile"] = "Fichier des mots à exclure"; +$text["settings_stopWordsFile_desc"] = "Si la recherche de texte complète est activée, ce fichier contient les mots non indexés"; +$text["settings_activate_module"] = "Activez le module"; +$text["settings_activate_php_extension"] = "Activez l'extension PHP"; $text["settings_adminIP"] = "Admin IP"; -$text["settings_adminIP_desc"] = "If enabled admin can login only by specified IP addres, leave empty to avoid the control. NOTE: works only with local autentication (no LDAP)"; -$text["settings_ADOdbPath"] = "ADOdb Path"; -$text["settings_ADOdbPath_desc"] = "Path to adodb. This is the directory containing the adodb directory"; -$text["settings_Advanced"] = "Advanced"; +$text["settings_adminIP_desc"] = "Si activé l'administrateur ne peut se connecter que par l'adresse IP spécifiées, laisser vide pour éviter le contrôle. NOTE: fonctionne uniquement avec autentication locale (sans LDAP)"; +$text["settings_ADOdbPath"] = "Chemin ADOdb"; +$text["settings_ADOdbPath_desc"] = "Chemin vers adodb. Il s'agit du répertoire contenant le répertoire adodb"; +$text["settings_Advanced"] = "Avancé"; $text["settings_apache_mod_rewrite"] = "Apache - Module Rewrite"; -$text["settings_Authentication"] = "Authentication settings"; -$text["settings_Calendar"] = "Calendar settings"; -$text["settings_calendarDefaultView"] = "Calendar Default View"; -$text["settings_calendarDefaultView_desc"] = "Calendar default view"; -$text["settings_contentDir"] = "Content directory"; -$text["settings_contentDir_desc"] = "Where the uploaded files are stored (best to choose a directory that is not accessible through your web-server)"; +$text["settings_Authentication"] = "Paramètres d'authentification"; +$text["settings_Calendar"] = "Paramètres de l'agenda"; +$text["settings_calendarDefaultView"] = "Vue par défaut de l'agenda"; +$text["settings_calendarDefaultView_desc"] = "Vue par défaut de l'agenda"; +$text["settings_contentDir"] = "Contenu du répertoire"; +$text["settings_contentDir_desc"] = "Endroit ou les fichiers téléchargés sont stockés (il est préférable de choisir un répertoire qui n'est pas accessible par votre serveur web)"; $text["settings_contentOffsetDir"] = "Content Offset Directory"; -$text["settings_contentOffsetDir_desc"] = "To work around limitations in the underlying file system, a new directory structure has been devised that exists within the content directory (Content Directory). This requires a base directory from which to begin. Usually leave this to the default setting, 1048576, but can be any number or string that does not already exist within (Content Directory)"; -$text["settings_coreDir"] = "Core letoDMS directory"; -$text["settings_coreDir_desc"] = "Path to LetoDMS_Core (optional)"; -$text["settings_luceneClassDir"] = "Lucene LetoDMS directory"; -$text["settings_luceneClassDir_desc"] = "Path to LetoDMS_Lucene (optional)"; -$text["settings_luceneDir"] = "Lucene index directory"; -$text["settings_luceneDir_desc"] = "Path to Lucene index"; -$text["settings_createdatabase"] = "Create database"; -$text["settings_createdirectory"] = "Create directory"; -$text["settings_currentvalue"] = "Current value"; -$text["settings_Database"] = "Database settings"; -$text["settings_dbDatabase"] = "Database"; -$text["settings_dbDatabase_desc"] = "The name for your database entered during the installation process. Do not edit field unless absolutely necessary, for example transfer of the database to a new Host."; -$text["settings_dbDriver"] = "Database Type"; -$text["settings_dbDriver_desc"] = "The type of database in use entered during the installation process. Do not edit this field unless you are having to migrate to a different type of database perhaps due to changing hosts. Type of DB-Driver used by adodb (see adodb-readme)"; -$text["settings_dbHostname_desc"] = "The hostname for your database entered during the installation process. Do not edit field unless absolutely necessary, for example transfer of the database to a new Host."; -$text["settings_dbHostname"] = "Server name"; -$text["settings_dbPass_desc"] = "The password for access to your database entered during the installation process."; -$text["settings_dbPass"] = "Password"; -$text["settings_dbUser_desc"] = "The username for access to your database entered during the installation process. Do not edit field unless absolutely necessary, for example transfer of the database to a new Host."; -$text["settings_dbUser"] = "Username"; -$text["settings_delete_install_folder"] = "To use LetoDMS, you must delete the install directory"; -$text["settings_disableSelfEdit_desc"] = "If checked user cannot edit his own profile"; -$text["settings_disableSelfEdit"] = "Disable Self Edit"; -$text["settings_Display"] = "Display settings"; -$text["settings_Edition"] = "Edition settings"; -$text["settings_enableAdminRevApp_desc"] = "Uncheck to don't list administrator as reviewer/approver"; -$text["settings_enableAdminRevApp"] = "Enable Admin Rev App"; -$text["settings_enableCalendar_desc"] = "Enable/disable calendar"; -$text["settings_enableCalendar"] = "Enable Calendar"; -$text["settings_enableConverting_desc"] = "Enable/disable converting of files"; -$text["settings_enableConverting"] = "Enable Converting"; -$text["settings_enableEmail_desc"] = "Enable/disable automatic email notification"; -$text["settings_enableEmail"] = "Enable E-mail"; -$text["settings_enableFolderTree_desc"] = "False to don't show the folder tree"; -$text["settings_enableFolderTree"] = "Enable Folder Tree"; -$text["settings_enableFullSearch"] = "Enable Full text search"; -$text["settings_enableGuestLogin_desc"] = "If you want anybody to login as guest, check this option. Note: guest login should be used only in a trusted environment"; -$text["settings_enableGuestLogin"] = "Enable Guest Login"; -$text["settings_enableUserImage_desc"] = "Enable users images"; -$text["settings_enableUserImage"] = "Enable User Image"; -$text["settings_enableUsersView_desc"] = "Enable/disable group and user view for all users"; -$text["settings_enableUsersView"] = "Enable Users View"; -$text["settings_error"] = "Error"; -$text["settings_expandFolderTree_desc"] = "Expand Folder Tree"; -$text["settings_expandFolderTree"] = "Expand Folder Tree"; -$text["settings_expandFolderTree_val0"] = "start with tree hidden"; -$text["settings_expandFolderTree_val1"] = "start with tree shown and first level expanded"; -$text["settings_expandFolderTree_val2"] = "start with tree shown fully expanded"; -$text["settings_firstDayOfWeek_desc"] = "First day of the week"; -$text["settings_firstDayOfWeek"] = "First day of the week"; -$text["settings_footNote_desc"] = "Message to display at the bottom of every page"; -$text["settings_footNote"] = "Foot Note"; -$text["settings_guestID_desc"] = "ID of guest-user used when logged in as guest (mostly no need to change)"; -$text["settings_guestID"] = "Guest ID"; -$text["settings_httpRoot_desc"] = "The relative path in the URL, after the domain part. Do not include the http:// prefix or the web host name. e.g. If the full URL is http://www.example.com/letodms/, set '/letodms/'. If the URL is http://www.example.com/, set '/'"; +$text["settings_contentOffsetDir_desc"] = "To work around limitations in the underlying file system, a new directory structure has been devised that exists within the content directory (Content Directory). This requires a base directory from which to begin. Usually leave this to the default setting, 1048576, but can be any number or string that does not already exist within (Content Directory)"; +$text["settings_coreDir"] = "Répertoire Core letoDMS"; +$text["settings_coreDir_desc"] = "Chemin vers LetoDMS_Core (optionnel)"; +$text["settings_luceneClassDir"] = "Répertoire Lucene LetoDMS"; +$text["settings_luceneClassDir_desc"] = "Chemin vers LetoDMS_Lucene (optionnel)"; +$text["settings_luceneDir"] = "Répertoire index Lucene"; +$text["settings_luceneDir_desc"] = "Chemin vers index Lucene"; +$text["settings_cannot_disable"] = "Le fichier ENABLE_INSTALL_TOOL ne peut pas être supprimé"; +$text["settings_install_disabled"] = "Le fichier ENABLE_INSTALL_TOOL a été supprimé. ous pouvez maintenant vous connecter à LetoDMS et poursuivre la configuration."; +$text["settings_createdatabase"] = "Créer tables de la base de données"; +$text["settings_createdirectory"] = "Créer répertoire"; +$text["settings_currentvalue"] = "Valeur courante"; +$text["settings_Database"] = "Paramètres base de données"; +$text["settings_dbDatabase"] = "Base de données"; +$text["settings_dbDatabase_desc"] = "Le nom de votre base de données entré pendant le processus d'installation. Ne pas modifier le champ sauf si absolument nécessaire, par exemple si la base de données a été déplacé."; +$text["settings_dbDriver"] = "Type base de données"; +$text["settings_dbDriver_desc"] = "Le type de base de données en cours d'utilisation entré pendant le processus d'installation. Ne pas modifier ce champ sauf si vous voulez migrer vers un autre type de base de données peut-être en raison de changement d’hébergement. Type de driver BD utilisé par adodb (voir adodb-readme)"; +$text["settings_dbHostname_desc"] = "Le nom d'hôte de votre base de données entré pendant le processus d'installation. Ne pas modifier le champ sauf si vraiment nécessaire, par exemple pour le transfert de la base de données vers un nouvel hébergement."; +$text["settings_dbHostname"] = "Nom du serveur"; +$text["settings_dbPass_desc"] = "Le mot de passe pour accéder à votre base de données entré pendant le processus d'installation."; +$text["settings_dbPass"] = "Mot de passe"; +$text["settings_dbUser_desc"] = "Le nom d'utilisateur pour l'accès à votre base de données entré pendant le processus d'installation. Ne pas modifier le champ sauf si vraiment nécessaire, par exemple pour le transfert de la base de données vers un nouvel hébergement."; +$text["settings_dbUser"] = "Nom d'utilisateur"; +$text["settings_dbVersion"] = "Schéma de base de données trop ancien"; +$text["settings_delete_install_folder"] = "Pour utiliser LetoDMS, vous devez supprimer le fichier ENABLE_INSTALL_TOOL dans le répertoire de configuration"; +$text["settings_disable_install"] = "Si possible, supprimer le fichier ENABLE_INSTALL_TOOL"; +$text["settings_disableSelfEdit_desc"] = "Si coché, l'utilisateur ne peut pas éditer son profil"; +$text["settings_disableSelfEdit"] = "Désactiver auto modification"; +$text["settings_Display"] = "Paramètres d'affichage"; +$text["settings_Edition"] = "Paramètres d’édition"; +$text["settings_enableAdminRevApp_desc"] = "Décochez pour ne pas lister l'administrateur à titre de correcteur/approbateur"; +$text["settings_enableAdminRevApp"] = "Activer Admin Rev App"; +$text["settings_enableCalendar_desc"] = "Activer/Désactiver agenda"; +$text["settings_enableCalendar"] = "Activer agenda"; +$text["settings_enableConverting_desc"] = "Activer/Désactiver la conversion des fichiers"; +$text["settings_enableConverting"] = "Activer conversion des fichiers"; +$text["settings_enableEmail_desc"] = "Activer/désactiver la notification automatique par E-mail"; +$text["settings_enableEmail"] = "E-mails"; +$text["settings_enableFolderTree_desc"] = "False pour ne pas montrer l'arborescence des dossiers"; +$text["settings_enableFolderTree"] = "Activer l'arborescence des dossiers"; +$text["settings_enableFullSearch"] = "Recherches dans le contenu"; +$text["settings_enableFullSearch_desc"] = "Activer la recherche texte plein"; +$text["settings_enableGuestLogin_desc"] = "Si vous voulez vous connecter en tant qu'invité, cochez cette option. Remarque: l'utilisateur invité ne doit être utilisé que dans un environnement de confiance"; +$text["settings_enableGuestLogin"] = "Activer la connexion Invité"; +$text["settings_enableLargeFileUpload_desc"] = "Si défini, le téléchargement de fichier est également disponible via un applet java appelé jumploader sans limite de taille définie par le navigateur. Il permet également de télécharger plusieurs fichiers en une seule fois."; +$text["settings_enableLargeFileUpload"] = "Activer téléchargement des gros fichiers"; +$text["settings_enablePasswordForgotten_desc"] = "Si vous voulez permettre à l'utilisateur de définir un nouveau mot de passe et l'envoyer par mail, cochez cette option."; +$text["settings_enablePasswordForgotten"] = "Activer Mot de passe oublié"; +$text["settings_enableUserImage_desc"] = "Activer les images utilisateurs"; +$text["settings_enableUserImage"] = "Activer image utilisateurs"; +$text["settings_enableUsersView_desc"] = "Activer/désactiver la vue des groupes et des utilisateur pour tous les utilisateurs"; +$text["settings_enableUsersView"] = "Activer Vue des Utilisateurs"; +$text["settings_encryptionKey"] = "Clé de cryptage"; +$text["settings_encryptionKey_desc"] = "Cette chaîne est utilisée pour créer un identifiant unique étant ajouté comme champ masqué à un formulaire afin de prévenir des attaques CSRF."; +$text["settings_error"] = "Erreur"; +$text["settings_expandFolderTree_desc"] = "Dérouler l'arborescence des dossiers"; +$text["settings_expandFolderTree"] = "Dérouler l'arborescence des dossiers"; +$text["settings_expandFolderTree_val0"] = "Démarrer avec l'arborescence cachée"; +$text["settings_expandFolderTree_val1"] = "Démarrer avec le premier niveau déroulé"; +$text["settings_expandFolderTree_val2"] = "Démarrer avec l'arborescence déroulée"; +$text["settings_firstDayOfWeek_desc"] = "Premier jour de la semaine"; +$text["settings_firstDayOfWeek"] = "Premier jour de la semaine"; +$text["settings_footNote_desc"] = "Message à afficher au bas de chaque page"; +$text["settings_footNote"] = "Note de bas de page"; +$text["settings_guestID_desc"] = "ID de l'invité utilisé lorsque vous êtes connecté en tant qu'invité (la plupart du temps pas besoin de changer)"; +$text["settings_guestID"] = "ID invité"; +$text["settings_httpRoot_desc"] = "Le chemin relatif dans l'URL, après le nom de domaine. Ne pas inclure le préfixe http:// ou le nom d'hôte Internet. Par exemple Si l'URL complète est http://www.example.com/letodms/, mettez '/letodms/'. Si l'URL est http://www.example.com/, mettez '/'"; $text["settings_httpRoot"] = "Http Root"; -$text["settings_installADOdb"] = "Install ADOdb"; -$text["settings_install_success"] = "The installation is completed successfully"; -$text["settings_language"] = "Default language"; -$text["settings_language_desc"] = "Default language (name of a subfolder in folder \"languages\")"; -$text["settings_logFileEnable_desc"] = "Enable/disable log file"; -$text["settings_logFileEnable"] = "Log File Enable"; -$text["settings_logFileRotation_desc"] = "The log file rotation"; -$text["settings_logFileRotation"] = "Log File Rotation"; -$text["settings_luceneDir"] = "Directory for full text index"; -$text["settings_maxDirID_desc"] = "Maximum number of sub-directories per parent directory. Default: 32700."; -$text["settings_maxDirID"] = "Max Directory ID"; -$text["settings_maxExecutionTime_desc"] = "This sets the maximum time in seconds a script is allowed to run before it is terminated by the parse"; -$text["settings_maxExecutionTime"] = "Max Execution Time (s)"; -$text["settings_more_settings"] = "Configure more settings. Default login: admin/admin"; -$text["settings_notfound"] = "Not found"; -$text["settings_partitionSize"] = "Size of partial files uploaded by jumploader"; +$text["settings_installADOdb"] = "Installer ADOdb"; +$text["settings_install_success"] = "L'installation est terminée avec succès"; +$text["settings_install_pear_package_log"] = "Installer le paquet Pear 'Log'"; +$text["settings_install_pear_package_webdav"] = "Installer le paquet Pear 'HTTP_WebDAV_Server', si vous avez l'intention d'utiliser l'interface webdav"; +$text["settings_install_zendframework"] = "Installer le Framework Zend, si vous avez l'intention d'utiliser le moteur de recherche texte complète"; +$text["settings_language"] = "Langue par défaut"; +$text["settings_language_desc"] = "Langue par défaut (nom d'un sous-dossier dans le dossier \"languages\")"; +$text["settings_logFileEnable_desc"] = "Activer/désactiver le fichier journal"; +$text["settings_logFileEnable"] = "Fichier journal activé"; +$text["settings_logFileRotation_desc"] = "Rotation fichier journal"; +$text["settings_logFileRotation"] = "Rotation fichier journal"; +$text["settings_luceneDir"] = "Répertoire index Lucene"; +$text["settings_maxDirID_desc"] = "Nombre maximum de sous-répertoires par le répertoire parent. Par défaut: 32700."; +$text["settings_maxDirID"] = "Max ID répertoire"; +$text["settings_maxExecutionTime_desc"] = "Ceci définit la durée maximale en secondes q'un script est autorisé à exécuter avant de se terminer par l'analyse syntaxique"; +$text["settings_maxExecutionTime"] = "Temps d'exécution max (s)"; +$text["settings_more_settings"] = "Configurer d'autres paramètres. Connexion par défaut: admin/admin"; +$text["settings_no_content_dir"] = "Répertoire de contenu"; +$text["settings_notfound"] = "Introuvable"; +$text["settings_notwritable"] = "La configuration ne peut pas être enregistré car le fichier de configuration n'est pas accessible en écriture."; +$text["settings_partitionSize"] = "Taille des fichiers partiels téléchargées par jumploader"; +$text["settings_partitionSize_desc"] = "Taille des fichiers partiels en octets, téléchargées par jumploader. Ne pas fixer une valeur plus grande que la taille de transfert maximale définie par le serveur."; +$text["settings_perms"] = "Permissions"; +$text["settings_pear_log"] = "Pear package : Log"; +$text["settings_pear_webdav"] = "Pear package : HTTP_WebDAV_Server"; $text["settings_php_dbDriver"] = "PHP extension : php_'see current value'"; $text["settings_php_gd2"] = "PHP extension : php_gd2"; $text["settings_php_mbstring"] = "PHP extension : php_mbstring"; $text["settings_printDisclaimer_desc"] = "If true the disclaimer message the lang.inc files will be print on the bottom of the page"; -$text["settings_printDisclaimer"] = "Print Disclaimer"; +$text["settings_printDisclaimer"] = "Afficher la clause de non-responsabilité"; $text["settings_restricted_desc"] = "Only allow users to log in if they have an entry in the local database (irrespective of successful authentication with LDAP)"; -$text["settings_restricted"] = "Restricted access"; -$text["settings_rootDir_desc"] = "Path to where letoDMS is located"; -$text["settings_rootDir"] = "Root directory"; -$text["settings_rootFolderID_desc"] = "ID of root-folder (mostly no need to change)"; -$text["settings_rootFolderID"] = "Root Folder ID"; -$text["settings_SaveError"] = "Configuration file save error"; -$text["settings_Server"] = "Server settings"; -$text["settings"] = "Settings"; -$text["settings_siteDefaultPage_desc"] = "Default page on login. If empty defaults to out/out.ViewFolder.php"; -$text["settings_siteDefaultPage"] = "Site Default Page"; -$text["settings_siteName_desc"] = "Name of site used in the page titles. Default: letoDMS"; -$text["settings_siteName"] = "Site Name"; +$text["settings_restricted"] = "Accès restreint"; +$text["settings_rootDir_desc"] = "Chemin où se trouve letoDMS"; +$text["settings_rootDir"] = "Répertoire racine"; +$text["settings_rootFolderID_desc"] = "ID du répertoire racine (la plupart du temps pas besoin de changer)"; +$text["settings_rootFolderID"] = "ID du répertoire racine"; +$text["settings_SaveError"] = "Erreur de sauvegarde du fichier de configuration"; +$text["settings_Server"] = "Paramètres serveur"; +$text["settings"] = "Configuration"; +$text["settings_siteDefaultPage_desc"] = "Page par défaut lors de la connexion. Si vide, valeur par défaut à out/out.ViewFolder.php"; +$text["settings_siteDefaultPage"] = "Page par défaut du site"; +$text["settings_siteName_desc"] = "Nom du site utilisé dans les titres de page. Par défaut: letoDMS"; +$text["settings_siteName"] = "Nom du site"; $text["settings_Site"] = "Site"; -$text["settings_smtpPort_desc"] = "SMTP Server port, default 25"; -$text["settings_smtpPort"] = "SMTP Server port"; -$text["settings_smtpSendFrom_desc"] = "Send from"; -$text["settings_smtpSendFrom"] = "Send from"; -$text["settings_smtpServer_desc"] = "SMTP Server hostname"; -$text["settings_smtpServer"] = "SMTP Server hostname"; -$text["settings_SMTP"] = "SMTP Server settings"; -$text["settings_stagingDir"] = "Directory for partial uploads"; -$text["settings_strictFormCheck_desc"] = "Strict form checking. If set to true, then all fields in the form will be checked for a value. If set to false, then (most) comments and keyword fields become optional. Comments are always required when submitting a review or overriding document status"; -$text["settings_strictFormCheck"] = "Strict Form Check"; -$text["settings_suggestionvalue"] = "Suggestion value"; -$text["settings_System"] = "System"; -$text["settings_theme"] = "Default theme"; -$text["settings_theme_desc"] = "Default style (name of a subfolder in folder \"styles\")"; -$text["settings_titleDisplayHack_desc"] = "Workaround for page titles that go over more than 2 lines."; +$text["settings_smtpPort_desc"] = "Port serveur SMTP, par défaut 25"; +$text["settings_smtpPort"] = "Port serveur SMTP"; +$text["settings_smtpSendFrom_desc"] = "Envoyé par"; +$text["settings_smtpSendFrom"] = "Envoyé par"; +$text["settings_smtpServer_desc"] = "Nom du serveur SMTP"; +$text["settings_smtpServer"] = "Nom du serveur SMTP"; +$text["settings_SMTP"] = "Paramètres du serveur SMTP"; +$text["settings_stagingDir"] = "Répertoire pour les téléchargements partiels"; +$text["settings_strictFormCheck_desc"] = "Contrôl strict des formulaires. Si définie sur true, tous les champs du formulaire seront vérifié. Si définie sur false, les commentaires et mots clés deviennent facultatifs. Les commentaires sont toujours nécessaires lors de la soumission d'une correction ou état ​​du document"; +$text["settings_strictFormCheck"] = "Formulaires stricts"; +$text["settings_suggestionvalue"] = "Valeur suggérée"; +$text["settings_System"] = "Système"; +$text["settings_theme"] = "Thème par défaut"; +$text["settings_theme_desc"] = "Thème par défaut(nom d'un sous-répertoire du répertoire \"styles\")"; +$text["settings_titleDisplayHack_desc"] = "Solution pour les titres des pages qui dépassent 2 lignes."; $text["settings_titleDisplayHack"] = "Title Display Hack"; -$text["settings_updateNotifyTime_desc"] = "Users are notified about document-changes that took place within the last 'Update Notify Time' seconds"; +$text["settings_updateDatabase"] = "Exécuter les scripts de mise à jour du schéma de la base"; +$text["settings_updateNotifyTime_desc"] = "Users are notified about document-changes that took place within the last 'Update Notify Time' seconds "; $text["settings_updateNotifyTime"] = "Update Notify Time"; $text["settings_versioningFileName_desc"] = "The name of the versioning info file created by the backup tool"; $text["settings_versioningFileName"] = "Versioning FileName"; $text["settings_viewOnlineFileTypes_desc"] = "Files with one of the following endings can be viewed online (USE ONLY LOWER CASE CHARACTERS)"; -$text["settings_viewOnlineFileTypes"] = "View Online File Types"; -$text["signed_in_as"] = "Signed in as"; -$text["sign_in"] = "sign in"; -$text["sign_out"] = "sign out"; -$text["space_used_on_data_folder"] = "Space used on data folder"; +$text["settings_viewOnlineFileTypes"] = "Aperçu en ligne des fichiers"; +$text["settings_zendframework"] = "Zend Framework"; +$text["signed_in_as"] = "Vous êtes connecté en tant que"; +$text["sign_in"] = "Connexion"; +$text["sign_out"] = "Déconnexion"; +$text["space_used_on_data_folder"] = "Espace utilisé dans le répertoire de données"; $text["status_approval_rejected"] = "Approbation rejeté"; $text["status_approved"] = "Approuvé"; $text["status_approver_removed"] = "Approbateur retiré du processus"; $text["status_not_approved"] = "Non approuvé"; -$text["status_not_reviewed"] = "Non révisé"; -$text["status_reviewed"] = "Révisé"; -$text["status_reviewer_rejected"] = "Révision rejeté"; +$text["status_not_reviewed"] = "Non corrigé"; +$text["status_reviewed"] = "Corrigé"; +$text["status_reviewer_rejected"] = "Correction rejetée"; $text["status_reviewer_removed"] = "Correcteur retiré du processus"; $text["status"] = "Statut"; $text["status_unknown"] = "Inconnu"; -$text["storage_size"] = "Storage size"; +$text["storage_size"] = "Taille occupée"; $text["submit_approval"] = "Soumettre approbation"; -$text["submit_login"] = "S'identifier in"; -$text["submit_review"] = "Soumettre la révision"; -$text["sunday"] = "Sunday"; -$text["theme"] = "Theme"; -$text["thursday"] = "Thursday"; -$text["toggle_manager"] = "Toggle manager"; -$text["to"] = "To"; -$text["tuesday"] = "Tuesday"; -$text["under_folder"] = "Dans le Dossier"; +$text["submit_login"] = "Connexion"; +$text["submit_password"] = "Entrez nouveau mot de passe"; +$text["submit_password_forgotten"] = "Envoyer"; +$text["submit_review"] = "Soumettre la correction"; +$text["sunday"] = "Dimanche"; +$text["theme"] = "Thème"; +$text["thursday"] = "Jeudi"; +$text["toggle_manager"] = "Basculer 'Responsable'"; +$text["to"] = "Au"; +$text["tuesday"] = "Mardi"; +$text["under_folder"] = "Dans le dossier"; $text["unknown_command"] = "Commande non reconnue."; -$text["unknown_document_category"] = "Unknown category"; +$text["unknown_document_category"] = "Catégorie inconnue"; $text["unknown_group"] = "Identifiant de groupe inconnu"; $text["unknown_id"] = "unknown id"; $text["unknown_keyword_category"] = "Catégorie inconnue"; $text["unknown_owner"] = "Identifiant de propriétaire inconnu"; $text["unknown_user"] = "Identifiant d'utilisateur inconnu"; -$text["unlock_cause_access_mode_all"] = "Vous pouvez encore le mettre à jour, car vous avez le mode d'accès \"tout\". Le verrouillage sera automatiquement annulé."; -$text["unlock_cause_locking_user"] = "Vous pouvez encore le déverrouiller, car vous êtes le seul à l'avoir verrouillé. Le verrouillage sera automatiquement annulé."; -$text["unlock_document"] = "Déverrouillage"; +$text["unlock_cause_access_mode_all"] = "Vous pouvez encore le mettre à jour, car vous avez les droits d'accès \"tout\". Le verrouillage sera automatiquement annulé."; +$text["unlock_cause_locking_user"] = "Vous pouvez encore le mettre à jour, car vous êtes le seul à l'avoir verrouillé. Le verrouillage sera automatiquement annulé."; +$text["unlock_document"] = "Déverrouiller"; $text["update_approvers"] = "Mise à jour de la liste d'Approbateurs"; -$text["update_document"] = "Mise à jour"; +$text["update_document"] = "Mettre à jour"; $text["update_fulltext_index"] = "Update fulltext index"; -$text["update_info"] = "Information de mise à jour"; +$text["update_info"] = "Informations de mise à jour"; $text["update_locked_msg"] = "Ce document est verrouillé."; -$text["update_reviewers"] = "Mise à jour de la liste de Correcteurs"; -$text["update"] = "Mise à jour"; +$text["update_reviewers"] = "Mise à jour de la liste de correcteurs"; +$text["update"] = "Mettre à jour"; $text["uploaded_by"] = "Déposé par"; $text["uploading_failed"] = "Dépose du document échoué. SVP Contactez le responsable."; $text["use_default_categories"] = "Use predefined categories"; -$text["use_default_keywords"] = "Utiliser les mots-clefs prédéfinis"; -$text["user_exists"] = "Utilisateur déjà existant."; +$text["use_default_keywords"] = "Utiliser les mots-clés prédéfinis"; +$text["user_exists"] = "Cet utilisateur existe déjà"; $text["user_image"] = "Image"; -$text["user_info"] = "Information Utilisateur"; -$text["user_list"] = "Liste d'utilisateurs"; -$text["user_login"] = "Identifiant utilisateur"; +$text["user_info"] = "Informations utilisateur"; +$text["user_list"] = "Liste des utilisateurs"; +$text["user_login"] = "Identifiant"; $text["user_management"] = "Utilisateurs"; $text["user_name"] = "Nom utilisateur"; $text["users"] = "Utilisateurs"; $text["user"] = "Utilisateur"; -$text["version_deleted_email"] = "Version deleted"; -$text["version_info"] = "Information de Version"; -$text["versioning_file_creation"] = "Versioning file creation"; +$text["version_deleted_email"] = "Version supprimée"; +$text["version_info"] = "Informations de versions"; +$text["versioning_file_creation"] = "Versioning file creation"; $text["versioning_file_creation_warning"] = "With this operation you can create a file containing the versioning information of an entire DMS folder. After the creation every file will be saved inside the document folder."; -$text["versioning_info"] = "Versioning info"; +$text["versioning_info"] = "Versions"; $text["version"] = "Version"; -$text["view_online"] = "Vue en ligne"; -$text["warning"] = "Attention"; -$text["wednesday"] = "Wednesday"; -$text["week_view"] = "Week view"; -$text["year_view"] = "Year View"; +$text["view_online"] = "Aperçu en ligne"; +$text["warning"] = "Avertissement"; +$text["wednesday"] = "Mercredi"; +$text["week_view"] = "Vue par semaine"; +$text["year_view"] = "Vue annuelle"; $text["yes"] = "Oui"; ?> debian/patches/Russian_translation0000644000000000000000000023302512223343462014610 0ustar # Description: Add russian translation. Thanks to Sergey Alyoshin # Author: Francisco Manuel Garcia Claramonte # Last-Update: 02-10-2013 --- a/languages/Russian/lang.inc +++ b/languages/Russian/lang.inc @@ -3,6 +3,10 @@ // Copyright (C) 2002-2005 Markus Westphal // Copyright (C) 2006-2008 Malcolm Cowe // Copyright (C) 2010 Matteo Lucarelli +// Copyright (C) 2012 Uwe Steinmann +// +// Russian translation: +// Sergey Alyoshin , 2013 // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -20,29 +24,29 @@ $text = array(); $text["accept"] = "Принять"; -$text["access_denied"] = "Доступ запрещен"; +$text["access_denied"] = "Доступ запрещён"; $text["access_inheritance"] = "Наследование доступа"; $text["access_mode"] = "Режим доступа"; $text["access_mode_all"] = "Полный доступ"; $text["access_mode_none"] = "Нет доступа"; $text["access_mode_read"] = "Доступ для чтения"; -$text["access_mode_readwrite"] = "Доступ чтение-запись"; -$text["access_permission_changed_email"] = "Доступ изменен"; +$text["access_mode_readwrite"] = "Доступ для чтения и записи"; +$text["access_permission_changed_email"] = "Доступ изменён"; $text["actions"] = "Действия"; $text["add"] = "Добавить"; -$text["add_doc_reviewer_approver_warning"] = "Документ получает статус ДОПУЩЕН автоматически если не назначены ни рецензент ни утверждающий"; +$text["add_doc_reviewer_approver_warning"] = "Документ получает статус утверждён автоматически, если не назначены ни рецензент, ни утверждающий."; $text["add_document"] = "Добавить документ"; $text["add_document_link"] = "Добавить ссылку"; $text["add_event"] = "Добавить событие"; $text["add_group"] = "Добавить группу"; $text["add_member"] = "Добавить члена"; -$text["add_multiple_documents"] = "Добавить несколько документов"; -$text["add_multiple_files"] = "Добавить несколько файлов (название файла будет использоана в качестве названия документа)"; +$text["add_multiple_documents"] = "Добавить документы"; +$text["add_multiple_files"] = "Добавить несколько файлов (название файла будет названием документа)"; $text["add_subfolder"] = "Добавить подкаталог"; $text["add_user"] = "Добавить пользователя"; $text["add_user_to_group"] = "Добавить пользователя в группу"; -$text["admin"] = "Админ"; -$text["admin_tools"] = "Админка"; +$text["admin"] = "Администратор"; +$text["admin_tools"] = "Администрирование"; $text["all_categories"] = "Все категории"; $text["all_documents"] = "Все документы"; $text["all_pages"] = "Все страницы"; @@ -50,37 +54,37 @@ $text["already_subscribed"] = "Уже подписан"; $text["and"] = "и"; $text["apply"] = "Применить"; -$text["approval_deletion_email"] = "Запрос на утверждение удален"; +$text["approval_deletion_email"] = "Запрос на утверждение удалён"; $text["approval_group"] = "Утверждающая группа"; $text["approval_request_email"] = "Запрос на утверждение"; $text["approval_status"] = "Статус утверждения"; $text["approval_submit_email"] = "Утверждено"; -$text["approval_summary"] = "Инфо об утверждении"; -$text["approval_update_failed"] = "Произошла ошибка при изменении статусаутверждения"; +$text["approval_summary"] = "Сводка об утверждении"; +$text["approval_update_failed"] = "Произошла ошибка при изменении статуса утверждения"; $text["approvers"] = "Утверждающие"; $text["april"] = "Апрель"; -$text["archive_creation"] = "Создание архива"; -$text["archive_creation_warning"] = "Эта операция создаст архив, содержащий все папки. После создания архив будет сохранен в папке анных сервера.
ВНИМАНИЕ: Архив созданый как понятный человеку, будет не пригоден в качестве бекапа!"; +$text["archive_creation"] = "Создать архив"; +$text["archive_creation_warning"] = "Эта операция создаст архив, содержащий все каталоги. После создания архив будет сохранен в каталоге данных сервера.
Внимание: архив созданный как понятный человеку, будет непригоден в качестве резервной копии для восстановления!"; $text["assign_approvers"] = "Назначить утверждающих"; $text["assign_reviewers"] = "Назначить рецензентов"; $text["assign_user_property_to"] = "Назначить свойства пользователя"; -$text["assumed_released"] = "Утвержден"; +$text["assumed_released"] = "Утверждён"; $text["august"] = "Август"; $text["automatic_status_update"] = "Автоматическое изменения статуса"; $text["back"] = "Назад"; -$text["backup_list"] = "Список бекапов"; -$text["backup_remove"] = "Удалить бекап"; -$text["backup_tools"] = "Иструменты бекапа"; +$text["backup_list"] = "Список резервных копий"; +$text["backup_remove"] = "Удалить резервную копию"; +$text["backup_tools"] = "Резервные копии"; $text["between"] = "между"; $text["calendar"] = "Календарь"; $text["cancel"] = "Отмена"; -$text["cannot_assign_invalid_state"] = "Невозможно изменить устаревший или отклоненный документ"; -$text["cannot_change_final_states"] = "Нельзя изменять статус у отклоненного, просроченого или ожидающего рецензии или утверждения"; +$text["cannot_assign_invalid_state"] = "Невозможно изменить устаревший или отклонённый документ"; +$text["cannot_change_final_states"] = "Нельзя изменять статус отклонённого, устаревшего или ожидающего рецензии или утверждения"; $text["cannot_delete_yourself"] = "Нельзя удалить себя"; -$text["cannot_move_root"] = "Нельзя переместить корневую папку"; +$text["cannot_move_root"] = "Нельзя переместить корневой каталог"; $text["cannot_retrieve_approval_snapshot"] = "Невозможно получить утверждающий снимок для этой версии документа"; $text["cannot_retrieve_review_snapshot"] = "Невозможно получить рецензирующий снимок для этой версии документа"; -$text["cannot_rm_root"] = "Нельзя удалить корневую папку"; +$text["cannot_rm_root"] = "Нельзя удалить корневой каталог"; $text["category"] = "Категория"; $text["category_exists"] = "Категория существует"; $text["category_filter"] = "Только категории"; @@ -89,124 +93,125 @@ $text["categories"] = "Категории"; $text["change_assignments"] = "Изменить назначения"; $text["change_password"] = "Изменить пароль"; -$text["change_password_message"] = "Пароль изменен"; -$text["change_status"] = "Сменить статус"; -$text["choose_category"] = "Выберите"; +$text["change_password_message"] = "Пароль изменён"; +$text["change_status"] = "Изменить статус"; +$text["choose_category"] = "Выберите категорию"; $text["choose_group"] = "Выберите группу"; $text["choose_target_category"] = "Выберите категорию"; $text["choose_target_document"] = "Выберите документ"; -$text["choose_target_folder"] = "Выберите папку"; +$text["choose_target_folder"] = "Выберите каталог"; $text["choose_user"] = "Выберите пользователя"; -$text["comment_changed_email"] = "Коментарий изменен"; -$text["comment"] = "Коментарий"; -$text["comment_for_current_version"] = "Коментарий версии"; +$text["comment_changed_email"] = "Комментарий измерен"; +$text["comment"] = "Комментарий"; +$text["comment_for_current_version"] = "Комментарий версии"; $text["confirm_create_fulltext_index"] = "Да, пересоздать полнотекстовый индекс!"; $text["confirm_pwd"] = "Подтвердите пароль"; -$text["confirm_rm_backup"] = "Удалить файл \"[arkname]\"?
Действие перманентно"; -$text["confirm_rm_document"] = "Удалить документ \"[documentname]\"?
Действие перманентно"; -$text["confirm_rm_dump"] = "Удалить файл \"[dumpname]\"?
Действие перманентно"; -$text["confirm_rm_event"] = "Удалить событие \"[name]\"?
Действие перманентно"; -$text["confirm_rm_file"] = "Удалить файл \"[name]\" документа \"[documentname]\"?
Действие перманентно"; -$text["confirm_rm_folder"] = "Удалить папку \"[foldername]\" и ее содержимое?
Действие перманентно"; -$text["confirm_rm_folder_files"] = "Удалить все файлы в папке \"[foldername]\" и ее подпапок?
Действие перманентно"; -$text["confirm_rm_group"] = "Удалить группу \"[groupname]\"?
Действие перманентно"; -$text["confirm_rm_log"] = "Удалить лог \"[logname]\"?
Дествие перманентно"; -$text["confirm_rm_user"] = "Удалить пользователя \"[username]\"?
Действие перманентно"; -$text["confirm_rm_version"] = "Удалить версию [version] документа \"[documentname]\"?
Действие перманентно"; +$text["confirm_rm_backup"] = "Удалить файл \"[arkname]\"?
Действие необратимо"; +$text["confirm_rm_document"] = "Удалить документ \"[documentname]\"?
Действие необратимо"; +$text["confirm_rm_dump"] = "Удалить файл \"[dumpname]\"?
Действие необратимо"; +$text["confirm_rm_event"] = "Удалить событие \"[name]\"?
Действие необратимо"; +$text["confirm_rm_file"] = "Удалить файл \"[name]\" документа \"[documentname]\"?
Действие необратимо"; +$text["confirm_rm_folder"] = "Удалить каталог \"[foldername]\" и его содержимое?
Действие необратимо"; +$text["confirm_rm_folder_files"] = "Удалить в каталоге \"[foldername]\" все файлы и подкаталоги?
Действие необратимо"; +$text["confirm_rm_group"] = "Удалить группу \"[groupname]\"?
Действие необратимо"; +$text["confirm_rm_log"] = "Удалить журнал \"[logname]\"?
Действие необратимо"; +$text["confirm_rm_user"] = "Удалить пользователя \"[username]\"?
Действие необратимо"; +$text["confirm_rm_version"] = "Удалить версию [version] документа \"[documentname]\"?
Действие необратимо"; $text["content"] = "Содержимое"; $text["continue"] = "Продолжить"; $text["create_fulltext_index"] = "Создать полнотекстовый индекс"; -$text["create_fulltext_index_warning"] = "Вы хотите пересодать полнотекстовый индекс. Это займет время и снизит производительность. Продолжить?"; +$text["create_fulltext_index_warning"] = "Вы хотите пересоздать полнотекстовый индекс. Это займёт какое-то время и снизит производительность. Продолжить?"; $text["creation_date"] = "Создан"; +$text["current_password"] = "Текущий пароль"; $text["current_version"] = "Текущая версия"; $text["daily"] = "Ежедневно"; $text["databasesearch"] = "Поиск по БД"; $text["december"] = "Декабрь"; -$text["default_access"] = "Доступ по-умолчанию"; -$text["default_keywords"] = "Доступные теги"; +$text["default_access"] = "Доступ по умолчанию"; +$text["default_keywords"] = "Доступные метки"; $text["delete"] = "Удалить"; -$text["details"] = "Детали"; -$text["details_version"] = "Детали версии: [version]"; -$text["disclaimer"] = "Работаем аккуратно и вдумчиво. От этого зависит будущее нашей с вами страны и благополучие народа. Даешь пятилетку за три года!"; -$text["do_object_repair"] = "Исправить все папки и документы"; +$text["details"] = "Подробности"; +$text["details_version"] = "Подробная информация о версии: [version]"; +$text["disclaimer"] = "Работаем аккуратно и вдумчиво. От этого зависит будущее нашей с вами страны и благополучие народа. Даёшь пятилетку за три года!"; +$text["do_object_repair"] = "Исправить все каталоги и документы"; $text["document_already_locked"] = "Документ уже заблокирован"; -$text["document_deleted"] = "Документ удален"; -$text["document_deleted_email"] = "Документ удален"; +$text["document_deleted"] = "Документ удалён"; +$text["document_deleted_email"] = "Документ удалён"; $text["document"] = "Документ"; $text["document_infos"] = "Информацию о документе"; $text["document_is_not_locked"] = "Документ не заблокирован"; $text["document_link_by"] = "Связан"; $text["document_link_public"] = "Публичный"; -$text["document_moved_email"] = "Документ перемещен"; +$text["document_moved_email"] = "Документ перемещён"; $text["document_renamed_email"] = "Документ переименован"; -$text["documents"] = "Документы"; +$text["documents"] = "док."; $text["documents_in_process"] = "Документы в работе"; -$text["documents_locked_by_you"] = "Документы, заблокированые Вами"; -$text["document_status_changed_email"] = "Статус документа изменен"; -$text["documents_to_approve"] = "Документы, ожидающие Вашего утверждения"; -$text["documents_to_review"] = "Документы, ожидающие Вашей рецензии"; +$text["documents_locked_by_you"] = "Документы, заблокированные вами"; +$text["document_status_changed_email"] = "Статус документа изменён"; +$text["documents_to_approve"] = "Документы, ожидающие вашего утверждения"; +$text["documents_to_review"] = "Документы, ожидающие вашей рецензии"; $text["documents_user_requiring_attention"] = "Ваши документы, требующие внимания"; $text["document_title"] = "Документ '[documentname]'"; -$text["document_updated_email"] = "Документ обновлен"; +$text["document_updated_email"] = "Документ обновлён"; $text["does_not_expire"] = "Без срока"; $text["does_not_inherit_access_msg"] = "Наследовать уровень доступа"; -$text["download"] = "Скачать"; -$text["draft_pending_approval"] = "Черновик - ожидает утверждения"; -$text["draft_pending_review"] = "Черновик - ожидает рецензии"; -$text["dump_creation"] = "Создание дампа БД"; +$text["download"] = "Загрузить"; +$text["draft_pending_approval"] = "Черновик — ожидает утверждения"; +$text["draft_pending_review"] = "Черновик — ожидает рецензии"; +$text["dump_creation"] = "Создать дамп БД"; $text["dump_creation_warning"] = "Эта операция создаст дамп базы данных. После создания, файл будет сохранен в каталоге данных сервера."; -$text["dump_list"] = "Соществующие дампы"; +$text["dump_list"] = "Существующие дампы"; $text["dump_remove"] = "Удалить дамп"; -$text["edit_comment"] = "Редактировать коментарий"; -$text["edit_default_keywords"] = "Редактировать теги"; -$text["edit_document_access"] = "Редактировать доступ"; +$text["edit_comment"] = "Изменить комментарий"; +$text["edit_default_keywords"] = "Изменить метки"; +$text["edit_document_access"] = "Изменить доступ"; $text["edit_document_notify"] = "Список уведомления документа"; -$text["edit_document_props"] = "Редактировать документ"; -$text["edit"] = "РЕдактировать"; -$text["edit_event"] = "Редактировать событие"; -$text["edit_existing_access"] = "Редактироват список доступа"; -$text["edit_existing_notify"] = "Редактироват список уведомления"; -$text["edit_folder_access"] = "РЕдактировать доступ"; -$text["edit_folder_notify"] = "Список уведомления папки"; -$text["edit_folder_props"] = "Редактировать папку"; -$text["edit_group"] = "Редактировать группу"; -$text["edit_user_details"] = "Редактировать данные пользователя"; -$text["edit_user"] = "Редаткировать пользователя"; -$text["email"] = "Email"; -$text["email_error_title"] = "Email не указан"; -$text["email_footer"] = "Вы всегда можете изменить e-mail исползуя функцию 'Моя учетка'"; -$text["email_header"] = "Это автоматическое уведомление сервера документооборота"; -$text["email_not_given"] = "Введите настоящий email."; +$text["edit_document_props"] = "Изменить документ"; +$text["edit"] = "Изменить"; +$text["edit_event"] = "Изменить событие"; +$text["edit_existing_access"] = "Изменить доступ"; +$text["edit_existing_notify"] = "Изменить уведомления"; +$text["edit_folder_access"] = "Изменить доступ"; +$text["edit_folder_notify"] = "Список уведомления каталога"; +$text["edit_folder_props"] = "Изменить каталог"; +$text["edit_group"] = "Изменить группу"; +$text["edit_user_details"] = "Изменить данные пользователя"; +$text["edit_user"] = "Редактировать пользователя"; +$text["email"] = "e-mail"; +$text["email_error_title"] = "Не указан e-mail"; +$text["email_footer"] = "Вы всегда можете изменить e-mail используя меню 'Моя учётка'"; +$text["email_header"] = "Это автоматическое уведомление сервера документооборота"; +$text["email_not_given"] = "Введите настоящий адрес e-mail."; $text["empty_notify_list"] = "Нет записей"; $text["error"] = "Ошибка"; -$text["error_no_document_selected"] = "Нет выбраных документов"; -$text["error_no_folder_selected"] = "Нет выбраных папок"; +$text["error_no_document_selected"] = "Нет выбранных документов"; +$text["error_no_folder_selected"] = "Нет выбранных каталогов"; $text["error_occured"] = "Произошла ошибка"; -$text["event_details"] = "Детали события"; -$text["expired"] = "Истек"; +$text["event_details"] = "Информация о событии"; +$text["expired"] = "Истёк"; $text["expires"] = "Истекает"; $text["expiry_changed_email"] = "Дата истечения изменена"; $text["february"] = "Февраль"; $text["file"] = "Файл"; -$text["files_deletion"] = "Удаление файлов"; -$text["files_deletion_warning"] = "Эта операция удалит все файлы во всех папках. Информация о версиях останется доступна"; +$text["files_deletion"] = "Удалить файлы"; +$text["files_deletion_warning"] = "Эта операция удалит все файлы во всех каталогах. Информация о версиях останется доступной"; $text["files"] = "Файлы"; $text["file_size"] = "Размер"; -$text["folder_contents"] = "Содержимое папки"; -$text["folder_deleted_email"] = "Папка удалена"; -$text["folder"] = "Папка"; -$text["folder_infos"] = "Информация о папке"; -$text["folder_moved_email"] = "Папка перемещена"; -$text["folder_renamed_email"] = "Папка переименована"; +$text["folder_contents"] = "Содержимое каталога"; +$text["folder_deleted_email"] = "Каталог удалён"; +$text["folder"] = "Каталог"; +$text["folder_infos"] = "Информация о каталоге"; +$text["folder_moved_email"] = "Каталог перемещён"; +$text["folder_renamed_email"] = "Каталог переименован"; $text["folders_and_documents_statistic"] = "Обзор содержимого"; -$text["folders"] = "Папки"; -$text["folder_title"] = "Папка '[foldername]'"; +$text["folders"] = "кат."; +$text["folder_title"] = "Каталог '[foldername]'"; $text["friday"] = "Пятница"; $text["from"] = "От"; -$text["fullsearch"] = "Полнотекстовый поиск"; +$text["fullsearch"] = "Полнотекстовый"; $text["fullsearch_hint"] = "Использовать полнотекстовый индекс"; $text["fulltext_info"] = "Информация о полнотекстовом индексе"; -$text["global_default_keywords"] = "Глобальные теги"; +$text["global_default_keywords"] = "Глобальные метки"; $text["global_document_categories"] = "Категории"; $text["group_approval_summary"] = "Сводка по утверждению группы"; $text["group_exists"] = "Группа уже существует"; @@ -215,45 +220,45 @@ $text["group_members"] = "Члены группы"; $text["group_review_summary"] = "Сводка по рецензированию группы"; $text["groups"] = "Группы"; -$text["guest_login_disabled"] = "Гостевой вход отключен"; +$text["guest_login_disabled"] = "Гостевой вход отключён"; $text["guest_login"] = "Войти как гость"; $text["help"] = "Помощь"; $text["hourly"] = "Ежечасно"; -$text["human_readable"] = "Человекопонятный архив"; -$text["include_documents"] = "Включить документы"; -$text["include_subdirectories"] = "Включить подкаталоги"; -$text["individuals"] = "Личности"; +$text["human_readable"] = "Понятный человеку архив"; +$text["include_documents"] = "Включая документы"; +$text["include_subdirectories"] = "Включая подкаталоги"; +$text["individuals"] = "Пользователи"; $text["inherits_access_msg"] = "Доступ унаследован."; $text["inherits_access_copy_msg"] = "Скопировать наследованный список"; -$text["inherits_access_empty_msg"] = "Начать с пустова списка доступа"; +$text["inherits_access_empty_msg"] = "Начать с пустого списка доступа"; $text["internal_error_exit"] = "Внутренняя ошибка. Невозможно выполнить запрос. Завершение."; $text["internal_error"] = "Внутренняя ошибка"; $text["invalid_access_mode"] = "Неверный уровень доступа"; $text["invalid_action"] = "Неверное действие"; $text["invalid_approval_status"] = "Неверный статус утверждения"; -$text["invalid_create_date_end"] = "Неверная конечная дата для диапазаона даты создания"; -$text["invalid_create_date_start"] = "Неверная начальная дата для диапазаона даты создания"; +$text["invalid_create_date_end"] = "Неверная конечная дата диапазона даты создания"; +$text["invalid_create_date_start"] = "Неверная начальная дата диапазона даты создания"; $text["invalid_doc_id"] = "Неверный идентификатор документа"; $text["invalid_file_id"] = "Неверный идентификатор файла"; -$text["invalid_folder_id"] = "Неверный идентификатор папки"; +$text["invalid_folder_id"] = "Неверный идентификатор каталога"; $text["invalid_group_id"] = "Неверный идентификатор группы"; $text["invalid_link_id"] = "Неверный идентификатор ссылки"; -$text["invalid_request_token"] = "Invalid Request Token"; +$text["invalid_request_token"] = "Неверное обозначение запроса"; $text["invalid_review_status"] = "Неверный статус рецензирования"; -$text["invalid_sequence"] = "Неверное значение последовательности"; +$text["invalid_sequence"] = "Неверное значение позиции"; $text["invalid_status"] = "Неверный статус документа"; $text["invalid_target_doc_id"] = "Неверный идентификатор целевого документа"; -$text["invalid_target_folder"] = "Неверный идентификатор целевой папки"; +$text["invalid_target_folder"] = "Неверный идентификатор целевого каталога"; $text["invalid_user_id"] = "Неверный идентификатор пользователя"; $text["invalid_version"] = "Неверная версия документа"; $text["is_hidden"] = "Не показывать в списке пользователей"; $text["january"] = "Январь"; $text["js_no_approval_group"] = "Выберите утверждающую группу"; $text["js_no_approval_status"] = "Выберите статус утверждения"; -$text["js_no_comment"] = "Нет коментария"; -$text["js_no_email"] = "Введите свой Email"; +$text["js_no_comment"] = "Нет комментария"; +$text["js_no_email"] = "Введите свой e-mail"; $text["js_no_file"] = "Выберите файл"; -$text["js_no_keywords"] = "Укажите теги"; +$text["js_no_keywords"] = "Укажите метки"; $text["js_no_login"] = "Введите логин"; $text["js_no_name"] = "Введите имя"; $text["js_no_override_status"] = "Выберите новый [override] статус"; @@ -266,94 +271,95 @@ $text["js_select_user"] = "Выберите пользователя"; $text["july"] = "Июль"; $text["june"] = "Июнь"; -$text["keyword_exists"] = "Тег существует"; -$text["keywords"] = "Теги"; +$text["keyword_exists"] = "Метка существует"; +$text["keywords"] = "Метки"; $text["language"] = "Язык"; $text["last_update"] = "Последнее обновление"; -$text["link_alt_updatedocument"] = "Если Вы хотите загрузить файлы больше текущего лимита, используйте другой способ."; -$text["linked_documents"] = "Связаные документы"; -$text["linked_files"] = "Приложения"; +$text["link_alt_updatedocument"] = "Для загрузки файлов, превышающих ограничение размера, используйте другой способ."; +$text["linked_documents"] = "Связанные документы"; +$text["linked_files"] = "Приложения"; $text["local_file"] = "Локальный файл"; $text["locked_by"] = "Заблокирован"; $text["lock_document"] = "Заблокировать"; -$text["lock_message"] = "Документ заблокирован [username]. Только имеющие права могут его разблокировать."; +$text["lock_message"] = "Документ заблокировал(а) [username]. Только имеющие права могут его разблокировать."; $text["lock_status"] = "Статус"; $text["login"] = "Логин"; $text["login_error_text"] = "Ошибка входа. Проверьте логин и пароль."; $text["login_error_title"] = "Ошибка входа"; $text["login_not_given"] = "Не указан пользователь"; $text["login_ok"] = "Вход успешен"; -$text["log_management"] = "Управление логами"; +$text["log_management"] = "Управление журналами"; $text["logout"] = "Выход"; $text["manager"] = "Менеджер"; $text["march"] = "Март"; -$text["max_upload_size"] = "Лимит размера файла"; +$text["max_upload_size"] = "Ограничение размера файла"; $text["may"] = "Май"; $text["monday"] = "Понедельник"; -$text["month_view"] = "Вид месяца"; +$text["month_view"] = "Месяц"; $text["monthly"] = "Ежемесячно"; $text["move_document"] = "Переместить документ"; -$text["move_folder"] = "Переместить папку"; +$text["move_folder"] = "Переместить каталог"; $text["move"] = "Переместить"; -$text["my_account"] = "Моя учетка"; +$text["my_account"] = "Моя учётка"; $text["my_documents"] = "Мои документы"; $text["name"] = "Имя"; $text["new_default_keyword_category"] = "Добавить категорию"; -$text["new_default_keywords"] = "Добавить теги"; +$text["new_default_keywords"] = "Добавить метки"; $text["new_document_category"] = "Добавить категорию"; $text["new_document_email"] = "Новый документ"; $text["new_file_email"] = "Новое приложение"; -$text["new_folder"] = "Новая папка"; -$text["new"] = "Новый"; -$text["new_subfolder_email"] = "Новая папка"; +$text["new_folder"] = "Новый каталог"; +$text["new"] = "Новый"; +$text["new_subfolder_email"] = "Новый каталог"; $text["new_user_image"] = "Новое изображение"; $text["no_action"] = "Действие не требуется"; $text["no_approval_needed"] = "Утверждение не требуется"; -$text["no_attached_files"] = "Нет прикрепленных файлов"; -$text["no_default_keywords"] = "Нет тегов"; -$text["no_docs_locked"] = "Нет заблокированых документов"; +$text["no_attached_files"] = "Нет приложений"; +$text["no_default_keywords"] = "Нет меток"; +$text["no_docs_locked"] = "Нет заблокированных документов"; $text["no_docs_to_approve"] = "Нет документов, нуждающихся в утверждении"; $text["no_docs_to_look_at"] = "Нет документов, нуждающихся во внимании"; $text["no_docs_to_review"] = "Нет документов, нуждающихся в рецензии"; $text["no_group_members"] = "Группа не имеет членов"; $text["no_groups"] = "Нет групп"; $text["no"] = "Нет"; -$text["no_linked_files"] = "Нет прикрепленных файлов"; -$text["no_previous_versions"] = "Нет других версий"; +$text["no_linked_files"] = "Нет связанных файлов"; +$text["no_previous_versions"] = "Нет предыдущих версий"; $text["no_review_needed"] = "Рецензия не требуется"; $text["notify_added_email"] = "Вы добавлены в список уведомлений"; -$text["notify_deleted_email"] = "Выудалены из списка уведомлений"; +$text["notify_deleted_email"] = "Вы удалены из списка уведомлений"; $text["no_update_cause_locked"] = "Вы не можете обновить документ. Свяжитесь с заблокировавшим пользователем."; $text["no_user_image"] = "Изображение не найдено"; $text["november"] = "Ноябрь"; -$text["objectcheck"] = "Проверка Папки/Документа"; +$text["objectcheck"] = "Проверка каталога/документа"; $text["obsolete"] = "Устарел"; $text["october"] = "Октябрь"; -$text["old"] = "Старый"; -$text["only_jpg_user_images"] = "Разрешены только .jpg-изображения"; +$text["old"] = "Старый"; +$text["only_jpg_user_images"] = "Разрешены только изображения .jpg"; $text["owner"] = "Владелец"; -$text["ownership_changed_email"] = "Владелец изменен"; +$text["ownership_changed_email"] = "Владелец изменён"; $text["password"] = "Пароль"; $text["password_repeat"] = "Повторите пароль"; $text["password_forgotten"] = "Забыл пароль"; -$text["password_forgotten_email_subject"] = "Забыл пароль"; -$text["password_forgotten_email_body"] = "Уважаемый юзверь,\n\nмы получили запрос на изменение Вашего пароля.\n\nЧто бы это сделать, перейдите по ссылке:\n\n###URL_PREFIX###out/out.ChangePassword.php?hash=###HASH###\n\nЕсли вы и после этого не сможете войти, свяжитесь с админом."; -$text["password_forgotten_send_hash"] = "Инструкции высланы на email"; -$text["password_forgotten_text"] = "Заполниет форму и следуйте инструкциям в письме"; +$text["password_forgotten_email_subject"] = "Забытый пароль"; +$text["password_forgotten_email_body"] = "Уважаемый пользователь,\nnмы получили запрос на изменение вашего пароля.\n\nЧто бы это сделать, перейдите по ссылке:\n\n###URL_PREFIX###out/out.ChangePassword.php?hash=###HASH###\n\nЕсли вы и после этого не сможете войти, свяжитесь с администратором."; +$text["password_forgotten_send_hash"] = "Инструкции высланы на e-mail"; +$text["password_forgotten_text"] = "Заполните форму и следуйте инструкциям в письме"; $text["password_forgotten_title"] = "Пароль выслан"; -$text["personal_default_keywords"] = "Личный список тегов"; +$text["password_wrong"] = "Неверный пароль"; +$text["personal_default_keywords"] = "Личный список меток"; $text["previous_versions"] = "Предыдущие версии"; $text["refresh"] = "Обновить"; -$text["rejected"] = "Отклонен"; -$text["released"] = "Утвержден"; -$text["removed_approver"] = "удален из списка утверждающих"; +$text["rejected"] = "Отклонён"; +$text["released"] = "Утверждён"; +$text["removed_approver"] = "удалён из списка утверждающих"; $text["removed_file_email"] = "Удалить приложение"; -$text["removed_reviewer"] = "удален из списка рецензирующих"; -$text["repairing_objects"] = "Восстановление папок и документов"; +$text["removed_reviewer"] = "удалён из списка рецензирующих"; +$text["repairing_objects"] = "Восстановление каталогов и документов"; $text["results_page"] = "Страница результатов"; -$text["review_deletion_email"] = "ЗАпрос на рецензию удален"; -$text["reviewer_already_assigned"] = "уже назначет на рецензирование"; -$text["reviewer_already_removed"] = "уже удален из списка рецензирующих или уже оставил рецензию"; +$text["review_deletion_email"] = "Запрос на рецензию удалён"; +$text["reviewer_already_assigned"] = "уже назначен на рецензирование"; +$text["reviewer_already_removed"] = "уже удалён из списка рецензирующих или уже оставил рецензию"; $text["reviewers"] = "Рецензирующие"; $text["review_group"] = "Рецензирующая группа"; $text["review_request_email"] = "Запрос на рецензию"; @@ -365,11 +371,11 @@ $text["rm_document"] = "Удалить документ"; $text["rm_document_category"] = "Удалить категорию"; $text["rm_file"] = "Удалить файл"; -$text["rm_folder"] = "Удалить папку"; +$text["rm_folder"] = "Удалить каталог"; $text["rm_group"] = "Удалить группу"; $text["rm_user"] = "Удалить этого пользователя"; $text["rm_version"] = "Удалить версию"; -$text["role_admin"] = "Админ"; +$text["role_admin"] = "Администратор"; $text["role_guest"] = "Гость"; $text["role_user"] = "Пользователь"; $text["role"] = "Роль"; @@ -377,129 +383,133 @@ $text["save"] = "Сохранить"; $text["search_fulltext"] = "Полнотекстовый поиск"; $text["search_in"] = "Поиск"; -$text["search_mode_and"] = "все слова"; -$text["search_mode_or"] = "хотя бы одно слово"; +$text["search_mode_and"] = "Все слова"; +$text["search_mode_or"] = "Хотя бы одно слово"; $text["search_no_results"] = "Нет документов, соответствующих запросу"; $text["search_query"] = "Искать"; -$text["search_report"] = "Найдено [doccount] документов и [foldercount] папок"; -$text["search_report_fulltext"] = "Найдено [doccount] документов"; +$text["search_report"] = "Найдено документов: [doccount] и каталогов: [foldercount]"; +$text["search_report_fulltext"] = "Найдено документов: [doccount]"; $text["search_results_access_filtered"] = "Результаты поиска могут содержать объекты к которым у вас нет доступа"; $text["search_results"] = "Результаты поиска"; $text["search"] = "Поиск"; -$text["search_time"] = "Прошло: [time] sec."; +$text["search_time"] = "Прошло: [time] с"; $text["selection"] = "Выбор"; -$text["select_one"] = "Выбрать один"; +$text["select_one"] = "Выбрать"; $text["september"] = "Сентябрь"; $text["seq_after"] = "После \"[prevname]\""; $text["seq_end"] = "В конце"; -$text["seq_keep"] = "Сохранить позицию"; -$text["seq_start"] = "Первая позиция"; -$text["sequence"] = "Последовательность"; +$text["seq_keep"] = "Не изменять"; +$text["seq_start"] = "В начале"; +$text["sequence"] = "Позиция"; $text["set_expiry"] = "Установить истечение"; $text["set_owner_error"] = "Ошибка при установке владельца"; $text["set_owner"] = "Установить владельца"; $text["settings_install_welcome_title"] = "Добро пожаловать в установку letoDMS"; -$text["settings_install_welcome_text"] = "

Прежде чем начать, убедитесь что вы создали файл 'ENABLE_INSTALL_TOOL' в каталоге конфигурации, иначе установка не будет работать. На NIX-подобных это можно сделать командой 'touch conf/ENABLE_INSTALL_TOOL'. После установки удалите файл.

letoDMS имеет минимальные требования. Нужна mysql БД и веб-сервер с php. Для того что бы работал полнотекстовый поиск lucene, также необходима Zend framework, установленая там где ее видит php. Начиная с версии 3.2.0 letoDMS, ADOdb не будет частью дистрибутива. Скачайте ее с http://adodb.sourceforge.net и установите. Путь к ней может быть указан позднее при установке.

Если Вы хотите создать БД до установки, тогда создайте ее ручками (тут так и было написано)))), опционально создайте юзера с правами на бд и импортируйте дамп из папки конфигурации. Установочный скрипт это может сделать и сам, но понадобится доступ к БД с правами для создания базы данных.

"; +$text["settings_install_welcome_text"] = "

Прежде чем начать, убедитесь что вы создали файл 'ENABLE_INSTALL_TOOL' в каталоге конфигурации, иначе установка не будет работать. На NIX-подобных это можно сделать командой 'touch conf/ENABLE_INSTALL_TOOL'. После установки удалите файл.

letoDMS имеет минимальные требования. Нужна база данных (БД) mysql и веб-сервер с PHP. Для того что бы работал полнотекстовый поиск lucene, также необходим Zend framework, установленный там, где её видит PHP. Начиная с версии 3.2.0 letoDMS, ADOdb не будет частью дистрибутива. Загрузите её с http://adodb.sourceforge.net и установите. Путь к ней может быть указан позднее при установке.

Если вы хотите создать БД до установки, тогда создайте её самостоятельно, опционально создайте пользователя с правами на БД и импортируйте дамп из каталога конфигурации. Установочный скрипт это может сделать и сам, но понадобится доступ к БД с правами для создания базы данных.

"; $text["settings_start_install"] = "Начать установку"; +$text["settings_stopWordsFile"] = "Пусть к файлу стоп-слов"; +$text["settings_stopWordsFile_desc"] = "Если включён полнотекстовый поиск, этот файл будет содержать часто встречающиеся не индексируемые стоп-слова"; $text["settings_activate_module"] = "Активировать модуль"; $text["settings_activate_php_extension"] = "Активировать расширение PHP"; -$text["settings_adminIP"] = "Админский IP"; -$text["settings_adminIP_desc"] = "Если установить, то админ сможет зайти только с этого IP. Оставьте пустым во избежании апокалипсиса. Не работает с LDAP"; +$text["settings_adminIP"] = "Администраторский IP"; +$text["settings_adminIP_desc"] = "Если установлено, то администратор сможет зайти только с этого IP-адреса. Оставьте пустым, если это не требуется. Не работает с LDAP"; $text["settings_ADOdbPath"] = "Путь к ADOdb"; -$text["settings_ADOdbPath_desc"] = "Папка содержащая ПАПКУ ADOdb"; +$text["settings_ADOdbPath_desc"] = "Каталог содержащий КАТАЛОГ ADOdb"; $text["settings_Advanced"] = "Дополнительно"; -$text["settings_apache_mod_rewrite"] = "Apache - Module Rewrite"; +$text["settings_apache_mod_rewrite"] = "Apache — Module Rewrite"; $text["settings_Authentication"] = "Настройки авторизации"; $text["settings_Calendar"] = "Настройки календаря"; -$text["settings_calendarDefaultView"] = "Вид календаря по-умолчанию"; -$text["settings_calendarDefaultView_desc"] = "Вид календаря по-умолчанию"; -$text["settings_contentDir"] = "Каталог контента"; -$text["settings_contentDir_desc"] = "Куда сохраняются загруженые файлы (лучше выбрать каталог, недоступный веб-серверу)"; -$text["settings_contentOffsetDir"] = "Content Offset Directory"; -$text["settings_contentOffsetDir_desc"] = "Во избежании проблем с файловой системой была введена новая структура папок в каталоге контента. Необходима базовая папка, откуда начать. Впрочем оставьте тут все как есть, 1048576, но может быть любым числом или строкой, не существующей уже в папке контента"; -$text["settings_coreDir"] = "Папка Core letoDMS"; +$text["settings_calendarDefaultView"] = "Вид календаря по умолчанию"; +$text["settings_calendarDefaultView_desc"] = "Вид календаря по умолчанию"; +$text["settings_contentDir"] = "Каталог содержимого"; +$text["settings_contentDir_desc"] = "Куда сохраняются загруженные файлы (лучше выбрать каталог, недоступный веб-серверу)"; +$text["settings_contentOffsetDir"] = "Базовый начальный каталог"; +$text["settings_contentOffsetDir_desc"] = "Во избежании проблем с файловой системой была введена новая структура каталогов в каталоге содержимого. Необходим базовый начальный каталог. Впрочем, оставьте тут все как есть, 1048576, но может быть любым числом или строкой, не существующей уже в каталоге содержимого."; +$text["settings_coreDir"] = "Каталог Core letoDMS"; $text["settings_coreDir_desc"] = "Путь к LetoDMS_Core (не обязательно)"; -$text["settings_luceneClassDir"] = "Папка Lucene LetoDMS"; +$text["settings_luceneClassDir"] = "Каталог Lucene LetoDMS"; $text["settings_luceneClassDir_desc"] = "Путь к LetoDMS_Lucene (не обязательно)"; -$text["settings_luceneDir"] = "Папка индекса Lucene"; +$text["settings_luceneDir"] = "Каталог индекса Lucene"; $text["settings_luceneDir_desc"] = "Путь, куда Lucene будет писать свой индекс"; -$text["settings_cannot_disable"] = "Невозможно удлить ENABLE_INSTALL_TOOL"; -$text["settings_install_disabled"] = "ENABLE_INSTALL_TOOL удален. Теперь можно залогиниться для последующей конфигурации системы."; -$text["settings_createdatabase"] = "Создать таблицы БД"; -$text["settings_createdirectory"] = "Создать папку"; +$text["settings_cannot_disable"] = "Невозможно удалить ENABLE_INSTALL_TOOL"; +$text["settings_install_disabled"] = "ENABLE_INSTALL_TOOL удалён. Теперь можно войти для дальнейшей настройки системы."; +$text["settings_createdatabase"] = "Создать таблицы базы данных"; +$text["settings_createdirectory"] = "Создать каталог"; $text["settings_currentvalue"] = "Текущее значение"; -$text["settings_Database"] = "Настройки БД"; -$text["settings_dbDatabase"] = "БД"; -$text["settings_dbDatabase_desc"] = "Название БД, введенное в ходе установки. Не изменять без необходимости, только, например, если БД перемещена."; +$text["settings_Database"] = "Настройки базы данных"; +$text["settings_dbDatabase"] = "База данных (БД)"; +$text["settings_dbDatabase_desc"] = "Название базы данных (БД), введённое в ходе установки. Не изменять без необходимости, только, например, если БД перемещена."; $text["settings_dbDriver"] = "Тип БД"; -$text["settings_dbDriver_desc"] = "Тип БД, введенный в ходе установки. Не изменять без необходимости, только, например, если БД изменила движок. Драйвер adodb (читать мануал adodb)"; -$text["settings_dbHostname_desc"] = "Хост БД, введенный в ходе установки. Не изменять без необходимости, только, например, если БД перемещена."; +$text["settings_dbDriver_desc"] = "Тип БД, введённый при установке. Не изменять без необходимости, только, например, если БД изменила движок. Драйвер adodb (см. руководство ADOdb)"; +$text["settings_dbHostname_desc"] = "Хост БД, введённый при установке. Не изменять без необходимости, только, например, если БД перемещена."; $text["settings_dbHostname"] = "Хост"; -$text["settings_dbPass_desc"] = "Пароль, введенный в ходе установки"; +$text["settings_dbPass_desc"] = "Пароль, введённый при установке"; $text["settings_dbPass"] = "Пароль"; -$text["settings_dbUser_desc"] = "Логин, введенный в ходе установки. Не изменять без необходимости, например если БД была перемещена."; +$text["settings_dbUser_desc"] = "Логин, введённый при установке. Не изменяйте без необходимости, например если БД была перемещена."; $text["settings_dbUser"] = "Логин"; -$text["settings_dbVersion"] = "Схема БД утсрала"; +$text["settings_dbVersion"] = "Схема БД устарела"; $text["settings_delete_install_folder"] = "Удалите ENABLE_INSTALL_TOOL в каталоге конфигурации, для того что бы начать использовать систему"; -$text["settings_disable_install"] = "Удалить ENABLE_INSTALL_TOOL есди возможно"; -$text["settings_disableSelfEdit_desc"] = "Если включить, пользователи не смогут редактировать свою информацию"; -$text["settings_disableSelfEdit"] = "Отключить собстенное редактирование"; +$text["settings_disable_install"] = "Удалить ENABLE_INSTALL_TOOL, если возможно"; +$text["settings_disableSelfEdit_desc"] = "Если включено, пользователи не смогут изменять информацию о себе"; +$text["settings_disableSelfEdit"] = "Отключить собственное редактирование"; $text["settings_Display"] = "Отключить настройки"; $text["settings_Edition"] = "Настройки редакции"; -$text["settings_enableAdminRevApp_desc"] = "Отключить, что бы скрыть админа из списка рецензирующих/утверждающих"; -$text["settings_enableAdminRevApp"] = "Админ рулит)))"; +$text["settings_enableAdminRevApp_desc"] = "Если отключено, администратор не отображается в списке рецензирующих и/или утверждающих"; +$text["settings_enableAdminRevApp"] = "Администратор как рецензирующий/утверждающий"; $text["settings_enableCalendar_desc"] = "Включить/отключить календарь"; $text["settings_enableCalendar"] = "Включить календарь"; -$text["settings_enableConverting_desc"] = "Включить/отключить конвертацию файлов"; -$text["settings_enableConverting"] = "Включить конвертацию"; -$text["settings_enableEmail_desc"] = "Включить/отключить автоматическое уведомление по email"; -$text["settings_enableEmail"] = "Включить E-mail"; -$text["settings_enableFolderTree_desc"] = "Отключено - не показывать дерево папок"; -$text["settings_enableFolderTree"] = "Включить дерево папок"; -$text["settings_enableFullSearch"] = "Включить полнотекстовы поиск"; +$text["settings_enableConverting_desc"] = "Включить/отключить преобразование файлов"; +$text["settings_enableConverting"] = "Включить преобразование"; +$text["settings_enableEmail_desc"] = "Включить/отключить автоматическое уведомление по e-mail"; +$text["settings_enableEmail"] = "Включить e-mail"; +$text["settings_enableFolderTree_desc"] = "Если отключено, не будет показано дерево каталогов"; +$text["settings_enableFolderTree"] = "Включить дерево каталогов"; +$text["settings_enableFullSearch"] = "Включить полнотекстовый поиск"; $text["settings_enableFullSearch_desc"] = "Включить полнотекстовый поиск"; -$text["settings_enableGuestLogin_desc"] = "Что бы разрешить гостевой вход, включите эту опцию. Гостевой вход должен использоваться только в довереной среде."; +$text["settings_enableGuestLogin_desc"] = "Что бы разрешить гостевой вход, включите эту опцию. Гостевой вход должен использоваться только в доверенной среде."; $text["settings_enableGuestLogin"] = "Включить гостевой вход"; -$text["settings_enableLargeFileUpload_desc"] = "Если включено, загрузка файлов дуступна так же через ява-апплет, называемый jumploader, без лимита на размер файла. Это так же позволит загружать несколько файлов за раз."; -$text["settings_enableLargeFileUpload"] = "Включить ява-загрузчик файлов"; -$text["settings_enablePasswordForgotten_desc"] = "Если включено, разрешает юзерам восстанавливать пароль на email."; +$text["settings_enableLargeFileUpload_desc"] = "Если включено, загрузка файлов доступна так же через Java-апплет, называемый jumploader, без ограничения размера файла. Это также позволит загружать несколько файлов за раз."; +$text["settings_enableLargeFileUpload"] = "Включить Java-загрузчик файлов"; +$text["settings_enablePasswordForgotten_desc"] = "Если включено, разрешает пользователям восстанавливать пароль через e-mail."; $text["settings_enablePasswordForgotten"] = "Включить восстановление пароля"; $text["settings_enableUserImage_desc"] = "Включить аватары пользователей"; $text["settings_enableUserImage"] = "Включить аватары"; $text["settings_enableUsersView_desc"] = "Включить/отключить просмотр групп/пользователей для всех пользователей"; $text["settings_enableUsersView"] = "Включить просмотр пользователей"; +$text["settings_encryptionKey"] = "Ключ шифрования"; +$text["settings_encryptionKey_desc"] = "Строка используется для создания уникального идентификатора, добавляемого как скрытые поля к формулярам, для предотвращения CSRF-атак."; $text["settings_error"] = "Ошибка"; -$text["settings_expandFolderTree_desc"] = "Разворачивать дерево папок"; -$text["settings_expandFolderTree"] = "Разворачивать дерево папок"; -$text["settings_expandFolderTree_val0"] = "начинать со свернутого дерева"; -$text["settings_expandFolderTree_val1"] = "начинать с развернутого дерева с развернутым первым уровнем"; -$text["settings_expandFolderTree_val2"] = "начинать с полностью развернутого дерева"; +$text["settings_expandFolderTree_desc"] = "Разворачивать дерево каталогов"; +$text["settings_expandFolderTree"] = "Разворачивать дерево каталогов"; +$text["settings_expandFolderTree_val0"] = "Начинать со свёрнутого дерева"; +$text["settings_expandFolderTree_val1"] = "Начинать с развёрнутого дерева до первого уровня"; +$text["settings_expandFolderTree_val2"] = "Начинать с полностью развёрнутого дерева"; $text["settings_firstDayOfWeek_desc"] = "Первый день недели"; $text["settings_firstDayOfWeek"] = "Первый день недели"; $text["settings_footNote_desc"] = "Сообщение, показываемое внизу каждой страницы"; -$text["settings_footNote"] = "Футер"; +$text["settings_footNote"] = "Нижний колонтитул"; $text["settings_guestID_desc"] = "Идентификатор гостя (можно не изменять)"; $text["settings_guestID"] = "Идентификатор гостя"; -$text["settings_httpRoot_desc"] = "Относительный путь в URL, после доменной части. Без http://. Например если полный URL http://www.example.com/letodms/, то нам нужно указать '/letodms/'. Если URL http://www.example.com/, то '/'"; -$text["settings_httpRoot"] = "Корень Http"; +$text["settings_httpRoot_desc"] = "Относительный путь в URL, после доменной части. Без http://. Например если полный URL http://www.example.com/letodms/, то нужно указать '/letodms/'. Если URL http://www.example.com/, то '/'"; +$text["settings_httpRoot"] = "Корень http"; $text["settings_installADOdb"] = "Установить ADOdb"; $text["settings_install_success"] = "Установка успешно завершена."; $text["settings_install_pear_package_log"] = "Установите пакет Pear 'Log'"; $text["settings_install_pear_package_webdav"] = "Установите пакет Pear 'HTTP_WebDAV_Server', если собираетесь использовать этот протокол"; $text["settings_install_zendframework"] = "Установите Zend Framework, если собираетесь использовать полнотекстовый поиск"; -$text["settings_language"] = "Язык по-умолчанию"; -$text["settings_language_desc"] = "Язык по-умолчанию (название подпапки в папке \"languages\")"; -$text["settings_logFileEnable_desc"] = "Включить/отключить лог"; -$text["settings_logFileEnable"] = "Включить лог"; -$text["settings_logFileRotation_desc"] = "Прокрутка лога"; -$text["settings_logFileRotation"] = "Прокрутка лога"; +$text["settings_language"] = "Язык по умолчанию"; +$text["settings_language_desc"] = "Язык по умолчанию (название подкаталога в \"languages\")"; +$text["settings_logFileEnable_desc"] = "Включить/отключить журнал"; +$text["settings_logFileEnable"] = "Включить журнал"; +$text["settings_logFileRotation_desc"] = "Ротация файла журнала"; +$text["settings_logFileRotation"] = "Ротация журнала"; $text["settings_luceneDir"] = "Каталог для полнотекстового индекса"; -$text["settings_maxDirID_desc"] = "Максимум подпапок в родительской папке. По-умолчанию: 32700."; -$text["settings_maxDirID"] = "Максимальный ID папки"; -$text["settings_maxExecutionTime_desc"] = "Устанавливает максимальное время выполнения скрипта, перед тем как он будет прибит парсером"; -$text["settings_maxExecutionTime"] = "Максимальное время выполнения (с)"; -$text["settings_more_settings"] = "Еще настройки. Дефолтный логин: admin/admin"; -$text["settings_no_content_dir"] = "Каталог контента"; +$text["settings_maxDirID_desc"] = "Максимум каталогов в родительском каталоге. По умолчанию 32700."; +$text["settings_maxDirID"] = "Максимальный ID каталога"; +$text["settings_maxExecutionTime_desc"] = "Устанавливает максимальное время выполнения скрипта, перед тем как он будет завершён."; +$text["settings_maxExecutionTime"] = "Максимальное время выполнения, с"; +$text["settings_more_settings"] = "Прочие настройки. Логин по умолчанию: admin/admin"; +$text["settings_no_content_dir"] = "Каталог содержимого"; $text["settings_notfound"] = "Не найден"; $text["settings_notwritable"] = "Конфигурация не может быть сохранена, потому что файл конфигурации только для чтения."; $text["settings_partitionSize"] = "Частичный размер файла"; @@ -510,58 +520,59 @@ $text["settings_php_dbDriver"] = "PHP extension : php_'see current value'"; $text["settings_php_gd2"] = "PHP extension : php_gd2"; $text["settings_php_mbstring"] = "PHP extension : php_mbstring"; -$text["settings_printDisclaimer_desc"] = "Если включенно, то дисклаймер из lang.inc будет выводится внизу каждой страницы"; -$text["settings_printDisclaimer"] = "Выводить дисклаймер"; -$text["settings_restricted_desc"] = "Разрешать вход пользователям, только если у них есть соответствующая учетка в БД (независимо от успешного входа через LDAP)"; -$text["settings_restricted"] = "Ограниченый доступ"; +$text["settings_printDisclaimer_desc"] = "Если включено, то предупреждение из lang.inc будет выводится внизу каждой страницы"; +$text["settings_printDisclaimer"] = "Выводить предупреждение"; +$text["settings_restricted_desc"] = "Разрешать вход пользователям, только если у них есть соответствующая учётная запись в БД (независимо от успешного входа через LDAP)"; +$text["settings_restricted"] = "Ограниченный доступ"; $text["settings_rootDir_desc"] = "Путь к letoDMS"; -$text["settings_rootDir"] = "Корневая папка"; -$text["settings_rootFolderID_desc"] = "ID каждой корневой папки (можно не менять)"; -$text["settings_rootFolderID"] = "ID корневой папки"; +$text["settings_rootDir"] = "Корневой каталог "; +$text["settings_rootFolderID_desc"] = "ID каждого корневого каталога (можно не менять)"; +$text["settings_rootFolderID"] = "ID корневого каталога"; $text["settings_SaveError"] = "Ошибка при сохранении конфигурации"; $text["settings_Server"] = "Настройки сервера"; $text["settings"] = "Настройки"; -$text["settings_siteDefaultPage_desc"] = "Страница,показываемая после входа. Есди пусто, то out/out.ViewFolder.php"; -$text["settings_siteDefaultPage"] = "Страница по-умолчанию"; -$text["settings_siteName_desc"] = "Название сайта, используемое в заголовках. По-умолчанию: letoDMS"; +$text["settings_siteDefaultPage_desc"] = "Страница, отображаемая после входа. По умолчанию: out/out.ViewFolder.php"; +$text["settings_siteDefaultPage"] = "Страница по умолчанию"; +$text["settings_siteName_desc"] = "Название сайта, используемое в заголовках. По умолчанию: letoDMS"; $text["settings_siteName"] = "Название сайта"; $text["settings_Site"] = "Сайт"; -$text["settings_smtpPort_desc"] = "Порт сервера SMTP, по-умолчанию 25"; +$text["settings_smtpPort_desc"] = "Порт сервера SMTP, по умолчанию 25"; $text["settings_smtpPort"] = "SMTP порт"; $text["settings_smtpSendFrom_desc"] = "Отправлено от"; $text["settings_smtpSendFrom"] = "От"; $text["settings_smtpServer_desc"] = "Хост SMTP"; $text["settings_smtpServer"] = "Хост SMTP"; $text["settings_SMTP"] = "Настройки SMTP"; -$text["settings_stagingDir"] = "Папка для частичных загрузок"; -$text["settings_strictFormCheck_desc"] = "Если включить, то все поля формы будут проверяться на заполненость. Если выключить, то коментарии и теги станут опциональными. Коментарий всегда обезателен при рецензировании или изменении статуса."; +$text["settings_stagingDir_desc"] = "Расположение файлов частичных загрузок"; +$text["settings_stagingDir"] = "Каталог для частичных загрузок"; +$text["settings_strictFormCheck_desc"] = "Если включено, то все поля формы будут проверяться заполнены ли они. Если выключено, то комментарии и метки станут опциональными. Комментарий всегда обязателен при рецензировании или изменении статуса."; $text["settings_strictFormCheck"] = "Полная проверка форм"; $text["settings_suggestionvalue"] = "Предлагаемое значение"; $text["settings_System"] = "Система"; -$text["settings_theme"] = "Тема по-умолчанию"; -$text["settings_theme_desc"] = "Стиль по-умолчанию (подпапка в папке \"styles\")"; -$text["settings_titleDisplayHack_desc"] = "Костяль для заголовков длиннее двух строк"; -$text["settings_titleDisplayHack"] = "Костыль для заголовков"; +$text["settings_theme"] = "Тема по умолчанию"; +$text["settings_theme_desc"] = "Стиль по умолчанию (подкаталог в \"styles\")"; +$text["settings_titleDisplayHack_desc"] = "Приём, используемый для заголовков длиннее двух строк."; +$text["settings_titleDisplayHack"] = "Приём для заголовков"; $text["settings_updateDatabase"] = "Запустить обновление схемы БД"; -$text["settings_updateNotifyTime_desc"] = "Пользователи уведомляются об измененях в документах за последние 'Update Notify Time' секунд"; -$text["settings_updateNotifyTime"] = "Вермя уведомлений об изменениях"; -$text["settings_versioningFileName_desc"] = "Названия файла версий, создаваемого инструментом бекапа"; +$text["settings_updateNotifyTime_desc"] = "Пользователи уведомляются об изменениях документов за последние указанные секунды"; +$text["settings_updateNotifyTime"] = "Период уведомлений об изменениях"; +$text["settings_versioningFileName_desc"] = "Названия файла версий, создаваемого инструментом резервного копирования"; $text["settings_versioningFileName"] = "Название файла версий"; $text["settings_viewOnlineFileTypes_desc"] = "Файлы с одним из следующих расширений могут просматриваться онлайн (только маленькие буквы)"; $text["settings_viewOnlineFileTypes"] = "Типы файлов для просмотра онлайн"; $text["settings_zendframework"] = "Zend Framework"; -$text["signed_in_as"] = "Вход под"; +$text["signed_in_as"] = "Пользователь"; $text["sign_in"] = "вход"; $text["sign_out"] = "выход"; $text["space_used_on_data_folder"] = "Размер каталога данных"; -$text["status_approval_rejected"] = "Черновик отклонен"; -$text["status_approved"] = "Утвержден"; -$text["status_approver_removed"] = "Утверждающий удален из процесса"; -$text["status_not_approved"] = "Не утвержден"; +$text["status_approval_rejected"] = "Черновик отклонён"; +$text["status_approved"] = "Утверждён"; +$text["status_approver_removed"] = "Утверждающий удалён из процесса"; +$text["status_not_approved"] = "Не утверждён"; $text["status_not_reviewed"] = "Не рецензирован"; $text["status_reviewed"] = "Рецензирован"; -$text["status_reviewer_rejected"] = "Черновик отклонен"; -$text["status_reviewer_removed"] = "Рецензирующий удален из процесса"; +$text["status_reviewer_rejected"] = "Черновик отклонён"; +$text["status_reviewer_removed"] = "Рецензирующий удалён из процесса"; $text["status"] = "Статус"; $text["status_unknown"] = "Неизвестный"; $text["storage_size"] = "Размер хранилища"; @@ -573,10 +584,11 @@ $text["sunday"] = "Воскресенье"; $text["theme"] = "Тема"; $text["thursday"] = "Четверг"; -$text["toggle_manager"] = "Включить менеджер"; -$text["to"] = "к"; +$text["toggle_manager"] = "Изменить как менеджера"; +$text["you_are_the_manager_of_this_group"] = "вы являетесь менеджером этой группы"; +$text["to"] = "К"; $text["tuesday"] = "Вторник"; -$text["under_folder"] = "В папке"; +$text["under_folder"] = "В каталоге"; $text["unknown_command"] = "Команда не опознана."; $text["unknown_document_category"] = "Неизвестная категория"; $text["unknown_group"] = "Неизвестный идентификатор группы"; @@ -584,8 +596,8 @@ $text["unknown_keyword_category"] = "Неизвестная категория"; $text["unknown_owner"] = "Неизвестный идентификатор собственника"; $text["unknown_user"] = "Неизвестный идентификатор пользователя"; -$text["unlock_cause_access_mode_all"] = "Вы все еще можете его обновить, потому что имеете уровень доступа \"all\". Блокировка будет снята автоматически."; -$text["unlock_cause_locking_user"] = "Вы все еще можете его обновить, потому что вы один из тех кто его заблокировал. Блокировка будет снята автоматически."; +$text["unlock_cause_access_mode_all"] = "Вы все ещё можете его обновить, потому что имеете уровень доступа \"all\". Блокировка будет снята автоматически."; +$text["unlock_cause_locking_user"] = "Вы все ещё можете его обновить, потому что вы один из тех кто его заблокировал. Блокировка будет снята автоматически."; $text["unlock_document"] = "Разблокировать"; $text["update_approvers"] = "Обновить список утверждающих"; $text["update_document"] = "Обновить документ"; @@ -594,23 +606,23 @@ $text["update_locked_msg"] = "Этот документ заблокирован"; $text["update_reviewers"] = "Обновить список рецензирующих"; $text["update"] = "Обновить"; -$text["uploaded_by"] = "Загружен"; -$text["uploading_failed"] = "Загрузка не удалась. Свяжитесь с админом"; -$text["use_default_categories"] = "Использовать предопределенные категории"; -$text["use_default_keywords"] = "Использовать предопределенные теги"; +$text["uploaded_by"] = "Загрузил(а)"; +$text["uploading_failed"] = "Загрузка не удалась. Свяжитесь с администратором."; +$text["use_default_categories"] = "Использовать предопределённые категории"; +$text["use_default_keywords"] = "Использовать предопределённые метки"; $text["user_exists"] = "Пользователь существует"; $text["user_image"] = "Изображение"; $text["user_info"] = "Информация о пользователе"; $text["user_list"] = "Список пользователей"; -$text["user_login"] = "Идентификатор пользователя"; +$text["user_login"] = "Пользователь"; $text["user_management"] = "Управление пользователями"; $text["user_name"] = "Полное имя"; $text["users"] = "Пользователи"; $text["user"] = "Пользователь"; $text["version_deleted_email"] = "Версия удалена"; $text["version_info"] = "Информация о версии"; -$text["versioning_file_creation"] = "Создание файла версий"; -$text["versioning_file_creation_warning"] = "Эта операция создаст файл версий для всей папки. После создания файл будет сохранен в каталоге документов."; +$text["versioning_file_creation"] = "Создать файл версий"; +$text["versioning_file_creation_warning"] = "Эта операция создаст файл версий для всего каталога. После создания файл будет сохранен в каталоге документов."; $text["versioning_info"] = "Информация о версиях"; $text["version"] = "Версия"; $text["view_online"] = "Просмотреть"; debian/patches/disable_largefileupload0000644000000000000000000000121112220755040015352 0ustar # Description: Disable LargeFileUpload feature in Debian. # Author: Francisco Manuel Garcia Claramonte # Last-Update: 22-03-2012 Index: letodms/conf/settings.xml.template =================================================================== --- letodms.orig/conf/settings.xml.template 2012-03-22 21:55:21.000000000 +0100 +++ letodms/conf/settings.xml.template 2012-03-22 21:56:27.000000000 +0100 @@ -73,7 +73,7 @@ luceneDir = "" logFileEnable = "true" logFileRotation = "d" - enableLargeFileUpload = "true" + enableLargeFileUpload = "false" partitionSize = "2000000" >
debian/rules0000755000000000000000000000502112220755077010253 0ustar #!/usr/bin/make -f build: build-arch build-indep build-arch: build-stamp build-indep: build-stamp build-stamp: dh_testdir touch build-stamp clean: dh_testdir dh_testroot rm -f build-stamp dh_clean install: build dh_testdir dh_testroot dh_prep dh_installdirs dh_install index.php /usr/share/letodms dh_install conf /usr/share/letodms dh_install inc /usr/share/letodms dh_install languages /usr/share/letodms dh_install op /usr/share/letodms dh_install out /usr/share/letodms dh_install styles /usr/share/letodms dh_install utils /usr/share/letodms dh_install debian/letodms.local.conf /etc/letodms/ install -o root -g root -m 0755 -d install debian/letodms/usr/share/letodms/install dh_install install/update-1.8.1 /usr/share/letodms/install dh_install install/update-1.9.0 /usr/share/letodms/install dh_install install/update-2.0.1 /usr/share/letodms/install dh_install install/update-3.0.0 /usr/share/letodms/install dh_install install/update-3.1.0 /usr/share/letodms/install dh_install install/update-3.2.0 /usr/share/letodms/install dh_install install/update-3.3.0 /usr/share/letodms/install dh_install debian/letodms.conf /etc/apache2/conf-available/ install -o root -g root -m 0755 debian/letodms.sh debian/letodms/usr/bin/letodms install -o root -g root -m 0644 conf/stopwords.txt debian/letodms/etc/letodms/stopwords.txt # Settings template is needed for dbconfig-common install -o root -g root -m 0644 conf/settings.xml.template debian/letodms/usr/share/letodms/conf/settings.xml.template #install -o root -g root -m 0644 debian/letodms.apache2 \ #debian/letodms/etc/apache2/sites-available/letodms install -o root -g root -m 0644 install/create_tables-innodb.sql \ debian/letodms/usr/share/dbconfig-common/data/letodms/install/mysql install -D -o root -g root -m 0644 install/update-3.3.0/update.sql \ debian/letodms/usr/share/dbconfig-common/data/letodms/upgrade/mysql/3.3.4+dfsg-1 install -m 644 debian/logo_letodms_32x32.xpm \ debian/letodms/usr/share/pixmaps/ install -m 0644 debian/letodms.desktop \ debian/letodms/usr/share/applications/ # Build architecture-dependent files here. binary-arch: build install binary-indep: build install dh_testdir dh_testroot dh_installchangelogs CHANGELOG dh_installdocs dh_installmenu dh_installman debian/letodms.1 dh_installexamples dh_install dh_installdebconf dh_link dh_compress dh_fixperms dh_installdeb dh_gencontrol dh_md5sums dh_builddeb binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install configure debian/docs0000644000000000000000000000001412220755040010031 0ustar README TODO debian/README.Debian0000644000000000000000000001104012220760051011216 0ustar letodms for Debian ------------------ This package is the new upstream version of mydms package. Since version 3.0.0 this package is officially named LetoDMS. This package is based in mydms Debian package. Configuring LetoDMS. ==================== Review /etc/letodms/settings.xml file to setup some global admin variables. Once configured, LetoDMS is accesible by user 'admin', with password 'admin' in http://localhost/letodms/ This password must be changed by security reasons. By default, Apache configuration for LetoDMS allows access only to localhost, see /etc/apache2/conf-available/letodms.conf: = 2.3> Require local Order deny,allow Deny from all Allow from 127.0.0.0/255.0.0.0 ::1/128 If you need to allow remote access, you can change this settings to allow it. For Apache 2.4 see https://httpd.apache.org/docs/2.4/howto/access.html and Apache 2.2 see https://httpd.apache.org/docs/2.2/howto/access.html. Please read more documentation about Apache web server in apache2-doc package or Apache web site: http://httpd.apache.org/docs/2.2/ and http://httpd.apache.org/docs/2.4/ ----- Since letoDMS-3.3.11+dfsg-3, this package support Apache2.4. By default, access is limited to localhost. If you want to open access for all host you need to change the directive = 2.3> Require local for this one: Require all granted Require not ip 10.252.46.165 For Apache2.4, please read the new access control documentation: https://httpd.apache.org/docs/2.4/howto/access.html ------ In case of multiple instance follow the next steps. Install multiple instances of LetoDMS. ====================================== Debian package installs one instance of LetoDMS. To install more instances, follow the next steps: 1- Create the target directory in www server root directory, commonly /var/www/ 2- Create symlinks to some source dirs. cd /var/www/ ln -s /usr/share/letodms/inc inc ln -s /usr/share/letodms/op op ln -s /usr/share/letodms/out out ln -s /usr/share/letodms/languages languages ln -s /usr/share/letodms/styles styles ln -s /usr/share/letodms/index.php index.php ln -s /usr/share/letodms/js js ln -s /usr/share/letodms/utils utils 3- Create Letodms config file, You can copy template config file settings.xml.template and set properly the params. mkdir /var/www//conf cp /usr/share/letodms/conf/settings.xml.template /var/www//conf/settings.xml 4- Create a new data base for the new instance. Using mysql: create database ; grant all privileges on .* to @localhost identified by ''; zcat /usr/share/doc/letodms/examples/create_tables.sql.gz | mysql -u -p (You can use create_tables-innodb.sql file). 5- Set Data folder. Create a directory writable by the web server user. This directory should be out of the web public path for security reasons. After this, set properly the contentDir in in 'server' tag settings file. It is needed to set luceneDir and stagingDir parameters, writable by the web server user too. (They can be subdirectories of contentDir parameter). Once configured, LetoDMS is accesible by user 'admin', with password 'admin' in http://localhost/letodms/ This password must be changed by security reasons. Upgrade from previous myDMS versions. ======================================= Please, before install this version save your old database with a backup. After this, copy or rename the old mysql data base, named mydms, to new letodms data base. The full proccess is as follows: 1- Copy or Rename old database to letodms. 2- Apply the letodms patchs by increasing order of version. http://localhost/letodms/install/update-1.8.1/update.php http://localhost/letodms/install/update-1.9/update.php http://localhost/letodms/install/update-2.0.1/update.php cat /usr/share/letodms/install/update-3.0.0/update.sql | mysql -u -p letodms cat /usr/share/letodms/install/update-3.1.0/update.sql | mysql -u -p letodms cat /usr/share/letodms/install/update-3.2.0/update.sql | mysql -u -p letodms cat /usr/share/letodms/install/update-3.3.0/update.sql | mysql -u -p letodms Each script updates from a previous version. 4- Configure /etc/letodms/settings.xml properly with the database connect, old data folder, and any other needed settings. Please, read /usr/share/doc/letodms/README.gz file for more information. -- Francisco Manuel Garcia Claramonte Tue, 2 May 2012 18:27:58 +0200 debian/settings.xml.template0000644000000000000000000002015312220755040013360 0ustar debian/copyright0000644000000000000000000000327612305423466011136 0ustar This package was debianized by Francisco Manuel Garcia Claramonte on Sun, 16 Jan 2011 20:11343 -0200 It was downloaded from http://sourceforge.net/projects/mydms/files/LetoDMS/ The repackaged upstream source (+dfsg version) was created by removing the following files from the upstream tarball: - out/jl_core_z.jar file, this file is not free software. - js/jquery.min.js, the source of this file is not included in upstream package. Copyright (C) 2002-2005 Markus Westphal 2006-2008 Malcolm Cowe 2010-2012 Uwe Steinmann 2010-2011 Matteo Lucarelli Upstream Author: Uwe Steinmann Markus Westphal License: This program 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. This program 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 this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. On Debian GNU/Linux systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-2'. The Debian packaging is © 2011, 2012, 2013 Francisco Manuel Garcia Claramonte and is licensed under the GPL-2, see `/usr/share/common-licenses/GPL-2' debian/changelog0000644000000000000000000001416012305423765011051 0ustar letodms (3.3.11+dfsg.1-1) unstable; urgency=low * Added MariaDB as alternative to dependences list. (Closes: #732867) * Removed js/jquery.min.js from Debian source package. It is a sourceless file. Created new +dfsg.1 source Debian package, (Closes: #736740) * Added patch to upate Russian translation. Thanks to Sergey Alyoshin for the patch. (Closes: #720993) * Added patchs to fix some messages in English translation and php script. Thanks to Sergey Alyoshin for the patch (Closes: #720992) * Updated README.Debian file. * Updated to debian policy 3.9.5. * Updated copyright file, repackaged upstream source description. * Updated for transition to apache 2.4. (Closes: #669826) + Updated depends and recommends to apache2 in debian/control (Closes: #718759) + Renamed apache2 config file to letodms.conf + Renamed old apache.conf (for localhost url) to apache.local.conf + Removed debian/letodms.links file. + Changed debian/letodms-postinst. Use apache2-maintscript-helper to enable letodms site. -- Francisco Manuel Garcia Claramonte Tue, 04 Mar 2014 11:16:42 +0100 letodms (3.3.11+dfsg-2) unstable; urgency=low * Added patch with French translation (french_translation), thanks to Olivier Berger. Reported to upstream. (Closes: #709211, #709205) * Added README and README.Notificacion to binary Debian package docs. Thanks to Olivier Berger for the report. (Closes: #709191) * Updated to debian policy 3.9.4. * Fixed letodms icon path in debian/letodms.menu file. -- Francisco Manuel Garcia Claramonte Thu, 23 May 2013 09:40:11 +0200 letodms (3.3.11+dfsg-1) unstable; urgency=low * New upstream release (Fixed problem in categories with an empty name, other minor fixes). * Added debian/source/local-options file to unapply quilt debian patches. -- Francisco Manuel Garcia Claramonte Fri, 30 Nov 2012 13:17:37 +0100 letodms (3.3.9+dfsg-1) unstable; urgency=low * New upstream release (More security fixes for preventing CSRF, XSS and sql injection attacks). * Removed unneeded Debian patch (fix_spanish_translation). Fixed in upstream. -- Francisco Manuel Garcia Claramonte Mon, 17 Sep 2012 11:29:35 +0200 letodms (3.3.7+dfsg-1) unstable; urgency=low * New upstream release. Fixed some security issues. * Removed unneeded Debian patch (fix_new_user_form). Fixed in upstream. -- Francisco Manuel Garcia Claramonte Mon, 27 Aug 2012 12:27:04 +0200 letodms (3.3.6+dfsg-1) unstable; urgency=low * New upstream release. * Removed unneeded patches: + reset-maxDirID.diff, this change is applied by upstream now. + remove_svn_tmp_file, svn-commit.tmp removed from upstream. * Added patch fix_spanish_translation, to fix a minor typo. * Added patch fix_new_user_form, to change the mandatory fields in "Add new User" form. According to upstream CHANGELOG. -- Francisco Manuel Garcia Claramonte Tue, 17 Jul 2012 18:05:58 +0200 letodms (3.3.4+dfsg-1) unstable; urgency=low * New upstream release * Updated to debian policy 3.9.3. * Changed dependence from libapache2-mod-php5 to php5 (Closes: #667633). * Updated download url in copyright file (Closes: #667479). * Fixed reference to config file (settings.xml) in README.debian. (Closes: #666398). * Added two new patchs: + To set maxDirID var to 0, nonlimit value. Read NEWS.Debian.gz for more info. + To enable Password Forgotten feature by default. + To remove a SVN unneeded temporal file. * Removed unneeded conf.Settings.template file. * Added apache redirection directive to debian/letodms.apache2 file to avoid download the settings file. * Updated debian/rules with update dirs path. * Added debian/letodms.docs file. * Updated debian/copyright. -- Francisco Manuel Garcia Claramonte Wed, 22 Apr 2012 21:53:23 +0100 letodms (3.2.2+dfsg-1) unstable; urgency=low * New upstream release * Changed mysql-server dependency to recommends (Closes: #653388). -- Francisco Manuel Garcia Claramonte Tue, 10 Jan 2012 22:27:42 +0100 letodms (3.2.1+dfsg-1) unstable; urgency=low * New upstream release. * Reviewed description control fields (Closes: #650294). -- Francisco Manuel Garcia Claramonte Thu, 01 Dec 2011 12:16:09 +0100 letodms (3.2.0+dfsg-2) unstable; urgency=low * Added a missing dependency to php-log. Thanks to Sarantis Paskalis (Closes: #650167) * Improved long description syntax. Thanks to Filipus Klutiero (Closes: #648911). -- Francisco Manuel Garcia Claramonte Sun, 27 Nov 2011 20:20:36 +0100 letodms (3.2.0+dfsg-1) unstable; urgency=low * New upstream version. * Changed default mysql database type from MyISAM to InnoDB. * Added a patch to update the spanish translation. (Sent to upstream too). * Added a patch to fix a problem in create_table.sql file. In tblCategory table. * Added patches to disable 'large file upload' feature. * Improved packages dependecies in debian/control file: + Package mysql-client in Suggests field, instead Recommends. + Added dependencies to php-letodms-lucene and libjs-jquery packages. * Improved long description control field (Closes: #639382). * Updated debian/README.Debian file according to new upstream config changes. * Fixed debian/watch. Updated to new re-packaged source tarball. -- Francisco Manuel Garcia Claramonte Fri, 16 Sep 2011 19:47:56 +0200 letodms (3.0.0-2) unstable; urgency=low * Added build-arch build-indep targets to debian/rules, according to Debian policy. * Improved long description in debian/control file (Closes: #631570) * Completed config documentation in debian/README.Debian. * Added debian/watch file. -- Francisco Manuel Garcia Claramonte Sat, 13 Aug 2011 17:27:18 +0200 letodms (3.0.0-1) unstable; urgency=low * Initial release. (Closes: #626179) -- Francisco Manuel Garcia Claramonte Thu, 5 May 2011 19:31:02 +0100