--- gallery-1.5.10.dfsg.orig/configure.sh +++ gallery-1.5.10.dfsg/configure.sh @@ -1,20 +1,29 @@ #!/bin/sh # $Id: configure.sh 6290 2004-06-09 21:48:15Z cryptographite $ -chmod 755 setup +set -e -if [ ! -f config.php ]; then - touch config.php -fi +ROOT=/usr/share/gallery +CONFDIR=/etc/gallery -if [ ! -f .htaccess ]; then - touch .htaccess +if [ `whoami` != "root" ] ; then + echo "You must be root to run this script" 2>&1 + exit 1 fi -chmod 666 config.php .htaccess +for file in $CONFDIR/config.php $CONFDIR/htaccess ; do + if [ ! -f $file ]; then + touch $file + fi + chown www-data:root $file + chmod 644 $file +done + +chmod 755 $ROOT/setup + echo "" -echo "You are now in setup mode. Your Gallery installation" +echo "You are now in setup mode. Your Gallery installation" echo "can be configured by pointing your web browser" -echo "to the URL to 'setup' in this directory." +echo "to the setup wizard (e.g. http://www.example.com/gallery/setup/index.php) " echo "" --- gallery-1.5.10.dfsg.orig/manifest.inc +++ gallery-1.5.10.dfsg/manifest.inc @@ -62,10 +62,6 @@ $versions['classes/NobodyUser.php']='17806'; $versions['classes/User.php']='17900'; $versions['classes/UserDB.php']='17801'; -$versions['classes/XML_HTMLSax3/HTMLSax3.php']='17671'; -$versions['classes/XML_HTMLSax3/HTMLSax3/Decorators.php']='17671'; -$versions['classes/XML_HTMLSax3/HTMLSax3/Grammar.php']='149'; -$versions['classes/XML_HTMLSax3/HTMLSax3/States.php']='17671'; $versions['classes/database/mysql/Database.php']='17806'; $versions['classes/gallery/User.php']='17967'; $versions['classes/gallery/UserDB.php']='17812'; --- gallery-1.5.10.dfsg.orig/Version.php +++ gallery-1.5.10.dfsg/Version.php @@ -20,7 +20,7 @@ * $Id: Version.php 18732 2008-11-17 23:12:00Z JensT $ */ -$gallery->version = '1.5.10'; +$gallery->version = '1.5.10.dfsg-debian1'; $gallery->config_version = 97; $gallery->album_version = 38; $gallery->user_version = 6; --- gallery-1.5.10.dfsg.orig/secure.sh +++ gallery-1.5.10.dfsg/secure.sh @@ -1,21 +1,30 @@ #!/bin/sh # $Id: secure.sh 6294 2004-06-10 15:08:20Z jenst $ -if [ -f config.php ]; then - chmod 644 config.php -fi +set -e + +ROOT=/usr/share/gallery +CONFDIR=/etc/gallery -if [ -f .htaccess ]; then - chmod 644 .htaccess +if [ `whoami` != "root" ] ; then + echo "You must be root to run this script" 2>&1 + exit 1 fi -if [ -f setup/resetadmin ]; then - rm -f setup/resetadmin +for file in $CONFDIR/config.php $CONFDIR/htaccess ; do + if [ -f $file ]; then + chown root:root $file + chmod 644 $file + fi +done + +if [ -f $ROOT/setup/resetadmin ]; then + rm -f $ROOT/setup/resetadmin fi echo "" echo "Your Gallery is now secure and cannot be configured. If" -echo "you wish to reconfigure it, run:" +echo "you wish to reconfigure it, run configure.sh as root:" echo "" -echo " % ./configure.sh" +echo " # $ROOT/configure.sh" echo "" --- gallery-1.5.10.dfsg.orig/po/gallery-config.pot +++ gallery-1.5.10.dfsg/po/gallery-config.pot @@ -1,17 +1,17 @@ -# +# # Gallery - a web based photo album viewer and editor # Copyright (C) 2000-2008 Bharat Mediratta -# +# # 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 Street - Fifth Floor, Boston, MA 02110-1301, USA. @@ -65,7 +65,9 @@ msgstr "" #: ../html_wrap/frames/shadows/frame.def:4 -msgid "PNG transparent shadows falling to the right and below. Proper transparency, so should work against most backgrounds, except black." +msgid "" +"PNG transparent shadows falling to the right and below. Proper transparency, " +"so should work against most backgrounds, except black." msgstr "" #: ../html_wrap/frames/polaroid/frame.def:3 @@ -81,7 +83,8 @@ msgstr "" #: ../html_wrap/frames/polaroids/frame.def:4 -msgid "A stack of photos with a large white frame, extra wide at the bottom edge." +msgid "" +"A stack of photos with a large white frame, extra wide at the bottom edge." msgstr "" #: ../html_wrap/frames/scrapbookshadow/frame.def:3 @@ -105,7 +108,9 @@ msgstr "" #: ../html_wrap/frames/scrapbookshadowsmall/frame.def:5 -msgid "Smaller 'Olde Tyme' photo corners, good for Thumbnails, with shadow for light pages." +msgid "" +"Smaller 'Olde Tyme' photo corners, good for Thumbnails, with shadow for " +"light pages." msgstr "" #: ../html_wrap/frames/postage_stamp/frame.def:3 @@ -152,7 +157,10 @@ msgstr "" #: ../setup/check.inc:34 -msgid "This page will validate your installation to make sure that you have all the necessary components and permissions on this system and that everything is configured reasonably." +msgid "" +"This page will validate your installation to make sure that you have all the " +"necessary components and permissions on this system and that everything is " +"configured reasonably." msgstr "" #: ../setup/check.inc:39 ../setup/check.inc:95 ../setup/diagnostics.php:29 @@ -206,7 +214,9 @@ msgstr "" #: ../setup/check.inc:275 -msgid "There are errors in your configuration that will prevent Gallery from functioning properly." +msgid "" +"There are errors in your configuration that will prevent Gallery from " +"functioning properly." msgstr "" #: ../setup/check.inc:277 @@ -214,7 +224,9 @@ msgstr "" #: ../setup/check.inc:284 -msgid "Your installation has serious warnings!
Continue at your own risk..." +msgid "" +"Your installation has serious warnings!
Continue at your own " +"risk..." msgstr "" #: ../setup/check.inc:289 @@ -235,20 +247,29 @@ #: ../setup/check_imagemagick.php:34 ../setup/check_netpbm.php:34 #, php-format -msgid "This script is designed to examine your %s installation to see if it is ok to be used by Gallery." +msgid "" +"This script is designed to examine your %s installation to see if it is ok " +"to be used by Gallery." msgstr "" #: ../setup/check_imagemagick.php:35 ../setup/check_netpbm.php:35 #, php-format -msgid "You should run this script after you have run the config wizard, if you have had problems with your %s installation that the wizard did not detect." +msgid "" +"You should run this script after you have run the config wizard, if " +"you have had problems with your %s installation that the wizard did not " +"detect." msgstr "" #: ../setup/check_imagemagick.php:43 ../setup/check_netpbm.php:47 -msgid "Loading configuration files. If you see an error here, it is probably because you have not successfully run the config wizard." +msgid "" +"Loading configuration files. If you see an error here, it is probably " +"because you have not successfully run the config wizard." msgstr "" #: ../setup/check_imagemagick.php:50 ../setup/check_netpbm.php:55 -msgid "It seems that you did not configure your GALLERY. Please run and finish the configuration wizard." +msgid "" +"It seems that you did not configure your GALLERY. Please run and finish the " +"configuration wizard." msgstr "" #: ../setup/check_imagemagick.php:63 ../setup/check_netpbm.php:70 @@ -277,7 +298,9 @@ msgstr "" #: ../setup/check_imagemagick.php:86 ../setup/check_netpbm.php:94 -msgid "If both the attempts above failed, you should ask your ISP what operating system you are using." +msgid "" +"If both the attempts above failed, you should ask your ISP what operating " +"system you are using." msgstr "" #: ../setup/check_imagemagick.php:87 ../setup/check_netpbm.php:95 @@ -292,7 +315,9 @@ #: ../setup/check_imagemagick.php:101 ../setup/check_netpbm.php:113 #, php-format -msgid "If that is not right (or if it is blank), re-run the configuration wizard and enter a location for %s." +msgid "" +"If that is not right (or if it is blank), re-run the configuration wizard " +"and enter a location for %s." msgstr "" #: ../setup/check_imagemagick.php:110 ../setup/check_netpbm.php:122 @@ -305,7 +330,9 @@ msgstr "" #: ../setup/check_imagemagick.php:115 ../setup/check_netpbm.php:127 -msgid "The result is, that we can't perform all of our basic checks on the files to make sure that they exist and they're executable." +msgid "" +"The result is, that we can't perform all of our basic checks on the files to " +"make sure that they exist and they're executable." msgstr "" #: ../setup/check_imagemagick.php:123 ../setup/check_netpbm.php:139 @@ -319,17 +346,24 @@ #: ../setup/check_imagemagick.php:151 ../setup/check_netpbm.php:214 #, php-format -msgid "If you see an error above complaining about reading or writing to %s then this is likely a permission/configuration issue on your system. If it mentions %s then it's because your system is configured with %s enabled." +msgid "" +"If you see an error above complaining about reading or writing to %s then " +"this is likely a permission/configuration issue on your system. If it " +"mentions %s then it's because your system is configured with %s enabled." msgstr "" #: ../setup/check_imagemagick.php:155 ../setup/check_netpbm.php:218 #, php-format -msgid "You should talk to your system administrator about this, or see the %sGallery Help Page%s." +msgid "" +"You should talk to your system administrator about this, or see the %" +"sGallery Help Page%s." msgstr "" #: ../setup/check_imagemagick.php:160 ../setup/check_netpbm.php:223 #, php-format -msgid "For other errors, please refer to the list of possible responses in %s to get more information." +msgid "" +"For other errors, please refer to the list of possible responses in %s to " +"get more information." msgstr "" #: ../setup/check_mail.php:25 @@ -346,12 +380,16 @@ msgstr "" #: ../setup/check_mail.php:36 -msgid "If you recevied this in error, then please disregard, as you should not receive any similar emails." +msgid "" +"If you recevied this in error, then please disregard, as you should not " +"receive any similar emails." msgstr "" #: ../setup/check_mail.php:37 #, php-format -msgid "If you were expecting email from the %s installation at %s, then Congratulations! Email is working and you can enable the %s email functions." +msgid "" +"If you were expecting email from the %s installation at %s, then " +"Congratulations! Email is working and you can enable the %s email functions." msgstr "" #: ../setup/check_mail.php:42 @@ -364,7 +402,11 @@ #: ../setup/check_mail.php:48 #, php-format -msgid "Test email sent to %s, and should arrive in a few minutes. If you don't receive it please confirm the email address used was correct. If you cannot receive the email, then it must be disabled for this server, and %s email functions cannot be used until that is rectified" +msgid "" +"Test email sent to %s, and should arrive in a few minutes. If you " +"don't receive it please confirm the email address used was correct. If you " +"cannot receive the email, then it must be disabled for this server, and %s " +"email functions cannot be used until that is rectified" msgstr "" #: ../setup/check_mail.php:52 @@ -376,7 +418,10 @@ msgstr "" #: ../setup/check_mail.php:59 -msgid "This enables you to confirm that email is working correctly on your system. Submit your email address below, and an email will be sent to you. If you receive it, then you know that mail is working on your system" +msgid "" +"This enables you to confirm that email is working correctly on your system. " +"Submit your email address below, and an email will be sent to you. If you " +"receive it, then you know that mail is working on your system" msgstr "" #: ../setup/check_mail.php:63 ../setup/check_mail.php:68 @@ -435,11 +480,14 @@ #: ../setup/check_versions.php:33 #, php-format -msgid "This page gives you information about the version of each necessary %s file. " +msgid "" +"This page gives you information about the version of each necessary %s file. " msgstr "" #: ../setup/check_versions.php:35 -msgid "If you see any error(s), we highly suggest to get the actual version of those files." +msgid "" +"If you see any error(s), we highly suggest to get the actual version of " +"those files." msgstr "" #: ../setup/check_versions.php:45 @@ -451,7 +499,9 @@ #: ../setup/check_versions.php:50 ../setup/check_versions.php:69 #, php-format -msgid "There are problems with the following files. Please correct them before configuring %s." +msgid "" +"There are problems with the following files. Please correct them before " +"configuring %s." msgstr "" #: ../setup/check_versions.php:54 @@ -463,13 +513,16 @@ #: ../setup/check_versions.php:59 #, php-format -msgid "The following files are older than expected for this version of %s. Please update them as soon as possible." +msgid "" +"The following files are older than expected for this version of %s. Please " +"update them as soon as possible." msgstr "" #: ../setup/check_versions.php:63 #, php-format msgid "One file is not in the manifest file, but has a Version number." -msgid_plural "%d files are not in the manifest file, but have a Version number." +msgid_plural "" +"%d files are not in the manifest file, but have a Version number." msgstr[0] "" msgstr[1] "" @@ -482,7 +535,9 @@ #: ../setup/check_versions.php:78 #, php-format -msgid "The following files are more up-to-date than expected for this version of %s. If you are using pre-release code, this is OK." +msgid "" +"The following files are more up-to-date than expected for this version of %" +"s. If you are using pre-release code, this is OK." msgstr "" #: ../setup/check_versions.php:85 @@ -510,7 +565,10 @@ #: ../setup/config_data.inc:73 #, php-format -msgid "Gallery prefers Netpbm version 10.3 and up. You can install just the binaries Gallery needs from the %sGallery Download Page%s. Or, you can compile and install the entire Netpbm package from the %sNetpbm website%s." +msgid "" +"Gallery prefers Netpbm version 10.3 and up. You can install just the " +"binaries Gallery needs from the %sGallery Download Page%s. Or, you can " +"compile and install the entire Netpbm package from the %sNetpbm website%s." msgstr "" #: ../setup/config_data.inc:78 ../setup/config_data.inc:88 @@ -520,29 +578,45 @@ msgstr "" #: ../setup/config_data.inc:79 -msgid "You can install the binaries from the Gallery site even if you don't have root access on your box! If you can't get it working, try leaving the Netpbm path blank and using ImageMagick instead." +msgid "" +"You can install the binaries from the Gallery site even if you don't have " +"root access on your box! If you can't get it working, try leaving the " +"Netpbm path blank and using ImageMagick instead." msgstr "" #: ../setup/config_data.inc:82 -msgid "I've found part of Netpbm, but some critical components are missing (see below). Perhaps your version of Netpbm is out of date." +msgid "" +"I've found part of Netpbm, but some critical components are missing (see " +"below). Perhaps your version of Netpbm is out of date." msgstr "" #: ../setup/config_data.inc:86 #, php-format -msgid "Gallery prefers ImageMagick version 5.4.8 and up. You can compile and install the entire ImageMagick package from the %sImageMagick website%s." +msgid "" +"Gallery prefers ImageMagick version 5.4.8 and up. You can compile and " +"install the entire ImageMagick package from the %sImageMagick website%s." msgstr "" #: ../setup/config_data.inc:89 -msgid "The site also has binaries available for assorted operating systems. If you can't get it working, try leaving the ImageMagick path blank and using Netpbm instead." +msgid "" +"The site also has binaries available for assorted operating systems. If you " +"can't get it working, try leaving the ImageMagick path blank and using " +"Netpbm instead." msgstr "" #: ../setup/config_data.inc:92 -msgid "I've found part of ImageMagick , but some critical components are missing (see below)." +msgid "" +"I've found part of ImageMagick , but some critical components are missing " +"(see below)." msgstr "" #: ../setup/config_data.inc:97 #, php-format -msgid "Your PHP installation is configured with the %s restriction. This may make it difficult for Gallery to detect and verify your binaries, even if you've already successfully used the Config. Wizard in the past. Don't worry too much if this page gives warnings; your settings will still be saved properly." +msgid "" +"Your PHP installation is configured with the %s restriction. This may make " +"it difficult for Gallery to detect and verify your binaries, even if you've " +"already successfully used the Config. Wizard in the past. Don't worry too " +"much if this page gives warnings; your settings will still be saved properly." msgstr "" #: ../setup/config_data.inc:103 @@ -563,7 +637,9 @@ msgstr "" #: ../setup/config_data.inc:112 -msgid "Due to bugs and missing functionality in some PHP versions, the minimum PHP version for Gallery 1.5 and newer is at least PHP 4.1.0" +msgid "" +"Due to bugs and missing functionality in some PHP versions, the minimum PHP " +"version for Gallery 1.5 and newer is at least PHP 4.1.0" msgstr "" #: ../setup/config_data.inc:114 @@ -573,11 +649,15 @@ #: ../setup/config_data.inc:115 #, php-format -msgid "You're running PHP version %s which has known bugs that cause Gallery to fail." +msgid "" +"You're running PHP version %s which has known bugs that cause Gallery to " +"fail." msgstr "" #: ../setup/config_data.inc:116 -msgid "It seems your PHP has a problem with __FILE__, please upgrade to a recent Version." +msgid "" +"It seems your PHP has a problem with __FILE__, please upgrade to a recent " +"Version." msgstr "" #: ../setup/config_data.inc:120 @@ -585,11 +665,18 @@ msgstr "" #: ../setup/config_data.inc:121 -msgid "Gallery highly recommends that the PHP option 'register_globals' be turned off, for security purposes. Some software, notably the 'Geeklog' CMS, requires that 'register_globals' be enabled." +msgid "" +"Gallery highly recommends that the PHP option 'register_globals' be turned " +"off, for security purposes. Some software, notably the 'Geeklog' CMS, " +"requires that 'register_globals' be enabled." msgstr "" #: ../setup/config_data.inc:123 -msgid "The PHP option 'register_globals' is enabled on your server. Gallery highly recommends that you disable 'register_globals' unless it is required by software on your site. Gallery does not officially support 'register_globals' being enabled, and will attempt to disable it internally." +msgid "" +"The PHP option 'register_globals' is enabled on your server. Gallery highly " +"recommends that you disable 'register_globals' unless it is required by " +"software on your site. Gallery does not officially support " +"'register_globals' being enabled, and will attempt to disable it internally." msgstr "" #: ../setup/config_data.inc:128 @@ -597,17 +684,29 @@ msgstr "" #: ../setup/config_data.inc:129 -msgid "Check to see if PHP is running in safe_mode. Safe Mode is a PHP security feature commonly used in shared environments. Gallery cannot run when Safe Mode is enabled because it imposes too many restrictions." +msgid "" +"Check to see if PHP is running in safe_mode. Safe Mode is a PHP " +"security feature commonly used in shared environments. Gallery cannot run " +"when Safe Mode is enabled because it imposes too many restrictions." msgstr "" #: ../setup/config_data.inc:131 #, php-format -msgid "safe_mode is enabled on this server. You must disable it before you can use Gallery. Refer to the FAQ, the forums, and the help page on the %sGallery website%s and the %sPHP website%s for assistance." +msgid "" +"safe_mode is enabled on this server. You must disable it before you " +"can use Gallery. Refer to the FAQ, the forums, and the help page on the %" +"sGallery website%s and the %sPHP website%s for assistance." msgstr "" #: ../setup/config_data.inc:138 #, php-format -msgid "In some rare circumstances, Gallery thinks that Safe Mode is on, when it's really off. You can see for yourself by looking in the Local column of the safe_mode row in the %sPHP Info%s page. If it says 'Off' or '0' or 'undefined' then it's possible that Gallery made a mistake and you can continue. If not, then you must resolve this problem before you can use Gallery." +msgid "" +"In some rare circumstances, Gallery thinks that Safe Mode is on, when it's " +"really off. You can see for yourself by looking in the Local column " +"of the safe_mode row in the %sPHP Info%s page. If it says 'Off' or " +"'0' or 'undefined' then it's possible that Gallery made a mistake and you " +"can continue. If not, then you must resolve this problem before you can use " +"Gallery." msgstr "" #: ../setup/config_data.inc:146 @@ -615,11 +714,16 @@ msgstr "" #: ../setup/config_data.inc:147 -msgid "The exec() function is what Gallery uses to launch programs such as Netpbm, ImageMagick, and jhead. If exec() is disabled on your server then Gallery will not be able operate." +msgid "" +"The exec() function is what Gallery uses to launch programs such as " +"Netpbm, ImageMagick, and jhead. If exec() is disabled on your server " +"then Gallery will not be able operate." msgstr "" #: ../setup/config_data.inc:149 -msgid "The exec() function is disabled on your server. Gallery will not function with this PHP configuration." +msgid "" +"The exec() function is disabled on your server. Gallery will not " +"function with this PHP configuration." msgstr "" #: ../setup/config_data.inc:153 @@ -627,11 +731,19 @@ msgstr "" #: ../setup/config_data.inc:154 -msgid "Allow the Gallery .htaccess file to set application specific configuration options for the Gallery application. This is controlled by the webserver owner so it's not always possible for you to change it. The main drawbacks to not having this are that you may not be able to upload files > 2MB (e.g. big ZIP files or movies)." +msgid "" +"Allow the Gallery .htaccess file to set application specific " +"configuration options for the Gallery application. This is controlled by " +"the webserver owner so it's not always possible for you to change it. The " +"main drawbacks to not having this are that you may not be able to upload " +"files > 2MB (e.g. big ZIP files or movies)." msgstr "" #: ../setup/config_data.inc:156 -msgid "Your webserver is not obeying the 'php_value' lines in your .htaccess file. Try entering the following into your web server's httpd.conf file:" +msgid "" +"Your webserver is not obeying the 'php_value' lines in your .htaccess " +"file. Try entering the following into your web server's httpd.conf " +"file:" msgstr "" #: ../setup/config_data.inc:160 @@ -639,7 +751,10 @@ msgstr "" #: ../setup/config_data.inc:161 -msgid "Gallery could not test if your webserver is obeying the 'php_value' lines in your .htaccess as the (original) .htaccess file in your setup folder is missing." +msgid "" +"Gallery could not test if your webserver is obeying the 'php_value' lines in " +"your .htaccess as the (original) .htaccess file in your setup folder " +"is missing." msgstr "" #: ../setup/config_data.inc:165 @@ -648,12 +763,18 @@ #: ../setup/config_data.inc:166 #, php-format -msgid "Check to see if %smagic quotes%s are enabled on your PHP server. If they're on, you may notice strange behavior if you put ' (single-quote), " (double quote) or \ (backslash) characters in titles or captions in Gallery." +msgid "" +"Check to see if %smagic quotes%s are enabled on your PHP server. If they're " +"on, you may notice strange behavior if you put ' (single-quote), " " +"(double quote) or \ (backslash) characters in titles or captions in " +"Gallery." msgstr "" #: ../setup/config_data.inc:170 #, php-format -msgid "Magic quotes are on. Your webserver administrator can turn them off by putting %s in your php.ini file." +msgid "" +"Magic quotes are on. Your webserver administrator can turn them off by " +"putting %s in your php.ini file." msgstr "" #: ../setup/config_data.inc:175 @@ -661,19 +782,31 @@ msgstr "" #: ../setup/config_data.inc:176 -msgid "Check to see if your webserver is compiled with mod_rewrite. This Apache module allows Gallery to use shorter URLs that are easier to read and look nicer when you mail them to your web-challenged relatives. It's not an essential feature." +msgid "" +"Check to see if your webserver is compiled with mod_rewrite. This " +"Apache module allows Gallery to use shorter URLs that are easier to read and " +"look nicer when you mail them to your web-challenged relatives. It's not an " +"essential feature." msgstr "" #: ../setup/config_data.inc:178 -msgid "Either mod_rewrite is not installed or your .htaccess file is not enabled (see above)." +msgid "" +"Either mod_rewrite is not installed or your .htaccess file is " +"not enabled (see above)." msgstr "" #: ../setup/config_data.inc:180 -msgid "Either way, we'll have to use longer URLs in the Gallery. If you want to turn it on, first make sure that your .htaccess file is being obeyed. If it still doesn't work, you may need to reconfigure and rebuild Apache with this flag: " +msgid "" +"Either way, we'll have to use longer URLs in the Gallery. If you want to " +"turn it on, first make sure that your .htaccess file is being obeyed. " +"If it still doesn't work, you may need to reconfigure and rebuild Apache " +"with this flag: " msgstr "" #: ../setup/config_data.inc:182 -msgid "Gallery could not test if mod_rewrite is working, as the (original) .htaccess file in your setup folder is missing." +msgid "" +"Gallery could not test if mod_rewrite is working, as the (original) ." +"htaccess file in your setup folder is missing." msgstr "" #: ../setup/config_data.inc:186 @@ -681,7 +814,10 @@ msgstr "" #: ../setup/config_data.inc:187 -msgid "Check to see if Netpbm is installed so that Gallery can manipulate images (rotate, resize, make thumbnails, etc.). You only need to have either Netpbm or ImageMagick installed." +msgid "" +"Check to see if Netpbm is installed so that Gallery can manipulate images " +"(rotate, resize, make thumbnails, etc.). You only need to have either " +"Netpbm or ImageMagick installed." msgstr "" #: ../setup/config_data.inc:189 @@ -689,7 +825,10 @@ msgstr "" #: ../setup/config_data.inc:191 -msgid "If it's installed and not in the path of the webserver user that's OK—you can specify the path to Netpbm by hand on the following page. If it's not installed, you have two choices: " +msgid "" +"If it's installed and not in the path of the webserver user that's OK—" +"you can specify the path to Netpbm by hand on the following page. If it's " +"not installed, you have two choices: " msgstr "" #: ../setup/config_data.inc:193 @@ -701,7 +840,9 @@ msgstr "" #: ../setup/config_data.inc:196 -msgid "If Netpbm is installed and Gallery isn't finding it automatically that's OK—you can specify the path to Netpbm by hand on the following page." +msgid "" +"If Netpbm is installed and Gallery isn't finding it automatically that's " +"OK—you can specify the path to Netpbm by hand on the following page." msgstr "" #: ../setup/config_data.inc:202 @@ -709,7 +850,10 @@ msgstr "" #: ../setup/config_data.inc:204 -msgid "Check to see if ImageMagick is installed so that Gallery can manipulate images (rotate, resize, make thumbnails, etc.). You only need to have either ImageMagick or Netpbm installed." +msgid "" +"Check to see if ImageMagick is installed so that Gallery can manipulate " +"images (rotate, resize, make thumbnails, etc.). You only need to have " +"either ImageMagick or Netpbm installed." msgstr "" #: ../setup/config_data.inc:206 @@ -717,15 +861,22 @@ msgstr "" #: ../setup/config_data.inc:208 -msgid "If it's installed and not in the path of the webserver user that's OK—you can specify the path to ImageMagick by hand on the following page. If it's not installed, you must install it. " +msgid "" +"If it's installed and not in the path of the webserver user that's OK—" +"you can specify the path to ImageMagick by hand on the following page. If " +"it's not installed, you must install it. " msgstr "" #: ../setup/config_data.inc:210 -msgid "I've found part of ImageMagick, but some components are missing (see below)." +msgid "" +"I've found part of ImageMagick, but some components are missing (see below)." msgstr "" #: ../setup/config_data.inc:213 -msgid "If ImageMagick is installed and Gallery isn't finding it automatically that's OK—you can specify the path to ImageMagick by hand on the following page." +msgid "" +"If ImageMagick is installed and Gallery isn't finding it automatically " +"that's OK—you can specify the path to ImageMagick by hand on the " +"following page." msgstr "" #: ../setup/config_data.inc:218 @@ -733,7 +884,9 @@ msgstr "" #: ../setup/config_data.inc:220 -msgid "Check to see if jhead is installed so that Gallery can examine EXIF headers embedded in images created with most digital cameras." +msgid "" +"Check to see if jhead is installed so that Gallery can examine EXIF " +"headers embedded in images created with most digital cameras." msgstr "" #: ../setup/config_data.inc:222 @@ -742,7 +895,12 @@ #: ../setup/config_data.inc:224 #, php-format -msgid "If it's installed and not in the path of the webserver user that's OK—you can specify the path by hand on the following page. If it's not installed, you can install it yourself. Jhead is a public domain EXIF parser. Source, linux binaries, and windows binaries can be found at the %sjhead homepage%s." +msgid "" +"If it's installed and not in the path of the webserver user that's OK—" +"you can specify the path by hand on the following page. If it's not " +"installed, you can install it yourself. Jhead is a public domain EXIF " +"parser. Source, linux binaries, and windows binaries can be found at the %" +"sjhead homepage%s." msgstr "" #: ../setup/config_data.inc:229 @@ -750,7 +908,9 @@ msgstr "" #: ../setup/config_data.inc:231 -msgid "Check to see if jpegtran is installed so that Gallery can perform lossless rotations on JPEG images." +msgid "" +"Check to see if jpegtran is installed so that Gallery can perform " +"lossless rotations on JPEG images." msgstr "" #: ../setup/config_data.inc:233 @@ -759,7 +919,13 @@ #: ../setup/config_data.inc:234 #, php-format -msgid "If it's installed and not in the path of the webserver user that's OK—you can specify the path by hand on the following page. If it's not installed, you can install it yourself. Jpegtran is a free tool distributed by the Independent JPEG Group as part of libjpeg. Source may be found at the %sIJG homepage%s. Binaries may be found at the %sJPEG Club website%s or in the libjpeg package of Linux distributions." +msgid "" +"If it's installed and not in the path of the webserver user that's OK—" +"you can specify the path by hand on the following page. If it's not " +"installed, you can install it yourself. Jpegtran is a free tool distributed " +"by the Independent JPEG Group as part of libjpeg. Source may be " +"found at the %sIJG homepage%s. Binaries may be found at the %sJPEG Club " +"website%s or in the libjpeg package of Linux distributions." msgstr "" #: ../setup/config_data.inc:240 @@ -767,12 +933,18 @@ msgstr "" #: ../setup/config_data.inc:242 -msgid "Check to see if PHP is compiled with GNU gettext support for fast translations." +msgid "" +"Check to see if PHP is compiled with GNU gettext support for fast " +"translations." msgstr "" #: ../setup/config_data.inc:244 #, php-format -msgid "Your PHP does not have GNU gettext support installed. To include it, you'll need to recompile PHP (see the %sPHP docs%s for more information). Multi-language support is still available in Gallery without gettext, but the pages may take slightly longer to load." +msgid "" +"Your PHP does not have GNU gettext support installed. To include it, " +"you'll need to recompile PHP (see the %sPHP docs%s for more information). " +"Multi-language support is still available in Gallery without gettext, " +"but the pages may take slightly longer to load." msgstr "" #: ../setup/config_data.inc:248 @@ -792,7 +964,10 @@ msgstr "" #: ../setup/config_data.inc:258 -msgid "These locales are required to use multilanguage capabilities of Gallery when your PHP has gettext support. They are also needed to format dates and times according to the selected language." +msgid "" +"These locales are required to use multilanguage capabilities of Gallery when " +"your PHP has gettext support. They are also needed to format dates and times " +"according to the selected language." msgstr "" #: ../setup/config_data.inc:263 @@ -808,7 +983,10 @@ msgstr "" #: ../setup/config_data.inc:276 -msgid "If any of these items are highlighted in red then please take actions to correct them. Failure to do so could lead to your Gallery installation not functioning correctly." +msgid "" +"If any of these items are highlighted in red then please take actions to " +"correct them. Failure to do so could lead to your Gallery installation not " +"functioning correctly." msgstr "" #: ../setup/config_data.inc:281 @@ -840,7 +1018,9 @@ msgstr "" #: ../setup/config_data.inc:310 -msgid "You can choose wether you want to use Gallery icons, text only, or both. When you choose icons only, then there will be an onMousoverText." +msgid "" +"You can choose wether you want to use Gallery icons, text only, or both. " +"When you choose icons only, then there will be an onMousoverText." msgstr "" #: ../setup/config_data.inc:312 @@ -860,7 +1040,11 @@ msgstr "" #: ../setup/config_data.inc:320 -msgid "Select a skin to use for Gallery. You now have a wide choice of "skins" that affect the look of every page of your Gallery. You can have fun experimenting with the available skins. Choose "None" to use the look from v1.4." +msgid "" +"Select a skin to use for Gallery. You now have a wide choice of "" +"skins" that affect the look of every page of your Gallery. You can " +"have fun experimenting with the available skins. Choose "None" to " +"use the look from v1.4." msgstr "" #: ../setup/config_data.inc:321 @@ -872,7 +1056,9 @@ msgstr "" #: ../setup/config_data.inc:328 -msgid "Which method of uploading photos should be defaulted to for users who don't specify?" +msgid "" +"Which method of uploading photos should be defaulted to for users who don't " +"specify?" msgstr "" #: ../setup/config_data.inc:330 @@ -906,7 +1092,11 @@ #: ../setup/config_data.inc:351 #, php-format -msgid "The full filesystem path on physical disk to the directory where your photos will be stored. This directory should start off empty. Gallery will fill it. Note that this directory needs to have write access by the user who is running the web server (in your case this user is %s)." +msgid "" +"The full filesystem path on physical disk to the directory where your photos " +"will be stored. This directory should start off empty. Gallery will fill " +"it. Note that this directory needs to have write access by the user who is " +"running the web server (in your case this user is %s)." msgstr "" #: ../setup/config_data.inc:353 @@ -919,12 +1109,20 @@ #: ../setup/config_data.inc:366 #, php-format -msgid "The filesystem path to a temporary directory. E.g. %s or %s. Note that if you have open_basedir configured on your system, then this temporary directory must be inside the open_basedir path! In that case you may need to create the directory yourself and make sure that it's writable by the webserver process." +msgid "" +"The filesystem path to a temporary directory. E.g. %s or %s. Note that if " +"you have open_basedir configured on your system, then this temporary " +"directory must be inside the open_basedir path! In that case you may " +"need to create the directory yourself and make sure that it's writable by " +"the webserver process." msgstr "" #: ../setup/config_data.inc:379 #, php-format -msgid "The full URL to the Gallery web application. (e.g. %s) Gallery can operate with relative URLs, however some features, such as printing, may not function correctly." +msgid "" +"The full URL to the Gallery web application. (e.g. %s) Gallery can operate " +"with relative URLs, however some features, such as printing, may not " +"function correctly." msgstr "" #: ../setup/config_data.inc:388 @@ -933,7 +1131,10 @@ #: ../setup/config_data.inc:390 #, php-format -msgid "The full URL to your album directory on your web server. (e.g. %s) Gallery can operate with relative URLs, however some features, such as printing, may not function correctly." +msgid "" +"The full URL to your album directory on your web server. (e.g. %s) Gallery " +"can operate with relative URLs, however some features, such as printing, may " +"not function correctly." msgstr "" #: ../setup/config_data.inc:399 @@ -951,7 +1152,9 @@ #: ../setup/config_data.inc:408 #, php-format -msgid "A list of URLs that contain mirrors of your albums directory. Specify one URL per line with the ones that are more reliable towards the top. E.g. %s" +msgid "" +"A list of URLs that contain mirrors of your albums directory. Specify one " +"URL per line with the ones that are more reliable towards the top. E.g. %s" msgstr "" #: ../setup/config_data.inc:425 @@ -963,7 +1166,11 @@ msgstr "" #: ../setup/config_data.inc:430 -msgid "This setting tells Gallery which set of graphics tools you prefer it to use. If Gallery says both are okay (on the first page) then this is simply user preference. Otherwise go with the one that Gallery was able to find without error." +msgid "" +"This setting tells Gallery which set of graphics tools you prefer it to " +"use. If Gallery says both are okay (on the first page) then this is simply " +"user preference. Otherwise go with the one that Gallery was able to find " +"without error." msgstr "" #: ../setup/config_data.inc:438 @@ -980,7 +1187,9 @@ #: ../setup/config_data.inc:445 ../setup/config_data.inc:473 #, php-format -msgid "This path is only required if you choosed %s above. Otherwise you can leave it like it is, or empty." +msgid "" +"This path is only required if you choosed %s above. Otherwise you can leave " +"it like it is, or empty." msgstr "" #: ../setup/config_data.inc:448 @@ -997,7 +1206,10 @@ #: ../setup/config_data.inc:469 #, php-format -msgid "The path to the directory containing Netpbm on your system. If you downloaded Netpbm from the Gallery download page, don't forget to make the files executable. E.g. %s or %s or %s" +msgid "" +"The path to the directory containing Netpbm on your system. If you " +"downloaded Netpbm from the Gallery download page, don't forget to make the " +"files executable. E.g. %s or %s or %s" msgstr "" #: ../setup/config_data.inc:476 @@ -1009,7 +1221,13 @@ msgstr "" #: ../setup/config_data.inc:489 -msgid "This value is only relevant if you use Netpbm. Netpbm uses a tool to encode its internal image format into JPEG. This tool is called either ppmtojpeg or pnmtojpeg depending on the version of Netpbm that you have installed. Check your Netpbm directory to see which one you have installed and specify it here. If you aren't sure, just take a guess and we'll try to verify it for you." +msgid "" +"This value is only relevant if you use Netpbm. Netpbm uses a tool to encode " +"its internal image format into JPEG. This tool is called either " +"ppmtojpeg or pnmtojpeg depending on the version of Netpbm that " +"you have installed. Check your Netpbm directory to see which one you have " +"installed and specify it here. If you aren't sure, just take a guess and " +"we'll try to verify it for you." msgstr "" #: ../setup/config_data.inc:494 @@ -1017,7 +1235,13 @@ msgstr "" #: ../setup/config_data.inc:495 -msgid "This value is only relevant if you use Netpbm. Netpbm uses a tool to overlay one image over another. This tool is called either pnmcomp or pamcomp depending on the version of Netpbm that you have installed. Check your Netpbm directory to see which one you have installed and specify it here. If you aren't sure, just take a guess and we'll try to verify it for you." +msgid "" +"This value is only relevant if you use Netpbm. Netpbm uses a tool to " +"overlay one image over another. This tool is called either pnmcomp " +"or pamcomp depending on the version of Netpbm that you have " +"installed. Check your Netpbm directory to see which one you have installed " +"and specify it here. If you aren't sure, just take a guess and we'll try to " +"verify it for you." msgstr "" #: ../setup/config_data.inc:503 @@ -1025,7 +1249,10 @@ msgstr "" #: ../setup/config_data.inc:504 -msgid "Selecting this option has Gallery automatically attempt to rotate images on upload, based on the orientation information that is stored in JPEG EXIF data by some newer digital cameras." +msgid "" +"Selecting this option has Gallery automatically attempt to rotate images on " +"upload, based on the orientation information that is stored in JPEG EXIF " +"data by some newer digital cameras." msgstr "" #: ../setup/config_data.inc:505 @@ -1091,7 +1318,17 @@ msgstr "" #: ../setup/config_data.inc:512 -msgid "The JPEG file format trades off size versus quality. Gallery can control the quality of the JPEGs that it produces when you resize, rotate or make thumbnails from JPEG images. Higher quality images are larger in size than lower quality images. However, in many cases there's a point at which raising the quality increases the size of the files without noticeably affecting the appearance of the image. Setting this value to "100" is not recommended. If you notice that your thumbnails and resized images are larger than the originals and you don't like this, you can try lowering this value. Note that changing this value will only affect images changed in the future." +msgid "" +"The JPEG file format trades off size versus quality. Gallery can control " +"the quality of the JPEGs that it produces when you resize, rotate or make " +"thumbnails from JPEG images. Higher quality images are larger in size than " +"lower quality images. However, in many cases there's a point at which " +"raising the quality increases the size of the files without noticeably " +"affecting the appearance of the image. Setting this value to " +""100" is not recommended. If you notice that your thumbnails and " +"resized images are larger than the originals and you don't like this, you " +"can try lowering this value. Note that changing this value will only " +"affect images changed in the future." msgstr "" #: ../setup/config_data.inc:516 @@ -1111,11 +1348,18 @@ msgstr "" #: ../setup/config_data.inc:556 -msgid "Gallery automatically detects when it is embedded within one of the supported CMS environments, however there may be some environments which have special options which need to be set. Any options which are not automatically detected will need to be specified on this screen." +msgid "" +"Gallery automatically detects when it is embedded within one of the " +"supported CMS environments, however there may be some environments which " +"have special options which need to be set. Any options which are not " +"automatically detected will need to be specified on this screen." msgstr "" #: ../setup/config_data.inc:556 -msgid "If your ISP or CMS requires register_globals to be enabled, you may be required to enable the 'Disable register_globals check' option under the Technical tab." +msgid "" +"If your ISP or CMS requires register_globals to be enabled, you may be " +"required to enable the 'Disable register_globals check' option under the " +"Technical tab." msgstr "" #: ../setup/config_data.inc:559 @@ -1123,7 +1367,9 @@ msgstr "" #: ../setup/config_data.inc:561 -msgid "If you use Geeklog, please enter the location of the GeekLog public_html directory. i.e. '/path/to/geeklog/public_html'" +msgid "" +"If you use Geeklog, please enter the location of the GeekLog public_html " +"directory. i.e. '/path/to/geeklog/public_html'" msgstr "" #: ../setup/config_data.inc:574 @@ -1135,7 +1381,12 @@ msgstr "" #: ../setup/config_data.inc:578 -msgid "If you turn this option on, you'll see a list of sub-albums when you're browsing the top level of your Gallery. This will make navigating to a specific sub album much easier. You can choose whether or not you want to limit the depth of the tree to avoid severely cluttering the appearance of the top Gallery page." +msgid "" +"If you turn this option on, you'll see a list of sub-albums when you're " +"browsing the top level of your Gallery. This will make navigating to a " +"specific sub album much easier. You can choose whether or not you want to " +"limit the depth of the tree to avoid severely cluttering the appearance of " +"the top Gallery page." msgstr "" #: ../setup/config_data.inc:580 @@ -1163,7 +1414,9 @@ msgstr "" #: ../setup/config_data.inc:593 -msgid "If you have set album tree to anything but off, this will display microthumbs of the sub albums instead of the album tree." +msgid "" +"If you have set album tree to anything but off, this will display " +"microthumbs of the sub albums instead of the album tree." msgstr "" #: ../setup/config_data.inc:598 @@ -1171,7 +1424,9 @@ msgstr "" #: ../setup/config_data.inc:599 -msgid "The target size (in pixels) of thumbnails shown in the Gallery page (highlight images)." +msgid "" +"The target size (in pixels) of thumbnails shown in the Gallery page " +"(highlight images)." msgstr "" #: ../setup/config_data.inc:605 @@ -1179,7 +1434,9 @@ msgstr "" #: ../setup/config_data.inc:606 -msgid "The ratio in which the highlights are made. This affects only new highlights. For existing use 'rebuild highlights'" +msgid "" +"The ratio in which the highlights are made. This affects only new " +"highlights. For existing use 'rebuild highlights'" msgstr "" #: ../setup/config_data.inc:607 ../setup/config_data.inc:1573 @@ -1219,7 +1476,13 @@ msgstr "" #: ../setup/config_data.inc:631 -msgid "Display the album and photo count on the Gallery root page using an accurate, but incredibly slow, counting method. This was added at the request of many users, however it is not recommended for Galleries where you will have large numbers of albums and photos. Some examples have been shown to cause the index page to load in as long as 30 seconds with this option enabled." +msgid "" +"Display the album and photo count on the Gallery root page using an " +"accurate, but incredibly slow, counting method. This was added at the " +"request of many users, however it is not recommended for Galleries where you " +"will have large numbers of albums and photos. Some examples have been shown " +"to cause the index page to load in as long as 30 seconds with this option " +"enabled." msgstr "" #: ../setup/config_data.inc:636 @@ -1227,7 +1490,9 @@ msgstr "" #: ../setup/config_data.inc:637 -msgid "On the main page, the image representing each album has a frame around it. The following styles are available:" +msgid "" +"On the main page, the image representing each album has a frame around it. " +"The following styles are available:" msgstr "" #: ../setup/config_data.inc:649 @@ -1241,7 +1506,9 @@ #: ../setup/config_data.inc:658 ../setup/config_data.inc:671 #: ../setup/config_data.inc:684 ../setup/config_data.inc:697 #, php-format -msgid "The filesystem path to the %s binary. E.g. %s or %s. This is optional so if you don't have it, don't worry about it too much." +msgid "" +"The filesystem path to the %s binary. E.g. %s or %s. This is " +"optional so if you don't have it, don't worry about it too much." msgstr "" #: ../setup/config_data.inc:713 @@ -1250,7 +1517,9 @@ #: ../setup/config_data.inc:718 ../setup/config_data.inc:731 #, php-format -msgid "The filesystem path to the %s EXIF parser. E.g. %s or %s. This is optional so if you don't have it, don't worry about it too much." +msgid "" +"The filesystem path to the %s EXIF parser. E.g. %s or %s. This is " +"optional so if you don't have it, don't worry about it too much." msgstr "" #: ../setup/config_data.inc:747 @@ -1259,7 +1528,9 @@ #: ../setup/config_data.inc:752 #, php-format -msgid "The filesystem path to the jpegtran utility. E.g. %s or %s. This is optional so if you don't have it, don't worry about it too much." +msgid "" +"The filesystem path to the jpegtran utility. E.g. %s or %s. This is " +"optional so if you don't have it, don't worry about it too much." msgstr "" #: ../setup/config_data.inc:773 @@ -1272,7 +1543,9 @@ #: ../setup/config_data.inc:778 #, php-format -msgid "This is the language you will see as %s, and what users will see if no other preference is set." +msgid "" +"This is the language you will see as %s, and what users will see if no other " +"preference is set." msgstr "" #: ../setup/config_data.inc:780 @@ -1284,7 +1557,9 @@ msgstr "" #: ../setup/config_data.inc:786 -msgid "Gallery has three multi language modes. These affect the language that a user will see when visiting the site." +msgid "" +"Gallery has three multi language modes. These affect the language that a " +"user will see when visiting the site." msgstr "" #: ../setup/config_data.inc:789 @@ -1304,7 +1579,10 @@ msgstr "" #: ../setup/config_data.inc:798 -msgid "These languages will be available as user choices in a pulldown menu or national flags, if you have chosen language Mode 3, and will be available to registered users as their default language in Mode 2 or 3." +msgid "" +"These languages will be available as user choices in a pulldown menu or " +"national flags, if you have chosen language Mode 3, and will be available to " +"registered users as their default language in Mode 2 or 3." msgstr "" #: ../setup/config_data.inc:804 @@ -1312,7 +1590,9 @@ msgstr "" #: ../setup/config_data.inc:806 -msgid "In Mode 3 you can choose to display national flags instead of a small pulldown menu for the available languages." +msgid "" +"In Mode 3 you can choose to display national flags instead of a small " +"pulldown menu for the available languages." msgstr "" #: ../setup/config_data.inc:812 ../setup/config_data.inc:822 @@ -1326,7 +1606,10 @@ #: ../setup/config_data.inc:813 ../setup/config_data.inc:823 #, php-format -msgid "This format string will be used to display %s in %s. It is recommended to use %s which will change format depending on language choice. However, if you wish to change this string, please look at the %sPHP documentation%s." +msgid "" +"This format string will be used to display %s in %s. It is recommended to " +"use %s which will change format depending on language choice. However, if " +"you wish to change this string, please look at the %sPHP documentation%s." msgstr "" #: ../setup/config_data.inc:814 @@ -1374,15 +1657,20 @@ #: ../setup/config_data.inc:850 #, php-format -msgid "Turns email on for the whole gallery. If you set this to %s then none of the rest of this section will apply." +msgid "" +"Turns email on for the whole gallery. If you set this to %s then none of " +"the rest of this section will apply." msgstr "" #: ../setup/config_data.inc:852 -msgid "If you enable these settings you give your users the opportunity to let Gallery send them their lost password via email." +msgid "" +"If you enable these settings you give your users the opportunity to let " +"Gallery send them their lost password via email." msgstr "" #: ../setup/config_data.inc:853 -msgid "You need to enable this setting if you want to enable Self Registration." +msgid "" +"You need to enable this setting if you want to enable Self Registration." msgstr "" #: ../setup/config_data.inc:861 @@ -1390,7 +1678,11 @@ msgstr "" #: ../setup/config_data.inc:862 -msgid "Set this value to a valid working email address to receive email notices upon certain user actions and also so that users know whom to reach in case of problems. You may specify more than one address by separating them with commas." +msgid "" +"Set this value to a valid working email address to receive email notices " +"upon certain user actions and also so that users know whom to reach in case " +"of problems. You may specify more than one address by separating them with " +"commas." msgstr "" #: ../setup/config_data.inc:869 @@ -1398,7 +1690,10 @@ msgstr "" #: ../setup/config_data.inc:870 -msgid "Set this value to a valid working email address. Emails that are automatically sent by Gallery will use this as a return address. You should monitor this email address for bounce messages and replies from recipients." +msgid "" +"Set this value to a valid working email address. Emails that are " +"automatically sent by Gallery will use this as a return address. You should " +"monitor this email address for bounce messages and replies from recipients." msgstr "" #: ../setup/config_data.inc:877 @@ -1418,7 +1713,9 @@ msgstr "" #: ../setup/config_data.inc:893 -msgid "Enabling this will allow visitors to your site to create their own login accounts." +msgid "" +"Enabling this will allow visitors to your site to create their own login " +"accounts." msgstr "" #: ../setup/config_data.inc:894 ../setup/config_data.inc:1705 @@ -1434,7 +1731,11 @@ msgstr "" #: ../setup/config_data.inc:904 -msgid "Enabling this will allow self registered users to create their own albums as soon as they register. Not having this enabled means you will have to give them permission manually before they can create or alter any contents of the Gallery. This setting is ignored if self-registration is disabled." +msgid "" +"Enabling this will allow self registered users to create their own albums as " +"soon as they register. Not having this enabled means you will have to give " +"them permission manually before they can create or alter any contents of the " +"Gallery. This setting is ignored if self-registration is disabled." msgstr "" #: ../setup/config_data.inc:911 @@ -1442,11 +1743,15 @@ msgstr "" #: ../setup/config_data.inc:912 -msgid "This option allows you to create many new user accounts at one time by creating a file of new users." +msgid "" +"This option allows you to create many new user accounts at one time by " +"creating a file of new users." msgstr "" #: ../setup/config_data.inc:920 -msgid "This allows the "admin" account to get email whenever a comment is added to any album" +msgid "" +"This allows the "admin" account to get email whenever a comment is " +"added to any album" msgstr "" #: ../setup/config_data.inc:921 @@ -1454,7 +1759,9 @@ msgstr "" #: ../setup/config_data.inc:929 -msgid "This allows the "admin" account to get email whenever a change is made to any album" +msgid "" +"This allows the "admin" account to get email whenever a change is " +"made to any album" msgstr "" #: ../setup/config_data.inc:930 @@ -1486,7 +1793,10 @@ msgstr "" #: ../setup/config_data.inc:950 -msgid "Use a smtp server to process outgoing gallery email, instead of the internal PHP mail() function. This server can (not must) run on a different machine (ie: Your ISPs mail server)." +msgid "" +"Use a smtp server to process outgoing gallery email, instead of the internal " +"PHP mail() function. This server can (not must) run on a different machine " +"(ie: Your ISPs mail server)." msgstr "" #: ../setup/config_data.inc:961 @@ -1506,7 +1816,10 @@ msgstr "" #: ../setup/config_data.inc:974 -msgid "The full hostname of the server you are sending the mail from (The Server where your Gallery is installed on). If your Server is behind a NAT, this would be the DNS name of your router." +msgid "" +"The full hostname of the server you are sending the mail from (The Server " +"where your Gallery is installed on). If your Server is behind a NAT, this " +"would be the DNS name of your router." msgstr "" #: ../setup/config_data.inc:981 @@ -1522,7 +1835,9 @@ msgstr "" #: ../setup/config_data.inc:990 -msgid "If your provide requires a username for outgoing email, use it here, otherwise leave blank." +msgid "" +"If your provide requires a username for outgoing email, use it here, " +"otherwise leave blank." msgstr "" #: ../setup/config_data.inc:997 @@ -1530,7 +1845,10 @@ msgstr "" #: ../setup/config_data.inc:998 -msgid "Password for sending email through smtp server. NOTE: This password is stored in cleartext in config.php. Make sure that permissions are set to keep others from getting at it!" +msgid "" +"Password for sending email through smtp server. NOTE: This password is " +"stored in cleartext in config.php. Make sure that permissions are set to " +"keep others from getting at it!" msgstr "" #: ../setup/config_data.inc:1015 @@ -1538,7 +1856,9 @@ msgstr "" #: ../setup/config_data.inc:1016 -msgid "Adds a slide show link on the main page of the gallery. Note for large galleries this may run very slowly and use a lot of system resources." +msgid "" +"Adds a slide show link on the main page of the gallery. Note for large " +"galleries this may run very slowly and use a lot of system resources." msgstr "" #: ../setup/config_data.inc:1017 ../setup/config_data.inc:1917 @@ -1586,7 +1906,10 @@ msgstr "" #: ../setup/config_data.inc:1038 ../setup/config_data.inc:1956 -msgid "Number of images to display in slideshow. Set to 0 or blank to display all images. Set to a number if slideshow is random and you want to display only a selection of the images." +msgid "" +"Number of images to display in slideshow. Set to 0 or blank to display all " +"images. Set to a number if slideshow is random and you want to display only " +"a selection of the images." msgstr "" #: ../setup/config_data.inc:1045 ../setup/config_data.inc:1946 @@ -1595,7 +1918,10 @@ #: ../setup/config_data.inc:1046 #, php-format -msgid "This option will allow visitors to have your slideshows repeat until they close the window or go to another page. Set it to %s if you want to save bandwidth." +msgid "" +"This option will allow visitors to have your slideshows repeat until they " +"close the window or go to another page. Set it to %s if you want to save " +"bandwidth." msgstr "" #: ../setup/config_data.inc:1054 @@ -1603,7 +1929,12 @@ msgstr "" #: ../setup/config_data.inc:1055 -msgid "This allows you to set the default mode for the slideshow. "Java Applet" requires that the user has the Java Runtime Environment installed in their browser, but allows for fullscreen viewing. "JavaScript" is supported by all modern browsers without extra plugins, but is more limited than the Java Applet." +msgid "" +"This allows you to set the default mode for the slideshow. "Java " +"Applet" requires that the user has the Java Runtime Environment " +"installed in their browser, but allows for fullscreen viewing. "" +"JavaScript" is supported by all modern browsers without extra plugins, " +"but is more limited than the Java Applet." msgstr "" #: ../setup/config_data.inc:1057 @@ -1623,7 +1954,10 @@ msgstr "" #: ../setup/config_data.inc:1073 -msgid "This option will enable or disable the possibility for your users to make comment. If you set this to "no" all comment functionality is disabled." +msgid "" +"This option will enable or disable the possibility for your users to make " +"comment. If you set this to "no" all comment functionality is " +"disabled." msgstr "" #: ../setup/config_data.inc:1081 @@ -1665,7 +1999,8 @@ #: ../setup/config_data.inc:1102 #, php-format -msgid "If an item has comments, display date of last comment, rather than a %s." +msgid "" +"If an item has comments, display date of last comment, rather than a %s." msgstr "" #: ../setup/config_data.inc:1110 @@ -1674,7 +2009,9 @@ #: ../setup/config_data.inc:1111 #, php-format -msgid "When logged in, comments will automatically use format described below, unless this is set to %s." +msgid "" +"When logged in, comments will automatically use format described below, " +"unless this is set to %s." msgstr "" #: ../setup/config_data.inc:1120 @@ -1682,7 +2019,9 @@ msgstr "" #: ../setup/config_data.inc:1121 -msgid "Commenter names of logged in users can be displayed in a variety of different ways" +msgid "" +"Commenter names of logged in users can be displayed in a variety of " +"different ways" msgstr "" #: ../setup/config_data.inc:1126 @@ -1690,7 +2029,9 @@ msgstr "" #: ../setup/config_data.inc:1127 -msgid "Do you want to have the possibility to add comments inside the view photo page, or do you prefer a link to a popup" +msgid "" +"Do you want to have the possibility to add comments inside the view photo " +"page, or do you prefer a link to a popup" msgstr "" #: ../setup/config_data.inc:1129 @@ -1706,7 +2047,10 @@ msgstr "" #: ../setup/config_data.inc:1136 -msgid "Enter a suitable value for the maximum length of comments to prevent abuse. Gallery limits comments to no more than 1000 characters. This value will be used if less than 1000." +msgid "" +"Enter a suitable value for the maximum length of comments to prevent abuse. " +"Gallery limits comments to no more than 1000 characters. This value will be " +"used if less than 1000." msgstr "" #: ../setup/config_data.inc:1142 @@ -1714,7 +2058,10 @@ msgstr "" #: ../setup/config_data.inc:1143 -msgid "Do you want to allow every user who is allowed to view comments (set in permission) to see a complete overview of all comments of an Album? Set this to "no" if only admin and owners can use this feature." +msgid "" +"Do you want to allow every user who is allowed to view comments (set in " +"permission) to see a complete overview of all comments of an Album? Set this " +"to "no" if only admin and owners can use this feature." msgstr "" #: ../setup/config_data.inc:1157 @@ -1722,7 +2069,9 @@ msgstr "" #: ../setup/config_data.inc:1159 -msgid "Choose wether you want to enable or disable watermarking. And set the defaults" +msgid "" +"Choose wether you want to enable or disable watermarking. And set the " +"defaults" msgstr "" #: ../setup/config_data.inc:1160 @@ -1735,7 +2084,14 @@ #: ../setup/config_data.inc:1164 #, php-format -msgid "The full path on physical disk to the directory where your watermark images will be stored. This directory may contain .png, .tif, and .gif images used to overlay visible watermarks on photos. These formats are supported because they may contain transparency or alpha channels. Leaving this blank will disable watermarking support. Note that this directory needs to have read access by the user who is running the web server (in your case this user is %s)." +msgid "" +"The full path on physical disk to the directory where your watermark images " +"will be stored. This directory may contain .png, .tif, and .gif images used " +"to overlay visible watermarks on photos. These formats are supported because " +"they may contain transparency or alpha channels. Leaving this blank will " +"disable watermarking support. Note that this directory needs to have " +"read access by the user who is running the web server (in your case this " +"user is %s)." msgstr "" #: ../setup/config_data.inc:1174 @@ -1743,7 +2099,8 @@ msgstr "" #: ../setup/config_data.inc:1175 -msgid "Here you can choose which of the images should be watermarked per default." +msgid "" +"Here you can choose which of the images should be watermarked per default." msgstr "" #: ../setup/config_data.inc:1180 @@ -1763,15 +2120,22 @@ msgstr "" #: ../setup/config_data.inc:1194 -msgid "Caching improves performance for a large gallery at the cost of potentially displaying photos that are out of order or with out of date rating information." +msgid "" +"Caching improves performance for a large gallery at the cost of potentially " +"displaying photos that are out of order or with out of date rating " +"information." msgstr "" #: ../setup/config_data.inc:1195 -msgid "There's a different cache for each stats type supported with the exception of random." +msgid "" +"There's a different cache for each stats type supported with the exception " +"of random." msgstr "" #: ../setup/config_data.inc:1196 -msgid "The caches can be refreshed by reloading the stats page and specifying the URL variable 'refreshcache'." +msgid "" +"The caches can be refreshed by reloading the stats page and specifying the " +"URL variable 'refreshcache'." msgstr "" #: ../setup/config_data.inc:1197 @@ -1791,12 +2155,16 @@ msgstr "" #: ../setup/config_data.inc:1204 -msgid "Gallery can give a lot of statistics for admins, however you can enable some of them to normal users." +msgid "" +"Gallery can give a lot of statistics for admins, however you can enable some " +"of them to normal users." msgstr "" #: ../setup/config_data.inc:1205 #, php-format -msgid "For every selected item Gallery will create a link on the mainpage. The stats are based on the defaults defined in %s." +msgid "" +"For every selected item Gallery will create a link on the mainpage. The " +"stats are based on the defaults defined in %s." msgstr "" #: ../setup/config_data.inc:1210 @@ -1862,7 +2230,9 @@ msgstr "" #: ../setup/config_data.inc:1303 -msgid "Be aware that settings changed on this tab may have severe performance or security consequences and do so at your own risk." +msgid "" +"Be aware that settings changed on this tab may have severe performance or " +"security consequences and do so at your own risk." msgstr "" #: ../setup/config_data.inc:1307 @@ -1874,7 +2244,9 @@ msgstr "" #: ../setup/config_data.inc:1308 -msgid "Note: Dont leave this option on in production systems! Else you might show users more information about your Gallery and system than you want!" +msgid "" +"Note: Dont leave this option on in production systems! Else you might show " +"users more information about your Gallery and system than you want!" msgstr "" #: ../setup/config_data.inc:1310 @@ -1899,7 +2271,14 @@ #: ../setup/config_data.inc:1318 #, php-format -msgid "Be aware that changing this setting potentially decreases the security of your Gallery, and we may or may not support you if you encounter issues that don't occur when this is turned off.

Enabling this causes %s to ignore register_globals being turned on. %s normally tries to unset all variables created by register_globals to help enforce security. If a script that you run requires register_globals to be on, and will not cooperate with %s, set this to "yes"." +msgid "" +"Be aware that changing this setting potentially decreases the security of " +"your Gallery, and we may or may not support you if you encounter issues that " +"don't occur when this is turned off.

Enabling this causes %s to " +"ignore register_globals being turned on. %s normally tries to unset all " +"variables created by register_globals to help enforce security. If a script " +"that you run requires register_globals to be on, and will not cooperate with " +"%s, set this to "yes"." msgstr "" #: ../setup/config_data.inc:1326 @@ -1907,7 +2286,13 @@ msgstr "" #: ../setup/config_data.inc:1327 -msgid "The maximum amount of time in seconds any single operation should take. If you find that you are getting the Maximum execution time exceeded error message, you can try making this a larger number. Be warned that if you make this too large you might have a process that is stuck for a very long time without doing anything. The default value is 30 which is pretty reasonable." +msgid "" +"The maximum amount of time in seconds any single operation should take. If " +"you find that you are getting the Maximum execution time exceeded " +"error message, you can try making this a larger number. Be warned that if " +"you make this too large you might have a process that is stuck for a " +"very long time without doing anything. The default value is 30 which is " +"pretty reasonable." msgstr "" #: ../setup/config_data.inc:1335 @@ -1915,7 +2300,10 @@ msgstr "" #: ../setup/config_data.inc:1336 -msgid "If this setting is 'yes' and you use ImageMagick then resized Images will have a slightly(!) higher quality, but with the drawback of a higher load and a higher creation time." +msgid "" +"If this setting is 'yes' and you use ImageMagick then resized Images will " +"have a slightly(!) higher quality, but with the drawback of a higher load " +"and a higher creation time." msgstr "" #: ../setup/config_data.inc:1344 @@ -1923,7 +2311,13 @@ msgstr "" #: ../setup/config_data.inc:1345 -msgid "This is the amount of time that the Random Block will cache data about your photos and albums, speeding up requests for random photos. The more often that your albums are modified, the lower you should set this value to ensure that new photos are chosen quickly, and to prevent attempts to retrieve photos which may have been deleted. The cache is automatically regenerated when a user views the random block after the time limit has expired." +msgid "" +"This is the amount of time that the Random Block will cache data about your " +"photos and albums, speeding up requests for random photos. The more often " +"that your albums are modified, the lower you should set this value to ensure " +"that new photos are chosen quickly, and to prevent attempts to retrieve " +"photos which may have been deleted. The cache is automatically regenerated " +"when a user views the random block after the time limit has expired." msgstr "" #: ../setup/config_data.inc:1348 @@ -1951,7 +2345,11 @@ msgstr "" #: ../setup/config_data.inc:1357 -msgid "This variable controls the number of times that the random block will attempt to retrieve an image from Gallery. The larger the value, the less likely a 'No Photo Chosen' will be returned, but it increases the time it takes for the Random Block to load." +msgid "" +"This variable controls the number of times that the random block will " +"attempt to retrieve an image from Gallery. The larger the value, the less " +"likely a 'No Photo Chosen' will be returned, but it increases the time it " +"takes for the Random Block to load." msgstr "" #: ../setup/config_data.inc:1364 @@ -1959,7 +2357,13 @@ msgstr "" #: ../setup/config_data.inc:1365 -msgid "The EXIF data extracted from JPEG files can be cached after it is read the first time. The tradeoff is that if you cache this data it's possible for your album data files to get quite large which may slow down viewing your albums. But, if you don't cache this data then it needs to be retrieved every time any user looks at the properties of a photo which can also be slow." +msgid "" +"The EXIF data extracted from JPEG files can be cached after it is read the " +"first time. The tradeoff is that if you cache this data it's possible for " +"your album data files to get quite large which may slow down viewing your " +"albums. But, if you don't cache this data then it needs to be retrieved " +"every time any user looks at the properties of a photo which can also be " +"slow." msgstr "" #: ../setup/config_data.inc:1374 @@ -1967,7 +2371,9 @@ msgstr "" #: ../setup/config_data.inc:1375 -msgid "Turn on developer mode to see all PHP warnings and notices. Enabling this is not recommended for users that aren't familiar with PHP." +msgid "" +"Turn on developer mode to see all PHP warnings and notices. Enabling this " +"is not recommended for users that aren't familiar with PHP." msgstr "" #: ../setup/config_data.inc:1383 @@ -1975,7 +2381,9 @@ msgstr "" #: ../setup/config_data.inc:1384 -msgid "Report user login, logout, and serious errors via syslog (UNIX) or System Event Manager (Windows)" +msgid "" +"Report user login, logout, and serious errors via syslog (UNIX) or System " +"Event Manager (Windows)" msgstr "" #: ../setup/config_data.inc:1392 @@ -1984,7 +2392,10 @@ msgstr "" #: ../setup/config_data.inc:1393 -msgid "Gallery uses a locking system called flock() for added protection against data corruption. This is not supported on all platforms. If you're seeing errors like Could not acquire lock then set this value to no." +msgid "" +"Gallery uses a locking system called flock() for added protection against " +"data corruption. This is not supported on all platforms. If you're seeing " +"errors like Could not acquire lock then set this value to no." msgstr "" #: ../setup/config_data.inc:1401 @@ -1992,7 +2403,10 @@ msgstr "" #: ../setup/config_data.inc:1402 -msgid "The status code Gallery expects to see after a successful exec() call. Gallery will try to figure this out on its own so you probably won't need to change this value unless you have problems." +msgid "" +"The status code Gallery expects to see after a successful exec() " +"call. Gallery will try to figure this out on its own so you probably won't " +"need to change this value unless you have problems." msgstr "" #: ../setup/config_data.inc:1408 @@ -2000,7 +2414,10 @@ msgstr "" #: ../setup/config_data.inc:1409 -msgid "This is the session variable used to contain all Gallery session information. Change this if there is a conflict between Gallery and another PHP app on your website." +msgid "" +"This is the session variable used to contain all Gallery session " +"information. Change this if there is a conflict between Gallery and another " +"PHP app on your website." msgstr "" #: ../setup/config_data.inc:1421 @@ -2048,7 +2465,11 @@ msgstr "" #: ../setup/config_data.inc:1444 -msgid "Specify which album will be displayed as the icon for all feed entries: An empty field means that there will be no default highlight. '*' uses the most recently update album's highlight. Specifying an album name will use that album's highlight image." +msgid "" +"Specify which album will be displayed as the icon for all feed entries: An " +"empty field means that there will be no default highlight. '*' uses the " +"most recently update album's highlight. Specifying an album name will use " +"that album's highlight image." msgstr "" #: ../setup/config_data.inc:1450 @@ -2056,7 +2477,9 @@ msgstr "" #: ../setup/config_data.inc:1451 -msgid "This value is the maximum number of albums that the RSS feed will display to the user. Only the most recently modified albums are chosen for this value." +msgid "" +"This value is the maximum number of albums that the RSS feed will display to " +"the user. Only the most recently modified albums are chosen for this value." msgstr "" #: ../setup/config_data.inc:1458 @@ -2064,7 +2487,10 @@ msgstr "" #: ../setup/config_data.inc:1459 -msgid "Specifies whether hidden albums should be included in the RSS feed. This is not advised unless you are the only Gallery user. Other users could become very upset if their hidden images become displayed to the public." +msgid "" +"Specifies whether hidden albums should be included in the RSS feed. This is " +"not advised unless you are the only Gallery user. Other users could become " +"very upset if their hidden images become displayed to the public." msgstr "" #: ../setup/config_data.inc:1461 @@ -2080,7 +2506,11 @@ msgstr "" #: ../setup/config_data.inc:1467 -msgid "(Advanced) If users complain about their RSS readers being unable to process the RSS Feed, try enabling this option. Including dc:date is not RSS 2.0 compliant, but some feed readers require it anyway. Turning this on will cause your feed to not validate as RSS 2.0." +msgid "" +"(Advanced) If users complain about their RSS readers being unable to process " +"the RSS Feed, try enabling this option. Including dc:date is not RSS 2.0 " +"compliant, but some feed readers require it anyway. Turning this on will " +"cause your feed to not validate as RSS 2.0." msgstr "" #: ../setup/config_data.inc:1474 @@ -2088,7 +2518,10 @@ msgstr "" #: ../setup/config_data.inc:1475 -msgid "(Advanced) If users complain about their RSS readers corrupting the channel thumbnail, you can turn this feature on. Turning this on will cause your feed to not validate as valid RSS 2.0." +msgid "" +"(Advanced) If users complain about their RSS readers corrupting the channel " +"thumbnail, you can turn this feature on. Turning this on will cause your " +"feed to not validate as valid RSS 2.0." msgstr "" #: ../setup/config_data.inc:1482 @@ -2096,7 +2529,10 @@ msgstr "" #: ../setup/config_data.inc:1483 -msgid "(Advanced) Turning this off will cause two RSS extensions which allow for images representing items to be removed from the feed. Leaving this enabled should cause no problems - disabling it is a personal preference." +msgid "" +"(Advanced) Turning this off will cause two RSS extensions which allow for " +"images representing items to be removed from the feed. Leaving this enabled " +"should cause no problems - disabling it is a personal preference." msgstr "" #: ../setup/config_data.inc:1510 @@ -2177,7 +2613,9 @@ msgstr "" #: ../setup/config_data.inc:1580 -msgid "When large images are added to an album, an intermediate version will automatically be generated at this size." +msgid "" +"When large images are added to an album, an intermediate version will " +"automatically be generated at this size." msgstr "" #: ../setup/config_data.inc:1583 @@ -2189,7 +2627,11 @@ msgstr "" #: ../setup/config_data.inc:1595 -msgid "The default target size (in kilobytes) of resized JPEG/PNG images. Including a value may slow down file uploads, but will speed up page viewing time especially for people with dialup connections. Set to 0 for no target size." +msgid "" +"The default target size (in kilobytes) of resized JPEG/PNG images. " +"Including a value may slow down file uploads, but will speed up page viewing " +"time especially for people with dialup connections. Set to 0 for no target " +"size." msgstr "" #: ../setup/config_data.inc:1601 @@ -2197,7 +2639,8 @@ msgstr "" #: ../setup/config_data.inc:1602 -msgid "You can optionally limit the dimensions your images on upload to Gallery." +msgid "" +"You can optionally limit the dimensions your images on upload to Gallery." msgstr "" #: ../setup/config_data.inc:1603 ../setup/config_data.inc:1622 @@ -2205,7 +2648,12 @@ msgstr "" #: ../setup/config_data.inc:1604 -msgid "Enabling this feature will leave you without a full size original image in your Gallery, but allows you to save limited hard drive space. Gallery will attempt to preserve JPEG comments and EXIF data for the shrunken image, but this will require either ImageMagick or the optional jhead programs (see Step 2)." +msgid "" +"Enabling this feature will leave you without a full size original " +"image in your Gallery, but allows you to save limited hard drive space. " +"Gallery will attempt to preserve JPEG comments and EXIF data for the " +"shrunken image, but this will require either ImageMagick or the " +"optional jhead programs (see Step 2)." msgstr "" #: ../setup/config_data.inc:1615 ../setup/config_data.inc:1616 @@ -2219,11 +2667,18 @@ msgstr "" #: ../setup/config_data.inc:1621 -msgid "You can optionally limit the filesize of your JPEG/PNG images on upload to Gallery." +msgid "" +"You can optionally limit the filesize of your JPEG/PNG images on upload to " +"Gallery." msgstr "" #: ../setup/config_data.inc:1623 -msgid "Enabling this feature will leave you without an original quality image in your Gallery. Set the default target filesize (in kilobytes). Including a value may slow down file uploads, but will speed up page viewing time especially for people with dialup connections. Set to 0 if you don't want to restrict filesize." +msgid "" +"Enabling this feature will leave you without an original quality image in your Gallery. Set the default target filesize (in kilobytes). " +"Including a value may slow down file uploads, but will speed up page viewing " +"time especially for people with dialup connections. Set to 0 if you don't " +"want to restrict filesize." msgstr "" #: ../setup/config_data.inc:1629 @@ -2231,7 +2686,10 @@ msgstr "" #: ../setup/config_data.inc:1630 -msgid "When uploading images to Gallery, should we preserve the original names? If you select no, Gallery will assign a new name for each photo or movie that gets uploaded." +msgid "" +"When uploading images to Gallery, should we preserve the original names? If " +"you select no, Gallery will assign a new name for each photo or movie " +"that gets uploaded." msgstr "" #: ../setup/config_data.inc:1638 @@ -2247,7 +2705,10 @@ msgstr "" #: ../setup/config_data.inc:1648 -msgid "When viewing photos which don't have an intermediate version, Gallery can automatically resize the image to fit the viewer's browser window (using JavaScript). This may not work in embedded environments such as Nuke." +msgid "" +"When viewing photos which don't have an intermediate version, Gallery can " +"automatically resize the image to fit the viewer's browser window (using " +"JavaScript). This may not work in embedded environments such as Nuke." msgstr "" #: ../setup/config_data.inc:1656 @@ -2255,7 +2716,10 @@ msgstr "" #: ../setup/config_data.inc:1657 -msgid "Offer visitors the choice of always viewing the full sized version of an image instead of the intermediate size. This setting only lasts for the visitor's session." +msgid "" +"Offer visitors the choice of always viewing the full sized version of an " +"image instead of the intermediate size. This setting only lasts for the " +"visitor's session." msgstr "" #: ../setup/config_data.inc:1670 @@ -2267,7 +2731,14 @@ msgstr "" #: ../setup/config_data.inc:1676 -msgid "Allow visitors to print photos directly from the album. Fotokasten is a print service based in Germany so they are good for the European market. EZ Prints, PhotoWorks and Shutterfly are based in the United States. mPUSH is a service that allows you to send photos to cellular phones worldwide. All services will give a small donation to the Gallery project for every print you make. Using these services is a great way for you to help support this free software." +msgid "" +"Allow visitors to print photos directly from the album. Fotokasten is a " +"print service based in Germany so they are good for the European market. EZ " +"Prints, PhotoWorks and Shutterfly are based in the United States. mPUSH is a " +"service that allows you to send photos to cellular phones worldwide. All " +"services will give a small donation to the Gallery project for every print " +"you make. Using these services is a great way for you to help support this " +"free software." msgstr "" #: ../setup/config_data.inc:1696 @@ -2276,7 +2747,10 @@ #: ../setup/config_data.inc:1697 #, php-format -msgid "If you want to use mPUSH cellular photo service you can either use your own account, or leave this to 'gallery'. Visit this link to %screate your own account%s." +msgid "" +"If you want to use mPUSH cellular photo service you can either use your own " +"account, or leave this to 'gallery'. Visit this link to %screate your own " +"account%s." msgstr "" #: ../setup/config_data.inc:1703 @@ -2292,7 +2766,12 @@ msgstr "" #: ../setup/config_data.inc:1714 -msgid "Display a link navigation from your album to the top level Gallery link within the album? If you turn this feature off, the user will not be able to navigate out of the album. This is only useful when you want to embed an album within a website and not allow users to (easily) view the other albums in the gallery." +msgid "" +"Display a link navigation from your album to the top level Gallery link " +"within the album? If you turn this feature off, the user will not be able " +"to navigate out of the album. This is only useful when you want to embed an " +"album within a website and not allow users to (easily) view the other albums " +"in the gallery." msgstr "" #: ../setup/config_data.inc:1722 @@ -2300,7 +2779,9 @@ msgstr "" #: ../setup/config_data.inc:1723 -msgid "Defines the default set of permissions for an album. Specifically, who can see the album, and view its photos." +msgid "" +"Defines the default set of permissions for an album. Specifically, who can " +"see the album, and view its photos." msgstr "" #: ../setup/config_data.inc:1725 ../setup/config_data.inc:1828 @@ -2334,7 +2815,9 @@ msgstr "" #: ../setup/config_data.inc:1752 -msgid "Custom fields that are available to describe each image. They should be separated by commas. E.g. Description, Location, Film Type" +msgid "" +"Custom fields that are available to describe each image. They should be " +"separated by commas. E.g. Description, Location, Film Type" msgstr "" #: ../setup/config_data.inc:1758 @@ -2342,7 +2825,11 @@ msgstr "" #: ../setup/config_data.inc:1759 -msgid "Display clickable image dimensions beneath the thumbnails. Will show dimensions for resized images (if any) first, then for the full image, depending on album settings user permissions. You may click on these instead of the thumbnail to either image." +msgid "" +"Display clickable image dimensions beneath the thumbnails. Will show " +"dimensions for resized images (if any) first, then for the full image, " +"depending on album settings user permissions. You may click on these " +"instead of the thumbnail to either image." msgstr "" #: ../setup/config_data.inc:1773 @@ -2379,16 +2866,26 @@ #: ../setup/config_data.inc:1810 #, php-format -msgid "It allows your visitors to vote for or rate the contents of an album. You set defaults for polling here, which will apply to new albums, and to all existing albums when you upgraded from an earlier version than %s." +msgid "" +"It allows your visitors to vote for or rate the contents of an album. You " +"set defaults for polling here, which will apply to new albums, and to all " +"existing albums when you upgraded from an earlier version than %s." msgstr "" #: ../setup/config_data.inc:1813 -msgid "In each album, voting can be switched off, restricted to logged in users or open to all visitors." +msgid "" +"In each album, voting can be switched off, restricted to logged in users or " +"open to all visitors." msgstr "" #: ../setup/config_data.inc:1815 #, php-format -msgid "There are two sorts of polls: %s, which allows voters to chose their favourites as first, second, third etc., and %s, which allows voters to rate any or all of the images without restriction. %s is like a film review where all the images can get (for example) 5 points, while %s is useful in scoring competitions." +msgid "" +"There are two sorts of polls: %s, which allows voters to chose their " +"favourites as first, second, third etc., and %s, which allows voters to rate " +"any or all of the images without restriction. %s is like a film review " +"where all the images can get (for example) 5 points, while %s is useful in " +"scoring competitions." msgstr "" #: ../setup/config_data.inc:1816 ../setup/config_data.inc:1819 @@ -2422,7 +2919,9 @@ msgstr "" #: ../setup/config_data.inc:1831 -msgid "Registered users can vote. Votes are recorded against User ID, and voters can come back and change their choices." +msgid "" +"Registered users can vote. Votes are recorded against User ID, and voters " +"can come back and change their choices." msgstr "" #: ../setup/config_data.inc:1841 @@ -2430,7 +2929,9 @@ msgstr "" #: ../setup/config_data.inc:1842 -msgid "Gallery offers two sorts of polls for voting for images. See above for a more detailed explanation." +msgid "" +"Gallery offers two sorts of polls for voting for images. See above for a " +"more detailed explanation." msgstr "" #: ../setup/config_data.inc:1845 @@ -2446,7 +2947,9 @@ msgstr "" #: ../setup/config_data.inc:1857 -msgid "Number of choices that will be available to voters as radio buttons or in a pulldown menu." +msgid "" +"Number of choices that will be available to voters as radio buttons or in a " +"pulldown menu." msgstr "" #: ../setup/config_data.inc:1862 @@ -2467,7 +2970,10 @@ #: ../setup/config_data.inc:1871 #, php-format -msgid "Display a summary and graph on the album page of images that have received the highest votes, and provide a link to the full results. If this option is %s, results of voting will only be available to admins and album owners." +msgid "" +"Display a summary and graph on the album page of images that have received " +"the highest votes, and provide a link to the full results. If this option " +"is %s, results of voting will only be available to admins and album owners." msgstr "" #: ../setup/config_data.inc:1880 @@ -2476,7 +2982,9 @@ #: ../setup/config_data.inc:1881 #, php-format -msgid "If %s is %s, display a graph showing this many top results. (Full results will be available on a linked page.)" +msgid "" +"If %s is %s, display a graph showing this many top results. (Full results " +"will be available on a linked page.)" msgstr "" #: ../setup/config_data.inc:1888 @@ -2484,7 +2992,10 @@ msgstr "" #: ../setup/config_data.inc:1889 -msgid "Rank poll choices can be displayed beside each other (horizontally) or underneath each other (vertically). Has no effect on critique voting which is a pulldown menu." +msgid "" +"Rank poll choices can be displayed beside each other (horizontally) or " +"underneath each other (vertically). Has no effect on critique voting which " +"is a pulldown menu." msgstr "" #: ../setup/config_data.inc:1892 @@ -2500,7 +3011,9 @@ msgstr "" #: ../setup/config_data.inc:1897 -msgid "This allows you to configure the actual text that will be displayed for each voting option, plus the number of points that option is worth." +msgid "" +"This allows you to configure the actual text that will be displayed for each " +"voting option, plus the number of points that option is worth." msgstr "" #: ../setup/config_data.inc:1899 @@ -2537,12 +3050,17 @@ #: ../setup/config_data.inc:1938 #, php-format -msgid "Set to %s if you want to include images in sub albums as part of the slideshow." +msgid "" +"Set to %s if you want to include images in sub albums as part of the " +"slideshow." msgstr "" #: ../setup/config_data.inc:1947 #, php-format -msgid "This option will allow visitors to have your slideshow repeat until they close the window or go to another page. Set it to %s if you want to save bandwidth." +msgid "" +"This option will allow visitors to have your slideshow repeat until they " +"close the window or go to another page. Set it to %s if you want to save " +"bandwidth." msgstr "" #: ../setup/config_data.inc:1969 ../setup/config_data.inc:1973 @@ -2551,11 +3069,17 @@ msgstr "" #: ../setup/config_data.inc:1970 -msgid "These settings apply to the microthumb photo navigation system. The microthumbs are only visible when viewing individual images." +msgid "" +"These settings apply to the microthumb photo navigation system. The " +"microthumbs are only visible when viewing individual images." msgstr "" #: ../setup/config_data.inc:1974 -msgid "Uses microthumbs for photo navigation. This creates a navigation panel with tiny thumbnails of the images around the photo you are viewing. You can also choose both to display the microthumb navigation system AND the old style navigation system." +msgid "" +"Uses microthumbs for photo navigation. This creates a navigation panel with " +"tiny thumbnails of the images around the photo you are viewing. You can " +"also choose both to display the microthumb navigation system AND the old " +"style navigation system." msgstr "" #: ../setup/config_data.inc:1979 @@ -2567,7 +3091,9 @@ msgstr "" #: ../setup/config_data.inc:1986 -msgid "Displays prev+next groups of thumbs, changing only to display next group of thumbs." +msgid "" +"Displays prev+next groups of thumbs, changing only to display next group of " +"thumbs." msgstr "" #: ../setup/config_data.inc:1987 ../setup/config_data.inc:1993 @@ -2583,7 +3109,11 @@ msgstr "" #: ../setup/config_data.inc:1998 -msgid "This allows you to turn on and off the display of the first and last microthumb. Since these two images are always the same, some might find that it is not very useful and would rather display more next/previous thumbs." +msgid "" +"This allows you to turn on and off the display of the first and last " +"microthumb. Since these two images are always the same, some might find " +"that it is not very useful and would rather display more next/previous " +"thumbs." msgstr "" #: ../setup/config_data.inc:2006 @@ -2591,7 +3121,9 @@ msgstr "" #: ../setup/config_data.inc:2007 -msgid "This is the number of previous microthumbs on the screen at a time. You might prefer to show fewer previous microthumbs and more next microthumbs." +msgid "" +"This is the number of previous microthumbs on the screen at a time. You " +"might prefer to show fewer previous microthumbs and more next microthumbs." msgstr "" #: ../setup/config_data.inc:2016 @@ -2599,7 +3131,9 @@ msgstr "" #: ../setup/config_data.inc:2017 -msgid "This is the number of next microthumbs on the screen at a time. You might prefer to show fewer previous microthumbs and more next microthumbs." +msgid "" +"This is the number of next microthumbs on the screen at a time. You might " +"prefer to show fewer previous microthumbs and more next microthumbs." msgstr "" #: ../setup/config_data.inc:2026 @@ -2607,7 +3141,11 @@ msgstr "" #: ../setup/config_data.inc:2027 -msgid "Displays the microthumb navigation bar at the Top, Bottom or Both of the photo viewing page. Since the microthumb navigation system is larger than the original navigation system, you may want to display it at only the top or bottom to conserve space usage." +msgid "" +"Displays the microthumb navigation bar at the Top, Bottom or Both of the " +"photo viewing page. Since the microthumb navigation system is larger than " +"the original navigation system, you may want to display it at only the top " +"or bottom to conserve space usage." msgstr "" #: ../setup/config_data.inc:2030 @@ -2623,7 +3161,10 @@ msgstr "" #: ../setup/config_data.inc:2037 -msgid "The size of microthumbs will determine how clear the images are as well as how much room they take up. This value is the height and is in pixels. 45 is a reasonable value for viewing at 1024x768." +msgid "" +"The size of microthumbs will determine how clear the images are as well as " +"how much room they take up. This value is the height and is in pixels. 45 " +"is a reasonable value for viewing at 1024x768." msgstr "" #: ../setup/config_data.inc:2042 @@ -2631,7 +3172,12 @@ msgstr "" #: ../setup/config_data.inc:2043 -msgid "This is the bonus in pixels to the size of the current microthumb. This creates a nice look and a value of 10-15 is reasonable. Zero (0) and negative numbers (-10) are also valid here. Zero (0) will result in the current thumb being of identical size to all the other microthumbs and a negative value will result in a smaller microthumb." +msgid "" +"This is the bonus in pixels to the size of the current microthumb. This " +"creates a nice look and a value of 10-15 is reasonable. Zero (0) and " +"negative numbers (-10) are also valid here. Zero (0) will result in the " +"current thumb being of identical size to all the other microthumbs and a " +"negative value will result in a smaller microthumb." msgstr "" #: ../setup/config_data.inc:2054 ../setup/frame_test.php:27 @@ -2640,7 +3186,9 @@ #: ../setup/config_data.inc:2055 #, php-format -msgid "Each image (thumbnails, resized and full sized) in %s can have a frame. The following styles available:" +msgid "" +"Each image (thumbnails, resized and full sized) in %s can have a frame. The " +"following styles available:" msgstr "" #: ../setup/config_data.inc:2059 @@ -2648,7 +3196,8 @@ msgstr "" #: ../setup/config_data.inc:2060 -msgid "This frame will appear around the thumbnail image representing a subalbum." +msgid "" +"This frame will appear around the thumbnail image representing a subalbum." msgstr "" #: ../setup/config_data.inc:2065 @@ -2656,7 +3205,9 @@ msgstr "" #: ../setup/config_data.inc:2066 -msgid "This frame will appear around the thumbnail image representing a photo or movie." +msgid "" +"This frame will appear around the thumbnail image representing a photo or " +"movie." msgstr "" #: ../setup/config_data.inc:2071 @@ -2669,17 +3220,24 @@ #: ../setup/confirm.inc:44 #, php-format -msgid "You must create an empty file named %s in your Gallery mainfolder and chmod it 777 before proceeding. See the %s for more details." +msgid "" +"You must create an empty file named %s in your Gallery mainfolder and chmod " +"it 777 before proceeding. See the %s for more details." msgstr "" #: ../setup/confirm.inc:52 #, php-format -msgid "File %s in your Gallery mainfolder is optional, however some %s features will be disabled unless you create an empty file named %s and chmod it to 777 before proceeding. See the %s for more details." +msgid "" +"File %s in your Gallery mainfolder is optional, however some %s features " +"will be disabled unless you create an empty file named %s and chmod it to " +"777 before proceeding. See the %s for more details." msgstr "" #: ../setup/confirm.inc:56 #, php-format -msgid "File %s in your Gallery mainfolder is not writable by the webserver. - chmod it 777 before proceeding. See %s for more details." +msgid "" +"File %s in your Gallery mainfolder is not writable by the webserver. - chmod " +"it 777 before proceeding. See %s for more details." msgstr "" #: ../setup/confirm.inc:89 ../setup/confirm.inc:193 ../setup/confirm.inc:315 @@ -2751,7 +3309,9 @@ #: ../setup/confirm.inc:292 #, php-format -msgid "Also make sure that if you have an %s restriction then this tmp directory should be under the %s path" +msgid "" +"Also make sure that if you have an %s restriction then this tmp directory " +"should be under the %s path" msgstr "" #: ../setup/confirm.inc:363 @@ -2761,12 +3321,18 @@ #: ../setup/confirm.inc:388 #, php-format -msgid "Could not find %s. Check your Netpbm directory to see which PNG->JPEG converter you have (or just try using %s instead). Please check your configuration (or use ImageMagick)." +msgid "" +"Could not find %s. Check your Netpbm directory to see which PNG->JPEG " +"converter you have (or just try using %s instead). Please check your " +"configuration (or use ImageMagick)." msgstr "" #: ../setup/confirm.inc:396 #, php-format -msgid "Could not find %s. Check your Netpbm directory to see which PNM Composite/Overlay executable you have (or just try using %s instead). Please check your configuration (or use ImageMagick)." +msgid "" +"Could not find %s. Check your Netpbm directory to see which PNM Composite/" +"Overlay executable you have (or just try using %s instead). Please check " +"your configuration (or use ImageMagick)." msgstr "" #: ../setup/confirm.inc:408 @@ -2776,24 +3342,37 @@ #: ../setup/confirm.inc:412 ../setup/confirm.inc:416 #, php-format -msgid "%s is not properly configured for use as a graphics package. Make sure you entered a path to the %s binaries in step 2." +msgid "" +"%s is not properly configured for use as a graphics package. Make sure you " +"entered a path to the %s binaries in step 2." msgstr "" #: ../setup/confirm.inc:422 -msgid "Your server has the PHP open_basedir restriction set, and certain of your paths are not in the list of restricted paths" +msgid "" +"Your server has the PHP open_basedir restriction set, and certain of your " +"paths are not in the list of restricted paths" msgstr "" #: ../setup/confirm.inc:424 #, php-format -msgid "This doesn't mean that they won't work, however it does mean that we can't verify that the paths are correct. If you are unable to upload photos correctly, please refer to the FAQ and to the %sdiagnostics%s to resolve your problems." +msgid "" +"This doesn't mean that they won't work, however it does mean that we can't " +"verify that the paths are correct. If you are unable to upload photos " +"correctly, please refer to the FAQ and to the %sdiagnostics%s to resolve " +"your problems." msgstr "" #: ../setup/confirm.inc:497 -msgid "Confirm that the settings you entered came through correctly. If you find this page confusing, you can safely ignore it." +msgid "" +"Confirm that the settings you entered came through correctly. If you find " +"this page confusing, you can safely ignore it." msgstr "" #: ../setup/confirm.inc:499 -msgid "Confirm that the settings you entered came through correctly. There are errors highlighted below in red which need to be fixed before you can save your settings." +msgid "" +"Confirm that the settings you entered came through correctly. There are " +"errors highlighted below in red which need to be fixed before you can save " +"your settings." msgstr "" #: ../setup/confirm.inc:504 ../setup/confirm.inc:524 @@ -2832,11 +3411,20 @@ msgstr "" #: ../setup/constants.inc:33 -msgid "In this step you'll customize various settings for Gallery. If this is the first time you've customized Gallery, you'll notice that we've tried to pick reasonable defaults for you. Even so, you'll probably have to make at least some minor changes. If you've already configured Gallery before, then you'll notice that this page already has your current settings loaded, so you probably won't need to do much." +msgid "" +"In this step you'll customize various settings for Gallery. If this is the " +"first time you've customized Gallery, you'll notice that we've tried to pick " +"reasonable defaults for you. Even so, you'll probably have to make at least " +"some minor changes. If you've already configured Gallery before, then " +"you'll notice that this page already has your current settings loaded, so " +"you probably won't need to do much." msgstr "" #: ../setup/constants.inc:35 ../setup/defaults.inc:36 -msgid "Switch through the corresponding tab and fill the values you need. Some, but not all values are required. If you have finished this step use the button to go to the next Step." +msgid "" +"Switch through the corresponding tab and fill the values you need. Some, but " +"not all values are required. If you have finished this step use the button " +"to go to the next Step." msgstr "" #: ../setup/constants.inc:40 ../setup/constants.inc:199 @@ -2865,19 +3453,31 @@ msgstr "" #: ../setup/defaults.inc:31 -msgid "Here you can customize the default values for new albums that you create. These settings have no effect on existing albums!" +msgid "" +"Here you can customize the default values for new albums that you " +"create. These settings have no effect on existing albums!" msgstr "" #: ../setup/defaults.inc:33 -msgid "Note that these are not master switches. This means you can change those settings for each separately." +msgid "" +"Note that these are not master switches. This means you can change " +"those settings for each separately." msgstr "" #: ../setup/defaults.inc:34 -msgid "If this is the first time you've customized Gallery, you'll notice that we've tried to pick reasonable defaults for you. If you've already configured Gallery before, then you'll notice that this page already has your current settings loaded, so you probably won't need to do much." +msgid "" +"If this is the first time you've customized Gallery, you'll notice that " +"we've tried to pick reasonable defaults for you. If you've already " +"configured Gallery before, then you'll notice that this page already has " +"your current settings loaded, so you probably won't need to do much." msgstr "" #: ../setup/defaults.inc:37 -msgid "Note to users upgrading from a previous version: settings new since your old version will be applied to all existing albums. If you wish to change these later, they must be changed one by one in each album. Please choose these default values carefully." +msgid "" +"Note to users upgrading from a previous version: settings new since your old " +"version will be applied to all existing albums. If you wish to change these " +"later, they must be changed one by one in each album. Please choose these " +"default values carefully." msgstr "" #: ../setup/diagnostics.php:36 @@ -2885,11 +3485,16 @@ msgstr "" #: ../setup/diagnostics.php:39 -msgid "This page is designed to provide some diagnostics about your server to help you find issues that may prevent Gallery from functioning properly." +msgid "" +"This page is designed to provide some diagnostics about your server to help " +"you find issues that may prevent Gallery from functioning properly." msgstr "" #: ../setup/diagnostics.php:40 -msgid "The config wizard tries all kinds of diagnostics to try to find and work around any issues that it finds on your system, but there may be other problems that we have not thought of." +msgid "" +"The config wizard tries all kinds of diagnostics to try to find and work " +"around any issues that it finds on your system, but there may be other " +"problems that we have not thought of." msgstr "" #: ../setup/diagnostics.php:41 @@ -2913,7 +3518,10 @@ msgstr "" #: ../setup/diagnostics.php:57 -msgid "It's a good place to look to examine all the various PHP configuration settings, and to find out on what kind of system you're running (sometimes it's difficult to tell when you're on an ISP's machine)" +msgid "" +"It's a good place to look to examine all the various PHP configuration " +"settings, and to find out on what kind of system you're running (sometimes " +"it's difficult to tell when you're on an ISP's machine)" msgstr "" #: ../setup/diagnostics.php:63 ../setup/diagnostics.php:73 @@ -2925,7 +3533,10 @@ msgstr "" #: ../setup/diagnostics.php:67 -msgid "You can only use this page after you have successfully completed the configuration wizard (as it expects that you've already located and configured Gallery with the right path to Netpbm)." +msgid "" +"You can only use this page after you have successfully completed the " +"configuration wizard (as it expects that you've already located and " +"configured Gallery with the right path to Netpbm)." msgstr "" #: ../setup/diagnostics.php:76 @@ -2933,7 +3544,10 @@ msgstr "" #: ../setup/diagnostics.php:77 -msgid "You can only use this page after you have successfully complete the configuration wizard (as it expects that you've already located and configured Gallery with the right path to ImageMagick)." +msgid "" +"You can only use this page after you have successfully complete the " +"configuration wizard (as it expects that you've already located and " +"configured Gallery with the right path to ImageMagick)." msgstr "" #: ../setup/diagnostics.php:83 @@ -2945,7 +3559,9 @@ msgstr "" #: ../setup/diagnostics.php:87 -msgid "Gallery requires that your PHP installation is configured with proper session support." +msgid "" +"Gallery requires that your PHP installation is configured with proper " +"session support." msgstr "" #: ../setup/diagnostics.php:96 @@ -2968,7 +3584,8 @@ #: ../setup/diagnostics.php:107 #, php-format -msgid "This allows you to check you have the correct version of all your %s files." +msgid "" +"This allows you to check you have the correct version of all your %s files." msgstr "" #: ../setup/frame_test.php:27 ../setup/index.php:44 @@ -3032,7 +3649,12 @@ #: ../setup/login.inc:86 #, php-format -msgid "To continue the password reset process, you must edit the file "%s", remove any data currently inside it, and add the text "%s". Once you have done that, press the refresh button below. If you know your current admin password, please remove the "%s" file from the server." +msgid "" +"To continue the password reset process, you must edit the file "%" +"s", remove any data currently inside it, and add the text "%" +"s". Once you have done that, press the refresh button below. If you " +"know your current admin password, please remove the "%s" file from " +"the server." msgstr "" #: ../setup/login.inc:106 @@ -3040,7 +3662,9 @@ msgstr "" #: ../setup/login.inc:108 -msgid "Your Gallery settings were configured with an older version of Gallery, and are out of date. Please re-run the Configuration Wizard!" +msgid "" +"Your Gallery settings were configured with an older version of Gallery, and " +"are out of date. Please re-run the Configuration Wizard!" msgstr "" #: ../setup/login.inc:112 @@ -3048,12 +3672,17 @@ msgstr "" #: ../setup/login.inc:114 -msgid "If you have forgotten the password to your admin account, you can easily reset it." +msgid "" +"If you have forgotten the password to your admin account, you can easily " +"reset it." msgstr "" #: ../setup/login.inc:116 #, php-format -msgid "Create a blank file named '%s' (yes, no extension) in the setup directory of your Gallery, then refresh this page and follow the instructions on this page." +msgid "" +"Create a blank file named '%s' (yes, no extension) in the setup directory of your Gallery, then refresh this page and follow the " +"instructions on this page." msgstr "" #: ../setup/login.inc:127 @@ -3081,24 +3710,34 @@ msgstr "" #: ../setup/session_test.php:42 -msgid "If sessions are configured properly in your PHP installation, then you should see a session id below." +msgid "" +"If sessions are configured properly in your PHP installation, then you " +"should see a session id below." msgstr "" #: ../setup/session_test.php:44 -msgid "The "page views" number should increase every time you reload the page." +msgid "" +"The "page views" number should increase every time you reload the " +"page." msgstr "" #: ../setup/session_test.php:46 #, php-format -msgid "Clicking %s should reset the page view number back to 1. (But it will also log you out.)" +msgid "" +"Clicking %s should reset the page view number back to 1. (But it will also " +"log you out.)" msgstr "" #: ../setup/session_test.php:48 -msgid "If this does not work, then you most likely have a configuration issue with your PHP installation." +msgid "" +"If this does not work, then you most likely have a configuration " +"issue with your PHP installation." msgstr "" #: ../setup/session_test.php:49 -msgid "Gallery will not work properly until PHP's session management is configured properly." +msgid "" +"Gallery will not work properly until PHP's session management is configured " +"properly." msgstr "" #: ../setup/session_test.php:57 @@ -3114,7 +3753,8 @@ msgstr "" #: ../setup/session_test.php:76 -msgid "Clicking on this link should reload the page and increase the counter" +msgid "" +"Clicking on this link should reload the page and increase the counter" msgstr "" #: ../setup/session_test.php:78 @@ -3128,7 +3768,9 @@ #: ../setup/write.inc:182 #, php-format -msgid "An account called %s has been created for you with the password you specified." +msgid "" +"An account called %s has been created for you with the password you " +"specified." msgstr "" #: ../setup/write.inc:202 @@ -3136,7 +3778,9 @@ msgstr "" #: ../setup/write.inc:210 -msgid "We highly suggest that you run 'secure.sh', or chmod your .htaccess and config.php to 644 for increased security." +msgid "" +"We highly suggest that you run 'secure.sh', or chmod your .htaccess and " +"config.php to 644 for increased security." msgstr "" #: ../setup/write.inc:218 @@ -3145,11 +3789,15 @@ #: ../setup/write.inc:220 #, php-format -msgid "You must remove the '%s' file from the setup directory to make your Gallery configuration secure" +msgid "" +"You must remove the '%s' file from the setup directory to make your Gallery " +"configuration secure" msgstr "" #: ../setup/write.inc:234 -msgid "You can reconfigure Gallery at any time by re-running this configuration wizard." +msgid "" +"You can reconfigure Gallery at any time by re-running this configuration " +"wizard." msgstr "" #: ../setup/write.inc:236 @@ -3158,7 +3806,11 @@ #: ../setup/write.inc:239 #, php-format -msgid "Please subscribe to the %s mailing list. This is a very low volume mailing list that will keep you abreast of important changes in %s. This is where we announce new versions, important bug fixes and any security issues and their resolution." +msgid "" +"Please subscribe to the %s mailing list. This is a very low volume mailing " +"list that will keep you abreast of important changes in %s. This is where " +"we announce new versions, important bug fixes and any security issues and " +"their resolution." msgstr "" #: ../setup/write.inc:246 --- gallery-1.5.10.dfsg.orig/po/gallery-common.pot +++ gallery-1.5.10.dfsg/po/gallery-common.pot @@ -1,17 +1,17 @@ -# +# # Gallery - a web based photo album viewer and editor # Copyright (C) 2000-2008 Bharat Mediratta -# +# # 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 Street - Fifth Floor, Boston, MA 02110-1301, USA. @@ -188,7 +188,9 @@ msgstr "" #: ../includes/definitions/albumProperties.php:204 -msgid "The ratio in which the thumbnails are made.
This affects only new thumbs. For existing use 'rebuild thumbs'." +msgid "" +"The ratio in which the thumbnails are made.
This affects only new thumbs. " +"For existing use 'rebuild thumbs'." msgstr "" #: ../includes/definitions/albumProperties.php:206 @@ -204,7 +206,9 @@ msgstr "" #: ../includes/definitions/albumProperties.php:223 -msgid "Maximum file size of intermediate sized JPEG/PNG images in kilobytes (0 or blank for no size restriction)?" +msgid "" +"Maximum file size of intermediate sized JPEG/PNG images in kilobytes (0 or " +"blank for no size restriction)?" msgstr "" #: ../includes/definitions/albumProperties.php:230 @@ -219,7 +223,9 @@ msgstr "" #: ../includes/definitions/albumProperties.php:244 -msgid "Maximum file size of full sized JPEG/PNG images in kb (0 or blank for no size restriction)?" +msgid "" +"Maximum file size of full sized JPEG/PNG images in kb (0 or blank for no " +"size restriction)?" msgstr "" #: ../includes/definitions/albumProperties.php:257 @@ -343,7 +349,9 @@ msgstr "" #: ../includes/definitions/albumProperties.php:403 -msgid "Offer visitors ability to specify
preference for full-size or resized images?" +msgid "" +"Offer visitors ability to specify
preference for full-size or resized " +"images?" msgstr "" #: ../includes/definitions/albumProperties.php:415 @@ -351,7 +359,9 @@ msgstr "" #: ../includes/definitions/albumProperties.php:416 -msgid "For historical reasons permissions for owners are handled as property, not as permission.
G1-Style ;-)" +msgid "" +"For historical reasons permissions for owners are handled as property, not " +"as permission.
G1-Style ;-)" msgstr "" #: ../includes/definitions/albumProperties.php:419 @@ -443,7 +453,9 @@ msgstr "" #: ../includes/definitions/services.php:49 -msgid "mPUSH is a photo service that adds the ability to send thumbnail images to your, or a friend's, cellphone for a small fee." +msgid "" +"mPUSH is a photo service that adds the ability to send thumbnail images to " +"your, or a friend's, cellphone for a small fee." msgstr "" #: ../lib/album.php:228 @@ -734,7 +746,8 @@ #: ../lib/filesystem.php:209 #, php-format -msgid "Extracting: %s failed. Not able create the folder to extract the archive in." +msgid "" +"Extracting: %s failed. Not able create the folder to extract the archive in." msgstr "" #: ../lib/filesystem.php:217 @@ -932,7 +945,9 @@ #: ../lib/mail.php:42 #, php-format -msgid "Note: This is an automatically generated email message sent from the %s website. If you have received this in error, please ignore this message." +msgid "" +"Note: This is an automatically generated email message sent from the %s " +"website. If you have received this in error, please ignore this message." msgstr "" #: ../lib/mail.php:45 @@ -967,7 +982,9 @@ msgid "" "Hi !!FULLNAME!!,\n" "\n" -"Congratulations. You have just been subscribed to %s at %s. Your account name is !!USERNAME!!. Please visit the gallery soon, and create a password by clicking this link:\n" +"Congratulations. You have just been subscribed to %s at %s. Your account " +"name is !!USERNAME!!. Please visit the gallery soon, and create a password " +"by clicking this link:\n" "\n" "!!NEWPASSWORDLINK!!\n" "\n" @@ -1008,7 +1025,9 @@ msgstr "" #: ../lib/mail.php:231 -msgid "Will be replaced by a link the new user can click on to create a new password." +msgid "" +"Will be replaced by a link the new user can click on to create a new " +"password." msgstr "" #: ../lib/mail.php:269 ../lib/mail.php:290 @@ -1043,7 +1062,10 @@ msgstr "" #: ../lib/mail.php:287 -msgid "If you no longer wish to receive emails about this item, follow the links above and ensure that 'Email me when comments are added' is unchecked in both the item and album page (you'll need to login first)." +msgid "" +"If you no longer wish to receive emails about this item, follow the links " +"above and ensure that 'Email me when comments are added' is unchecked in " +"both the item and album page (you'll need to login first)." msgstr "" #: ../lib/mail.php:300 @@ -1121,11 +1143,15 @@ msgstr "" #: ../lib/setup.php:525 -msgid "You are using an older version of jhead. There are at least known problems with version 2.0. We recommend version 2.7 and higher." +msgid "" +"You are using an older version of jhead. There are at least known problems " +"with version 2.0. We recommend version 2.7 and higher." msgstr "" #: ../lib/setup.php:566 -msgid "Without pnmcomp and pamcomp, gallery will not be able to watermark images, unless you use ImageMagick and have the composite binary installed." +msgid "" +"Without pnmcomp and pamcomp, gallery will not be able to watermark images, " +"unless you use ImageMagick and have the composite binary installed." msgstr "" #: ../lib/setup.php:574 @@ -1157,7 +1183,9 @@ msgstr "" #: ../lib/setup.php:664 -msgid "Without composite gallery will not be able to watermark images, except you use Netpbm and have the pnmcomp binary installed." +msgid "" +"Without composite gallery will not be able to watermark images, except you " +"use Netpbm and have the pnmcomp binary installed." msgstr "" #: ../lib/setup.php:670 @@ -1190,12 +1218,18 @@ msgstr "" #: ../lib/setup.php:778 -msgid "It seems you didn't download any additional languages. This is not a problem! Gallery will appear just in English. Note: If this is not true, check that all files in locale folder are readable for the webserver, or contact the Gallery Team." +msgid "" +"It seems you didn't download any additional languages. This is not a " +"problem! Gallery will appear just in English. Note: If this is not true, " +"check that all files in locale folder are readable for the webserver, or " +"contact the Gallery Team." msgstr "" #: ../lib/setup.php:781 #, php-format -msgid "%d languages are available. If you are missing a language please visit the %sGallery download page%s." +msgid "" +"%d languages are available. If you are missing a language please visit the %" +"sGallery download page%s." msgstr "" #: ../lib/setup.php:808 @@ -1215,7 +1249,8 @@ #: ../lib/setup.php:819 #, php-format -msgid "That's more than %d days ago. Which is way too old for a pre Release version." +msgid "" +"That's more than %d days ago. Which is way too old for a pre Release version." msgstr "" #: ../lib/setup.php:824 @@ -1233,26 +1268,41 @@ #: ../lib/setup.php:859 #, php-format -msgid "There are %d locales that Gallery was unable to locate. You may need to select manually date formats. " +msgid "" +"There are %d locales that Gallery was unable to locate. You may need to " +"select manually date formats. " msgstr "" #: ../lib/setup.php:867 #, php-format -msgid "Dates in %d languages may not be formatted properly, because the corresponding locales are missing. You may need to select manually the date formats for these." +msgid "" +"Dates in %d languages may not be formatted properly, because the " +"corresponding locales are missing. You may need to select manually the date " +"formats for these." msgstr "" #: ../lib/setup.php:873 #, php-format -msgid "We were unable to detect any locales. However, your PHP installation is configured with the %s restriction so this may be interfering with the way that we detect locales. Unfortunately this means the date format will not change for different languages. However, it is OK to continue." +msgid "" +"We were unable to detect any locales. However, your PHP installation is " +"configured with the %s restriction so this may be interfering with the way " +"that we detect locales. Unfortunately this means the date format will not " +"change for different languages. However, it is OK to continue." msgstr "" #: ../lib/setup.php:878 #, php-format -msgid "We were unable to detect any system locales. Multi-language functions will be disabled. Please install the corresponding locales or ask your administrator to do this. This problem is known on %s systems. In this case please have a look at this %sDebian locale HowTo%s." +msgid "" +"We were unable to detect any system locales. Multi-language functions will " +"be disabled. Please install the corresponding locales or ask your " +"administrator to do this. This problem is known on %s systems. In this case " +"please have a look at this %sDebian locale HowTo%s." msgstr "" #: ../lib/setup.php:883 -msgid "Only the default locale for this machine is available, so date format will not change for different languages." +msgid "" +"Only the default locale for this machine is available, so date format will " +"not change for different languages." msgstr "" #: ../lib/setup.php:1055 ../lib/setup.php:1156 @@ -1264,11 +1314,16 @@ msgstr "" #: ../lib/setup.php:1057 -msgid "There is more than one suitable system locale installed on your machine for the following languages. Please chose the one you think is most suitable." +msgid "" +"There is more than one suitable system locale installed on your " +"machine for the following languages. Please chose the one you think is most " +"suitable." msgstr "" #: ../lib/setup.php:1059 ../lib/setup.php:1160 -msgid "This is only for date & time format. You only need to edit the languages you enabled above." +msgid "" +"This is only for date & time format. You only need to edit the " +"languages you enabled above." msgstr "" #: ../lib/setup.php:1073 ../lib/setup.php:1109 @@ -1280,7 +1335,10 @@ msgstr "" #: ../lib/setup.php:1158 -msgid "There are no apparently suitable system locales installed on your machine for the following languages. Please choose the one you think is most suitable." +msgid "" +"There are no apparently suitable system locales installed on your " +"machine for the following languages. Please choose the one you think is " +"most suitable." msgstr "" #: ../lib/setup.php:1209 @@ -1374,22 +1432,31 @@ #: ../lib/setup.php:1608 #, php-format -msgid "It seems you've already configured Gallery, because there is one admin account, but it is not called %s." +msgid "" +"It seems you've already configured Gallery, because there is one admin " +"account, but it is not called %s." msgstr "" #: ../lib/setup.php:1611 #, php-format -msgid "It seems you've already configured Gallery, because there are %d admin accounts, but no user called %s." +msgid "" +"It seems you've already configured Gallery, because there are %d admin " +"accounts, but no user called %s." msgstr "" #: ../lib/setup.php:1614 #, php-format -msgid "You don't have to enter a password. But if you do, Gallery will create an administrator account called %s with that password." +msgid "" +"You don't have to enter a password. But if you do, Gallery will create an " +"administrator account called %s with that password." msgstr "" #: ../lib/setup.php:1623 #, php-format -msgid "It seems you've already configured Gallery, because the %s user exists. You don't have to enter a password. But if you do, Gallery will change the password for the %s user." +msgid "" +"It seems you've already configured Gallery, because the %s user exists. You " +"don't have to enter a password. But if you do, Gallery will change the " +"password for the %s user." msgstr "" #: ../lib/setup.php:1629 @@ -1442,12 +1509,18 @@ msgstr "" #: ../lib/setup.php:1712 -msgid "The manifest file is missing or unreadable. Gallery is not able to perform a file version integrity check. Please install this file and reload this page." +msgid "" +"The manifest file is missing or unreadable. Gallery is not able to perform " +"a file version integrity check. Please install this file and reload this " +"page." msgstr "" #: ../lib/setup.php:1717 #, php-format -msgid "Please ensure that %s is the latest version. Gallery is not able to perform a file version integrity check. Please install the correct version and reload this page." +msgid "" +"Please ensure that %s is the latest version. Gallery is not able to perform " +"a file version integrity check. Please install the correct version and " +"reload this page." msgstr "" #: ../lib/setup.php:1724 @@ -1466,7 +1539,8 @@ #: ../lib/setup.php:1750 #, php-format -msgid "Version information not found in %s. File must be old version or corrupted." +msgid "" +"Version information not found in %s. File must be old version or corrupted." msgstr "" #: ../lib/setup.php:1752 @@ -1513,7 +1587,9 @@ msgstr "" #: ../lib/setup.php:1922 -msgid "Leaving this field empty sets Gallery to use the default message (see below) which can be translated, or use your own welcome message." +msgid "" +"Leaving this field empty sets Gallery to use the default message (see below) " +"which can be translated, or use your own welcome message." msgstr "" #: ../lib/setup.php:1923 @@ -1615,7 +1691,9 @@ msgstr "" #: ../lib/valchecks.php:66 -msgid "Value was set to given default, because the original value is not in the allowed list of choices." +msgid "" +"Value was set to given default, because the original value is not in the " +"allowed list of choices." msgstr "" #: ../lib/valchecks.php:69 @@ -1635,7 +1713,8 @@ msgstr "" #: ../lib/valchecks.php:106 -msgid "The value is not a valid Gallery integer and was set to a given default." +msgid "" +"The value is not a valid Gallery integer and was set to a given default." msgstr "" #: ../lib/valchecks.php:120 @@ -1733,5 +1812,7 @@ #: ../platform/fs_unix.php:133 ../platform/fs_win32.php:118 #, php-format -msgid "Gallery was not able to open dir: %s.
Please check permissions and existence" +msgid "" +"Gallery was not able to open dir: %s.
Please check permissions and " +"existence" msgstr "" --- gallery-1.5.10.dfsg.orig/po/gallery-core.pot +++ gallery-1.5.10.dfsg/po/gallery-core.pot @@ -1,17 +1,17 @@ -# +# # Gallery - a web based photo album viewer and editor # Copyright (C) 2000-2008 Bharat Mediratta -# +# # 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 Street - Fifth Floor, Boston, MA 02110-1301, USA. @@ -106,7 +106,9 @@ msgstr "" #: ../admin-page.php:37 -msgid "View some statistics about your Gallery. Such as most viewed pictures, or best rated photos etc." +msgid "" +"View some statistics about your Gallery. Such as most viewed pictures, or " +"best rated photos etc." msgstr "" #: ../admin-page.php:39 @@ -138,7 +140,9 @@ msgstr "" #: ../admin-page.php:53 -msgid "Identify invalid albums, missing files, and other errors that may prevent you from migrating to Gallery 2." +msgid "" +"Identify invalid albums, missing files, and other errors that may prevent " +"you from migrating to Gallery 2." msgstr "" #: ../admin-page.php:63 @@ -165,7 +169,9 @@ msgstr "" #: ../administer_startpage.php:39 -msgid "Recreate all highlights according to the setting in Config Wizard.
(Starts immediately)" +msgid "" +"Recreate all highlights according to the setting in Config Wizard.
" +"(Starts immediately)" msgstr "" #: ../administer_startpage.php:43 @@ -410,7 +416,9 @@ #: ../albums.php:285 #, php-format -msgid "%s has detected the following %d invalid album(s) in your albums directory
(%s):" +msgid "" +"%s has detected the following %d invalid album(s) in your albums " +"directory
(%s):" msgstr "" #: ../albums.php:292 @@ -437,7 +445,9 @@ #: ../albums.php:309 #, php-format -msgid "The album or photo that you were attempting to view either does not exist, or requires user privileges that you do not possess. %s" +msgid "" +"The album or photo that you were attempting to view either does not exist, " +"or requires user privileges that you do not possess. %s" msgstr "" #: ../albums.php:310 @@ -682,11 +692,16 @@ msgstr "" #: ../classes/Album.php:1132 -msgid "If you no longer wish to receive emails about this item, follow the links above and ensure that the 'other' checkbox in the 'Email me' box is unchecked. (You'll need to login first.)" +msgid "" +"If you no longer wish to receive emails about this item, follow the links " +"above and ensure that the 'other' checkbox in the 'Email me' box is " +"unchecked. (You'll need to login first.)" msgstr "" #: ../classes/Album.php:1140 -msgid "Operation was done successfully. Emailing is on, but no email was sent as no valid email address was found." +msgid "" +"Operation was done successfully. Emailing is on, but no email was sent as no " +"valid email address was found." msgstr "" #: ../classes/Album.php:1215 @@ -734,7 +749,9 @@ msgstr "" #: ../classes/Album.php:1369 ../classes/Album.php:1370 -msgid "Item looks like an image, but has no dimensions? Please verify it's not a broken image." +msgid "" +"Item looks like an image, but has no dimensions? Please verify it's not a " +"broken image." msgstr "" #: ../classes/Album.php:1385 ../classes/Album.php:1386 @@ -782,7 +799,9 @@ #: ../classes/Album.php:2011 #, php-format -msgid "Requested index [%d] out of bounds [%d]. Gallery could not load the requested album item." +msgid "" +"Requested index [%d] out of bounds [%d]. Gallery could not load the " +"requested album item." msgstr "" #: ../classes/Album.php:2128 @@ -933,7 +952,9 @@ #: ../classes/gallery/UserDB.php:88 #, php-format -msgid "The folder which contains your user information (%s) is not writable for the webserver." +msgid "" +"The folder which contains your user information (%s) is not writable for the " +"webserver." msgstr "" #: ../classes/gallery/UserDB.php:110 @@ -1117,7 +1138,8 @@ #: ../copy_photo.php:195 ../move_photo.php:380 #, php-format -msgid "WARNING: Some of the albums need to be upgraded to the current version of %s." +msgid "" +"WARNING: Some of the albums need to be upgraded to the current version of %s." msgstr "" #: ../copy_photo.php:196 ../move_photo.php:382 @@ -1139,7 +1161,9 @@ #: ../create_user.php:87 ../multi_create_user.php:120 #, php-format -msgid "New user '%s' has been registered by %s. Gallery has sent a notification email to %s." +msgid "" +"New user '%s' has been registered by %s. Gallery has sent a notification " +"email to %s." msgstr "" #: ../create_user.php:95 ../multi_create_user.php:128 @@ -1192,7 +1216,9 @@ msgstr "" #: ../delete_photo.php:78 -msgid "It seems you double clicked the delete button, or refreshed this dialog in an other way. If you really want to delete THIS item, press delete again." +msgid "" +"It seems you double clicked the delete button, or refreshed this dialog in " +"an other way. If you really want to delete THIS item, press delete again." msgstr "" #: ../delete_photo.php:94 @@ -1227,7 +1253,8 @@ #: ../delete_user.php:72 msgid "Even if this user is recreated, those permissions are gone." -msgid_plural "Even if you recreate one of those users, the permissions are gone." +msgid_plural "" +"Even if you recreate one of those users, the permissions are gone." msgstr[0] "" msgstr[1] "" @@ -1318,7 +1345,9 @@ msgstr "" #: ../download.php:104 -msgid "This album is not empty, but contains no photo or movie! Download wouldn't make sense." +msgid "" +"This album is not empty, but contains no photo or movie! Download wouldn't " +"make sense." msgstr "" #: ../ecard_form.php:36 @@ -1480,7 +1509,9 @@ msgstr "" #: ../ecard_preview.php:51 -msgid "Gallery could not process your ecard! Please close this window and try again later, thanks!" +msgid "" +"Gallery could not process your ecard! Please close this window and try again " +"later, thanks!" msgstr "" #: ../edit_appearance.php:27 ../edit_appearance.php:33 @@ -1495,7 +1526,9 @@ #: ../edit_appearance.php:130 #, php-format -msgid "Warning: you have changed voters from %s to %s. It is advisable to reset the poll to remove all previous votes." +msgid "" +"Warning: you have changed voters from %s to %s. It is advisable to reset the " +"poll to remove all previous votes." msgstr "" #: ../edit_appearance.php:131 ../poll_properties.php:50 @@ -1620,7 +1653,9 @@ msgstr "" #: ../edit_watermark.php:113 -msgid "Your image is a gif. Watermarking on animated gifs is currently not supported. It will 'deface' and 'unanimate' your picture." +msgid "" +"Your image is a gif. Watermarking on animated gifs is currently not " +"supported. It will 'deface' and 'unanimate' your picture." msgstr "" #: ../extra_fields.php:77 ../extra_fields.php:81 @@ -1660,11 +1695,14 @@ msgstr "" #: ../gallery_remote.php:176 ../gallery_remote2.php:879 -msgid "Error occured before extracting the archive. Temporary destination exists." +msgid "" +"Error occured before extracting the archive. Temporary destination exists." msgstr "" #: ../gallery_remote.php:181 ../gallery_remote2.php:884 -msgid "Error occured before extracting the archive. Temporary destination could not be created." +msgid "" +"Error occured before extracting the archive. Temporary destination could not " +"be created." msgstr "" #: ../gallery_remote.php:186 ../gallery_remote2.php:889 @@ -1703,19 +1741,26 @@ msgstr "" #: ../help/imagemap.php:32 -msgid "An ImageMap is a predefined area of a picture, or a hotspot if you will." +msgid "" +"An ImageMap is a predefined area of a picture, or a hotspot if you will." msgstr "" #: ../help/imagemap.php:33 -msgid "A sample usage scenario is a family photo, where you can apply an ImageMap for each of the family members featured in the photo." +msgid "" +"A sample usage scenario is a family photo, where you can apply an ImageMap " +"for each of the family members featured in the photo." msgstr "" #: ../help/imagemap.php:34 -msgid "The defined area can contain information you want displayed when a user places his mouse pointer on top of that area." +msgid "" +"The defined area can contain information you want displayed when a user " +"places his mouse pointer on top of that area." msgstr "" #: ../help/imagemap.php:35 -msgid "You can add basic text, or even define an URL that gets activated when a user clicks the area you have defined as an ImageMap." +msgid "" +"You can add basic text, or even define an URL that gets activated when a " +"user clicks the area you have defined as an ImageMap." msgstr "" #: ../help/imagemap.php:40 @@ -1723,31 +1768,46 @@ msgstr "" #: ../help/imagemap.php:43 -msgid "It's as easy as it is fun. First, you need to create your ImageMap, this is done by clicking on the image, in the position where you want the first corner of the ImageMap to be." +msgid "" +"It's as easy as it is fun. First, you need to create your ImageMap, this is " +"done by clicking on the image, in the position where you want the first " +"corner of the ImageMap to be." msgstr "" #: ../help/imagemap.php:44 -msgid "Click again on a new spot, and you'll see that Gallery creates a polygon shape based on the two spots you have created." +msgid "" +"Click again on a new spot, and you'll see that Gallery creates a polygon " +"shape based on the two spots you have created." msgstr "" #: ../help/imagemap.php:45 -msgid "Click again to create another spot. Add spots until your polygon shape surrounds the entire area you want to use as an ImageMap." +msgid "" +"Click again to create another spot. Add spots until your polygon shape " +"surrounds the entire area you want to use as an ImageMap." msgstr "" #: ../help/imagemap.php:49 -msgid "When you are satisifed with your selection (e.g. a person or object), enter the describing text for your ImageMap in the 'Description' field on the left hand side." +msgid "" +"When you are satisifed with your selection (e.g. a person or object), enter " +"the describing text for your ImageMap in the 'Description' field on the left " +"hand side." msgstr "" #: ../help/imagemap.php:50 -msgid "The text entered in the description field, will be displayed when your users point their mouse cursor over the ImageMap" +msgid "" +"The text entered in the description field, will be displayed when your users " +"point their mouse cursor over the ImageMap" msgstr "" #: ../help/imagemap.php:54 -msgid "Optionally you can enter a Link-URL for your ImageMap, which is activated when a user clicks your ImageMap selection." +msgid "" +"Optionally you can enter a Link-URL for your ImageMap, which is activated " +"when a user clicks your ImageMap selection." msgstr "" #: ../help/imagemap.php:55 -msgid "When you are satisfied, click the 'Save ImageMap' button at the left side." +msgid "" +"When you are satisfied, click the 'Save ImageMap' button at the left side." msgstr "" #: ../help/imagemap.php:62 @@ -1755,11 +1815,15 @@ msgstr "" #: ../help/imagemap.php:65 -msgid "Currently you can only modify the text and the URL for an ImageMap. The polygon for the ImageMap is currently not changeable." +msgid "" +"Currently you can only modify the text and the URL for an ImageMap. The " +"polygon for the ImageMap is currently not changeable." msgstr "" #: ../help/imagemap.php:66 -msgid "If you do need to change the actual shape of the selection, you need to delete it and create a new selection in the shape you want." +msgid "" +"If you do need to change the actual shape of the selection, you need to " +"delete it and create a new selection in the shape you want." msgstr "" #: ../help/imagemap.php:69 @@ -1767,7 +1831,9 @@ msgstr "" #: ../help/imagemap.php:70 -msgid "The image preview on the right hand side, will show which area is covered by the ImageMap currently selected." +msgid "" +"The image preview on the right hand side, will show which area is covered by " +"the ImageMap currently selected." msgstr "" #: ../help/imagemap.php:71 @@ -1783,7 +1849,9 @@ msgstr "" #: ../help/imagemap.php:82 -msgid "Just select the ImageMap(s) you want to delete in the box. Then click the 'Delete selected ImageMap(s)' button." +msgid "" +"Just select the ImageMap(s) you want to delete in the box. Then click the " +"'Delete selected ImageMap(s)' button." msgstr "" #: ../help/metadataOnUpload.php:25 @@ -1795,7 +1863,9 @@ msgstr "" #: ../help/metadataOnUpload.php:32 -msgid "Photos in Gallery have descriptive fields, like caption, title and other data fields. You can also define your own custom fields." +msgid "" +"Photos in Gallery have descriptive fields, like caption, title and other " +"data fields. You can also define your own custom fields." msgstr "" #: ../help/metadataOnUpload.php:33 @@ -1816,11 +1886,15 @@ #: ../help/metadataOnUpload.php:46 #, php-format -msgid "Create a %s'csv-file (Comma Separated Values)'%s which contains the data you want associated with the files you are uploading." +msgid "" +"Create a %s'csv-file (Comma Separated Values)'%s which contains the data you " +"want associated with the files you are uploading." msgstr "" #: ../help/metadataOnUpload.php:47 -msgid "Upload this file at the same time as you upload your files, you cannot upload it later and expect Gallery to import the metadata from it." +msgid "" +"Upload this file at the same time as you upload your files, you cannot " +"upload it later and expect Gallery to import the metadata from it." msgstr "" #: ../help/metadataOnUpload.php:53 @@ -1828,11 +1902,15 @@ msgstr "" #: ../help/metadataOnUpload.php:56 -msgid "The first row must be the fieldnames, there is one mandatory field, some predefined fields and you can use your own custom fields." +msgid "" +"The first row must be the fieldnames, there is one mandatory field, some " +"predefined fields and you can use your own custom fields." msgstr "" #: ../help/metadataOnUpload.php:57 -msgid "Order does not matter, but you have to use a ; (Semicolon) as separator as your texts might have commas." +msgid "" +"Order does not matter, but you have to use a ; (Semicolon) as " +"separator as your texts might have commas." msgstr "" #: ../help/metadataOnUpload.php:58 @@ -1919,7 +1997,9 @@ msgstr "" #: ../html/userData.inc:121 -msgid "Note: Admins can always create albums and are allowed to change their password." +msgid "" +"Note: Admins can always create albums and are allowed to change their " +"password." msgstr "" #: ../html/userData.inc:130 @@ -2014,21 +2094,29 @@ msgstr "" #: ../includes/add_photos/add_applet.inc:32 -msgid "Use the Gallery Remote Applet to upload pictures. It will take a short while to download." +msgid "" +"Use the Gallery Remote Applet to upload pictures. It will take a short while " +"to download." msgstr "" #: ../includes/add_photos/add_applet.inc:33 #: ../includes/add_photos/add_applet_mini.inc:32 -msgid "If you don't have the Java Plugin 1.4 or later, you can use one of the other methods." +msgid "" +"If you don't have the Java Plugin 1.4 or later, you can use one of the other " +"methods." msgstr "" #: ../includes/add_photos/add_applet.inc:51 #: ../includes/add_photos/add_applet_mini.inc:48 -msgid "Your browser doesn't support applets; you should use one of the other upload methods." +msgid "" +"Your browser doesn't support applets; you should use one of the other upload " +"methods." msgstr "" #: ../includes/add_photos/add_applet_mini.inc:31 -msgid "Use the Gallery Remote Mini Applet to upload pictures. It will take a short while to download." +msgid "" +"Use the Gallery Remote Mini Applet to upload pictures. It will take a short " +"while to download." msgstr "" #: ../includes/add_photos/add_form.inc:34 @@ -2036,11 +2124,15 @@ msgstr "" #: ../includes/add_photos/add_form.inc:35 -msgid "After you added a file, you can add more files on the sane way, just use the browse button as often as you want." +msgid "" +"After you added a file, you can add more files on the sane way, just use the " +"browse button as often as you want." msgstr "" #: ../includes/add_photos/add_form.inc:36 -msgid "It's possible to enter a manual caption for each item you upload, or you can let gallery set the captions." +msgid "" +"It's possible to enter a manual caption for each item you upload, or you can " +"let gallery set the captions." msgstr "" #: ../includes/add_photos/add_form.inc:37 @@ -2054,7 +2146,8 @@ #: ../includes/add_photos/add_form.inc:51 #, php-format -msgid "You can also upload compressed archive files (%s) full of photos and movies!" +msgid "" +"You can also upload compressed archive files (%s) full of photos and movies!" msgstr "" #: ../includes/add_photos/add_form.inc:62 @@ -2082,7 +2175,9 @@ msgstr "" #: ../includes/add_photos/add_other.inc:31 -msgid "You can use one of these desktop agents to drag and drop photos from your desktop" +msgid "" +"You can use one of these desktop agents to drag and drop photos from your " +"desktop" msgstr "" #: ../includes/add_photos/add_other.inc:38 @@ -2094,7 +2189,9 @@ msgstr "" #: ../includes/add_photos/add_other.inc:45 -msgid "See a couple of other Methods for adding pictures to your Gallery on Gallerys Website." +msgid "" +"See a couple of other Methods for adding pictures to your Gallery on " +"Gallerys Website." msgstr "" #: ../includes/add_photos/add_other.inc:51 @@ -2142,7 +2239,9 @@ msgstr "" #: ../includes/add_photos/captionOptions.inc.php:54 -msgid "For the date/time related options Gallery will use the format you specified in the config for date/time strings." +msgid "" +"For the date/time related options Gallery will use the format you specified " +"in the config for date/time strings." msgstr "" #: ../includes/comments/commentHandling.inc.php:54 ../view_photo.php:202 @@ -2160,7 +2259,8 @@ #: ../includes/errors/configure_help.php:2 #, php-format -msgid "If you experience problems, you can find help on the %sGallery Help Page%s." +msgid "" +"If you experience problems, you can find help on the %sGallery Help Page%s." msgstr "" #: ../includes/errors/reconfigure.php:9 ../includes/errors/reconfigure.php:15 @@ -2168,7 +2268,9 @@ msgstr "" #: ../includes/errors/reconfigure.php:18 -msgid "Your Gallery settings were configured with an older version of Gallery, and are out of date. Please re-run the Configuration Wizard!" +msgid "" +"Your Gallery settings were configured with an older version of Gallery, and " +"are out of date. Please re-run the Configuration Wizard!" msgstr "" #: ../includes/errors/reconfigure.php:23 @@ -2193,7 +2295,9 @@ msgstr "" #: ../includes/errors/unconfigured.php:25 -msgid "Create an empty file .htaccess and an empty file config.php in your Gallery folder." +msgid "" +"Create an empty file .htaccess and an empty file config.php in your Gallery " +"folder." msgstr "" #: ../includes/errors/unconfigured.php:28 @@ -2201,11 +2305,15 @@ msgstr "" #: ../includes/errors/unconfigured.php:29 -msgid "Create an albums folder for your pictures and movies. This folder can be anywhere in your webspace." +msgid "" +"Create an albums folder for your pictures and movies. This folder can be " +"anywhere in your webspace." msgstr "" #: ../includes/errors/unconfigured.php:32 -msgid "Make sure that both files and the folder are read and writeable for your webserver!" +msgid "" +"Make sure that both files and the folder are read and writeable for your " +"webserver!" msgstr "" #: ../includes/errors/unconfigured.php:38 @@ -2215,7 +2323,9 @@ #: ../includes/errors/unconfigured.php:46 #, php-format -msgid "%sNote:%s When you get an 'error 500' when accessing the config wizard, try removing the .htaccess file the setup folder." +msgid "" +"%sNote:%s When you get an 'error 500' when accessing the config wizard, try " +"removing the .htaccess file the setup folder." msgstr "" #: ../includes/slideshow/applet.inc:42 ../includes/slideshow/high.inc:70 @@ -2229,11 +2339,15 @@ msgstr "" #: ../includes/slideshow/applet.inc:55 -msgid "If you don't have the Java Plugin 1.4 or later, or you don't want to wait for the applet to download, you can use one of the non-fullscreen versions." +msgid "" +"If you don't have the Java Plugin 1.4 or later, or you don't want to wait " +"for the applet to download, you can use one of the non-fullscreen versions." msgstr "" #: ../includes/slideshow/applet.inc:81 -msgid "Your browser doesn't support applets; you should use one of the other slideshow methods." +msgid "" +"Your browser doesn't support applets; you should use one of the other " +"slideshow methods." msgstr "" #: ../includes/slideshow/high.inc:66 @@ -2320,11 +2434,15 @@ msgstr "" #: ../includes/slideshow/high.inc:331 -msgid "The slide is showing full sized images, click [normal size] to view resized images." +msgid "" +"The slide is showing full sized images, click [normal size] to view resized " +"images." msgstr "" #: ../includes/slideshow/high.inc:338 -msgid "The slide is showing normal sized images, click [full size] to view full sized images." +msgid "" +"The slide is showing normal sized images, click [full size] to view full " +"sized images." msgstr "" #: ../includes/slideshow/high.inc:376 ../includes/slideshow/low.inc:223 @@ -2546,7 +2664,8 @@ msgstr "" #: ../init.php:438 -msgid "Gallery seems to be inside Mambo, but we couldn't get the necessary info." +msgid "" +"Gallery seems to be inside Mambo, but we couldn't get the necessary info." msgstr "" #: ../init.php:584 @@ -2847,11 +2966,15 @@ msgstr "" #: ../lib/albumItem.php:523 -msgid "An error occurred before extracting the archive. Temporary destination exists." +msgid "" +"An error occurred before extracting the archive. Temporary destination " +"exists." msgstr "" #: ../lib/albumItem.php:528 -msgid "An error occurred before extracting the archive. Temporary destination could not be created." +msgid "" +"An error occurred before extracting the archive. Temporary destination could " +"not be created." msgstr "" #: ../lib/albumItem.php:532 @@ -2903,7 +3026,9 @@ msgstr "" #: ../lib/albumItem.php:751 -msgid "Adding item failed. Please enable debug mode and redo the procedure to get more information." +msgid "" +"Adding item failed. Please enable debug mode and redo the procedure to get " +"more information." msgstr "" #: ../lib/albumItem.php:754 @@ -2917,7 +3042,9 @@ msgstr "" #: ../login.php:64 -msgid "This account is locked due too much wrong login attempts. Wait for automatic unlock, or contact an administrator." +msgid "" +"This account is locked due too much wrong login attempts. Wait for automatic " +"unlock, or contact an administrator." msgstr "" #: ../login.php:90 @@ -2942,7 +3069,10 @@ #: ../login.php:138 #, php-format -msgid "Someone requested a new password for user %s from Gallery '%s' on %s. You can create a password by visiting the link below. If you didn't request a password, please ignore this mail. " +msgid "" +"Someone requested a new password for user %s from Gallery '%s' on %s. You " +"can create a password by visiting the link below. If you didn't request a " +"password, please ignore this mail. " msgstr "" #: ../login.php:139 @@ -2966,7 +3096,11 @@ #: ../login.php:160 #, php-format -msgid "If there is a valid email-address for this user, then an email has been sent to the address stored for %s. Follow the instructions to change your password. If you do not receive this email, please contact the Gallery administrators." +msgid "" +"If there is a valid email-address for this user, then an email has been sent " +"to the address stored for %s. Follow the instructions to change your " +"password. If you do not receive this email, please contact the Gallery " +"administrators." msgstr "" #: ../login.php:165 ../login.php:172 ../login.php:186 ../publish_xp.php:61 @@ -2976,7 +3110,9 @@ msgstr "" #: ../login.php:188 -msgid "Logging in gives you greater permission to view, create, modify and delete albums." +msgid "" +"Logging in gives you greater permission to view, create, modify and delete " +"albums." msgstr "" #: ../login.php:204 ../login.php:217 @@ -3048,7 +3184,9 @@ msgstr "" #: ../manage_users.php:138 -msgid "To select multiple users (only recognized for deletion), hold down the Control (PC) or Command (Mac) key while clicking." +msgid "" +"To select multiple users (only recognized for deletion), hold down the " +"Control (PC) or Command (Mac) key while clicking." msgstr "" #: ../manage_users.php:142 @@ -3210,12 +3348,16 @@ msgstr "" #: ../move_photo.php:371 -msgid "Note: items that have votes will lose these votes when moved to another album" +msgid "" +"Note: items that have votes will lose these votes when moved to another album" msgstr "" #: ../move_photo.php:374 #, php-format -msgid "Note: items that have votes will lose these votes if moved to an album without compatible polling. Compatible albums are marked with an "%s"." +msgid "" +"Note: items that have votes will lose these votes if moved to an album " +"without compatible polling. Compatible albums are marked with an "%" +"s"." msgstr "" #: ../multi_create_user.php:44 ../multi_create_user.php:48 @@ -3234,7 +3376,9 @@ #: ../multi_create_user.php:71 #, php-format -msgid "Upload went fine, but the file is not readable, please make sure %s is accessable for your webserver. (Also check openbasedir restrictions.)" +msgid "" +"Upload went fine, but the file is not readable, please make sure %s is " +"accessable for your webserver. (Also check openbasedir restrictions.)" msgstr "" #: ../multi_create_user.php:101 @@ -3290,7 +3434,9 @@ msgstr "" #: ../multi_create_user.php:207 -msgid "The members file should be one user per line, and the fields should be space separated." +msgid "" +"The members file should be one user per line, and the fields should be space " +"separated." msgstr "" #: ../multi_create_user.php:208 @@ -3310,11 +3456,17 @@ msgstr "" #: ../multi_create_user.php:214 -msgid "Only username is required. Everything after the email address is the full name, so there can be spaces in it." +msgid "" +"Only username is required. Everything after the email address is the full " +"name, so there can be spaces in it." msgstr "" #: ../multi_create_user.php:218 -msgid "The strings !!USERNAME!!, !!FULLNAME!! and !!PASSWORD!! will be substituted in the email with the values from the membership file. An individual email will be sent to each member with a valid email address in the members file (if "send emails" checkbox is ticked)." +msgid "" +"The strings !!USERNAME!!, !!FULLNAME!! and !!PASSWORD!! will be substituted " +"in the email with the values from the membership file. An individual email " +"will be sent to each member with a valid email address in the members file " +"(if "send emails" checkbox is ticked)." msgstr "" #: ../new_password.php:32 @@ -3368,7 +3520,9 @@ #: ../poll_properties.php:49 #, php-format -msgid "Warning: you have changed voters from %s to %s. It is advisable to reset the poll to remove all previous votes." +msgid "" +"Warning: you have changed voters from %s to %s. It is advisable to reset " +"the poll to remove all previous votes." msgstr "" #: ../poll_properties.php:70 ../poll_properties.php:74 @@ -3458,7 +3612,9 @@ msgstr "" #: ../progress_uploading.php:42 -msgid "This page will go away automatically when the upload is complete. Please be patient!" +msgid "" +"This page will go away automatically when the upload is complete. Please be " +"patient!" msgstr "" #: ../publish_xp.php:29 @@ -3557,7 +3713,9 @@ msgstr "" #: ../publish_xp_docs.php:28 -msgid "Windows XP comes with a nice feature that allows you to publish content from your desktop directly to a web service." +msgid "" +"Windows XP comes with a nice feature that allows you to publish content from " +"your desktop directly to a web service." msgstr "" #: ../publish_xp_docs.php:29 @@ -3579,7 +3737,9 @@ msgstr "" #: ../publish_xp_docs.php:44 -msgid "If it asks you for confirmation about changing the file type, answer "yes"." +msgid "" +"If it asks you for confirmation about changing the file type, answer "" +"yes"." msgstr "" #: ../publish_xp_docs.php:46 @@ -3591,7 +3751,9 @@ msgstr "" #: ../publish_xp_docs.php:50 -msgid "It will ask you if you want to import these values into your registry. Click "ok"." +msgid "" +"It will ask you if you want to import these values into your registry. Click " +""ok"." msgstr "" #: ../publish_xp_docs.php:52 @@ -3607,15 +3769,21 @@ msgstr "" #: ../publish_xp_docs.php:61 -msgid "Open your Windows explorer and browse to a folder containing supported images." +msgid "" +"Open your Windows explorer and browse to a folder containing supported " +"images." msgstr "" #: ../publish_xp_docs.php:63 -msgid "Select the image(s) or a folder and there should be a link on the left that says "Publish this file to the web..."" +msgid "" +"Select the image(s) or a folder and there should be a link on the left that " +"says "Publish this file to the web..."" msgstr "" #: ../publish_xp_docs.php:65 -msgid "Click this link and then follow the instructions to log into your Gallery, select an album and publish the image." +msgid "" +"Click this link and then follow the instructions to log into your Gallery, " +"select an album and publish the image." msgstr "" #: ../publish_xp_docs.php:71 @@ -3633,7 +3801,9 @@ msgstr "" #: ../rearrange.php:114 -msgid "Here you can rearrange your pictures easily. Just click on the item you want to reorder. Then click on the item at which position you want it to be." +msgid "" +"Here you can rearrange your pictures easily. Just click on the item you want " +"to reorder. Then click on the item at which position you want it to be." msgstr "" #: ../rearrange.php:118 @@ -3679,7 +3849,9 @@ msgstr "" #: ../rebuild_capture_dates.php:61 -msgid "This is usefull when something went wrong, of you enabled jhead/exiftags after you upload items." +msgid "" +"This is usefull when something went wrong, of you enabled jhead/exiftags " +"after you upload items." msgstr "" #: ../rebuild_capture_dates.php:65 @@ -3700,11 +3872,14 @@ msgstr "" #: ../rebuild_thumbs.php:56 -msgid "Here you can rebuild all thumbnails of your album. This is useful when thumbnails got broken, or you changed the thumnbail size / quality." +msgid "" +"Here you can rebuild all thumbnails of your album. This is useful when " +"thumbnails got broken, or you changed the thumnbail size / quality." msgstr "" #: ../rebuild_thumbs.php:58 -msgid "Custom thumbnails will not be reset to default. (Just resized, or rebuild)" +msgid "" +"Custom thumbnails will not be reset to default. (Just resized, or rebuild)" msgstr "" #: ../rebuild_thumbs.php:63 @@ -3754,7 +3929,9 @@ msgstr "" #: ../register.php:122 -msgid "Email could not be sent. Please contact gallery administrator to register on this site" +msgid "" +"Email could not be sent. Please contact gallery administrator to register " +"on this site" msgstr "" #: ../register.php:141 @@ -3766,7 +3943,9 @@ msgstr "" #: ../rename_album.php:58 -msgid "Your new foldername contained unallowed chars. They were removed. Please try again." +msgid "" +"Your new foldername contained unallowed chars. They were removed. Please try " +"again." msgstr "" #: ../rename_album.php:96 @@ -3802,7 +3981,9 @@ msgstr "" #: ../rename_album.php:139 -msgid "This is not the title of the album, but the filename of the directory on your webserver. The name is also used in the URL." +msgid "" +"This is not the title of the album, but the filename of the directory on " +"your webserver. The name is also used in the URL." msgstr "" #: ../reset_votes.php:29 @@ -3827,7 +4008,9 @@ msgstr "" #: ../resize_photo.php:90 -msgid "This image has at least one imagearea. All imageareas will be deleted when you modify the picture." +msgid "" +"This image has at least one imagearea. All imageareas will be deleted when " +"you modify the picture." msgstr "" #: ../resize_photo.php:99 @@ -3835,7 +4018,10 @@ msgstr "" #: ../resize_photo.php:117 -msgid "This will resize your intermediate photos so that the longest side of the photo is equal to the target size below and the filesize will be close to the chosen size." +msgid "" +"This will resize your intermediate photos so that the longest side of the " +"photo is equal to the target size below and the filesize will be close to " +"the chosen size." msgstr "" #: ../resize_photo.php:134 @@ -3880,7 +4066,9 @@ msgstr "" #: ../rotate_photo.php:67 -msgid "This image has at least one imagearea. All imageareas will be deleted when you modify the resized picture." +msgid "" +"This image has at least one imagearea. All imageareas will be deleted when " +"you modify the resized picture." msgstr "" #: ../rotate_photo.php:72 @@ -4026,7 +4214,9 @@ msgstr "" #: ../save_photos.php:479 -msgid "Select the items you want to upload. To select multiple hold 'ctrl' (PC) or 'Command' (Mac)." +msgid "" +"Select the items you want to upload. To select multiple hold 'ctrl' (PC) or " +"'Command' (Mac)." msgstr "" #: ../save_photos.php:506 @@ -4035,7 +4225,9 @@ #: ../save_photos.php:513 #, php-format -msgid "%d meta file(s) found. These files contain information about the images, such as titles and descriptions." +msgid "" +"%d meta file(s) found. These files contain information about the images, " +"such as titles and descriptions." msgstr "" #: ../save_photos.php:538 @@ -4087,7 +4279,9 @@ #: ../search.php:274 #, php-format -msgid "Some albums not searched as they require upgrading to the latest version of %s first." +msgid "" +"Some albums not searched as they require upgrading to the latest version of %" +"s first." msgstr "" #: ../search.php:277 @@ -4237,7 +4431,9 @@ msgstr "" #: ../stats-wizard.php:164 -msgid "Maybe your want to use your OWN statistics somewhere... Just copy and paste the URL from this textbox." +msgid "" +"Maybe your want to use your OWN statistics somewhere... Just copy and paste " +"the URL from this textbox." msgstr "" #: ../stats.php:80 @@ -4363,7 +4559,9 @@ #: ../stats.php:502 #, php-format -msgid "Album: %s ; Index: %d ; Votes: %d ; Views: %d; Date: %s; Capture: %s; Comment Date: %s; Rating: %s; Rating count: %d; Random: %d" +msgid "" +"Album: %s ; Index: %d ; Votes: %d ; Views: %d; Date: %s; Capture: %s; " +"Comment Date: %s; Rating: %s; Rating count: %d; Random: %d" msgstr "" #: ../stats.php:571 @@ -4412,7 +4610,9 @@ #: ../stats.php:749 #, php-format -msgid "Some albums not searched as they require upgrading to the latest version of %s first" +msgid "" +"Some albums not searched as they require upgrading to the latest version of %" +"s first" msgstr "" #: ../stats.php:752 @@ -4509,7 +4709,9 @@ msgstr "" #: ../tools/despam-comments.php:357 -msgid "Your blacklist is empty. You must add new entries to your blacklist for it to be useful." +msgid "" +"Your blacklist is empty. You must add new entries to your blacklist for it " +"to be useful." msgstr "" #: ../tools/despam-comments.php:381 ../tools/despam-comments.php:398 @@ -4525,7 +4727,9 @@ msgstr "" #: ../tools/despam-comments.php:394 -msgid "You can just cut and paste these blacklists into the text box, or add new entries of your own." +msgid "" +"You can just cut and paste these blacklists into the text box, or add new " +"entries of your own." msgstr "" #: ../tools/despam-comments.php:404 @@ -4549,7 +4753,10 @@ msgstr "" #: ../tools/find_orphans.php:237 -msgid "Orphaned Albums will be re-attached to their parent albums, if at all possible. If the parent album is missing, the orphan will be attached to the Gallery Root, and it can be moved to a new location from there." +msgid "" +"Orphaned Albums will be re-attached to their parent albums, if at all " +"possible. If the parent album is missing, the orphan will be attached to " +"the Gallery Root, and it can be moved to a new location from there." msgstr "" #: ../tools/find_orphans.php:241 @@ -4573,7 +4780,11 @@ msgstr "" #: ../tools/find_orphans.php:273 -msgid "Orphaned files will be deleted from the disk. Orphaned files should never exist - if they do, they are the result of a failed upload attempt, or other more serious issue such as the photos database being overwritten with bad information." +msgid "" +"Orphaned files will be deleted from the disk. Orphaned files should never " +"exist - if they do, they are the result of a failed upload attempt, or other " +"more serious issue such as the photos database being overwritten with bad " +"information." msgstr "" #: ../tools/find_orphans.php:277 @@ -4614,7 +4825,9 @@ msgstr "" #: ../tools/find_orphans.php:327 -msgid "Please check the permission of these files and the folder above. chmod them, or ask your admin to do this." +msgid "" +"Please check the permission of these files and the folder above. chmod them, " +"or ask your admin to do this." msgstr "" #: ../tools/find_orphans.php:328 ../upgrade_album.php:174 @@ -4642,7 +4855,8 @@ msgstr "" #: ../tools/validate_albums.php:120 -msgid "Are you sure you want to delete the folder below and all of its content?" +msgid "" +"Are you sure you want to delete the folder below and all of its content?" msgstr "" #: ../tools/validate_albums.php:122 @@ -4670,7 +4884,9 @@ msgstr "" #: ../tools/validate_albums.php:166 -msgid "Please Note: Even if the thumbnail image is properly displayed above, the actual full-sized image has been verified to be missing." +msgid "" +"Please Note: Even if the thumbnail image is properly displayed above, the " +"actual full-sized image has been verified to be missing." msgstr "" #: ../tools/validate_albums.php:172 @@ -4682,7 +4898,11 @@ msgstr "" #: ../tools/validate_albums.php:218 -msgid "The following files are missing from the albums directory. Information is still stored about the photo in the album data, but the file itself is no longer present for some reason. These files will cause failures when attempting to migrate to Gallery 2.x." +msgid "" +"The following files are missing from the albums directory. Information is " +"still stored about the photo in the album data, but the file itself is no " +"longer present for some reason. These files will cause failures when " +"attempting to migrate to Gallery 2.x." msgstr "" #: ../tools/validate_albums.php:220 @@ -4694,7 +4914,9 @@ msgstr "" #: ../tools/validate_albums.php:223 -msgid "The second is to manually re-add the file to the albums directory using the filename you see in the left side of the table." +msgid "" +"The second is to manually re-add the file to the albums directory using the " +"filename you see in the left side of the table." msgstr "" #: ../tools/validate_albums.php:228 @@ -4723,7 +4945,11 @@ msgstr "" #: ../tools/validate_albums.php:271 -msgid "Invalid albums are directories which have been created in the albums directory that don't actually contain album data. The presence of these directories can cause problems for Gallery as well as when trying to migrate to Gallery 2.x." +msgid "" +"Invalid albums are directories which have been created in the albums " +"directory that don't actually contain album data. The presence of these " +"directories can cause problems for Gallery as well as when trying to migrate " +"to Gallery 2.x." msgstr "" #: ../tools/validate_albums.php:275 @@ -4768,7 +4994,9 @@ msgstr "" #: ../upgrade_album.php:132 -msgid "Some albums in your gallery were created with an older version of the software and are out of date." +msgid "" +"Some albums in your gallery were created with an older version of the " +"software and are out of date." msgstr "" #: ../upgrade_album.php:134 ../upgrade_users.php:39 @@ -4776,7 +5004,9 @@ msgstr "" #: ../upgrade_album.php:136 -msgid "We can upgrade them. This may take some time for large albums but we'll try to keep you informed as we proceed." +msgid "" +"We can upgrade them. This may take some time for large albums but we'll try " +"to keep you informed as we proceed." msgstr "" #: ../upgrade_album.php:138 @@ -4784,12 +5014,17 @@ msgstr "" #: ../upgrade_album.php:140 ../upgrade_users.php:42 -msgid "Rest assured, that if this process takes a long time now, it's going to make your gallery run more efficiently in the future." +msgid "" +"Rest assured, that if this process takes a long time now, it's going to make " +"your gallery run more efficiently in the future." msgstr "" #: ../upgrade_album.php:143 #, php-format -msgid "The following albums need to be upgraded. You can process them individually by clicking the upgrade link next to the album that you desire, or you can just %s." +msgid "" +"The following albums need to be upgraded. You can process them individually " +"by clicking the upgrade link next to the album that you desire, or you can " +"just %s." msgstr "" #: ../upgrade_album.php:144 @@ -4816,7 +5051,9 @@ msgstr "" #: ../upgrade_users.php:38 -msgid "The user database in your gallery was created with an older version of the software and is out of date." +msgid "" +"The user database in your gallery was created with an older version of the " +"software and is out of date." msgstr "" #: ../upgrade_users.php:40 @@ -4828,11 +5065,15 @@ msgstr "" #: ../upgrade_users.php:44 -msgid "If you get an error, and only some users are upgraded, try refreshing the page to upgrade remaining users." +msgid "" +"If you get an error, and only some users are upgraded, try refreshing the " +"page to upgrade remaining users." msgstr "" #: ../upgrade_users.php:52 -msgid "There was a problem upgrading users. Please check messages above, and try again" +msgid "" +"There was a problem upgrading users. Please check messages above, and try " +"again" msgstr "" #: ../upgrade_users.php:53 @@ -4864,7 +5105,9 @@ msgstr "" #: ../user_preferences.php:142 -msgid "If you want to change your password, you must provide your old password and then enter the new one twice." +msgid "" +"If you want to change your password, you must provide your old password and " +"then enter the new one twice." msgstr "" #: ../user_preferences.php:145 @@ -4926,11 +5169,15 @@ msgstr "" #: ../util.php:374 -msgid "Gallery seems to be configured, but the path to the albums dir is wrong. Maybe you did a host change?" +msgid "" +"Gallery seems to be configured, but the path to the albums dir is wrong. " +"Maybe you did a host change?" msgstr "" #: ../util.php:376 -msgid "Check all paths and URLs in your config.php; unfortunately this can't be done via the config wizard." +msgid "" +"Check all paths and URLs in your config.php; unfortunately this can't be " +"done via the config wizard." msgstr "" #: ../util.php:435 @@ -4967,7 +5214,8 @@ #: ../util.php:772 #, php-format -msgid "Your tempfolder is not writeable! Please check permissions of this dir: %s" +msgid "" +"Your tempfolder is not writeable! Please check permissions of this dir: %s" msgstr "" #: ../util.php:929 @@ -4987,7 +5235,9 @@ #: ../util.php:1373 #, php-format -msgid "Gallery was unable to create a temporary subfolder in your tempdir. Please check permissions of this dir: %s" +msgid "" +"Gallery was unable to create a temporary subfolder in your tempdir. Please " +"check permissions of this dir: %s" msgstr "" #: ../util.php:1400 @@ -5075,7 +5325,8 @@ #: ../view_album.php:452 #, php-format msgid "You have a total of %d vote and can change it later if you wish." -msgid_plural "You have a total of %d votes and can change them later if you wish." +msgid_plural "" +"You have a total of %d votes and can change them later if you wish." msgstr[0] "" msgstr[1] "" @@ -5244,5 +5495,7 @@ msgstr "" #: ../watermark_album.php:119 -msgid "Keep in mind that watermarking on animated gifs is currently not supported and will 'deface & unanimate' your pictures." +msgid "" +"Keep in mind that watermarking on animated gifs is currently not supported " +"and will 'deface & unanimate' your pictures." msgstr "" --- gallery-1.5.10.dfsg.orig/classes/XML_HTMLSax3/HTMLSax3.php +++ gallery-1.5.10.dfsg/classes/XML_HTMLSax3/HTMLSax3.php @@ -11,13 +11,17 @@ // +----------------------------------------------------------------------+ // | Copyright (c) 1997-2002 The PHP Group | // +----------------------------------------------------------------------+ -// | This source file is subject toversion 3.0 of the PHP license, | -// | that is bundled with this package in the file LICENSE, and is | -// | available at through the world-wide-web at | -// | http://www.php.net/license/3_0.txt. | -// | If you did not receive a copy of the PHP license and are unable to | -// | obtain it through the world-wide-web, please send a note to | -// | license@php.net so we can mail you a copy immediately. | +// | This source file is subject to either version 3.0 of the PHP license | +// | or version 3.0 of the GNU Lesser General Public License. | +// | The PHP license 3.0 is bundled with this package in the file LICENSE,| +// | and is available at through the world-wide-web at | +// | http://www.php.net/license/3_0.txt. If you did not receive a copy of | +// | the PHP license and are unable to obtain it through the | +// | world-wide-web, please send a note to license@php.net so we can mail | +// | you a copy immediately. | +// | You should have received a copy of the GNU Lesser General Public | +// | License along with this library. If not, see | +// | . // +----------------------------------------------------------------------+ // | Authors: Alexander Zhukov Original port from Python | // | Authors: Harry Fuecks Port to PEAR + more | @@ -689,4 +693,4 @@ $this->state_parser->parse($data); } } -?> \ No newline at end of file +?> --- gallery-1.5.10.dfsg.orig/classes/XML_HTMLSax3/HTMLSax3/States.php +++ gallery-1.5.10.dfsg/classes/XML_HTMLSax3/HTMLSax3/States.php @@ -11,13 +11,17 @@ // +----------------------------------------------------------------------+ // | Copyright (c) 1997-2002 The PHP Group | // +----------------------------------------------------------------------+ -// | This source file is subject toversion 3.0 of the PHP license, | -// | that is bundled with this package in the file LICENSE, and is | -// | available at through the world-wide-web at | -// | http://www.php.net/license/3_0.txt. | -// | If you did not receive a copy of the PHP license and are unable to | -// | obtain it through the world-wide-web, please send a note to | -// | license@php.net so we can mail you a copy immediately. | +// | This source file is subject to either version 3.0 of the PHP license | +// | or version 3.0 of the GNU Lesser General Public License. | +// | The PHP license 3.0 is bundled with this package in the file LICENSE,| +// | and is available at through the world-wide-web at | +// | http://www.php.net/license/3_0.txt. If you did not receive a copy of | +// | the PHP license and are unable to obtain it through the | +// | world-wide-web, please send a note to license@php.net so we can mail | +// | you a copy immediately. | +// | You should have received a copy of the GNU Lesser General Public | +// | License along with this library. If not, see | +// | . // +----------------------------------------------------------------------+ // | Authors: Alexander Zhukov Original port from Python | // | Authors: Harry Fuecks Port to PEAR + more | @@ -289,4 +293,4 @@ return XML_HTMLSAX3_STATE_START; } } -?> \ No newline at end of file +?> --- gallery-1.5.10.dfsg.orig/classes/XML_HTMLSax3/HTMLSax3/Decorators.php +++ gallery-1.5.10.dfsg/classes/XML_HTMLSax3/HTMLSax3/Decorators.php @@ -11,13 +11,17 @@ // +----------------------------------------------------------------------+ // | Copyright (c) 1997-2002 The PHP Group | // +----------------------------------------------------------------------+ -// | This source file is subject toversion 3.0 of the PHP license, | -// | that is bundled with this package in the file LICENSE, and is | -// | available at through the world-wide-web at | -// | http://www.php.net/license/3_0.txt. | -// | If you did not receive a copy of the PHP license and are unable to | -// | obtain it through the world-wide-web, please send a note to | -// | license@php.net so we can mail you a copy immediately. | +// | This source file is subject to either version 3.0 of the PHP license | +// | or version 3.0 of the GNU Lesser General Public License. | +// | The PHP license 3.0 is bundled with this package in the file LICENSE,| +// | and is available at through the world-wide-web at | +// | http://www.php.net/license/3_0.txt. If you did not receive a copy of | +// | the PHP license and are unable to obtain it through the | +// | world-wide-web, please send a note to license@php.net so we can mail | +// | you a copy immediately. | +// | You should have received a copy of the GNU Lesser General Public | +// | License along with this library. If not, see | +// | . // +----------------------------------------------------------------------+ // | Authors: Alexander Zhukov Original port from Python | // | Authors: Harry Fuecks Port to PEAR + more | @@ -365,4 +369,4 @@ $this->orig_obj->{$this->orig_method}($this, $data); } } -?> \ No newline at end of file +?> --- gallery-1.5.10.dfsg.orig/debian/dirs +++ gallery-1.5.10.dfsg/debian/dirs @@ -0,0 +1,3 @@ +usr/share/gallery +etc/gallery +var/lib/gallery/setup --- gallery-1.5.10.dfsg.orig/debian/control +++ gallery-1.5.10.dfsg/debian/control @@ -0,0 +1,26 @@ +Source: gallery +Section: web +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Michael C. Schultheiss +Build-Depends: debhelper (>=5) +Standards-Version: 3.8.2 +Homepage: http://gallery.sf.net + +Package: gallery +Architecture: all +Depends: apache2 | httpd, php5 | php5-cgi | libapache2-mod-php5 | php4 | php4-cgi | libapache2-mod-php4, netpbm (>= 9.20), debconf (>= 0.2.26) | debconf-2.0, ${misc:Depends} +Recommends: imagemagick, jhead, unzip, libjpeg-progs +Description: a web-based photo album written in php + Gallery is a web-based photo album with multiple user support. It + provides users with the ability to create and maintain their own albums via an + intuitive web interface. Photo management includes automatic thumbnail + creation, image resizing, rotation, ordering, captioning, searching and more. + Albums can have read, write and caption permissions per individual + authenticated user for an additional level of privacy. + . + Created in an effort to prevent well meaning folks from sending obscenely + large photos by email, Gallery provides an easy place for friends and + relatives to create and maintain their own photo albums. + . + The upstream web site is: http://gallery.sf.net --- gallery-1.5.10.dfsg.orig/debian/docs +++ gallery-1.5.10.dfsg/debian/docs @@ -0,0 +1,2 @@ +AUTHORS +README --- gallery-1.5.10.dfsg.orig/debian/links +++ gallery-1.5.10.dfsg/debian/links @@ -0,0 +1,3 @@ +/etc/gallery/config.php /usr/share/gallery/config.php +/etc/gallery/htaccess /usr/share/gallery/.htaccess +/var/lib/gallery/setup /usr/share/gallery/setup --- gallery-1.5.10.dfsg.orig/debian/copyright +++ gallery-1.5.10.dfsg/debian/copyright @@ -0,0 +1,94 @@ +This package was debianized by Adam Lazur on +Fri, 30 Nov 2001 10:54:40 -0500. + +It was downloaded from http://gallery.sourceforge.net + +Upstream Authors: see AUTHORS file in source distribution + +Copyright: Copyright 2000-2008 Bharat Mediratta + +You are free to distribute this software 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. + +On Debian systems, the complete text of the GNU General Public License +can be found in the /usr/share/common-licenses/GPL file. + +The files in classes/XML_HTMLSax3 are Copyright 1997-2002 The PHP Group +and are subject to either version 3.0 of the PHP license or version 3.0 +of the GNU Lesser General Public License. + +On Debian systems, the complete text of the GNU Lesser General Public +License, version 3.0, can be found in the +/usr/share/common-licenses/LGPL-3 file. + +The complete text of the PHP License, version 3.0, follows: + +-------------------------------------------------------------------- + The PHP License, version 3.0 +Copyright (c) 1999 - 2004 The PHP Group. All rights reserved. +-------------------------------------------------------------------- + +Redistribution and use in source and binary forms, with or without +modification, is permitted provided that the following conditions +are met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + 3. The name "PHP" must not be used to endorse or promote products + derived from this software without prior written permission. For + written permission, please contact group@php.net. + + 4. Products derived from this software may not be called "PHP", nor + may "PHP" appear in their name, without prior written permission + from group@php.net. You may indicate that your software works in + conjunction with PHP by saying "Foo for PHP" instead of calling + it "PHP Foo" or "phpfoo" + + 5. The PHP Group may publish revised and/or new versions of the + license from time to time. Each version will be given a + distinguishing version number. + Once covered code has been published under a particular version + of the license, you may always continue to use it under the terms + of that version. You may also choose to use such covered code + under the terms of any subsequent version of the license + published by the PHP Group. No one other than the PHP Group has + the right to modify the terms applicable to covered code created + under this License. + + 6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes PHP, freely available from + ". + +THIS SOFTWARE IS PROVIDED BY THE PHP DEVELOPMENT TEAM ``AS IS'' AND +ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE PHP +DEVELOPMENT TEAM OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, +INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------- + +This software consists of voluntary contributions made by many +individuals on behalf of the PHP Group. + +The PHP Group can be contacted via Email at group@php.net. + +For more information on the PHP Group and the PHP project, +please see . + +This product includes the Zend Engine, freely available at +. --- gallery-1.5.10.dfsg.orig/debian/changelog +++ gallery-1.5.10.dfsg/debian/changelog @@ -0,0 +1,696 @@ +gallery (1.5.10.dfsg-1ubuntu1) lucid; urgency=low + + * Merge from debian testing, remaining changes: (LP: #484163) + - - debian/postrm: + + Delete config.php and htaccess on purge. + - debian/control: + + Added Homepage field. + + -- Charlie Smotherman Tue, 17 Nov 2009 06:05:27 -0500 + +gallery (1.5.10.dfsg-1) unstable; urgency=low + + * New upstream release (Closes: #538700) + + Incorporate NMUs (Thanks to Nico Golde, i18n/l10n teams) + * Remove jars from source (Closes: #528114) + * debian/rules: + + Remove DH_COMPAT + * debian/gallery.lintian.override + + Override PHP license lintian error (code is dual licensed under + GPL and PHP) + * debian/control: + + Update to Standards-Version 3.8.2 + + Utilize ${misc:Depends} + + Bump versioned Build-Depends on debhelper + * l10n updates: + + Update Swedish translation of debconf templates (Thanks to Martin + Bagge. Closes: #504332) + + Update Vietnamese translation of debconf templates (Thanks to Clytie + Siddall. Closes: #513355) + + Update Spanish translation of debconf templates (Thanks to + Thanks to Francisco Javier Cuadrado. Closes: #533139) + * Update watch file (Closes: #450132) + * Fix syntax error in setup/write.inc (Thanks to Eloy A. Paris. + Closes: #501235) + * Package is now lintian clean! + + -- Michael C. Schultheiss Sun, 20 Sep 2009 17:01:18 +0000 + +gallery (1.5.9-1.2ubuntu1) jaunty; urgency=low + + * Merge from debian unstable, remaining changes: (LP: #294158) + - debian/postrm: + + Delete config.php and htaccess on purge. + - debian/control: + + Added Homepage field. + + Bumped standards to 3.8.0 (no change needed) + + -- Stefan Lesicnik Mon, 05 Jan 2009 21:24:34 +0200 + +gallery (1.5.9-1.2) unstable; urgency=high + + * Non-maintainer upload by the Security Team. + * Fix insecure usage of superglobal $_REQUEST by first cleaning + it up and then merging $_GET and $_POST into it to it to prevent + interfering values set by malicious cookies when register_globals is on + (No CVE id yet; Closes: #506824). + + -- Nico Golde Sun, 30 Nov 2008 11:12:34 +0100 + +gallery (1.5.9-1.1) unstable; urgency=low + + * Non-maintainer upload. + * Fix pending l10n issues. Debconf translations: + - Brazilian Portuguese. Closes: #495127 + - Arabic. Closes: #503084 + - Traditional Chinese. Closes: #503167 + - Russian. Closes: #503445 + - Basque. Closes: #503448 + - Czech. Closes: #503586 + - Italian. Closes: #503649 + + -- Christian Perrier Mon, 27 Oct 2008 20:43:59 +0100 + +gallery (1.5.9-1) unstable; urgency=high + + * Urgency high due to release critical bug + * New upstream release (Closes: #499185) + + -- Michael C. Schultheiss Tue, 16 Sep 2008 21:09:59 +0000 + +gallery (1.5.8-1ubuntu1) intrepid; urgency=low + + * Merge from debian unstable, remaining changes: + - debian/postrm: + + Delete config.php and htaccess on purge. + * debian/control: + - Added Homepage field. + * Removed the ubuntu specific po files and using + debian / upstream provided po files. + + -- Stefan Lesicnik Fri, 08 Aug 2008 10:51:25 +0200 + +gallery (1.5.8-1) unstable; urgency=high + + * Urgency high due to release critical bug + * New upstream release (Closes: #493891) + + -- Michael C. Schultheiss Tue, 05 Aug 2008 19:11:16 +0000 + +gallery (1.5.7-2ubuntu1) hardy; urgency=low + + * Merge from Debian unstable, remaining changes: + - debian/postrm: + + Delete config.php and htaccess on purge. + - debian/control: + + Update maintainer field. + + -- Michele Angrisano Fri, 18 Jan 2008 22:59:28 +0100 + +gallery (1.5.7-2) unstable; urgency=high + + * Urgency high due to release critical bug + * debian/copyright: + + Clarify copyright and license for gallery + + Update license for classes/XML_HTMLSax3/ (Closes: #433141) + + -- Michael C. Schultheiss Wed, 16 Jan 2008 07:11:18 +0000 + +gallery (1.5.7-1ubuntu1) hardy; urgency=low + + * Merge from Debian unstable. Remaining Ubuntu changes: + - Delete config.php and htaccess on purge + - Modify Maintainer value to match Debian-Maintainer-Field Spec + + -- Christophe Sauthier Wed, 24 Oct 2007 11:23:23 +0200 + +gallery (1.5.7-1) unstable; urgency=low + + * New upstream release (Closes: #438509) + * Incorporate NMU + * Add Portuguese debconf translation (Closes: #433123) + * Simplify web server dependencies (Closes: #418946) + + -- Michael C. Schultheiss Sun, 09 Sep 2007 22:08:20 +0000 + +gallery (1.5.5-pl1-1.1ubuntu1) gutsy; urgency=low + + * Delete config.php and htaccess on purge. (LP: #32521). + + -- Niklas Klein Thu, 13 Sep 2007 09:29:20 +0200 + +gallery (1.5.5-pl1-1.1) unstable; urgency=high + + * Non-maintainer upload during BSP + * Fix unconditional use of debconf in postrm (Closes: #416747) + * Include Spanish debconf translation (Closes: #423703) + + -- Steffen Joeris Fri, 18 May 2007 21:48:30 +1000 + +gallery (1.5.5-pl1-1) unstable; urgency=high + + * New upstream release (Closes: #398862) + * debian/postrm: Make conditional call to debconf (Closes: #416747) Urgency + high since this is an RC bug. + * debian/apache.conf: Don't disallow access to .default + files (Closes: #404944) + + -- Michael C. Schultheiss Fri, 30 Mar 2007 16:12:33 +0000 + +gallery (1.5.4-3) unstable; urgency=low + + * l10n updates: + + Update French translation of debconf templates (Thanks to + Christian Perrier. Closes: #386809) + + Update Dutch translation of debconf templates (Thanks to + Kurt De Bree. Closes: #389785) + + Update German translation of debconf templates (Thanks to + Erik Schanze. Closes: #399267) + + Update Japanese translation of debconf templates (Thanks to + Hideki Yamane. Closes: #400157) + + -- Michael C. Schultheiss Sun, 14 Jan 2007 18:46:18 +0000 + +gallery (1.5.4-2) unstable; urgency=low + + * apache.conf: Move FilesMatch block within Directory block to limit its + scope (Closes: #385193) + * debian/control: Bump standards version, switch debhelper from + B-D-I to B-D + + -- Michael C. Schultheiss Tue, 29 Aug 2006 18:40:28 +0000 + +gallery (1.5.4-1) unstable; urgency=low + + * New upstream release (Closes: #383202) + * apache.conf: Add FilesMatch block to disallow certain file extensions + from being served up (Thanks to Sebastien Couret. Closes: #377718) + + -- Michael C. Schultheiss Tue, 15 Aug 2006 16:44:00 +0000 + +gallery (1.5.3-2) unstable; urgency=low + + * Album permissions fix (Closes: #316651, #367644) + * apache.conf: Disable /gallery alias (Closes: #310310) + * README.Debian + - mention possible need to update php's memory_limit (Closes: #318456) + - Mention how to enable /gallery alias + + -- Michael C. Schultheiss Fri, 26 May 2006 02:00:17 +0000 + +gallery (1.5.3-1) unstable; urgency=high + + * New upstream release (Closes: #361758) + + Urgency high due to input sanitization security issue + + -- Michael C. Schultheiss Fri, 14 Apr 2006 00:40:27 +0000 + +gallery (1.5.2-pl2-1) unstable; urgency=high + + * New upstream release (Closes: #351946) + + Urgency high due to potential dataloss with gallery 1.5.2's zip + download component + + -- Michael C. Schultheiss Wed, 8 Feb 2006 21:00:27 +0000 + +gallery (1.5.2-1) unstable; urgency=low + + * New upstream release (Closes: #349030) + * debian/rules: Bump debhelper compatibility version + * debian/control: Bump standards version (no changes needed) + + -- Michael C. Schultheiss Fri, 20 Jan 2006 17:54:52 +0000 + +gallery (1.5.1-1) unstable; urgency=low + + * New upstream release (Closes: #329669) + * debian/control: Add debconf-2.0 to debconf dependency + possibilities (Closes: #331831) + * debian/post{inst,rm}: Add db_stop and reorder to prevent hanging + (Thanks to Bharat Mediratta. Closes: #222244, #307294) + * l10n updates: + + Add Brazillian Portuguese translation of debconf templates (Thanks to + Guilherme de S. Pastore. Closes: #307240) + + Add Czech translation of debconf templates (Thanks to + Miroslav Kure. Closes: #310252) + + Add Vietnamese translation of debconf templates (Thanks to + Clytie Siddall. Closes: #311767) + + Add Arabic translation of debconf templates (Thanks to + Mohammed Adnène Trojett. Closes: #320763) + + Add Swedish translation of debconf templates (Thanks to + Daniel Nylander. Closes: #330535) + + -- Michael C. Schultheiss Wed, 12 Oct 2005 02:54:44 +0000 + +gallery (1.5-2) unstable; urgency=high + + * SECURITY: + + Fix privilege escalation in Postnuke integration. + References: CAN-2005-2596 + + Fix XSS issue in EXIF tag handling (Closes: #325285) + + Fix two file exposure bugs in stats module. + + -- Michael C. Schultheiss Sat, 27 Aug 2005 17:21:56 +0000 + +gallery (1.5-1) unstable; urgency=low + + * New upstream release (Closes: #304649) + + Slideshow button fixed for albums that only contain + subalbums (Closes: #265873) + * Tweak secure.sh (Thanks to John v/d Kamp. Closes: #302934) + + -- Michael C. Schultheiss Thu, 14 Apr 2005 18:34:45 +0000 + +gallery (1.4.4-pl6-1) unstable; urgency=high + + * New upstream release - urgency high due to XSS security + fixes (Closes: #294138) + + References: CAN-2005-0219, CAN-2005-0220 + + -- Michael C. Schultheiss Tue, 8 Feb 2005 03:41:00 +0000 + +gallery (1.4.4-pl5-1) unstable; urgency=high + + * New upstream release - urgency high due to XSS security + fixes (Closes: #292351) + * debian/control: Add php5 packages to php dependency + possibilities (Closes: #290367) + * write.inc: Give full path to secure.sh + + -- Michael C. Schultheiss Wed, 26 Jan 2005 14:28:11 +0000 + +gallery (1.4.4-pl4-7) unstable; urgency=low + + * secure.sh: chown config.php and htaccess to root:root so they're + unwritable in secure mode (Closes: #286914, #286916) + * confirm.inc: Update error message when htaccess and config.php are + unwritable (Prompt user to run configure.sh) + + -- Michael C. Schultheiss Sat, 08 Jan 2005 17:46:24 +0000 + +gallery (1.4.4-pl4-6) unstable; urgency=low + + * postinst: Check for existence of /etc/$webserver/conf.d before + trying to symlink /etc/$webserver/conf.d/gallery to + /etc/gallery/apache.conf (Closes: #285399) + + -- Michael C. Schultheiss Wed, 15 Dec 2004 19:47:29 +0000 + +gallery (1.4.4-pl4-5) unstable; urgency=high + + * links: Reinstate setup symlink that was erroneously removed in + 1.4.4-pl4-3 (Closes: #281326) Urgency high due to functionality + problems with 1.4.4-pl4-3 and 1.4.4-pl4-4. + + -- Michael C. Schultheiss Mon, 15 Nov 2004 13:42:02 +0000 + +gallery (1.4.4-pl4-4) unstable; urgency=low + + * Version.php: $gallery->version = '1.4.4-pl4-debian4'; + (Bump debian version - forgot to do so for 1.4.4-pl4-3) + + -- Michael C. Schultheiss Sat, 13 Nov 2004 16:57:54 +0000 + +gallery (1.4.4-pl4-3) unstable; urgency=low + + * links, debian/rules: Stop creating unnecessary + symlinks (Closes: #281044) + * configure.sh: Update echo'd strings to reflect current + information (Closes: #280848) + * Update README.Debian + + -- Michael C. Schultheiss Sat, 13 Nov 2004 16:30:11 +0000 + +gallery (1.4.4-pl4-2) unstable; urgency=high + + * Actually include ja.po (forgot in 1.4.4-pl4-1). Still urgency high + since this version is being uploaded shortly after 1.4.4-pl4-1 which + fixes XSS issues. + + -- Michael C. Schultheiss Wed, 3 Nov 2004 16:27:27 -0500 + +gallery (1.4.4-pl4-1) unstable; urgency=high + + * New upstream release (urgency high due to XSS security fixes). + Upstream version 1.4.4-pl3 was never packaged due to functionality + problems discovered upstream shortly after that version was + released. + * Add japanese translation of Debconf templates + (Thanks to Hideki Yamane. Closes: #276810) + + -- Michael C. Schultheiss Wed, 3 Nov 2004 15:46:21 -0500 + +gallery (1.4.4-pl2-2) unstable; urgency=low + + * debian/control: remove Suggests: netpbm-nonfree (Closes: #271681) + * setup/: Replace include(dirname(dirname(__FILE__)) . "/foo.php"); + with include(GALLERY_BASE . "/foo.php"); in several + files (Closes: #271762) + + -- Michael C. Schultheiss Wed, 15 Sep 2004 04:30:05 +0000 + +gallery (1.4.4-pl2-1) unstable; urgency=high + + * New upstream release (Closes: #268195) - urgency high due to + functionality problems with 1.4.4-pl1-1 + + -- Michael C. Schultheiss Thu, 26 Aug 2004 15:07:56 +0000 + +gallery (1.4.4-pl1-1) unstable; urgency=low + + * This release is dedicated to Susan J. Schultheiss - Happy Birthday Mom! + * New upstream release (Closes: #267847) + * postrm: Clean up on purge regardless of debconf + presence (Closes: #248353) + + -- Michael C. Schultheiss Tue, 24 Aug 2004 17:31:49 +0000 + +gallery (1.4.4-1) unstable; urgency=low + + * New upstream release (Closes: #262175) + * Add german translation of Debconf templates + (Thanks to Erik Schanze. Closes: #253044) + * Update README.Debian, remove configure.sh and album format Debconf + questions (Closes: #261440, #261444) + + -- Michael C. Schultheiss Fri, 30 Jul 2004 02:38:51 +0000 + +gallery (1.4.3-pl2-1) unstable; urgency=high + + * New upstream release + * SECURITY: Fix major security issue with init.php which allowed anybody + to login as any user (including admin) with no password, by emulating + that Gallery was embedded + + -- Michael C. Schultheiss Tue, 1 Jun 2004 18:22:02 +0000 + +gallery (1.4.3-pl1-2) unstable; urgency=low + + * This release is dedicated in memory of Chisako Uyehara + * gallery.config: Move webserver debconf question out of + if block (Closes: #249824) + * l10n updates: + + Add Catalan translation of debconf templates (Thanks to + Aleix Badia i Bosch. Closes: #248711) + + Add Dutch translation of debconf templates (Thanks to + Luk Claes. Closes: #251398) + + -- Michael C. Schultheiss Fri, 28 May 2004 18:07:45 +0000 + +gallery (1.4.3-pl1-1) unstable; urgency=low + + * New upstream release (Closes: #247717) + * debian/postrm: Don't attempt to remove /etc/apache/conf.d if it's + empty (Closes: #247187) + * debian/control: Depend on debconf (>= 0.2.26) (clear up Lintian warning) + + -- Michael C. Schultheiss Thu, 6 May 2004 15:45:47 +0000 + +gallery (1.4.3-1) unstable; urgency=low + + * New upstream release (Closes: #244905) + * Change ownership of /usr/share/gallery/docs/images/step2setup.gif + to root:root (Closes: #244515) + * debian/control: + + move libapache2-mod-php4 to end of php dependencies + + Remove wwwconfig-common from dependencies + * Make postinst and postrm more robust (Closes: #168550, #244403) + + -- Michael C. Schultheiss Tue, 20 Apr 2004 15:58:19 +0000 + +gallery (1.4.2-2) unstable; urgency=low + + * debian/control: add libapache2-mod-php4 to php dependency + possibility (Closes: #240757) + * debian/README.Debian: upstream README is not compresses - reference + uncompressed README (Closes: #235027) + + -- Michael C. Schultheiss Mon, 29 Mar 2004 03:55:57 +0000 + +gallery (1.4.2-1) unstable; urgency=low + + * New upstream release (Closes: #232410) + + -- Michael C. Schultheiss Thu, 12 Feb 2004 21:22:56 +0000 + +gallery (1.4.1-5) unstable; urgency=low + + * Fix GALLERY_BASEDIR paths in setup/check_mail.php, + setup/diagnostics.php, setup/phpinfo.php and + setup/session_test.php. setup/backup_albums.php was not updated + since it is supposed to be manually moved to /usr/share/gallery/ by + the admin. (Closes: #228620) + * util.php: Update validate_email regexp to allow + in e-mail + addresses (Closes: #229398) + + -- Michael C. Schultheiss Mon, 2 Feb 2004 18:44:11 +0000 + +gallery (1.4.1-4) unstable; urgency=high + + * SECURITY: Fix remote access vulnerability in init.php and + setup/init.php (Closes: #229611) + * Tone down the configure.sh nagging (Closes: #228423) + + -- Michael C. Schultheiss Sun, 25 Jan 2004 11:37:46 -0500 + +gallery (1.4.1-3) unstable; urgency=low + + * Version.php: $gallery->version = '1.4.1-debian3'; + (Bump debian version - forgot to do so for 1.4.1-2) + + -- Michael C. Schultheiss Wed, 10 Dec 2003 11:09:41 -0500 + +gallery (1.4.1-2) unstable; urgency=low + + * debian/gallery.templates: + + Remove first person, add missing periods (Thanks to + Christian Perrier - Closes: #223312) + + Clean up wording + * debian/po/fr.po: Update French translation of debconf templates + (Thanks to Christian Perrier.) + * debian/rules: Add binary-arch (Thanks to + Santiago Vila - Closes: #223235) + * util.php: Fix skin screenshot URL generator (Closes: #223339) + + -- Michael C. Schultheiss Wed, 10 Dec 2003 10:49:48 -0500 + +gallery (1.4.1-1) unstable; urgency=low + + * New upstream release (Closes: #223031) + * Ask whether to update httpd.conf (Closes: #153955, #221694) + + -- Michael C. Schultheiss Fri, 05 Dec 2003 20:10:45 -0500 + +gallery (1.4-4) unstable; urgency=high + + * This release is dedicated in memory of David E. Schultheiss. + * SECURITY: Fix remote access vulnerability in + setup/index.php (Closes: #215597) + + -- Michael C. Schultheiss Mon, 20 Oct 2003 10:14:18 -0500 + +gallery (1.4-3) unstable; urgency=low + + * Fix minor typo in debconf templates + (Thanks to Christian Perrier. Closes: #213241) + + * debian/control: Recommend libjpeg-progs + (Thanks to Jochen Stiepel. Closes: #212724) + + -- Michael C. Schultheiss Mon, 29 Sep 2003 19:02:21 +0000 + +gallery (1.4-2) unstable; urgency=low + + * util.php: Fix image rotation problem (Upstream fix released as 1.4-pl1) + * debian/rules: Fix lintian warnings + + -- Michael C. Schultheiss Sat, 13 Sep 2003 21:12:05 -0500 + +gallery (1.4-1) unstable; urgency=low + + * New upstream release (Closes: #210617) + + From upstream changelog: + 2003-07-28 Joan McGalliard 1.3.5-cvs-b56 + + * Gallery is now multilanguage. Administrators and users will have + access to languages as provided in language packs. (Closes: #174935) + + * debian/control: + + Add apache2 to apache depends possibility (Closes: #205386) + + Update Standards version (no changes necessary) + + -- Michael C. Schultheiss Fri, 12 Sep 2003 11:42:54 -0500 + +gallery (1.3.4-3) unstable; urgency=high + + * SECURITY: Fix XSS security hole in the search code, caused by a typo + in search.php + + -- Michael C. Schultheiss Mon, 28 Jul 2003 22:57:31 +0000 + +gallery (1.3.4-2) unstable; urgency=low + + * Switch to gettext-based debconf templates, add French translation of + debconf templates (Thanks to Christian Perrier. Closes: #200116) + * debian/control: + + Bump debhelper version in Build-Depends-Indep + + Update Standards version (no changes necessary) + * setup/backup_albums.php: Fix paths of tar and gzip, default to tgz + backups (Thanks to Olivier Berger. Closes: #201535) + * setup/check_imagemagick.php: Fix path of config.php (Closes: #184906) + + -- Michael C. Schultheiss Wed, 16 Jul 2003 18:07:19 -0500 + +gallery (1.3.4-1) unstable; urgency=low + + * New upstream release (Closes: #197919) + + From upstream changelog: + 2003-05-23 Beckett Madden-Woods 1.3.4-cvs-b36 + + * Added "jpeg" to acceptable image tag list (alongside + "jpg"). (Closes: #193929) + + * debian/control: + + Recommend imagemagick (Closes: #175303) + + Depend on php4 | php4-cgi (Closes: #179326) + + Depend on debconf + + update Standards version + + * Add debconf prompts about upgrade procedure and album format + change (Closes: #179770) + + -- Michael C. Schultheiss Wed, 18 Jun 2003 11:45:58 -0500 + +gallery (1.3.3-4) unstable; urgency=low + + * New maintainer (Closes: #174566, #188355) + + * debian/control: Change maintainer address, update Policy + + -- Michael C. Schultheiss Thu, 10 Apr 2003 12:20:38 -0500 + +gallery (1.3.3-3) unstable; urgency=low + + * Reset the urgency to low. + + -- Steve Kemp Fri, 31 Jan 2003 21:40:14 +0000 + +gallery (1.3.3-2) unstable; urgency=high + + * New maintainer (fixes #174566) + + -- Steve Kemp Fri, 31 Jan 2003 21:35:14 +0000 + +gallery (1.3.3-1) unstable; urgency=high + + * New upstream version + * SECURITY: fixes accidental re-introduction of cross site scripting + vulnerability + * change wording of README.Debian to clarify login username/password + (thanks Jameson C. Burt) + + -- Adam Lazur Sat, 28 Dec 2002 15:40:34 -0500 + +gallery (1.3.2-1) unstable; urgency=low + + * New upstream version + + -- Adam Lazur Sun, 15 Dec 2002 22:30:42 -0500 + +gallery (1.3.1-3) unstable; urgency=high + + * Really fix path issues with setup (closes: #158064) + + -- Adam Lazur Mon, 26 Aug 2002 20:14:27 -0400 + +gallery (1.3.1-2) unstable; urgency=high + + * Fix path for required files in setup/write.inc (closes: #158064) + + -- Adam Lazur Sat, 24 Aug 2002 15:51:26 -0400 + +gallery (1.3.1-1) unstable; urgency=low + + * New upstream version + + -- Adam Lazur Mon, 5 Aug 2002 10:39:37 -0400 + +gallery (1.3-3) unstable; urgency=high + + * SECURITY: add GALLERY_BASEDIR fix to captionator.php as well + + -- Adam Lazur Thu, 1 Aug 2002 09:17:18 -0400 + +gallery (1.3-2) unstable; urgency=high + + * SECURITY: fix from upstream CVS to stop remote command execution by + passing $GALLERY_BASEDIR var. + + -- Adam Lazur Wed, 31 Jul 2002 11:03:28 -0400 + +gallery (1.3-1) unstable; urgency=low + + * New upstream version (closes: #149310) + + * Show Album Tree - turn this on in the config wizard and the albums + page will show all of the nested albums. + + * View All Comments - the album owner can now view all comments in each + album. + + * The Slideshow - You can now view an entire album as a smooth + transitioning slide show. - submitted by Jacob Redding + + * The Captionator - edit many captions at once + + * Thumbnail wrapper customization - You can now easily manage the look + of the thumbnail images on the album pages and the main Gallery page. + + * bug fixes and UI cleanup. + * preserve exif information at all times (closes: #125748) + + -- Adam Lazur Sun, 9 Jun 2002 23:02:42 -0400 + +gallery (1.2.5-6) unstable; urgency=high + + * add apache-perl to apache depends possibility (closes: #140750) + * add a Recommends for jhead (closes: #140801) + * integrate upstream patch (and fix) for photo delete bug (closes: #141355) + * move unzip to Recommends + + -- Adam Lazur Wed, 10 Apr 2002 22:27:11 -0400 + +gallery (1.2.5-5) unstable; urgency=high + + * delete photos by name instead of by id to avoid stale submission bug which + may result in the wrong photo being deleted (closes: #135457) + + -- Adam Lazur Mon, 18 Mar 2002 22:04:02 -0500 + +gallery (1.2.5-4) unstable; urgency=low + + * add links for customizations in html_wrap dir to point to /etc/gallery + + -- Adam Lazur Wed, 19 Dec 2001 14:58:52 -0500 + +gallery (1.2.5-3) unstable; urgency=medium + + * Remove failure for not finding ppmtogif if netpbm-nonfree is not installed + (closes: bug#125756) + + -- Adam Lazur Wed, 19 Dec 2001 00:01:48 -0500 + +gallery (1.2.5-2) unstable; urgency=low + + * Fix typo in netpbm-nonfree in Suggests field + * Add lintian override for directory perms on /var/lib/gallery/setup + * make it arch all instead of arch any (doh) + + -- Adam Lazur Thu, 13 Dec 2001 11:04:02 -0500 + +gallery (1.2.5-1) unstable; urgency=low + + * Initial Release (closes: bug#120205) + + -- Adam Lazur Mon, 10 Dec 2001 14:10:11 -0500 + --- gallery-1.5.10.dfsg.orig/debian/rules +++ gallery-1.5.10.dfsg/debian/rules @@ -0,0 +1,75 @@ +#!/usr/bin/make -f + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +DESTDIR=$(CURDIR)/debian/gallery +GDIR=$(DESTDIR)/usr/share/gallery +GCONFDIR=$(DESTDIR)/etc/gallery +GVARDIR=$(DESTDIR)/var/lib/gallery + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + dh_clean + +install: + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + dh_installdebconf + +# commands to install the files into debian/gallery. + install -m 755 -d $(GDIR) + install -m 755 -d $(GCONFDIR) + install -m 755 -d $(GVARDIR) + install -m 755 -d $(DESTDIR)/usr/share/lintian/overrides + install -m 755 -d $(GVARDIR)/setup + install -m 755 -o www-data -d $(GVARDIR)/albums + install -m 755 secure.sh configure.sh $(GDIR) + install -m 644 manifest.inc $(GDIR) + install -m 644 *.php $(GDIR) + for dir in * ; do \ + if [ -d "$$dir" ]; then \ + case "$$dir" in \ + CVS|setup|debian) \ + echo "skipping dir $$dir" \ + ;; \ + *) \ + cp -ar $$dir $(GDIR)/$$dir ; \ + find $(GDIR)/$$dir -type f -exec chmod 644 {} \; ;\ + find $(GDIR)/$$dir -type f -exec chown root:root {} \; ;\ + esac \ + fi \ + done + install -m 644 setup/* setup/.??* $(GVARDIR)/setup + install -m 755 po/*.sh po/*.pl $(GDIR)/po + install -m 644 debian/apache.conf $(GCONFDIR) + install -m 644 debian/gallery.lintian.override $(DESTDIR)/usr/share/lintian/overrides/gallery + rm -rf $(GDIR)/classes/XML_HTMLSax3/*.txt + +build: +# Build architecture-dependent files here. +binary-arch: install +# We have nothing to do by default. + +# Build architecture-independent files here. +binary-indep: install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs ChangeLog + dh_link + dh_fixperms -Xalbums -Xsetup + dh_compress + dh_installdebconf -pgallery + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep +.PHONY: clean binary-indep install --- gallery-1.5.10.dfsg.orig/debian/apache.conf +++ gallery-1.5.10.dfsg/debian/apache.conf @@ -0,0 +1,21 @@ +# $Id: apache.conf,v 1.2 2001/12/07 14:57:57 laz Exp $ + +#Alias /gallery /usr/share/gallery +#Alias /albums /var/lib/gallery/albums + + +Options FollowSymLinks +AllowOverride Limit Options FileInfo + + +Order allow,deny +Deny from all + + + + +# some people prefer a simple URL like http://gallery.example.com +# +# DocumentRoot /usr/share/gallery +# ServerName gallery.example.com +# --- gallery-1.5.10.dfsg.orig/debian/README.Debian +++ gallery-1.5.10.dfsg/debian/README.Debian @@ -0,0 +1,65 @@ +gallery for Debian +------------------ + + +/etc/gallery/apache.conf +------------------------ + +/etc/gallery/apache.conf contains apache configuration snippets that +with recommended configuration. The default /gallery alias has been +commented out. Uncomment this alias and restart apache to enable the +alias. + +/etc/gallery/apache.conf also includes a FilesMatch block that disallows +certain file extensions from being displayed. The default CSS files +(/usr/share/gallery/css/*.css.default) get blocked by this FilesMatch block. + + + +CONFIGURATION +------------- + +Gallery is configured through a web-based configurator. Quick steps to +configure gallery are: + 1. as root, run /usr/share/gallery/configure.sh + 2. Go to your gallery URL with a browser + (e.g. http://www.example.com/gallery/index.php) + 3. configure using the web interface and save configuration + 4. as root, run /usr/share/gallery/secure.sh + + +You can now login as the administrator, and add pictures to your website +http://www.example.com/gallery by clicking "login" in the upper right corner. +At the prompt, enter: + Username: admin + Password: the-password-you-entered-during-configuration + +See /usr/share/doc/gallery/README for more instructions on configuring +gallery (you may also want to read the DEBIAN CHANGES section as well). + + +DEBIAN CHANGES +-------------- + +The following changes have been made to the upstream gallery source for the +Debian package. + +Functional/Layout Changes: + + . files symlinked into other portions of the fs for FHS compliance: + + gallery/setup -> /var/lib/gallery/setup + gallery/.htaccess -> /etc/gallery/htaccess + gallery/config.php -> /etc/gallery/config.php + + . changes to setup.sh and configure.sh to work with debian config scheme + + +PHP SETUP +--------- + +The default PHP setup in Debian sets memory_limit to 8 megabytes (8M). +If you work with a relatively large set of images (several hundred or more) +you may need to update the memory_limit in your php.ini. + + -- Michael C. Schultheiss Tue, 15 Aug 2006 17:26:31 +0000 --- gallery-1.5.10.dfsg.orig/debian/postinst +++ gallery-1.5.10.dfsg/debian/postinst @@ -0,0 +1,105 @@ +#!/bin/sh + +set -e + +. /usr/share/debconf/confmodule +db_version 2.0 || [ $? -lt 30 ] + + +if [ "$1" = "configure" ]; then + + db_get gallery/webserver + webservers="$RET" + restart="" + + for webserver in $webservers; do + webserver=${webserver%,} + test -x /usr/sbin/$webserver || continue + + case "$webserver" in + apache|apache-perl|apache-ssl) + if [ -x /usr/sbin/modules-config ]; then + if [ -f /usr/lib/apache/1.3/libphp4.so ]; then + if ! grep -qs "^LoadModule php4_module " /etc/$webserver/modules.conf; then + modules-config $webserver enable mod_php4 + fi + elif [ -f /usr/lib/apache/1.3/libphp3.so ]; then + if ! grep -qs "^LoadModule php3_module " /etc/$webserver/modules.conf; then + modules-config $webserver enable mod_php3 + fi + else + if [ -f /usr/lib/apache/1.3/mod_actions.so ]; then + if ! grep -qs "^LoadModule action_module " /etc/$webserver/modules.conf; then + modules-config $webserver enable mod_actions + fi + fi + if [ -f /usr/lib/apache/1.3/mod_cgi.so ]; then + if ! grep -qs "^LoadModule cgi_module " /etc/$webserver/modules.conf; then + modules-config $webserver enable mod_cgi + fi + fi + fi + fi + if grep -qs "^Include /etc/gallery/apache.conf" /etc/$webserver/httpd.conf; then + mv -f /etc/$webserver/httpd.conf /etc/$webserver/httpd.conf.old.gallery + grep -v "^Include /etc/gallery/apache.conf" /etc/$webserver/httpd.conf.old.gallery \ + > /etc/$webserver/httpd.conf + fi + if ! grep -qs "^Include /etc/$webserver/conf.d" /etc/$webserver/httpd.conf; then + cp -f /etc/$webserver/httpd.conf /etc/$webserver/httpd.conf.old.gallery + echo "Include /etc/$webserver/conf.d" >> /etc/$webserver/httpd.conf + fi + if [ -f /etc/$webserver/httpd.conf.old.gallery ]; then + mv -f /etc/$webserver/httpd.conf.old.gallery /etc/$webserver/httpd.conf.old + fi + mkdir -p /etc/$webserver/conf.d + ;; + apache2) + if [ -d /etc/$webserver/mods-enabled ]; then + if [ ! -f /etc/$webserver/mods-enabled/actions.load -a ! -h /etc/$webserver/mods-enabled/actions.load ]; then + ln -s /etc/$webserver/mods-available/actions.load /etc/$webserver/mods-enabled/actions.load + fi + if [ -f /etc/apache2/mods-available/php4.load ]; then + if [ ! -f /etc/$webserver/mods-enabled/php4.load -a ! -h /etc/$webserver/mods-enabled/php4.load ]; then + ln -s /etc/$webserver/mods-available/php4.load /etc/$webserver/mods-enabled/php4.load + fi + else + if [ ! -f /etc/$webserver/mods-enabled/cgi.load -a ! -h /etc/$webserver/mods-enabled/cgi.load ]; then + ln -s /etc/$webserver/mods-available/cgi.load /etc/$webserver/mods-enabled/cgi.load + fi + fi + fi + ;; + esac + + case "$webserver" in + apache|apache-perl|apache-ssl|apache2) + test -d /etc/$webserver/conf.d || continue + if [ ! -f /etc/$webserver/conf.d/gallery -a ! -h /etc/$webserver/conf.d/gallery ]; then + ln -s /etc/gallery/apache.conf /etc/$webserver/conf.d/gallery + fi + db_reset gallery/restart || true + db_subst gallery/restart webserver "$webserver" + db_input high gallery/restart || true + db_go + db_get gallery/restart + if [ "$RET" = "true" ]; then + restart="$restart $webserver" + fi + ;; + esac + done + + db_stop + + for webserver in $restart; do + webserver=${webserver%,} + if [ -x /usr/sbin/invoke-rc.d ]; then + invoke-rc.d $webserver restart + else + /etc/init.d/$webserver restart + fi + done +fi + +#DEBHELPER# --- gallery-1.5.10.dfsg.orig/debian/gallery.config +++ gallery-1.5.10.dfsg/debian/gallery.config @@ -0,0 +1,13 @@ +#!/bin/bash + +set -e + +action=$1 +version=$2 + +# Source debconf library. +. /usr/share/debconf/confmodule +db_version 2.0 || [ 0 -lt 30 ] + + db_input medium gallery/webserver || true + db_go --- gallery-1.5.10.dfsg.orig/debian/gallery.lintian.override +++ gallery-1.5.10.dfsg/debian/gallery.lintian.override @@ -0,0 +1,2 @@ +gallery: non-standard-dir-perm var/lib/gallery/setup/ 0700 != 0755 +gallery: copyright-refers-to-problematic-php-license --- gallery-1.5.10.dfsg.orig/debian/postrm +++ gallery-1.5.10.dfsg/debian/postrm @@ -0,0 +1,61 @@ +#! /bin/sh + +set -e + +if [ -f /usr/share/debconf/confmodule ]; then + . /usr/share/debconf/confmodule + db_version 2.0 || [ $? -lt 30 ] +fi + +if [ "$1" = "purge" ]; then + + db_get gallery/reconfigure || true + + for websvrs in apache apache-perl apache-ssl apache2; do + rm -f /etc/$websvrs/conf.d/gallery + done + + webservers="$RET" + restart="" + + for webserver in $webservers; do + webserver=${webserver%,} + + case "$webserver" in + apache|apache-perl|apache-ssl|apache2) + rm -f /etc/$webserver/conf.d/gallery + test -x /usr/sbin/$webserver || continue + db_reset gallery/restart || true + db_subst gallery/restart webserver "$webserver" || true + db_input high gallery/restart || true + db_go || true + db_get gallery/restart-webserver || true + if [ "$RET" = "true" ]; then + restart="$restart $webserver" + fi + ;; + esac + done + + rm -f /etc/gallery/config.php /etc/gallery/htaccess + rmdir --ignore-fail-on-non-empty /etc/gallery || true +fi + +if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then + . /usr/share/debconf/confmodule + db_purge +fi + +if [ "$1" = "purge" ]; then + for webserver in $restart; do + webserver=${webserver%,} + if [ -x /usr/sbin/invoke-rc.d ]; then + invoke-rc.d $webserver restart + else + /etc/init.d/$webserver restart + fi + done +fi + + +#DEBHELPER# --- gallery-1.5.10.dfsg.orig/debian/compat +++ gallery-1.5.10.dfsg/debian/compat @@ -0,0 +1 @@ +5 --- gallery-1.5.10.dfsg.orig/debian/gallery.templates +++ gallery-1.5.10.dfsg/debian/gallery.templates @@ -0,0 +1,16 @@ +Template: gallery/webserver +Type: multiselect +Choices: apache, apache-ssl, apache-perl, apache2 +Default: apache, apache-ssl, apache-perl, apache2 +_Description: Which web server would you like to reconfigure automatically: + If you do not select a web server to reconfigure automatically, gallery + will not be usable until you reconfigure your webserver to enable + gallery. + +Template: gallery/restart +Type: boolean +Default: false +_Description: Should ${webserver} be restarted? + Remember that in order to activate the new configuration + ${webserver} has to be restarted. You can also restart ${webserver} by + manually executing invoke-rc.d ${webserver} restart. --- gallery-1.5.10.dfsg.orig/debian/watch +++ gallery-1.5.10.dfsg/debian/watch @@ -0,0 +1,8 @@ +# $Id: watch,v 1.2 2002/12/28 07:24:18 laz Exp $ +# watchfile for use with uscan +# +version=3 +# Similarly, the upstream part of the Debian version number can be +# mangled: +opts=dversionmangle=s/\.dfsg\.\d+$// \ + http://sf.net/gallery/gallery-(.+)\.tar\.gz --- gallery-1.5.10.dfsg.orig/debian/po/es.po +++ gallery-1.5.10.dfsg/debian/po/es.po @@ -0,0 +1,78 @@ +# gallery po-debconf translation to Spanish +# Copyright (C) 2005, 2007, 2009 Software in the Public Interest +# This file is distributed under the same license as the gallery package. +# +# Changes: +# - Initial translation +# César Gómez Martín +# +# - Revision +# Rudy Godoy Guillén , 2007 +# +# - Updates +# Francisco Javier Cuadrado , 2009 +# +# Traductores, si no conocen el formato PO, merece la pena leer la +# documentación de gettext, especialmente las secciones dedicadas a este +# formato, por ejemplo ejecutando: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Equipo de traducción al español, por favor, lean antes de traducir +# los siguientes documentos: +# +# - El proyecto de traducción de Debian al español +# http://www.debian.org/intl/spanish/ +# especialmente las notas de traducción en +# http://www.debian.org/intl/spanish/notas +# +# - La guía de traducción de po's de debconf: +# /usr/share/doc/po-debconf/README-trans +# o http://www.debian.org/intl/l10n/po-debconf/README-trans +# +msgid "" +msgstr "" +"Project-Id-Version: gallery 1.5.9-1.2\n" +"Report-Msgid-Bugs-To: gallery@packages.debian.org\n" +"POT-Creation-Date: 2008-10-22 07:13+0200\n" +"PO-Revision-Date: 2007-05-13 18:42-0500\n" +"Last-Translator: César Gómez Martín \n" +"Language-Team: Debian l10n Spanish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Description +#: ../gallery.templates:1001 +msgid "Which web server would you like to reconfigure automatically:" +msgstr "Qué servidor web le gustaría reconfigurar automáticamente:" + +#. Type: multiselect +#. Description +#: ../gallery.templates:1001 +msgid "" +"If you do not select a web server to reconfigure automatically, gallery will " +"not be usable until you reconfigure your webserver to enable gallery." +msgstr "" +"Si no selecciona un servidor web para que se reconfigure automáticamente, " +"gallery no podrá usarse hasta que reconfigure su servidor web para habilitar " +"gallery." + +#. Type: boolean +#. Description +#: ../gallery.templates:2001 +msgid "Should ${webserver} be restarted?" +msgstr "¿Desea reiniciar ${webserver}?" + +#. Type: boolean +#. Description +#: ../gallery.templates:2001 +msgid "" +"Remember that in order to activate the new configuration ${webserver} has to " +"be restarted. You can also restart ${webserver} by manually executing invoke-" +"rc.d ${webserver} restart." +msgstr "" +"Recuerde que para activar la nueva configuración se debe reiniciar " +"${webserver}. También puede reiniciar ${webserver} ejecutando manualmente " +"«invoke-rc.d ${webserver} restart»." --- gallery-1.5.10.dfsg.orig/debian/po/ru.po +++ gallery-1.5.10.dfsg/debian/po/ru.po @@ -0,0 +1,53 @@ +# translation of ru.po to Russian +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Yuri Kozlov , 2008. +msgid "" +msgstr "" +"Project-Id-Version: gallery NEW\n" +"Report-Msgid-Bugs-To: gallery@packages.debian.org\n" +"POT-Creation-Date: 2008-10-22 07:13+0200\n" +"PO-Revision-Date: 2008-10-26 08:31+0300\n" +"Last-Translator: Yuri Kozlov \n" +"Language-Team: Russian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. Type: multiselect +#. Description +#: ../gallery.templates:1001 +msgid "Which web server would you like to reconfigure automatically:" +msgstr "Веб-сервер для автоматический перенастройки:" + +#. Type: multiselect +#. Description +#: ../gallery.templates:1001 +msgid "" +"If you do not select a web server to reconfigure automatically, gallery will " +"not be usable until you reconfigure your webserver to enable gallery." +msgstr "" +"Если вы не выберете сервер для автоматической перенастройки, к gallery не " +"будет доступа, пока вы не выполните настройку вручную." + +#. Type: boolean +#. Description +#: ../gallery.templates:2001 +msgid "Should ${webserver} be restarted?" +msgstr "Перезапустить ${webserver}?" + +#. Type: boolean +#. Description +#: ../gallery.templates:2001 +msgid "" +"Remember that in order to activate the new configuration ${webserver} has to " +"be restarted. You can also restart ${webserver} by manually executing invoke-" +"rc.d ${webserver} restart." +msgstr "" +"Чтобы новые настройки начали действовать ${webserver} должен быть " +"перезапущен. Также, вы можете перезапустить ${webserver} вручную, выполнив " +"команду invoke-rc.d ${webserver} restart." --- gallery-1.5.10.dfsg.orig/debian/po/ar.po +++ gallery-1.5.10.dfsg/debian/po/ar.po @@ -0,0 +1,60 @@ +# translation of ar.po to Arabic +# translation of ar.po to +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans# +# Developers do not need to manually edit POT or PO files. +# +# Ossama M. Khayat, 2005. +# Ossama M. Khayat , 2008. +msgid "" +msgstr "" +"Project-Id-Version: ar\n" +"Report-Msgid-Bugs-To: gallery@packages.debian.org\n" +"POT-Creation-Date: 2008-10-22 07:13+0200\n" +"PO-Revision-Date: 2008-10-22 14:59+0300\n" +"Last-Translator: Ossama M. Khayat \n" +"Language-Team: Arabic \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: multiselect +#. Description +#: ../gallery.templates:1001 +msgid "Which web server would you like to reconfigure automatically:" +msgstr "أي خادم وب تودّ إعادة تهيئته تلقائياً:" + +#. Type: multiselect +#. Description +#: ../gallery.templates:1001 +msgid "" +"If you do not select a web server to reconfigure automatically, gallery will " +"not be usable until you reconfigure your webserver to enable gallery." +msgstr "" +"إن لم تقم باختيار خادم وب لإعادة تهيئته تلقائياً، فلكن تكون قادراً على استخدام " +"gallery حتى تقوم بإعادة تهيئة خادم الوب لتمكين gallery." + +#. Type: boolean +#. Description +#: ../gallery.templates:2001 +msgid "Should ${webserver} be restarted?" +msgstr "هل يجب إعادة تشغيل ${webserver}؟" + +#. Type: boolean +#. Description +#: ../gallery.templates:2001 +msgid "" +"Remember that in order to activate the new configuration ${webserver} has to " +"be restarted. You can also restart ${webserver} by manually executing invoke-" +"rc.d ${webserver} restart." +msgstr "" +"تذكر أنه كي تفعّل التهيئة الجديدة يجب إعادة تشغيل ${webserver}. يمكن أيضاً " +"إعادة تشغيل ${webserver} يدوياً بتنفيذ الأمر rc.d ${webserver} restart." --- gallery-1.5.10.dfsg.orig/debian/po/pt.po +++ gallery-1.5.10.dfsg/debian/po/pt.po @@ -0,0 +1,52 @@ +# translation of gallery_1.5.5-pl1-1.1 to Portuguese +# Copyright (C) 2007 Américo Monteiro +# This file is distributed under the same license as the gallery package. +# +# Américo Monteiro , 2007. +msgid "" +msgstr "" +"Project-Id-Version: gallery_1.5.5-pl1-1.1_templates\n" +"Report-Msgid-Bugs-To: gallery@packages.debian.org\n" +"POT-Creation-Date: 2008-10-22 07:13+0200\n" +"PO-Revision-Date: 2007-07-14 13:21+0100\n" +"Last-Translator: Américo Monteiro \n" +"Language-Team: Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: multiselect +#. Description +#: ../gallery.templates:1001 +msgid "Which web server would you like to reconfigure automatically:" +msgstr "Qual servidor web deseja reconfigurar automáticamente:" + +#. Type: multiselect +#. Description +#: ../gallery.templates:1001 +msgid "" +"If you do not select a web server to reconfigure automatically, gallery will " +"not be usable until you reconfigure your webserver to enable gallery." +msgstr "" +"Se você não seleccionar um servidor web para reconfigurar automáticamente, " +"gallery não será utilizável até que você reconfigure o seu servidor web para " +"activar gallery." + +#. Type: boolean +#. Description +#: ../gallery.templates:2001 +msgid "Should ${webserver} be restarted?" +msgstr "Deverá ${webserver} ser reiniciado?" + +#. Type: boolean +#. Description +#: ../gallery.templates:2001 +msgid "" +"Remember that in order to activate the new configuration ${webserver} has to " +"be restarted. You can also restart ${webserver} by manually executing invoke-" +"rc.d ${webserver} restart." +msgstr "" +"Lembre-se que para activar a nova configuração ${webserver} tem que ser " +"reiniciado. Você também pode reiniciar ${webserver} por executando " +"manualmente invoke-rc.d ${webserver} restart." --- gallery-1.5.10.dfsg.orig/debian/po/vi.po +++ gallery-1.5.10.dfsg/debian/po/vi.po @@ -0,0 +1,53 @@ +# Vietnamese Translation for Gallery. +# Copyright © 2009 Free Software Foundation, Inc. +# Clytie Siddall , 2005-2009. +# +msgid "" +msgstr "" +"Project-Id-Version: gallery 1.5.9-1.1\n" +"Report-Msgid-Bugs-To: gallery@packages.debian.org\n" +"POT-Creation-Date: 2008-10-22 07:13+0200\n" +"PO-Revision-Date: 2009-01-28 21:38+1030\n" +"Last-Translator: Clytie Siddall \n" +"Language-Team: Vietnamese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: LocFactoryEditor 1.8\n" + +#. Type: multiselect +#. Description +#: ../gallery.templates:1001 +msgid "Which web server would you like to reconfigure automatically:" +msgstr "Bạn muốn tự động cấu hình lại trình phục vụ Web nào?" + +#. Type: multiselect +#. Description +#: ../gallery.templates:1001 +msgid "" +"If you do not select a web server to reconfigure automatically, gallery will " +"not be usable until you reconfigure your webserver to enable gallery." +msgstr "" +"Nếu bạn không chọn một trình phục vụ Web cần tự động cấu hình lại, phần mềm " +"gallery vô ích đến khi bạn cấu hình lại trình phục vụ Web để hiệu lực " +"gallery." + +#. Type: boolean +#. Description +#: ../gallery.templates:2001 +msgid "Should ${webserver} be restarted?" +msgstr "Có nên khởi chạy lại trình phục vụ ${webserver} không?" + +#. Type: boolean +#. Description +#: ../gallery.templates:2001 +msgid "" +"Remember that in order to activate the new configuration ${webserver} has to " +"be restarted. You can also restart ${webserver} by manually executing invoke-" +"rc.d ${webserver} restart." +msgstr "" +"Ghi nhớ rằng để kích hoạt cấu hình mới, trình phục vụ ${webserver} cần phải " +"được khởi chạy lại. Bạn cũng có thể khởi chạy lại ${webserver} bằng cách tự " +"thực hiện câu lệnh:\n" +"invoke-rc.d ${webserver} restart." --- gallery-1.5.10.dfsg.orig/debian/po/sv.po +++ gallery-1.5.10.dfsg/debian/po/sv.po @@ -0,0 +1,59 @@ +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# Developers do not need to manually edit POT or PO files. +# , fuzzy +# +# +msgid "" +msgstr "" +"Project-Id-Version: gallery 1.5-2\n" +"Report-Msgid-Bugs-To: gallery@packages.debian.org\n" +"POT-Creation-Date: 2008-10-22 07:13+0200\n" +"PO-Revision-Date: 2008-11-02 22:28+0100\n" +"Last-Translator: Martin Bagge \n" +"Language-Team: Swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Swedish\n" +"X-Poedit-Country: Sweden\n" + +#. Type: multiselect +#. Description +#: ../gallery.templates:1001 +msgid "Which web server would you like to reconfigure automatically:" +msgstr "Ange webserver som du vill stlla in automatiskt:" + +#. Type: multiselect +#. Description +#: ../gallery.templates:1001 +msgid "" +"If you do not select a web server to reconfigure automatically, gallery will " +"not be usable until you reconfigure your webserver to enable gallery." +msgstr "" +"Om du inte valt en webserver att konfigurera automatiskt kan gallery inte " +"anvndas frrn du konfigurerat din webserver att anvnda gallery." + +#. Type: boolean +#. Description +#: ../gallery.templates:2001 +msgid "Should ${webserver} be restarted?" +msgstr "Ska ${webserver} startas om?" + +#. Type: boolean +#. Description +#: ../gallery.templates:2001 +msgid "" +"Remember that in order to activate the new configuration ${webserver} has to " +"be restarted. You can also restart ${webserver} by manually executing invoke-" +"rc.d ${webserver} restart." +msgstr "" +"Kom i hg att fr att aktivera den nya konfigurationen mste ${webserver} " +"startas om. Du kan ocks starta om {webserver} manuellt genom att kra " +"invoke-rc.d ${webserver} restart." --- gallery-1.5.10.dfsg.orig/debian/po/nl.po +++ gallery-1.5.10.dfsg/debian/po/nl.po @@ -0,0 +1,63 @@ +# Translation of gallery 1.5.4-2_templates.po to Debian l10n Dutch +# This file is distributed under the same license as the gallery package. +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans# +# Developers do not need to manually edit POT or PO files. +# +# Luk Claes , 2004 +# Kurt De Bree , 2006 +# This is an unofficial translation +# +msgid "" +msgstr "" +"Project-Id-Version: gallery 1.5.4-2_nl\n" +"Report-Msgid-Bugs-To: gallery@packages.debian.org\n" +"POT-Creation-Date: 2008-10-22 07:13+0200\n" +"PO-Revision-Date: 2006-09-19 17:50+0100\n" +"Last-Translator: Kurt De Bree \n" +"Language-Team: Debian l10n Dutch \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Description +#: ../gallery.templates:1001 +msgid "Which web server would you like to reconfigure automatically:" +msgstr "Welke webserver wilt u automatisch herconfigureren?:" + +#. Type: multiselect +#. Description +#: ../gallery.templates:1001 +msgid "" +"If you do not select a web server to reconfigure automatically, gallery will " +"not be usable until you reconfigure your webserver to enable gallery." +msgstr "" +"Als u geen webserver selecteert om automatisch te herconfigureren, dan zal " +"gallery niet bruikbaar zijn totdat u uw webserver herconfigureert om gallery " +"te activeren." + +#. Type: boolean +#. Description +#: ../gallery.templates:2001 +msgid "Should ${webserver} be restarted?" +msgstr "Moet ${webserver} worden herstart?" + +#. Type: boolean +#. Description +#: ../gallery.templates:2001 +msgid "" +"Remember that in order to activate the new configuration ${webserver} has to " +"be restarted. You can also restart ${webserver} by manually executing invoke-" +"rc.d ${webserver} restart." +msgstr "" +"Denk eraan dat om de nieuwe configuratie te activeren ${webserver} moet " +"worden herstart. U kunt ${webserver} ook herstarten door handmatig 'invoke-" +"rc.d ${webserver} restart' uit te voeren." --- gallery-1.5.10.dfsg.orig/debian/po/ja.po +++ gallery-1.5.10.dfsg/debian/po/ja.po @@ -0,0 +1,59 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +# +msgid "" +msgstr "" +"Project-Id-Version: gallery 1.5.4-2\n" +"Report-Msgid-Bugs-To: gallery@packages.debian.org\n" +"POT-Creation-Date: 2008-10-22 07:13+0200\n" +"PO-Revision-Date: 2006-11-24 13:52+0900\n" +"Last-Translator: Hideki Yamane (Debian-JP) \n" +"Language-Team: Japanese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Description +#: ../gallery.templates:1001 +msgid "Which web server would you like to reconfigure automatically:" +msgstr "どの web サーバを自動的に再設定するか:" + +#. Type: multiselect +#. Description +#: ../gallery.templates:1001 +msgid "" +"If you do not select a web server to reconfigure automatically, gallery will " +"not be usable until you reconfigure your webserver to enable gallery." +msgstr "" +"web サーバの自動再設定を選ばなかった場合、利用可能になるように設定し直すまで " +"gallery は使えません。" + +#. Type: boolean +#. Description +#: ../gallery.templates:2001 +msgid "Should ${webserver} be restarted?" +msgstr "${webserver} を再起動しますか?" + +#. Type: boolean +#. Description +#: ../gallery.templates:2001 +msgid "" +"Remember that in order to activate the new configuration ${webserver} has to " +"be restarted. You can also restart ${webserver} by manually executing invoke-" +"rc.d ${webserver} restart." +msgstr "" +"新しい設定を有効にするために ${webserver} を再起動する必要があるのを覚えてお" +"いてください。invoke-rc.d ${webserver} restart と手動で実行しても " +"${webserver} を再起動できます。" --- gallery-1.5.10.dfsg.orig/debian/po/pt_BR.po +++ gallery-1.5.10.dfsg/debian/po/pt_BR.po @@ -0,0 +1,56 @@ +# gallery Brazilian Portuguese translation +# Copyright (C) 2008 gallery's PACKAGE COPYRIGHT HOLDER +# This file is distributed under the same license as the gallery package. +# Fernando Ike de Oliveira , 2007. +# Eder L. Marques (frolic) , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: gallery_pt_BR\n" +"Report-Msgid-Bugs-To: gallery@packages.debian.org\n" +"POT-Creation-Date: 2008-10-22 07:13+0200\n" +"PO-Revision-Date: 2008-08-14 15:07-0300\n" +"Last-Translator: Eder L. Marques (frolic) \n" +"Language-Team: Brazilian Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"pt_BR utf-8\n" + +#. Type: multiselect +#. Description +#: ../gallery.templates:1001 +#, fuzzy +#| msgid "Which web server would you like to reconfigure automatically?" +msgid "Which web server would you like to reconfigure automatically:" +msgstr "Que servidor web você gostaria de reconfigurar automaticamente?" + +#. Type: multiselect +#. Description +#: ../gallery.templates:1001 +msgid "" +"If you do not select a web server to reconfigure automatically, gallery will " +"not be usable until you reconfigure your webserver to enable gallery." +msgstr "" +"Se você não selecionar um servidor web para ser reconfigurado " +"automaticamente, o gallery não será usável até você reconfigurar seu " +"servidor web para habilitá-lo." + +#. Type: boolean +#. Description +#: ../gallery.templates:2001 +msgid "Should ${webserver} be restarted?" +msgstr "Gostaria que seu ${webserver} fosse reiniciado?" + +#. Type: boolean +#. Description +#: ../gallery.templates:2001 +msgid "" +"Remember that in order to activate the new configuration ${webserver} has to " +"be restarted. You can also restart ${webserver} by manually executing invoke-" +"rc.d ${webserver} restart." +msgstr "" +"Lembre-se que para ativar a nova configuração o ${webserver} deve ser " +"reiniciado. Você também pode reiniciar o ${webserver} manualmente executando " +"invoke-rc.d ${webserver} restart." --- gallery-1.5.10.dfsg.orig/debian/po/eu.po +++ gallery-1.5.10.dfsg/debian/po/eu.po @@ -0,0 +1,52 @@ +# translation of gallery-eu.po to Euskara +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Piarres Beobide , 2008. +msgid "" +msgstr "" +"Project-Id-Version: gallery-eu\n" +"Report-Msgid-Bugs-To: gallery@packages.debian.org\n" +"POT-Creation-Date: 2008-10-22 07:13+0200\n" +"PO-Revision-Date: 2008-10-23 23:33+0200\n" +"Last-Translator: Piarres Beobide \n" +"Language-Team: Euskara \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: multiselect +#. Description +#: ../gallery.templates:1001 +msgid "Which web server would you like to reconfigure automatically:" +msgstr "Zein web zerbitzari nahi duzu automatikoki birkonfiguratu:" + +#. Type: multiselect +#. Description +#: ../gallery.templates:1001 +msgid "" +"If you do not select a web server to reconfigure automatically, gallery will " +"not be usable until you reconfigure your webserver to enable gallery." +msgstr "" +"Automatikoki birkonfiguratzeko web-zerbitzaririk hautatzen ez baduzu, " +"gallery ez da erabilgarri izango zure web-zerbitzaria gallery gaitzeko " +"konfiguratu arte." + +#. Type: boolean +#. Description +#: ../gallery.templates:2001 +msgid "Should ${webserver} be restarted?" +msgstr "${webserver} berrabiarazi egin behar al da?" + +#. Type: boolean +#. Description +#: ../gallery.templates:2001 +msgid "" +"Remember that in order to activate the new configuration ${webserver} has to " +"be restarted. You can also restart ${webserver} by manually executing invoke-" +"rc.d ${webserver} restart." +msgstr "" +"Gogoratu konfigurazio berriak eragin izan dezan ${webserver} berrabiarazi " +"egin behar dela. ${webserver} eskuz ere berrabiarazi dezakezu 'invoke-rc.d " +"${webserver} restart' exekutatuaz." --- gallery-1.5.10.dfsg.orig/debian/po/it.po +++ gallery-1.5.10.dfsg/debian/po/it.po @@ -0,0 +1,52 @@ +# ITALIAN TRANSLATION OF GALLERY'S.PO-DEBCONF FILE +# Copyright (C) 2008 THE GALLERY'S COPYRIGHT HOLDER +# This file is distributed under the same license as the gallery package. +# +# Vincenzo Campanella , 2008. +msgid "" +msgstr "" +"Project-Id-Version: it\n" +"Report-Msgid-Bugs-To: gallery@packages.debian.org\n" +"POT-Creation-Date: 2008-10-22 07:13+0200\n" +"PO-Revision-Date: 2008-10-22 13:34+0200\n" +"Last-Translator: Vincenzo Campanella \n" +"Language-Team: Italian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: multiselect +#. Description +#: ../gallery.templates:1001 +msgid "Which web server would you like to reconfigure automatically:" +msgstr "Server web che si desidera riconfigurare automaticamente:" + +#. Type: multiselect +#. Description +#: ../gallery.templates:1001 +msgid "" +"If you do not select a web server to reconfigure automatically, gallery will " +"not be usable until you reconfigure your webserver to enable gallery." +msgstr "" +"Se non viene selezionato alcun server web da riconfigurare automaticamente, " +"gallery non sarà utilizzabile, finché non si riconfigura il server web per " +"abilitare gallery." + +#. Type: boolean +#. Description +#: ../gallery.templates:2001 +msgid "Should ${webserver} be restarted?" +msgstr "Riavviare ${webserver}?" + +#. Type: boolean +#. Description +#: ../gallery.templates:2001 +msgid "" +"Remember that in order to activate the new configuration ${webserver} has to " +"be restarted. You can also restart ${webserver} by manually executing invoke-" +"rc.d ${webserver} restart." +msgstr "" +"Ricordarsi che, per attivare la nuova configurazione, ${webserver} deve " +"essere riavviato. È anche possibile riavviare ${webserver} manualmente, " +"eseguendo «invoke-rc.d ${webserver} restart»." --- gallery-1.5.10.dfsg.orig/debian/po/POTFILES.in +++ gallery-1.5.10.dfsg/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] gallery.templates --- gallery-1.5.10.dfsg.orig/debian/po/fr.po +++ gallery-1.5.10.dfsg/debian/po/fr.po @@ -0,0 +1,61 @@ +# translation of fr.po to French +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +# Christian Perrier , 2006. +msgid "" +msgstr "" +"Project-Id-Version: fr\n" +"Report-Msgid-Bugs-To: gallery@packages.debian.org\n" +"POT-Creation-Date: 2008-10-22 07:13+0200\n" +"PO-Revision-Date: 2006-09-01 20:04+0200\n" +"Last-Translator: Christian Perrier \n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: multiselect +#. Description +#: ../gallery.templates:1001 +msgid "Which web server would you like to reconfigure automatically:" +msgstr "Serveur web reconfigurer automatiquement:" + +#. Type: multiselect +#. Description +#: ../gallery.templates:1001 +msgid "" +"If you do not select a web server to reconfigure automatically, gallery will " +"not be usable until you reconfigure your webserver to enable gallery." +msgstr "" +"Si vous ne choisissez pas de serveur web reconfigurer automatiquement, " +"gallery ne sera pas immdiatement utilisable." + +#. Type: boolean +#. Description +#: ../gallery.templates:2001 +msgid "Should ${webserver} be restarted?" +msgstr "Faut-il redmarrer ${webserver}?" + +#. Type: boolean +#. Description +#: ../gallery.templates:2001 +msgid "" +"Remember that in order to activate the new configuration ${webserver} has to " +"be restarted. You can also restart ${webserver} by manually executing invoke-" +"rc.d ${webserver} restart." +msgstr "" +"Veuillez noter que, pour mettre en service la nouvelle configuration, " +"${webserver} doit tre redmarr. Vous pouvez effectuer ce redmarrage vous-" +"mme avec la commande invoke-rc.d ${webserver} restart." --- gallery-1.5.10.dfsg.orig/debian/po/zh_TW.po +++ gallery-1.5.10.dfsg/debian/po/zh_TW.po @@ -0,0 +1,50 @@ +# gallery po-deconf +# Copyright (C) 2008 Michael C. Schultheiss +# This file is distributed under the same license as the gallery package. +# Kanru Chen , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: 1.5.9-1\n" +"Report-Msgid-Bugs-To: gallery@packages.debian.org\n" +"POT-Creation-Date: 2008-10-22 07:13+0200\n" +"PO-Revision-Date: 2008-10-23 14:21+0800\n" +"Last-Translator: Kanru Chen \n" +"Language-Team: Debian-user in Chinese [Big5] \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Description +#: ../gallery.templates:1001 +msgid "Which web server would you like to reconfigure automatically:" +msgstr "您想要自動重新設定哪一個 web server:" + +#. Type: multiselect +#. Description +#: ../gallery.templates:1001 +msgid "" +"If you do not select a web server to reconfigure automatically, gallery will " +"not be usable until you reconfigure your webserver to enable gallery." +msgstr "" +"如果您沒有選擇要自動重新設定哪一個 web server,則直到您手動重新設定您的 web " +"server 啟用 gallery 之前,您無法使用 gallery。" + +#. Type: boolean +#. Description +#: ../gallery.templates:2001 +msgid "Should ${webserver} be restarted?" +msgstr "重新啟動 ${webserver} 嗎?" + +#. Type: boolean +#. Description +#: ../gallery.templates:2001 +msgid "" +"Remember that in order to activate the new configuration ${webserver} has to " +"be restarted. You can also restart ${webserver} by manually executing invoke-" +"rc.d ${webserver} restart." +msgstr "" +"提醒您,為了要使 ${webserver} 套用新的設定,您必須重新啟動 ${webserver}。您也" +"可以手動執行 invoke-rc.d ${webserver} restart 來重新啟動。" --- gallery-1.5.10.dfsg.orig/debian/po/de.po +++ gallery-1.5.10.dfsg/debian/po/de.po @@ -0,0 +1,61 @@ +# translation of gallery_1.5.4-2_de.po to German +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans# +# Developers do not need to manually edit POT or PO files. +# +# Erik Schanze , 2004-2006. +msgid "" +msgstr "" +"Project-Id-Version: gallery_1.5.4-2_de\n" +"Report-Msgid-Bugs-To: gallery@packages.debian.org\n" +"POT-Creation-Date: 2006-10-19 00:31+0200\n" +"PO-Revision-Date: 2006-11-18 22:38+0100\n" +"Last-Translator: Erik Schanze \n" +"Language-Team: German \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: multiselect +#. Description +#: ../gallery.templates:1001 +msgid "Which web server would you like to reconfigure automatically:" +msgstr "Welchen Web-Server automatisch anpassen:" + +#. Type: multiselect +#. Description +#: ../gallery.templates:1001 +msgid "" +"If you do not select a web server to reconfigure automatically, gallery will " +"not be usable until you reconfigure your webserver to enable gallery." +msgstr "" +"Wenn Sie keinen Web-Server für für die Anpassung an Gallery auswählen, wird " +"Gallery nicht funktionieren, bis Sie einen Web-Server für Gallery " +"eingerichtet haben." + +#. Type: boolean +#. Description +#: ../gallery.templates:2001 +msgid "Should ${webserver} be restarted?" +msgstr "Soll ${webserver} neu gestartet werden?" + +#. Type: boolean +#. Description +#: ../gallery.templates:2001 +msgid "" +"Remember that in order to activate the new configuration ${webserver} has to " +"be restarted. You can also restart ${webserver} by manually executing invoke-" +"rc.d ${webserver} restart." +msgstr "" +"Damit die neuen Einstellungen übernommen werden, muss ${webserver} neu " +"gestartet werden. Sie können ${webserver} auch selbst mit dem Kommando " +"'invoke-rc.d ${webserver} restart' neu starten." + --- gallery-1.5.10.dfsg.orig/debian/po/templates.pot +++ gallery-1.5.10.dfsg/debian/po/templates.pot @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: gallery@packages.debian.org\n" +"POT-Creation-Date: 2008-10-22 07:13+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Description +#: ../gallery.templates:1001 +msgid "Which web server would you like to reconfigure automatically:" +msgstr "" + +#. Type: multiselect +#. Description +#: ../gallery.templates:1001 +msgid "" +"If you do not select a web server to reconfigure automatically, gallery will " +"not be usable until you reconfigure your webserver to enable gallery." +msgstr "" + +#. Type: boolean +#. Description +#: ../gallery.templates:2001 +msgid "Should ${webserver} be restarted?" +msgstr "" + +#. Type: boolean +#. Description +#: ../gallery.templates:2001 +msgid "" +"Remember that in order to activate the new configuration ${webserver} has to " +"be restarted. You can also restart ${webserver} by manually executing invoke-" +"rc.d ${webserver} restart." +msgstr "" --- gallery-1.5.10.dfsg.orig/debian/po/ca.po +++ gallery-1.5.10.dfsg/debian/po/ca.po @@ -0,0 +1,96 @@ +# gallery (debconf) translation to Catalan. +# Copyright (C) 2004 Free Software Foundation, Inc. +# Aleix Badia i Bosch , 2004 +# +msgid "" +msgstr "" +"Project-Id-Version: gallery_1.4.2-1_templates\n" +"Report-Msgid-Bugs-To: gallery@packages.debian.org\n" +"POT-Creation-Date: 2008-10-22 07:13+0200\n" +"PO-Revision-Date: 2004-03-20 19:46GMT\n" +"Last-Translator: Aleix Badia i Bosch \n" +"Language-Team: Catalan \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Description +#: ../gallery.templates:1001 +#, fuzzy +#| msgid "Which web server would you like to reconfigure automatically?" +msgid "Which web server would you like to reconfigure automatically:" +msgstr "Quin servidor web voleu tornar a configurar automàticament?" + +#. Type: multiselect +#. Description +#: ../gallery.templates:1001 +msgid "" +"If you do not select a web server to reconfigure automatically, gallery will " +"not be usable until you reconfigure your webserver to enable gallery." +msgstr "" +"Si no seleccioneu un servidor web per tornar a configurar-lo automàticament, " +"no podreu utilitzar el gallery fins que no configureu el servidor web per " +"habilitar-lo." + +#. Type: boolean +#. Description +#: ../gallery.templates:2001 +msgid "Should ${webserver} be restarted?" +msgstr "Voleu que el ${webserver} es reiniciï?" + +#. Type: boolean +#. Description +#: ../gallery.templates:2001 +msgid "" +"Remember that in order to activate the new configuration ${webserver} has to " +"be restarted. You can also restart ${webserver} by manually executing invoke-" +"rc.d ${webserver} restart." +msgstr "" +"Recordeu que per activar la nova configuració heu de reiniciar el " +"${webserver}. També podeu reiniciar el ${webserver} executant manualment " +"invoke-rc.d ${webserver} restart." + +#~ msgid "Must run configure.sh" +#~ msgstr "Heu d'executar el configure.sh" + +#~ msgid "" +#~ "Gallery must be configured before you can use it. First, you must put it " +#~ "into configuration mode by running /usr/share/gallery/configure.sh." +#~ msgstr "" +#~ "El Gallery s'ha de configurar abans d'utilitzar-lo. Primer, l'heu de " +#~ "posar en mode de configuració executant el fitxer /usr/share/gallery/" +#~ "configure.sh." + +#~ msgid "" +#~ "Then start the configuration wizard (For example: http://www.example.com/" +#~ "gallery/setup/index.php)." +#~ msgstr "" +#~ "Llavors, heu d'iniciar l'assistent de configuració (per exemple http://" +#~ "www.example.com/gallery/setup/index.php)." + +#~ msgid "" +#~ "After you use the configuration wizard, you must put gallery into secure " +#~ "mode by running /usr/share/gallery/secure.sh Gallery won't run if it is " +#~ "not in secure mode." +#~ msgstr "" +#~ "Després d'utilitzar l'assistent de configuració, heu de posar el gallery " +#~ "en mode segur executant el fitxer /usr/share/gallery/secure.sh. El " +#~ "Gallery no s'executarà si no és en mode segur." + +#~ msgid "Album data format has changed" +#~ msgstr "S'ha modificat el format de les dades de l'àlbum" + +#~ msgid "" +#~ "The gallery album data format has changed. You need to upgrade your " +#~ "albums by clicking on the individual albums in your gallery or by logging " +#~ "into your gallery as an administrator and clicking the upgrade album " +#~ "links next to each album. You can also upgrade all of your albums from " +#~ "the upgrade album link." +#~ msgstr "" +#~ "S'ha modificat el format de les dades de l'àlbum del gallery. Heu " +#~ "d'actualitzar els àlbums prement individualment els àlbums de la galeria, " +#~ "o entrant a la galeria com a administrador i prement els enllaços " +#~ "d'actualització dels àlbums del costat de cada àlbum. També podeu " +#~ "actualitzar tots els àlbums a través de l'enllaç d'actualització de " +#~ "l'àlbum." --- gallery-1.5.10.dfsg.orig/debian/po/cs.po +++ gallery-1.5.10.dfsg/debian/po/cs.po @@ -0,0 +1,58 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: gallery\n" +"Report-Msgid-Bugs-To: gallery@packages.debian.org\n" +"POT-Creation-Date: 2008-10-22 07:13+0200\n" +"PO-Revision-Date: 2008-10-24 21:40+0200\n" +"Last-Translator: Miroslav Kure \n" +"Language-Team: Czech \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Description +#: ../gallery.templates:1001 +msgid "Which web server would you like to reconfigure automatically:" +msgstr "Který webový server chcete nastavit automaticky:" + +#. Type: multiselect +#. Description +#: ../gallery.templates:1001 +msgid "" +"If you do not select a web server to reconfigure automatically, gallery will " +"not be usable until you reconfigure your webserver to enable gallery." +msgstr "" +"Pokud nevyberete webový server, který se má automaticky nastavit, nebude " +"gallery fungovat do té doby, dokud jí ve svém webovém serveru nepovolíte." + +#. Type: boolean +#. Description +#: ../gallery.templates:2001 +msgid "Should ${webserver} be restarted?" +msgstr "Má se ${webserver} restartovat?" + +#. Type: boolean +#. Description +#: ../gallery.templates:2001 +msgid "" +"Remember that in order to activate the new configuration ${webserver} has to " +"be restarted. You can also restart ${webserver} by manually executing invoke-" +"rc.d ${webserver} restart." +msgstr "" +"Pamatujte, že aby se nové nastavení aktivovalo, musí se ${webserver} " +"restartovat. ${webserver} také můžete restartovat ručně příkazem invoke-rc.d " +"${webserver} restart." --- gallery-1.5.10.dfsg.orig/setup/confirm.inc +++ gallery-1.5.10.dfsg/setup/confirm.inc @@ -53,7 +53,7 @@ ${str_replace('.', '', $outfile) . '_file'} = 0; } else { $error++; - $viewheader .= '
'. gallery_error(sprintf(gTranslate('config', "File %s in your Gallery mainfolder is not writable by the webserver. - chmod it 777 before proceeding. See %s for more details."), "$outfile", $docs)) . "

\n"; + $viewheader .= '
'. gallery_error(sprintf(gTranslate('config', "File %s in your Gallery mainfolder is not writable by the webserver. - run %s before proceeding. See %s for more details."), "$outfile", "/usr/share/gallery/configure.sh",$docs)) . "

\n"; ${str_replace('.', '', $outfile) . '_file'} = 1; } } --- gallery-1.5.10.dfsg.orig/setup/write.inc +++ gallery-1.5.10.dfsg/setup/write.inc @@ -207,7 +207,7 @@ $message .= "

"; } else { - $message = gTranslate('config', "We highly suggest that you run 'secure.sh', or chmod your .htaccess and config.php to 644 for increased security."); + $message = gTranslate('config', "We highly suggest that you run '/usr/share/gallery/secure.sh' for increased security."); } } --- gallery-1.5.10.dfsg.orig/lib/url.php +++ gallery-1.5.10.dfsg/lib/url.php @@ -38,7 +38,7 @@ $currentFile = __FILE__; if ( $currentFile == '/usr/share/gallery/lib/url.php') { /* We assume Gallery runs on as Debian Package */ - define ("GALLERY_CONFDIR", "/etc/gallery"); + define ("GALLERY_CONFDIR", "/usr/share/gallery"); define ("GALLERY_SETUPDIR", "/var/lib/gallery/setup"); } else {