[Dbconfig-common-changes] [dbconfig-common] r251 - in branches/sqlite: . debian debian/po dpkg internal

Matt Brown mattb-guest at costa.debian.org
Sat Jun 10 08:15:34 CEST 2006


Author: mattb-guest
Date: 2006-06-10 06:14:06 +0000 (Sat, 10 Jun 2006)
New Revision: 251

Modified:
   branches/sqlite/dbconfig-generate-include
   branches/sqlite/dbconfig-load-include
   branches/sqlite/debian/dbconfig-common.postrm
   branches/sqlite/debian/dbconfig-common.templates
   branches/sqlite/debian/po/ca.po
   branches/sqlite/debian/po/cs.po
   branches/sqlite/debian/po/da.po
   branches/sqlite/debian/po/de.po
   branches/sqlite/debian/po/es.po
   branches/sqlite/debian/po/eu.po
   branches/sqlite/debian/po/fr.po
   branches/sqlite/debian/po/it.po
   branches/sqlite/debian/po/nl.po
   branches/sqlite/debian/po/pt.po
   branches/sqlite/debian/po/pt_BR.po
   branches/sqlite/debian/po/sv.po
   branches/sqlite/debian/po/templates.pot
   branches/sqlite/debian/po/vi.po
   branches/sqlite/dpkg/common
   branches/sqlite/dpkg/config
   branches/sqlite/internal/sqlite
Log:
* Improve SQLite support to allow specification of location owner and 
  permissions
  - Default location (dbc_basepath) to /var/lib/dbconfig-common 
  - Default owner/group (dbc_owner) to root:root
  - Default permissions (dbc_mode) to 644
* Add low priority debconf questions to allow administrator to override
* All paramters are hintable via the config script as per usual
* dbc_basepath, dbc_owner and dbc_mode are only used for filesystem based
  database types (currently on SQLite)
* Modify -load-include and -generate-include scripts to deal with new basepath
  parameter.


Modified: branches/sqlite/dbconfig-generate-include
===================================================================
--- branches/sqlite/dbconfig-generate-include	2006-06-10 04:07:53 UTC (rev 250)
+++ branches/sqlite/dbconfig-generate-include	2006-06-10 06:14:06 UTC (rev 251)
@@ -8,6 +8,7 @@
 dbserver_varname="dbserver"
 dbport_varname="dbport"
 dbtype_varname="dbtype"
+basepath_varname="basepath"
 
 # the version will always be < the package version
 VERSION="$Revision$"
@@ -32,6 +33,7 @@
 	-f|--format       use the given output format (default: sh)
 	-o|--options		provide output-format-specific options
 	-a|--all          include all information in output (default)
+	-b|--basepath     include the basepath in the output
 	-d|--dbname       include the dbname in the output
 	-p|--dbpass       include the dbpass in the output
 	-s|--dbserver     include the dbserver in the output
@@ -56,7 +58,7 @@
 EOF
 }
 
-TEMP=`getopt -o af:hd::m:o:p::u::s::t::C::O:P::Uv --long help,dbuser::,dbname::,dbpass::,dbport::,dbserver::,dbtype::,output:,format:,options:,comment::,owner:,mode:,ucf,version -n $0 -- "$@"`
+TEMP=`getopt -o af:hb::d::m:o:p::u::s::t::C::O:P::Uv --long help,dbuser::,dbname::,dbpass::,dbport::,dbserver::,dbtype::,basepath::,output:,format:,options:,comment::,owner:,mode:,ucf,version -n $0 -- "$@"`
 
 if [ $? != 0 ] ; then usage >&2 ; exit 1 ; fi
 
@@ -68,6 +70,13 @@
 		use_all="yes"
 		shift
 	;;
+	-b|--basepath)
+		use_basepath="yes"
+		if [ ! -z "$2" ]; then
+			basepath_varname="$2"
+		fi
+		shift 2
+	;;
 	-d|--dbname)
 		use_dbname="yes"
 		if [ ! -z "$2" ]; then
@@ -157,9 +166,10 @@
 done
 
 # if they asked for all vars, or didn't ask for anything (which defaults to all)
-if [ "$use_all" ] || [ ! "${use_dbuser}${use_dbpass}${use_dbname}${use_dbserver}${use_dbtype}${use_dbport}" ]; then
+if [ "$use_all" ] || [ ! "${use_dbuser}${use_dbpass}${use_basepath}${use_dbname}${use_dbserver}${use_dbtype}${use_dbport}" ]; then
 		use_dbuser="yes"
 		use_dbpass="yes"
+		use_basepath="yes"
 		use_dbname="yes"
 		use_dbserver="yes"
 		use_dbport="yes"
@@ -214,6 +224,7 @@
 	# now determine which things should be commented out if any
 	[ ! "$dbc_dbuser" ] && comment_dbuser="${comment_string}"
 	[ ! "$dbc_dbpass" ] && comment_dbpass="${comment_string}"
+	[ ! "$dbc_basepath" ] && comment_basepath="${comment_string}"
 	[ ! "$dbc_dbname" ] && comment_dbname="${comment_string}"
 	[ ! "$dbc_dbserver" ] && comment_dbserver="${comment_string}"
 	[ ! "$dbc_dbport" ] && comment_dbport="${comment_string}"
@@ -238,6 +249,7 @@
 EOF
 	[ "$use_dbuser" ] && echo "${comment_dbuser}$dbuser_varname='$dbc_dbuser'"
 	[ "$use_dbpass" ] && echo "${comment_dbpass}$dbpass_varname='$dbc_dbpass'"
+	[ "$use_basepath" ] && echo "${comment_basepath}$basepath_varname='$dbc_basepath'"
 	[ "$use_dbname" ] && echo "${comment_dbname}$dbname_varname='$dbc_dbname'"
 	[ "$use_dbserver" ] && echo "${comment_dbserver}$dbserver_varname='$dbc_dbserver'"
 	[ "$use_dbport" ] && echo "${comment_dbport}$dbport_varname='$dbc_dbport'"
@@ -261,6 +273,7 @@
 EOF
 	[ "$use_dbuser" ] && echo "${comment_dbuser}\$$dbuser_varname='$dbc_dbuser';"
 	[ "$use_dbpass" ] && echo "${comment_dbpass}\$$dbpass_varname='$dbc_dbpass';"
+	[ "$use_basepath" ] && echo "${comment_basepath}\$$basepath_varname='$dbc_basepath';"
 	[ "$use_dbname" ] && echo "${comment_dbname}\$$dbname_varname='$dbc_dbname';"
 	[ "$use_dbserver" ] && echo "${comment_dbserver}\$$dbserver_varname='$dbc_dbserver';"
 	[ "$use_dbport" ] && echo "${comment_dbport}\$$dbport_varname='$dbc_dbport';"
@@ -286,6 +299,7 @@
 EOF
 	[ "$use_dbuser" ] && echo "${comment_dbuser}our \$$dbuser_varname='$dbc_dbuser';"
 	[ "$use_dbpass" ] && echo "${comment_dbpass}our \$$dbpass_varname='$dbc_dbpass';"
+	[ "$use_basepath" ] && echo "${comment_basepath}our \$$basepath_varname='$dbc_basepath';"
 	[ "$use_dbname" ] && echo "${comment_dbname}our \$$dbname_varname='$dbc_dbname';"
 	[ "$use_dbserver" ] && echo "${comment_dbserver}our \$$dbserver_varname='$dbc_dbserver';"
 	[ "$use_dbport" ] && echo "${comment_dbport}our \$$dbport_varname='$dbc_dbport';"
@@ -314,6 +328,7 @@
 EOF
 	[ "$use_dbuser" ] && echo " ${comment_dbuser}#define $dbuser_varname \"$dbc_dbuser\";"
 	[ "$use_dbpass" ] && echo " ${comment_dbpass}#define $dbpass_varname \"$dbc_dbpass\";"
+	[ "$use_basepath" ] && echo "${comment_basepath}#define $basepath_varname \"$dbc_basepath\";"
 	[ "$use_dbname" ] && echo " ${comment_dbname}#define $dbname_varname \"$dbc_dbname\";"
 	[ "$use_dbserver" ] && echo " ${comment_dbserver}#define $dbserver_varname \"$dbc_dbserver\";"
 	[ "$use_dbport" ] && echo " ${comment_dbport}#define $dbport_varname \"$dbc_dbport\";"
@@ -340,6 +355,7 @@
 	cat << EOF > "$sedtmp"
 s/^\(.*\)_DBC_DBUSER_/${comment_dbuser}\1$dbc_dbuser/g
 s/^\(.*\)_DBC_DBPASS_/${comment_dbpass}\1$dbc_dbpass/g
+s/^\(.*\)_DBC_BASEPATH_/${comment_basepath}\1$dbc_basepath/g
 s/^\(.*\)_DBC_DBNAME_/${comment_dbname}\1$dbc_dbname/g
 s/^\(.*\)_DBC_DBSERVER_/${comment_dbserver}\1$dbc_dbserver/g
 s/^\(.*\)_DBC_DBPORT_/${comment_dbport}\1$dbc_dbport/g

Modified: branches/sqlite/dbconfig-load-include
===================================================================
--- branches/sqlite/dbconfig-load-include	2006-06-10 04:07:53 UTC (rev 250)
+++ branches/sqlite/dbconfig-load-include	2006-06-10 06:14:06 UTC (rev 251)
@@ -7,6 +7,7 @@
 dbserver_varname="dbserver"
 dbport_varname="dbport"
 dbtype_varname="dbtype"
+basepath_varname="basepath"
 
 # the version will always be < the package version
 VERSION="$Revision$"
@@ -29,6 +30,7 @@
 	infile            use the given dbconfig-common config file as input
 	-f|--format       use the given output format (must be specified)
 	-a|--all          include all information in output (default)
+	-b|--basepath     include the basepath in the output
 	-d|--dbname       include the dbname in the output
 	-p|--dbpass       include the dbpass in the output
 	-s|--dbserver     include the dbserver in the output
@@ -47,7 +49,7 @@
 EOF
 }
 
-TEMP=`getopt -o af:hd::p::u::s::t::P::v -l help,dbuser::,dbname::,dbpass::,dbport::,dbserver::,dbtype::,format:,version -n $0 -- "$@"`
+TEMP=`getopt -o af:hb::d::p::u::s::t::P::v -l help,dbuser::,dbname::,dbpass::,dbport::,dbserver::,dbtype::,basepath::,format:,version -n $0 -- "$@"`
 
 if [ $? != 0 ] ; then usage >&2 ; exit 1 ; fi
 
@@ -59,6 +61,13 @@
 		use_all="yes"
 		shift
 	;;
+	-b|--basepath)
+		use_basepath="yes"
+		if [ ! -z "$2" ]; then
+			basepath_varname="$2"
+		fi
+		shift 2
+	;;
 	-d|--dbname)
 		use_dbname="yes"
 		if [ ! -z "$2" ]; then
@@ -125,9 +134,10 @@
 done
 
 # if they asked for all vars, or didn't ask for anything (which defaults to all)
-if [ "$use_all" ] || [ ! "${use_dbuser}${use_dbpass}${use_dbname}${use_dbserver}${use_dbtype}${use_dbport}" ]; then
+if [ "$use_all" ] || [ ! "${use_dbuser}${use_dbpass}${use_basepath}${use_dbname}${use_dbserver}${use_dbtype}${use_dbport}" ]; then
 		use_dbuser="yes"
 		use_dbpass="yes"
+		use_basepath="yes"
 		use_dbname="yes"
 		use_dbserver="yes"
 		use_dbport="yes"
@@ -162,6 +172,7 @@
 	[ "$use_dbpass" ] && cat << EOF
 $dbpass_varname='$dbc_dbpass'
 EOF
+	[ "$use_basepath" ] && echo "$basepath_varname='$dbc_basepath'"
 	[ "$use_dbname" ] && echo "$dbname_varname='$dbc_dbname'"
 	[ "$use_dbserver" ] && echo "$dbserver_varname='$dbc_dbserver'"
 	[ "$use_dbport" ] && echo "$dbport_varname='$dbc_dbport'"
@@ -179,6 +190,7 @@
 
 	\$use_dbuser="$use_dbuser";
 	\$use_dbpass="$use_dbpass";
+	\$use_basepath="$use_basepath";
 	\$use_dbname="$use_dbname";
 	\$use_dbserver="$use_dbserver";
 	\$use_dbport="$use_dbport";
@@ -188,6 +200,8 @@
 		echo "dbc_dbuser='\$$dbuser_varname';\n";
 	if(!empty(\$use_dbpass) && isset(\$$dbpass_varname)) 
 		echo "dbc_dbpass='\$$dbpass_varname';\n";
+	if(!empty(\$use_basepath) && isset(\$$basepath_varname)) 
+		echo "dbc_basepath='\$$basepath_varname';\n";
 	if(!empty(\$use_dbname) && isset(\$$dbname_varname)) 
 		echo "dbc_dbname='\$$dbname_varname';\n";
 	if(!empty(\$use_dbserver) && isset(\$$dbserver_varname)) 
@@ -204,6 +218,7 @@
 ( cat $inputfile; cat << EOF ) | perl
 print "dbc_dbuser='\$$dbuser_varname'\n" if("$use_dbuser");
 print "dbc_dbpass='\$$dbpass_varname'\n" if("$use_dbpass");
+print "dbc_basepath='\$$basepath_varname'\n" if("$use_basepath");
 print "dbc_dbname='\$$dbname_varname'\n" if("$use_dbname");
 print "dbc_dbserver='\$$dbserver_varname'\n" if("$use_dbserver");
 print "dbc_dbport='\$$dbport_varname'\n" if("$use_dbport");

Modified: branches/sqlite/debian/dbconfig-common.postrm
===================================================================
--- branches/sqlite/debian/dbconfig-common.postrm	2006-06-10 04:07:53 UTC (rev 250)
+++ branches/sqlite/debian/dbconfig-common.postrm	2006-06-10 06:14:06 UTC (rev 251)
@@ -5,6 +5,8 @@
 if [ $1 = "purge" ]; then
 	rm -f /etc/dbconfig-common/config || true
 	rmdir /etc/dbconfig-common || true
+	# This might fail if a user has chosen not to purge a database
+	rmdir --ignore-fail-on-non-empty /var/lib/dbconfig-common || true
 fi
 
 #DEBHELPER#

Modified: branches/sqlite/debian/dbconfig-common.templates
===================================================================
--- branches/sqlite/debian/dbconfig-common.templates	2006-06-10 04:07:53 UTC (rev 250)
+++ branches/sqlite/debian/dbconfig-common.templates	2006-06-10 06:14:06 UTC (rev 251)
@@ -206,6 +206,29 @@
  objects to be created by this installation.  This user will have
  complete freedom to insert, change or delete data in the database.
 
+Template: dbconfig-common/db/basepath
+Type: string
+_Description: ${dbvendor} storage directory for ${pkg}:
+ Please provide a path where the ${dbvendor} database file for ${pkg} 
+ should be installed into. 
+
+Template: dbconfig-common/db/owner
+Type: string
+_Description: ${dbvendor} database ownership for ${pkg}:
+ Please specify the filesystem ownership that you would like to set on the
+ ${dbvendor} database for ${pkg}. 
+ .
+ This should be specified in the format owner:group.
+
+Template: dbconfig-common/db/mode
+Type: string
+_Description: ${dbvendor} database permissions for ${pkg}:
+ Please specify the filesystem permissions that you would like to set on the
+ ${dbvendor} database for ${pkg}. 
+ .
+ This should be specified in octal format as would be passed to the chmod 
+ unix command. eg. 0644.
+
 Template: dbconfig-common/mysql/method
 Type: select
 __Choices: unix socket, tcp/ip

Modified: branches/sqlite/debian/po/ca.po
===================================================================
--- branches/sqlite/debian/po/ca.po	2006-06-10 04:07:53 UTC (rev 250)
+++ branches/sqlite/debian/po/ca.po	2006-06-10 06:14:06 UTC (rev 251)
@@ -16,8 +16,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: dbconfigcommon1.8.6\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-05-24 21:48+0200\n"
+"Report-Msgid-Bugs-To: seanius at debian.org\n"
+"POT-Creation-Date: 2006-06-10 18:10+1200\n"
 "PO-Revision-Date: 2005-10-19 22:16+0200\n"
 "Last-Translator: Miguel Gea Milvaques\n"
 "Language-Team:  <ca at li.org>\n"
@@ -522,15 +522,76 @@
 "altres objectes que seran creats per aquesta instal·lació. Aquest usuari "
 "tindrà permissos per inserir, canviar o esborrar dades a la base de dades."
 
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:211
+#, fuzzy
+msgid "${dbvendor} storage directory for ${pkg}:"
+msgstr "Introduïu el nom d 'usuari ${dbvendor} per ${pkg}:"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:211
+#, fuzzy
+msgid ""
+"Please provide a path where the ${dbvendor} database file for ${pkg}  should "
+"be installed into."
+msgstr ""
+"Introduïu un nom per la base de dades ${dbvendor} que utilitzarà ${pkg}."
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+#, fuzzy
+msgid "${dbvendor} database ownership for ${pkg}:"
+msgstr "Introduïu el nom de la base de dades ${dbvendor} per ${pkg}:"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+msgid ""
+"Please specify the filesystem ownership that you would like to set on the "
+"${dbvendor} database for ${pkg}."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+msgid "This should be specified in the format owner:group."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+#, fuzzy
+msgid "${dbvendor} database permissions for ${pkg}:"
+msgstr "Introduïu el nom de la base de dades ${dbvendor} per ${pkg}:"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+msgid ""
+"Please specify the filesystem permissions that you would like to set on the "
+"${dbvendor} database for ${pkg}."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+msgid ""
+"This should be specified in octal format as would be passed to the chmod  "
+"unix command. eg. 0644."
+msgstr ""
+
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:213
+#: ../dbconfig-common.templates:236
 msgid "Connection method for MySQL database of ${pkg}:"
 msgstr "Mètode de connexió per la base de dades MySQL del ${pkg}:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:213
+#: ../dbconfig-common.templates:236
 msgid ""
 "By default, ${pkg} will be configured to use a MySQL server through a local "
 "unix socket (this provides the best performance). However, if you would like "
@@ -544,13 +605,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:221
+#: ../dbconfig-common.templates:244
 msgid "MySQL application password for ${pkg}:"
 msgstr "Introduïu la contrasenya de l'aplicació MySQL per ${pkg}:"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:221
+#: ../dbconfig-common.templates:244
 msgid ""
 "Please provide a password for ${pkg} to register with the database server.  "
 "If left blank, a random password will be generated for you."
@@ -560,7 +621,7 @@
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:229
+#: ../dbconfig-common.templates:252
 msgid ""
 "For MySQL, this is almost always \"root\".  Note that this is NOT the same "
 "as the UNIX login 'root'."
@@ -570,7 +631,7 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:239
+#: ../dbconfig-common.templates:262
 msgid ""
 "What is the password for the administrative account with which this package "
 "should create its MySQL database and user?"
@@ -580,31 +641,31 @@
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "unix socket"
 msgstr ""
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "tcp/ip"
 msgstr ""
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "tcp/ip + ssl"
 msgstr ""
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:247
+#: ../dbconfig-common.templates:270
 msgid "Connection method for PostgreSQL database of ${pkg}:"
 msgstr "Mètode de connexió per la base de dades PostgreSQL per ${pkg}:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:247
+#: ../dbconfig-common.templates:270
 msgid ""
 "By default, ${pkg} will be configured to use a PostgreSQL server through a "
 "local unix socket (this provides the best performance). However, if you "
@@ -618,13 +679,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:255
+#: ../dbconfig-common.templates:278
 msgid "PostgreSQL application password for ${pkg}:"
 msgstr "Introduïu la contrasenya de l'aplicació PostgreSQL per ${pkg}:"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:255
+#: ../dbconfig-common.templates:278
 msgid ""
 "Please provide a password for ${pkg} to register with the database server.  "
 "If left blank, a random password will be generated for you. PostgreSQL "
@@ -637,13 +698,13 @@
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:264
+#: ../dbconfig-common.templates:287
 msgid "Name of your database's administrative user:"
 msgstr "Introduïu l'usuari administrador de la vostra base de dades:"
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:264
+#: ../dbconfig-common.templates:287
 msgid ""
 "What is the name of the account with which this package should perform "
 "administrative actions?  This user is the one which is able to create new "
@@ -655,13 +716,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:271
+#: ../dbconfig-common.templates:294
 msgid "Password of your database's administrative user:"
 msgstr "Introduïu la contrasenya del usuari administrador de la base de dades:"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:271
+#: ../dbconfig-common.templates:294
 msgid ""
 "What is the password for the account with which this package should perform "
 "administrative actions?  (For a normal Debian PostgreSQL installation, a "
@@ -675,13 +736,13 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:281
+#: ../dbconfig-common.templates:304
 msgid "Method for authenticating PostgreSQL administrator:"
 msgstr "Introduïu el mètode d'autenticació per l'administrador PostgreSQL:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:281
+#: ../dbconfig-common.templates:304
 msgid ""
 "PostgreSQL servers provide several different mechanisms for authenticating "
 "connections.  Please select what method the administrative user should use "
@@ -693,25 +754,25 @@
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:302
+#: ../dbconfig-common.templates:325
 msgid "ident"
 msgstr ""
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:302
+#: ../dbconfig-common.templates:325
 msgid "password"
 msgstr ""
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid "Method for authenticating PostgreSQL user:"
 msgstr "Introduïu el mètode d'autenticació per l'usuari PostgreSQL:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "PostgreSQL servers provide several different mechanisms for authenticating "
 "connections.  Please select what method the database user should use when "
@@ -723,7 +784,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"ident\" authentication on the local machine, the server will check "
 "that the owner of the unix socket is allowed to connect."
@@ -733,7 +794,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"ident\" authentication to remote hosts, RFC 1413 based ident is used "
 "(note this can be considered a security risk)."
@@ -744,7 +805,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"password\" authentication, a password will be passed to the server "
 "for use with some authentication backend (such as \"md5\" or \"pam\").  Note "
@@ -758,7 +819,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "For a default Debian PostgreSQL installation running on the same host, you "
 "probably want \"ident\"."
@@ -768,13 +829,13 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid "Choose a different PostgreSQL connection method?"
 msgstr "Voleu escollir un mètode diferent de connexió a PostgreSQL?"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid ""
 "Unfortunately, it seems that the database connection method you have "
 "selected for ${pkg} will not work, because it requires the existence of a "
@@ -786,7 +847,7 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid ""
 "If you would like to reconfigure your application to use a different method, "
 "you should choose this option.  If you know for certain that this method "
@@ -800,13 +861,13 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:337
+#: ../dbconfig-common.templates:360
 msgid "Change PostgreSQL configuration automatically?"
 msgstr "Voleu canviar la configuració de PostgreSQL automàticament?"
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:337
+#: ../dbconfig-common.templates:360
 msgid ""
 "It has been determined that the database installation for ${pkg} can not be "
 "automatically accomplished without making changes to your PostgreSQL "
@@ -823,13 +884,13 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid "Revert PostgreSQL configuration automatically?"
 msgstr "Voleu desfer la configuració de PostgreSQL automàticament?"
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid ""
 "As ${pkg} is now being removed, it may no longer be necessary to have an "
 "access control entry in your PostgreSQL server's configuration. While "
@@ -849,19 +910,19 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid "${pghbaline}"
 msgstr "${pghbaline}"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:363
+#: ../dbconfig-common.templates:386
 msgid "Please change /etc/postgresql/pg_hba.conf"
 msgstr "Canvieu el /etc/postgresql/pg_hba.conf"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:363
+#: ../dbconfig-common.templates:386
 msgid ""
 "To get the database for package ${pkg} bootstrapped you have to edit the "
 "configuration of your PostgreSQL server. You may be able to find help in the "
@@ -873,19 +934,19 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:370
+#: ../dbconfig-common.templates:393
 msgid "PostgreSQL does not support empty passwords."
 msgstr "PostgreSQL no suporta contrassenyes buides."
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:374
+#: ../dbconfig-common.templates:397
 msgid "dbconfig-common will attempt to load existing settings"
 msgstr "dbconfig-common intentarà carregar els paràmetres existents"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:374
+#: ../dbconfig-common.templates:397
 msgid ""
 "dbconfig-common will now attempt to load the pre-existing settings of "
 "${pkg}.  Later, these settings will be validated, and if there is any "

Modified: branches/sqlite/debian/po/cs.po
===================================================================
--- branches/sqlite/debian/po/cs.po	2006-06-10 04:07:53 UTC (rev 250)
+++ branches/sqlite/debian/po/cs.po	2006-06-10 06:14:06 UTC (rev 251)
@@ -14,8 +14,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: dbconfig-common\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-05-24 21:48+0200\n"
+"Report-Msgid-Bugs-To: seanius at debian.org\n"
+"POT-Creation-Date: 2006-06-10 18:10+1200\n"
 "PO-Revision-Date: 2006-05-06 18:25+0200\n"
 "Last-Translator: Miroslav Kure <kurem at debian.cz>\n"
 "Language-Team: Czech <debian-l10n-czech at lists.debian.org>\n"
@@ -498,15 +498,75 @@
 "během instalace. Zadaný uživatel bude mít také úplnou kontrolu nad "
 "vkládáním, úpravou a mazáním dat v databázi."
 
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:211
+#, fuzzy
+msgid "${dbvendor} storage directory for ${pkg}:"
+msgstr "Uživatelské jméno v ${dbvendor} pro ${pkg}:"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:211
+#, fuzzy
+msgid ""
+"Please provide a path where the ${dbvendor} database file for ${pkg}  should "
+"be installed into."
+msgstr "Zadejte jméno ${dbvendor} databáze, které bude ${pkg} používat."
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+#, fuzzy
+msgid "${dbvendor} database ownership for ${pkg}:"
+msgstr "Jméno ${dbvendor} databáze pro ${pkg}:"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+msgid ""
+"Please specify the filesystem ownership that you would like to set on the "
+"${dbvendor} database for ${pkg}."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+msgid "This should be specified in the format owner:group."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+#, fuzzy
+msgid "${dbvendor} database permissions for ${pkg}:"
+msgstr "Jméno ${dbvendor} databáze pro ${pkg}:"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+msgid ""
+"Please specify the filesystem permissions that you would like to set on the "
+"${dbvendor} database for ${pkg}."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+msgid ""
+"This should be specified in octal format as would be passed to the chmod  "
+"unix command. eg. 0644."
+msgstr ""
+
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:213
+#: ../dbconfig-common.templates:236
 msgid "Connection method for MySQL database of ${pkg}:"
 msgstr "Způsob připojení k MySQL databázi pro balík ${pkg}:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:213
+#: ../dbconfig-common.templates:236
 msgid ""
 "By default, ${pkg} will be configured to use a MySQL server through a local "
 "unix socket (this provides the best performance). However, if you would like "
@@ -520,13 +580,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:221
+#: ../dbconfig-common.templates:244
 msgid "MySQL application password for ${pkg}:"
 msgstr "Aplikační MySQL heslo pro balík ${pkg}:"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:221
+#: ../dbconfig-common.templates:244
 msgid ""
 "Please provide a password for ${pkg} to register with the database server.  "
 "If left blank, a random password will be generated for you."
@@ -536,7 +596,7 @@
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:229
+#: ../dbconfig-common.templates:252
 msgid ""
 "For MySQL, this is almost always \"root\".  Note that this is NOT the same "
 "as the UNIX login 'root'."
@@ -546,7 +606,7 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:239
+#: ../dbconfig-common.templates:262
 msgid ""
 "What is the password for the administrative account with which this package "
 "should create its MySQL database and user?"
@@ -556,31 +616,31 @@
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "unix socket"
 msgstr "unixový socket"
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "tcp/ip"
 msgstr "tcp/ip"
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "tcp/ip + ssl"
 msgstr "tcp/ip + ssl"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:247
+#: ../dbconfig-common.templates:270
 msgid "Connection method for PostgreSQL database of ${pkg}:"
 msgstr "Způsob připojení k PostgreSQL databázi pro balík ${pkg}:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:247
+#: ../dbconfig-common.templates:270
 msgid ""
 "By default, ${pkg} will be configured to use a PostgreSQL server through a "
 "local unix socket (this provides the best performance). However, if you "
@@ -594,13 +654,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:255
+#: ../dbconfig-common.templates:278
 msgid "PostgreSQL application password for ${pkg}:"
 msgstr "Aplikační PostgreSQL heslo pro balík ${pkg}:"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:255
+#: ../dbconfig-common.templates:278
 msgid ""
 "Please provide a password for ${pkg} to register with the database server.  "
 "If left blank, a random password will be generated for you. PostgreSQL "
@@ -612,13 +672,13 @@
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:264
+#: ../dbconfig-common.templates:287
 msgid "Name of your database's administrative user:"
 msgstr "Jméno administrativního databázového uživatele:"
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:264
+#: ../dbconfig-common.templates:287
 msgid ""
 "What is the name of the account with which this package should perform "
 "administrative actions?  This user is the one which is able to create new "
@@ -629,13 +689,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:271
+#: ../dbconfig-common.templates:294
 msgid "Password of your database's administrative user:"
 msgstr "Heslo administrativního databázového uživatele:"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:271
+#: ../dbconfig-common.templates:294
 msgid ""
 "What is the password for the account with which this package should perform "
 "administrative actions?  (For a normal Debian PostgreSQL installation, a "
@@ -648,13 +708,13 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:281
+#: ../dbconfig-common.templates:304
 msgid "Method for authenticating PostgreSQL administrator:"
 msgstr "Způsob autentizace administrátora PostgreSQL:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:281
+#: ../dbconfig-common.templates:304
 msgid ""
 "PostgreSQL servers provide several different mechanisms for authenticating "
 "connections.  Please select what method the administrative user should use "
@@ -666,25 +726,25 @@
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:302
+#: ../dbconfig-common.templates:325
 msgid "ident"
 msgstr "ident"
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:302
+#: ../dbconfig-common.templates:325
 msgid "password"
 msgstr "password"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid "Method for authenticating PostgreSQL user:"
 msgstr "Způsob autentizace uživatele PostgreSQL:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "PostgreSQL servers provide several different mechanisms for authenticating "
 "connections.  Please select what method the database user should use when "
@@ -696,7 +756,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"ident\" authentication on the local machine, the server will check "
 "that the owner of the unix socket is allowed to connect."
@@ -706,7 +766,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"ident\" authentication to remote hosts, RFC 1413 based ident is used "
 "(note this can be considered a security risk)."
@@ -716,7 +776,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"password\" authentication, a password will be passed to the server "
 "for use with some authentication backend (such as \"md5\" or \"pam\").  Note "
@@ -729,7 +789,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "For a default Debian PostgreSQL installation running on the same host, you "
 "probably want \"ident\"."
@@ -739,13 +799,13 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid "Choose a different PostgreSQL connection method?"
 msgstr "Zvolit jiný způsob připojení k PostgreSQL?"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid ""
 "Unfortunately, it seems that the database connection method you have "
 "selected for ${pkg} will not work, because it requires the existence of a "
@@ -756,7 +816,7 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid ""
 "If you would like to reconfigure your application to use a different method, "
 "you should choose this option.  If you know for certain that this method "
@@ -769,13 +829,13 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:337
+#: ../dbconfig-common.templates:360
 msgid "Change PostgreSQL configuration automatically?"
 msgstr "Změnit nastavení PostgreSQL automaticky?"
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:337
+#: ../dbconfig-common.templates:360
 msgid ""
 "It has been determined that the database installation for ${pkg} can not be "
 "automatically accomplished without making changes to your PostgreSQL "
@@ -792,13 +852,13 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid "Revert PostgreSQL configuration automatically?"
 msgstr "Vrátit nastavení PostgreSQL automaticky?"
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid ""
 "As ${pkg} is now being removed, it may no longer be necessary to have an "
 "access control entry in your PostgreSQL server's configuration. While "
@@ -818,19 +878,19 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid "${pghbaline}"
 msgstr "${pghbaline}"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:363
+#: ../dbconfig-common.templates:386
 msgid "Please change /etc/postgresql/pg_hba.conf"
 msgstr "Upravte prosím /etc/postgresql/pg_hba.conf"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:363
+#: ../dbconfig-common.templates:386
 msgid ""
 "To get the database for package ${pkg} bootstrapped you have to edit the "
 "configuration of your PostgreSQL server. You may be able to find help in the "
@@ -842,19 +902,19 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:370
+#: ../dbconfig-common.templates:393
 msgid "PostgreSQL does not support empty passwords."
 msgstr "PostgreSQL nepodporuje prázdná hesla."
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:374
+#: ../dbconfig-common.templates:397
 msgid "dbconfig-common will attempt to load existing settings"
 msgstr "dbconfig-common se pokusí nahrát stávající nastavení"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:374
+#: ../dbconfig-common.templates:397
 msgid ""
 "dbconfig-common will now attempt to load the pre-existing settings of "
 "${pkg}.  Later, these settings will be validated, and if there is any "

Modified: branches/sqlite/debian/po/da.po
===================================================================
--- branches/sqlite/debian/po/da.po	2006-06-10 04:07:53 UTC (rev 250)
+++ branches/sqlite/debian/po/da.po	2006-06-10 06:14:06 UTC (rev 251)
@@ -13,8 +13,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: dbconfig-common\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-05-24 21:48+0200\n"
+"Report-Msgid-Bugs-To: seanius at debian.org\n"
+"POT-Creation-Date: 2006-06-10 18:10+1200\n"
 "PO-Revision-Date: 2005-12-16 12:49+0100\n"
 "Last-Translator: Claus Hindsgaul <claus_h at image.dk>\n"
 "Language-Team: Danish <dansk at klid.dk>\n"
@@ -502,15 +502,75 @@
 "objekter, der bliver oprettet under denne installation. Denne bruger vil "
 "have fuld mulighed for at indsætte, ændre og slette data i databasen."
 
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:211
+#, fuzzy
+msgid "${dbvendor} storage directory for ${pkg}:"
+msgstr "${dbvendor}-brugernavn for ${pkg}:"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:211
+#, fuzzy
+msgid ""
+"Please provide a path where the ${dbvendor} database file for ${pkg}  should "
+"be installed into."
+msgstr "Angiv navnet på den ${dbvendor}-database, der skal bruges af ${pkg}."
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+#, fuzzy
+msgid "${dbvendor} database ownership for ${pkg}:"
+msgstr "${dbvendor}-databasenavn for ${pkg}:"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+msgid ""
+"Please specify the filesystem ownership that you would like to set on the "
+"${dbvendor} database for ${pkg}."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+msgid "This should be specified in the format owner:group."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+#, fuzzy
+msgid "${dbvendor} database permissions for ${pkg}:"
+msgstr "${dbvendor}-databasenavn for ${pkg}:"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+msgid ""
+"Please specify the filesystem permissions that you would like to set on the "
+"${dbvendor} database for ${pkg}."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+msgid ""
+"This should be specified in octal format as would be passed to the chmod  "
+"unix command. eg. 0644."
+msgstr ""
+
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:213
+#: ../dbconfig-common.templates:236
 msgid "Connection method for MySQL database of ${pkg}:"
 msgstr "Forbindelsesmetode for ${pkg}s MySQL-database:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:213
+#: ../dbconfig-common.templates:236
 msgid ""
 "By default, ${pkg} will be configured to use a MySQL server through a local "
 "unix socket (this provides the best performance). However, if you would like "
@@ -524,13 +584,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:221
+#: ../dbconfig-common.templates:244
 msgid "MySQL application password for ${pkg}:"
 msgstr "MySQL-programadgangskode for ${pkg}:"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:221
+#: ../dbconfig-common.templates:244
 msgid ""
 "Please provide a password for ${pkg} to register with the database server.  "
 "If left blank, a random password will be generated for you."
@@ -541,7 +601,7 @@
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:229
+#: ../dbconfig-common.templates:252
 msgid ""
 "For MySQL, this is almost always \"root\".  Note that this is NOT the same "
 "as the UNIX login 'root'."
@@ -551,7 +611,7 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:239
+#: ../dbconfig-common.templates:262
 msgid ""
 "What is the password for the administrative account with which this package "
 "should create its MySQL database and user?"
@@ -561,31 +621,31 @@
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "unix socket"
 msgstr "unix-sokkel"
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "tcp/ip"
 msgstr "tcp/ip"
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "tcp/ip + ssl"
 msgstr "tcp/ip + ssl"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:247
+#: ../dbconfig-common.templates:270
 msgid "Connection method for PostgreSQL database of ${pkg}:"
 msgstr "Forbindelsesmetode for ${pkg}s PostgreSQL-database:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:247
+#: ../dbconfig-common.templates:270
 msgid ""
 "By default, ${pkg} will be configured to use a PostgreSQL server through a "
 "local unix socket (this provides the best performance). However, if you "
@@ -599,13 +659,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:255
+#: ../dbconfig-common.templates:278
 msgid "PostgreSQL application password for ${pkg}:"
 msgstr "PostgreSQL-programadgangskode for ${pkg}:"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:255
+#: ../dbconfig-common.templates:278
 msgid ""
 "Please provide a password for ${pkg} to register with the database server.  "
 "If left blank, a random password will be generated for you. PostgreSQL "
@@ -618,13 +678,13 @@
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:264
+#: ../dbconfig-common.templates:287
 msgid "Name of your database's administrative user:"
 msgstr "Navnet på din databases administrationsbruger:"
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:264
+#: ../dbconfig-common.templates:287
 msgid ""
 "What is the name of the account with which this package should perform "
 "administrative actions?  This user is the one which is able to create new "
@@ -635,13 +695,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:271
+#: ../dbconfig-common.templates:294
 msgid "Password of your database's administrative user:"
 msgstr "Din databases administrationsbrugers adgangskode:"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:271
+#: ../dbconfig-common.templates:294
 msgid ""
 "What is the password for the account with which this package should perform "
 "administrative actions?  (For a normal Debian PostgreSQL installation, a "
@@ -655,13 +715,13 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:281
+#: ../dbconfig-common.templates:304
 msgid "Method for authenticating PostgreSQL administrator:"
 msgstr "Måde at autentificere PostgreSQL-administratoren på:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:281
+#: ../dbconfig-common.templates:304
 msgid ""
 "PostgreSQL servers provide several different mechanisms for authenticating "
 "connections.  Please select what method the administrative user should use "
@@ -673,25 +733,25 @@
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:302
+#: ../dbconfig-common.templates:325
 msgid "ident"
 msgstr "ident"
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:302
+#: ../dbconfig-common.templates:325
 msgid "password"
 msgstr "adgangskode"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid "Method for authenticating PostgreSQL user:"
 msgstr "Måde at autentificere PostgreSQL-bruger på:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "PostgreSQL servers provide several different mechanisms for authenticating "
 "connections.  Please select what method the database user should use when "
@@ -703,7 +763,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"ident\" authentication on the local machine, the server will check "
 "that the owner of the unix socket is allowed to connect."
@@ -713,7 +773,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"ident\" authentication to remote hosts, RFC 1413 based ident is used "
 "(note this can be considered a security risk)."
@@ -723,7 +783,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"password\" authentication, a password will be passed to the server "
 "for use with some authentication backend (such as \"md5\" or \"pam\").  Note "
@@ -738,7 +798,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "For a default Debian PostgreSQL installation running on the same host, you "
 "probably want \"ident\"."
@@ -748,13 +808,13 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid "Choose a different PostgreSQL connection method?"
 msgstr "Vil du vælge en anden PostgreSQL-forbindelsesmetode?"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid ""
 "Unfortunately, it seems that the database connection method you have "
 "selected for ${pkg} will not work, because it requires the existence of a "
@@ -766,7 +826,7 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid ""
 "If you would like to reconfigure your application to use a different method, "
 "you should choose this option.  If you know for certain that this method "
@@ -780,13 +840,13 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:337
+#: ../dbconfig-common.templates:360
 msgid "Change PostgreSQL configuration automatically?"
 msgstr "Ret PostgreSQL-opsætningen automatisk?"
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:337
+#: ../dbconfig-common.templates:360
 msgid ""
 "It has been determined that the database installation for ${pkg} can not be "
 "automatically accomplished without making changes to your PostgreSQL "
@@ -803,13 +863,13 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid "Revert PostgreSQL configuration automatically?"
 msgstr "Genskab den gamle PostgreSQL-opsætning automatisk?"
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid ""
 "As ${pkg} is now being removed, it may no longer be necessary to have an "
 "access control entry in your PostgreSQL server's configuration. While "
@@ -828,19 +888,19 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid "${pghbaline}"
 msgstr "${pghbaline}"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:363
+#: ../dbconfig-common.templates:386
 msgid "Please change /etc/postgresql/pg_hba.conf"
 msgstr "Ret venligst /etc/postgresql/pg_hba.conf"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:363
+#: ../dbconfig-common.templates:386
 msgid ""
 "To get the database for package ${pkg} bootstrapped you have to edit the "
 "configuration of your PostgreSQL server. You may be able to find help in the "
@@ -852,19 +912,19 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:370
+#: ../dbconfig-common.templates:393
 msgid "PostgreSQL does not support empty passwords."
 msgstr "PostgreSQL understøtter ikke tomme adgangskoder."
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:374
+#: ../dbconfig-common.templates:397
 msgid "dbconfig-common will attempt to load existing settings"
 msgstr "dbconfig-common vil forsøge at indlæse de eksisterende indstillinger"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:374
+#: ../dbconfig-common.templates:397
 msgid ""
 "dbconfig-common will now attempt to load the pre-existing settings of "
 "${pkg}.  Later, these settings will be validated, and if there is any "

Modified: branches/sqlite/debian/po/de.po
===================================================================
--- branches/sqlite/debian/po/de.po	2006-06-10 04:07:53 UTC (rev 250)
+++ branches/sqlite/debian/po/de.po	2006-06-10 06:14:06 UTC (rev 251)
@@ -14,8 +14,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: dbconfig-common 0.9\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-05-24 21:48+0200\n"
+"Report-Msgid-Bugs-To: seanius at debian.org\n"
+"POT-Creation-Date: 2006-06-10 18:10+1200\n"
 "PO-Revision-Date: 2005-04-10 20:30+0100\n"
 "Last-Translator: Andreas Tille <tille at debian.org>\n"
 "Language-Team: German <debian-l10n-german at lists.debian.org>\n"
@@ -523,15 +523,77 @@
 "alle Rechte, Daten in die Datenbank einzufügen, in ihr zu verändern oder aus "
 "ihr zu löschen."
 
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:211
+#, fuzzy
+msgid "${dbvendor} storage directory for ${pkg}:"
+msgstr "${dbvendor} Nutzernamen für ${pkg}:"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:211
+#, fuzzy
+msgid ""
+"Please provide a path where the ${dbvendor} database file for ${pkg}  should "
+"be installed into."
+msgstr ""
+"Bitte einen Namen für die ${dbvendor} Datenbank, die vom Paket ${pkg} "
+"verwendet werden soll, eingeben."
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+#, fuzzy
+msgid "${dbvendor} database ownership for ${pkg}:"
+msgstr "${dbvendor} Datenbankname für ${pkg}:"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+msgid ""
+"Please specify the filesystem ownership that you would like to set on the "
+"${dbvendor} database for ${pkg}."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+msgid "This should be specified in the format owner:group."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+#, fuzzy
+msgid "${dbvendor} database permissions for ${pkg}:"
+msgstr "${dbvendor} Datenbankname für ${pkg}:"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+msgid ""
+"Please specify the filesystem permissions that you would like to set on the "
+"${dbvendor} database for ${pkg}."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+msgid ""
+"This should be specified in octal format as would be passed to the chmod  "
+"unix command. eg. 0644."
+msgstr ""
+
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:213
+#: ../dbconfig-common.templates:236
 msgid "Connection method for MySQL database of ${pkg}:"
 msgstr "Verbindungsmethode an die MySQL Datenbank von ${pkg}:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:213
+#: ../dbconfig-common.templates:236
 msgid ""
 "By default, ${pkg} will be configured to use a MySQL server through a local "
 "unix socket (this provides the best performance). However, if you would like "
@@ -546,13 +608,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:221
+#: ../dbconfig-common.templates:244
 msgid "MySQL application password for ${pkg}:"
 msgstr "MySQL Anwendungspasswort für ${pkg}:"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:221
+#: ../dbconfig-common.templates:244
 msgid ""
 "Please provide a password for ${pkg} to register with the database server.  "
 "If left blank, a random password will be generated for you."
@@ -563,7 +625,7 @@
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:229
+#: ../dbconfig-common.templates:252
 msgid ""
 "For MySQL, this is almost always \"root\".  Note that this is NOT the same "
 "as the UNIX login 'root'."
@@ -573,7 +635,7 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:239
+#: ../dbconfig-common.templates:262
 msgid ""
 "What is the password for the administrative account with which this package "
 "should create its MySQL database and user?"
@@ -583,31 +645,31 @@
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "unix socket"
 msgstr ""
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "tcp/ip"
 msgstr ""
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "tcp/ip + ssl"
 msgstr ""
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:247
+#: ../dbconfig-common.templates:270
 msgid "Connection method for PostgreSQL database of ${pkg}:"
 msgstr "Verbindungsmethode für die PostgreSQL Datenbank von ${pkg}:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:247
+#: ../dbconfig-common.templates:270
 msgid ""
 "By default, ${pkg} will be configured to use a PostgreSQL server through a "
 "local unix socket (this provides the best performance). However, if you "
@@ -622,13 +684,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:255
+#: ../dbconfig-common.templates:278
 msgid "PostgreSQL application password for ${pkg}:"
 msgstr "PostgreSQL Anwendungspasswort für ${pkg}:"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:255
+#: ../dbconfig-common.templates:278
 msgid ""
 "Please provide a password for ${pkg} to register with the database server.  "
 "If left blank, a random password will be generated for you. PostgreSQL "
@@ -641,13 +703,13 @@
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:264
+#: ../dbconfig-common.templates:287
 msgid "Name of your database's administrative user:"
 msgstr "Login-Name des Datenbank-Administrators:"
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:264
+#: ../dbconfig-common.templates:287
 msgid ""
 "What is the name of the account with which this package should perform "
 "administrative actions?  This user is the one which is able to create new "
@@ -659,13 +721,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:271
+#: ../dbconfig-common.templates:294
 msgid "Password of your database's administrative user:"
 msgstr "Passwort des Datenbank-Administrators:"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:271
+#: ../dbconfig-common.templates:294
 msgid ""
 "What is the password for the account with which this package should perform "
 "administrative actions?  (For a normal Debian PostgreSQL installation, a "
@@ -679,13 +741,13 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:281
+#: ../dbconfig-common.templates:304
 msgid "Method for authenticating PostgreSQL administrator:"
 msgstr "Authentifizierungsmethode des PostgreSQL Administrators:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:281
+#: ../dbconfig-common.templates:304
 msgid ""
 "PostgreSQL servers provide several different mechanisms for authenticating "
 "connections.  Please select what method the administrative user should use "
@@ -697,25 +759,25 @@
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:302
+#: ../dbconfig-common.templates:325
 msgid "ident"
 msgstr ""
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:302
+#: ../dbconfig-common.templates:325
 msgid "password"
 msgstr ""
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid "Method for authenticating PostgreSQL user:"
 msgstr "Authentifizierungsmethode des PostgreSQL Nutzers:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "PostgreSQL servers provide several different mechanisms for authenticating "
 "connections.  Please select what method the database user should use when "
@@ -727,7 +789,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"ident\" authentication on the local machine, the server will check "
 "that the owner of the unix socket is allowed to connect."
@@ -737,7 +799,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"ident\" authentication to remote hosts, RFC 1413 based ident is used "
 "(note this can be considered a security risk)."
@@ -748,7 +810,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"password\" authentication, a password will be passed to the server "
 "for use with some authentication backend (such as \"md5\" or \"pam\").  Note "
@@ -762,7 +824,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "For a default Debian PostgreSQL installation running on the same host, you "
 "probably want \"ident\"."
@@ -772,13 +834,13 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid "Choose a different PostgreSQL connection method?"
 msgstr "Eine andere Verbindungsmethode für PostgreSQL wählen?"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid ""
 "Unfortunately, it seems that the database connection method you have "
 "selected for ${pkg} will not work, because it requires the existence of a "
@@ -790,7 +852,7 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid ""
 "If you would like to reconfigure your application to use a different method, "
 "you should choose this option.  If you know for certain that this method "
@@ -804,13 +866,13 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:337
+#: ../dbconfig-common.templates:360
 msgid "Change PostgreSQL configuration automatically?"
 msgstr "Soll die PostgreSQL Konfiguration automatisch geändert werden?"
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:337
+#: ../dbconfig-common.templates:360
 msgid ""
 "It has been determined that the database installation for ${pkg} can not be "
 "automatically accomplished without making changes to your PostgreSQL "
@@ -828,13 +890,13 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid "Revert PostgreSQL configuration automatically?"
 msgstr "Soll die PostgreSQL Konfiguration automatisch geändert werden?"
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid ""
 "As ${pkg} is now being removed, it may no longer be necessary to have an "
 "access control entry in your PostgreSQL server's configuration. While "
@@ -856,19 +918,19 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid "${pghbaline}"
 msgstr "${pghbaline}"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:363
+#: ../dbconfig-common.templates:386
 msgid "Please change /etc/postgresql/pg_hba.conf"
 msgstr "Bitte passen Sie die Datei /etc/postgresql/pg_hba.conf selbst an."
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:363
+#: ../dbconfig-common.templates:386
 msgid ""
 "To get the database for package ${pkg} bootstrapped you have to edit the "
 "configuration of your PostgreSQL server. You may be able to find help in the "
@@ -880,19 +942,19 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:370
+#: ../dbconfig-common.templates:393
 msgid "PostgreSQL does not support empty passwords."
 msgstr "PostgreSQL unterstützt keine leeren Passwörter."
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:374
+#: ../dbconfig-common.templates:397
 msgid "dbconfig-common will attempt to load existing settings"
 msgstr "dbconfig-common wird versuchen, existierende Einstellungen zu setzen."
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:374
+#: ../dbconfig-common.templates:397
 msgid ""
 "dbconfig-common will now attempt to load the pre-existing settings of "
 "${pkg}.  Later, these settings will be validated, and if there is any "

Modified: branches/sqlite/debian/po/es.po
===================================================================
--- branches/sqlite/debian/po/es.po	2006-06-10 04:07:53 UTC (rev 250)
+++ branches/sqlite/debian/po/es.po	2006-06-10 06:14:06 UTC (rev 251)
@@ -34,8 +34,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: dbconfig-common\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-05-24 21:48+0200\n"
+"Report-Msgid-Bugs-To: seanius at debian.org\n"
+"POT-Creation-Date: 2006-06-10 18:10+1200\n"
 "PO-Revision-Date: 2005-04-01 13:03+0200\n"
 "Last-Translator: Javier Fernandez-Sanguino <jfs at debian.org>\n"
 "Language-Team: Debian Spanish <debian-l10n-spanish at lists.debian.org>\n"
@@ -528,15 +528,77 @@
 "otros objetos que cree esta instalación. Este usuario debe tener permisos "
 "para insertar, crear y borrar datos en la base de datos."
 
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:211
+#, fuzzy
+msgid "${dbvendor} storage directory for ${pkg}:"
+msgstr "Nombre de usuario ${dbvendor} para ${pkg}:"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:211
+#, fuzzy
+msgid ""
+"Please provide a path where the ${dbvendor} database file for ${pkg}  should "
+"be installed into."
+msgstr ""
+"Por favor, indique el nombre de la base de datos ${dbvendor} que va a "
+"utilizar ${pkg}."
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+#, fuzzy
+msgid "${dbvendor} database ownership for ${pkg}:"
+msgstr "Nombre de la base de datos ${dbvendor} para ${pkg}:"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+msgid ""
+"Please specify the filesystem ownership that you would like to set on the "
+"${dbvendor} database for ${pkg}."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+msgid "This should be specified in the format owner:group."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+#, fuzzy
+msgid "${dbvendor} database permissions for ${pkg}:"
+msgstr "Nombre de la base de datos ${dbvendor} para ${pkg}:"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+msgid ""
+"Please specify the filesystem permissions that you would like to set on the "
+"${dbvendor} database for ${pkg}."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+msgid ""
+"This should be specified in octal format as would be passed to the chmod  "
+"unix command. eg. 0644."
+msgstr ""
+
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:213
+#: ../dbconfig-common.templates:236
 msgid "Connection method for MySQL database of ${pkg}:"
 msgstr "Método de conexión para la base de datos MySQL de ${pkg}:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:213
+#: ../dbconfig-common.templates:236
 msgid ""
 "By default, ${pkg} will be configured to use a MySQL server through a local "
 "unix socket (this provides the best performance). However, if you would like "
@@ -550,13 +612,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:221
+#: ../dbconfig-common.templates:244
 msgid "MySQL application password for ${pkg}:"
 msgstr "Contraseña de aplicación MySQL para ${pkg}:"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:221
+#: ../dbconfig-common.templates:244
 #, fuzzy
 msgid ""
 "Please provide a password for ${pkg} to register with the database server.  "
@@ -568,7 +630,7 @@
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:229
+#: ../dbconfig-common.templates:252
 msgid ""
 "For MySQL, this is almost always \"root\".  Note that this is NOT the same "
 "as the UNIX login 'root'."
@@ -578,7 +640,7 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:239
+#: ../dbconfig-common.templates:262
 msgid ""
 "What is the password for the administrative account with which this package "
 "should create its MySQL database and user?"
@@ -588,31 +650,31 @@
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "unix socket"
 msgstr ""
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "tcp/ip"
 msgstr ""
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "tcp/ip + ssl"
 msgstr ""
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:247
+#: ../dbconfig-common.templates:270
 msgid "Connection method for PostgreSQL database of ${pkg}:"
 msgstr "Método de conexión para la base de datos PostgreSQL de ${pkg}:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:247
+#: ../dbconfig-common.templates:270
 msgid ""
 "By default, ${pkg} will be configured to use a PostgreSQL server through a "
 "local unix socket (this provides the best performance). However, if you "
@@ -626,13 +688,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:255
+#: ../dbconfig-common.templates:278
 msgid "PostgreSQL application password for ${pkg}:"
 msgstr "Contraseña de aplicación PostgreSQL para ${pkg}:"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:255
+#: ../dbconfig-common.templates:278
 #, fuzzy
 msgid ""
 "Please provide a password for ${pkg} to register with the database server.  "
@@ -645,13 +707,13 @@
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:264
+#: ../dbconfig-common.templates:287
 msgid "Name of your database's administrative user:"
 msgstr "Nombre del usuario de administración de base de datos:"
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:264
+#: ../dbconfig-common.templates:287
 msgid ""
 "What is the name of the account with which this package should perform "
 "administrative actions?  This user is the one which is able to create new "
@@ -663,13 +725,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:271
+#: ../dbconfig-common.templates:294
 msgid "Password of your database's administrative user:"
 msgstr "Contraseña de su usuario de administración de la base de datos:"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:271
+#: ../dbconfig-common.templates:294
 msgid ""
 "What is the password for the account with which this package should perform "
 "administrative actions?  (For a normal Debian PostgreSQL installation, a "
@@ -683,13 +745,13 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:281
+#: ../dbconfig-common.templates:304
 msgid "Method for authenticating PostgreSQL administrator:"
 msgstr "Método de autenticación para el administrador de PostgreSQL:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:281
+#: ../dbconfig-common.templates:304
 msgid ""
 "PostgreSQL servers provide several different mechanisms for authenticating "
 "connections.  Please select what method the administrative user should use "
@@ -701,25 +763,25 @@
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:302
+#: ../dbconfig-common.templates:325
 msgid "ident"
 msgstr ""
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:302
+#: ../dbconfig-common.templates:325
 msgid "password"
 msgstr ""
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid "Method for authenticating PostgreSQL user:"
 msgstr "Método de autenticación del usuario de PostgreSQL:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "PostgreSQL servers provide several different mechanisms for authenticating "
 "connections.  Please select what method the database user should use when "
@@ -731,7 +793,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"ident\" authentication on the local machine, the server will check "
 "that the owner of the unix socket is allowed to connect."
@@ -741,7 +803,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"ident\" authentication to remote hosts, RFC 1413 based ident is used "
 "(note this can be considered a security risk)."
@@ -751,7 +813,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"password\" authentication, a password will be passed to the server "
 "for use with some authentication backend (such as \"md5\" or \"pam\").  Note "
@@ -766,7 +828,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "For a default Debian PostgreSQL installation running on the same host, you "
 "probably want \"ident\"."
@@ -776,13 +838,13 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid "Choose a different PostgreSQL connection method?"
 msgstr ""
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid ""
 "Unfortunately, it seems that the database connection method you have "
 "selected for ${pkg} will not work, because it requires the existence of a "
@@ -791,7 +853,7 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 #, fuzzy
 msgid ""
 "If you would like to reconfigure your application to use a different method, "
@@ -805,13 +867,13 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:337
+#: ../dbconfig-common.templates:360
 msgid "Change PostgreSQL configuration automatically?"
 msgstr "¿Desea modificar automáticamente la configuración de PostgreSQL?"
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:337
+#: ../dbconfig-common.templates:360
 msgid ""
 "It has been determined that the database installation for ${pkg} can not be "
 "automatically accomplished without making changes to your PostgreSQL "
@@ -823,14 +885,14 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 #, fuzzy
 msgid "Revert PostgreSQL configuration automatically?"
 msgstr "¿Desea modificar automáticamente la configuración de PostgreSQL?"
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid ""
 "As ${pkg} is now being removed, it may no longer be necessary to have an "
 "access control entry in your PostgreSQL server's configuration. While "
@@ -843,19 +905,19 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid "${pghbaline}"
 msgstr ""
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:363
+#: ../dbconfig-common.templates:386
 msgid "Please change /etc/postgresql/pg_hba.conf"
 msgstr "Por favor, modifique «/etc/postgresql/pg_hba.conf»"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:363
+#: ../dbconfig-common.templates:386
 msgid ""
 "To get the database for package ${pkg} bootstrapped you have to edit the "
 "configuration of your PostgreSQL server. You may be able to find help in the "
@@ -867,19 +929,19 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:370
+#: ../dbconfig-common.templates:393
 msgid "PostgreSQL does not support empty passwords."
 msgstr ""
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:374
+#: ../dbconfig-common.templates:397
 msgid "dbconfig-common will attempt to load existing settings"
 msgstr ""
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:374
+#: ../dbconfig-common.templates:397
 msgid ""
 "dbconfig-common will now attempt to load the pre-existing settings of "
 "${pkg}.  Later, these settings will be validated, and if there is any "

Modified: branches/sqlite/debian/po/eu.po
===================================================================
--- branches/sqlite/debian/po/eu.po	2006-06-10 04:07:53 UTC (rev 250)
+++ branches/sqlite/debian/po/eu.po	2006-06-10 06:14:06 UTC (rev 251)
@@ -15,8 +15,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: dbconfig-common-templates-eu\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-05-24 21:48+0200\n"
+"Report-Msgid-Bugs-To: seanius at debian.org\n"
+"POT-Creation-Date: 2006-06-10 18:10+1200\n"
 "PO-Revision-Date: 2005-04-01 00:08+0200\n"
 "Last-Translator: \n"
 "Language-Team:  <eu at li.org>\n"
@@ -491,15 +491,76 @@
 "da. Erabiltzaile honek databasean datuak sartu, aldatu edo ezabatzeko "
 "baimena izango du."
 
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:211
+#, fuzzy
+msgid "${dbvendor} storage directory for ${pkg}:"
+msgstr "${pkg}-ren ${dbvendor} erabiltzaile izena:"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:211
+#, fuzzy
+msgid ""
+"Please provide a path where the ${dbvendor} database file for ${pkg}  should "
+"be installed into."
+msgstr ""
+"Mesedez ezarri ${pkg}-ek erabiliko duen ${dbvendor} databasearen izena."
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+#, fuzzy
+msgid "${dbvendor} database ownership for ${pkg}:"
+msgstr "${pkg}-ren ${dbvendor} database izena:"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+msgid ""
+"Please specify the filesystem ownership that you would like to set on the "
+"${dbvendor} database for ${pkg}."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+msgid "This should be specified in the format owner:group."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+#, fuzzy
+msgid "${dbvendor} database permissions for ${pkg}:"
+msgstr "${pkg}-ren ${dbvendor} database izena:"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+msgid ""
+"Please specify the filesystem permissions that you would like to set on the "
+"${dbvendor} database for ${pkg}."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+msgid ""
+"This should be specified in octal format as would be passed to the chmod  "
+"unix command. eg. 0644."
+msgstr ""
+
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:213
+#: ../dbconfig-common.templates:236
 msgid "Connection method for MySQL database of ${pkg}:"
 msgstr "${pkg}-ren MySQL-rekiko konexio metodoa:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:213
+#: ../dbconfig-common.templates:236
 msgid ""
 "By default, ${pkg} will be configured to use a MySQL server through a local "
 "unix socket (this provides the best performance). However, if you would like "
@@ -513,13 +574,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:221
+#: ../dbconfig-common.templates:244
 msgid "MySQL application password for ${pkg}:"
 msgstr "${pkg}-ren MySQL aplikazio pasahitza:"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:221
+#: ../dbconfig-common.templates:244
 #, fuzzy
 msgid ""
 "Please provide a password for ${pkg} to register with the database server.  "
@@ -530,7 +591,7 @@
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:229
+#: ../dbconfig-common.templates:252
 msgid ""
 "For MySQL, this is almost always \"root\".  Note that this is NOT the same "
 "as the UNIX login 'root'."
@@ -540,7 +601,7 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:239
+#: ../dbconfig-common.templates:262
 msgid ""
 "What is the password for the administrative account with which this package "
 "should create its MySQL database and user?"
@@ -550,31 +611,31 @@
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "unix socket"
 msgstr ""
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "tcp/ip"
 msgstr ""
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "tcp/ip + ssl"
 msgstr ""
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:247
+#: ../dbconfig-common.templates:270
 msgid "Connection method for PostgreSQL database of ${pkg}:"
 msgstr "${pkg}-ren PostgreSQL-rekiko konexio metodoa:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:247
+#: ../dbconfig-common.templates:270
 msgid ""
 "By default, ${pkg} will be configured to use a PostgreSQL server through a "
 "local unix socket (this provides the best performance). However, if you "
@@ -588,13 +649,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:255
+#: ../dbconfig-common.templates:278
 msgid "PostgreSQL application password for ${pkg}:"
 msgstr "${pkg}-ren PostgreSQL aplikazio pasahitza:"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:255
+#: ../dbconfig-common.templates:278
 #, fuzzy
 msgid ""
 "Please provide a password for ${pkg} to register with the database server.  "
@@ -607,13 +668,13 @@
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:264
+#: ../dbconfig-common.templates:287
 msgid "Name of your database's administrative user:"
 msgstr "Database kudeatzaile erabiltzaile izena:"
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:264
+#: ../dbconfig-common.templates:287
 msgid ""
 "What is the name of the account with which this package should perform "
 "administrative actions?  This user is the one which is able to create new "
@@ -625,13 +686,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:271
+#: ../dbconfig-common.templates:294
 msgid "Password of your database's administrative user:"
 msgstr "Databasearen kudeatzaile erabiltzaileran pasahitza:"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:271
+#: ../dbconfig-common.templates:294
 msgid ""
 "What is the password for the account with which this package should perform "
 "administrative actions?  (For a normal Debian PostgreSQL installation, a "
@@ -645,13 +706,13 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:281
+#: ../dbconfig-common.templates:304
 msgid "Method for authenticating PostgreSQL administrator:"
 msgstr "PostgreSQL kudeatzaile egiaztapen metodoa:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:281
+#: ../dbconfig-common.templates:304
 msgid ""
 "PostgreSQL servers provide several different mechanisms for authenticating "
 "connections.  Please select what method the administrative user should use "
@@ -662,25 +723,25 @@
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:302
+#: ../dbconfig-common.templates:325
 msgid "ident"
 msgstr ""
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:302
+#: ../dbconfig-common.templates:325
 msgid "password"
 msgstr ""
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid "Method for authenticating PostgreSQL user:"
 msgstr "PostgreSQL erabiltzaile egiaztapen metodoa:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "PostgreSQL servers provide several different mechanisms for authenticating "
 "connections.  Please select what method the database user should use when "
@@ -692,7 +753,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"ident\" authentication on the local machine, the server will check "
 "that the owner of the unix socket is allowed to connect."
@@ -702,7 +763,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"ident\" authentication to remote hosts, RFC 1413 based ident is used "
 "(note this can be considered a security risk)."
@@ -713,7 +774,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"password\" authentication, a password will be passed to the server "
 "for use with some authentication backend (such as \"md5\" or \"pam\").  Note "
@@ -727,7 +788,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "For a default Debian PostgreSQL installation running on the same host, you "
 "probably want \"ident\"."
@@ -737,13 +798,13 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid "Choose a different PostgreSQL connection method?"
 msgstr ""
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid ""
 "Unfortunately, it seems that the database connection method you have "
 "selected for ${pkg} will not work, because it requires the existence of a "
@@ -752,7 +813,7 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 #, fuzzy
 msgid ""
 "If you would like to reconfigure your application to use a different method, "
@@ -766,13 +827,13 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:337
+#: ../dbconfig-common.templates:360
 msgid "Change PostgreSQL configuration automatically?"
 msgstr "PostgreSQL konfigurazioa automatikoki aldatu?"
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:337
+#: ../dbconfig-common.templates:360
 msgid ""
 "It has been determined that the database installation for ${pkg} can not be "
 "automatically accomplished without making changes to your PostgreSQL "
@@ -784,14 +845,14 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 #, fuzzy
 msgid "Revert PostgreSQL configuration automatically?"
 msgstr "PostgreSQL konfigurazioa automatikoki aldatu?"
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid ""
 "As ${pkg} is now being removed, it may no longer be necessary to have an "
 "access control entry in your PostgreSQL server's configuration. While "
@@ -804,19 +865,19 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid "${pghbaline}"
 msgstr ""
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:363
+#: ../dbconfig-common.templates:386
 msgid "Please change /etc/postgresql/pg_hba.conf"
 msgstr "Mesedez /etc/postgresql/pg_hba.conf aldatu"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:363
+#: ../dbconfig-common.templates:386
 msgid ""
 "To get the database for package ${pkg} bootstrapped you have to edit the "
 "configuration of your PostgreSQL server. You may be able to find help in the "
@@ -828,19 +889,19 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:370
+#: ../dbconfig-common.templates:393
 msgid "PostgreSQL does not support empty passwords."
 msgstr ""
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:374
+#: ../dbconfig-common.templates:397
 msgid "dbconfig-common will attempt to load existing settings"
 msgstr ""
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:374
+#: ../dbconfig-common.templates:397
 msgid ""
 "dbconfig-common will now attempt to load the pre-existing settings of "
 "${pkg}.  Later, these settings will be validated, and if there is any "

Modified: branches/sqlite/debian/po/fr.po
===================================================================
--- branches/sqlite/debian/po/fr.po	2006-06-10 04:07:53 UTC (rev 250)
+++ branches/sqlite/debian/po/fr.po	2006-06-10 06:14:06 UTC (rev 251)
@@ -16,8 +16,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: fr\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-05-24 21:48+0200\n"
+"Report-Msgid-Bugs-To: seanius at debian.org\n"
+"POT-Creation-Date: 2006-06-10 18:10+1200\n"
 "PO-Revision-Date: 2005-11-09 23:35+0100\n"
 "Last-Translator: Christian Perrier <bubulle at debian.org>\n"
 "Language-Team: French <debian-l10n-french at lists.debian.org>\n"
@@ -528,15 +528,77 @@
 "pourra à volonté insérer, changer ou supprimer des données dans la base de "
 "données."
 
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:211
+#, fuzzy
+msgid "${dbvendor} storage directory for ${pkg}:"
+msgstr "Identifiant ${dbvendor} pour ${pkg} :"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:211
+#, fuzzy
+msgid ""
+"Please provide a path where the ${dbvendor} database file for ${pkg}  should "
+"be installed into."
+msgstr ""
+"Veuillez indiquer un nom pour la base de données ${dbvendor} à utiliser pour "
+"${pkg}."
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+#, fuzzy
+msgid "${dbvendor} database ownership for ${pkg}:"
+msgstr "Nom de la base de données ${dbvendor} pour ${pkg} :"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+msgid ""
+"Please specify the filesystem ownership that you would like to set on the "
+"${dbvendor} database for ${pkg}."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+msgid "This should be specified in the format owner:group."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+#, fuzzy
+msgid "${dbvendor} database permissions for ${pkg}:"
+msgstr "Nom de la base de données ${dbvendor} pour ${pkg} :"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+msgid ""
+"Please specify the filesystem permissions that you would like to set on the "
+"${dbvendor} database for ${pkg}."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+msgid ""
+"This should be specified in octal format as would be passed to the chmod  "
+"unix command. eg. 0644."
+msgstr ""
+
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:213
+#: ../dbconfig-common.templates:236
 msgid "Connection method for MySQL database of ${pkg}:"
 msgstr "Méthode de connexion pour la base de données MySQL de ${pkg}:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:213
+#: ../dbconfig-common.templates:236
 msgid ""
 "By default, ${pkg} will be configured to use a MySQL server through a local "
 "unix socket (this provides the best performance). However, if you would like "
@@ -550,13 +612,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:221
+#: ../dbconfig-common.templates:244
 msgid "MySQL application password for ${pkg}:"
 msgstr "Mot de passe de connexion MySQL pour ${pkg} :"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:221
+#: ../dbconfig-common.templates:244
 msgid ""
 "Please provide a password for ${pkg} to register with the database server.  "
 "If left blank, a random password will be generated for you."
@@ -567,7 +629,7 @@
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:229
+#: ../dbconfig-common.templates:252
 msgid ""
 "For MySQL, this is almost always \"root\".  Note that this is NOT the same "
 "as the UNIX login 'root'."
@@ -577,7 +639,7 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:239
+#: ../dbconfig-common.templates:262
 msgid ""
 "What is the password for the administrative account with which this package "
 "should create its MySQL database and user?"
@@ -587,31 +649,31 @@
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "unix socket"
 msgstr "Socket UNIX"
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "tcp/ip"
 msgstr "TCP/IP"
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "tcp/ip + ssl"
 msgstr "TCP/IP + SSL"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:247
+#: ../dbconfig-common.templates:270
 msgid "Connection method for PostgreSQL database of ${pkg}:"
 msgstr "Méthode de connexion pour la base de données PostgreSQL de ${pkg} :"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:247
+#: ../dbconfig-common.templates:270
 msgid ""
 "By default, ${pkg} will be configured to use a PostgreSQL server through a "
 "local unix socket (this provides the best performance). However, if you "
@@ -625,13 +687,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:255
+#: ../dbconfig-common.templates:278
 msgid "PostgreSQL application password for ${pkg}:"
 msgstr "Mot de passe de connexion PostgreSQL pour ${pkg} :"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:255
+#: ../dbconfig-common.templates:278
 msgid ""
 "Please provide a password for ${pkg} to register with the database server.  "
 "If left blank, a random password will be generated for you. PostgreSQL "
@@ -644,13 +706,13 @@
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:264
+#: ../dbconfig-common.templates:287
 msgid "Name of your database's administrative user:"
 msgstr "Nom de l'administrateur de la base de données :"
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:264
+#: ../dbconfig-common.templates:287
 msgid ""
 "What is the name of the account with which this package should perform "
 "administrative actions?  This user is the one which is able to create new "
@@ -662,13 +724,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:271
+#: ../dbconfig-common.templates:294
 msgid "Password of your database's administrative user:"
 msgstr "Mot de passe de l'administrateur de la base de données :"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:271
+#: ../dbconfig-common.templates:294
 msgid ""
 "What is the password for the account with which this package should perform "
 "administrative actions?  (For a normal Debian PostgreSQL installation, a "
@@ -682,13 +744,13 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:281
+#: ../dbconfig-common.templates:304
 msgid "Method for authenticating PostgreSQL administrator:"
 msgstr "Méthode d'authentification de l'administrateur PostgreSQL :"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:281
+#: ../dbconfig-common.templates:304
 msgid ""
 "PostgreSQL servers provide several different mechanisms for authenticating "
 "connections.  Please select what method the administrative user should use "
@@ -700,25 +762,25 @@
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:302
+#: ../dbconfig-common.templates:325
 msgid "ident"
 msgstr "Ident"
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:302
+#: ../dbconfig-common.templates:325
 msgid "password"
 msgstr "Mot de passe"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid "Method for authenticating PostgreSQL user:"
 msgstr "Méthode d'authentification pour l'utilisateur de PostgreSQL :"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "PostgreSQL servers provide several different mechanisms for authenticating "
 "connections.  Please select what method the database user should use when "
@@ -730,7 +792,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"ident\" authentication on the local machine, the server will check "
 "that the owner of the unix socket is allowed to connect."
@@ -740,7 +802,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"ident\" authentication to remote hosts, RFC 1413 based ident is used "
 "(note this can be considered a security risk)."
@@ -751,7 +813,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"password\" authentication, a password will be passed to the server "
 "for use with some authentication backend (such as \"md5\" or \"pam\").  Note "
@@ -764,7 +826,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "For a default Debian PostgreSQL installation running on the same host, you "
 "probably want \"ident\"."
@@ -774,14 +836,14 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid "Choose a different PostgreSQL connection method?"
 msgstr ""
 "Faut-il choisir une méthode différente pour la connexion à PostgreSQL ?"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid ""
 "Unfortunately, it seems that the database connection method you have "
 "selected for ${pkg} will not work, because it requires the existence of a "
@@ -793,7 +855,7 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid ""
 "If you would like to reconfigure your application to use a different method, "
 "you should choose this option.  If you know for certain that this method "
@@ -807,13 +869,13 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:337
+#: ../dbconfig-common.templates:360
 msgid "Change PostgreSQL configuration automatically?"
 msgstr "Faut-il modifier la configuration de PostgreSQL automatiquement ?"
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:337
+#: ../dbconfig-common.templates:360
 msgid ""
 "It has been determined that the database installation for ${pkg} can not be "
 "automatically accomplished without making changes to your PostgreSQL "
@@ -830,13 +892,13 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid "Revert PostgreSQL configuration automatically?"
 msgstr "Faut-il restaurer la configuration de PostgreSQL automatiquement ?"
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid ""
 "As ${pkg} is now being removed, it may no longer be necessary to have an "
 "access control entry in your PostgreSQL server's configuration. While "
@@ -856,19 +918,19 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid "${pghbaline}"
 msgstr "${pghbaline}"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:363
+#: ../dbconfig-common.templates:386
 msgid "Please change /etc/postgresql/pg_hba.conf"
 msgstr "Modification de /etc/postgresql/pg_hba.conf"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:363
+#: ../dbconfig-common.templates:386
 msgid ""
 "To get the database for package ${pkg} bootstrapped you have to edit the "
 "configuration of your PostgreSQL server. You may be able to find help in the "
@@ -880,19 +942,19 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:370
+#: ../dbconfig-common.templates:393
 msgid "PostgreSQL does not support empty passwords."
 msgstr "PostgreSQL n'accepte pas les mots de passe vides."
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:374
+#: ../dbconfig-common.templates:397
 msgid "dbconfig-common will attempt to load existing settings"
 msgstr "Tentative de récupération des réglages actuels"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:374
+#: ../dbconfig-common.templates:397
 msgid ""
 "dbconfig-common will now attempt to load the pre-existing settings of "
 "${pkg}.  Later, these settings will be validated, and if there is any "

Modified: branches/sqlite/debian/po/it.po
===================================================================
--- branches/sqlite/debian/po/it.po	2006-06-10 04:07:53 UTC (rev 250)
+++ branches/sqlite/debian/po/it.po	2006-06-10 06:14:06 UTC (rev 251)
@@ -5,8 +5,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: dbconfig-common 1.6\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-05-24 21:48+0200\n"
+"Report-Msgid-Bugs-To: seanius at debian.org\n"
+"POT-Creation-Date: 2006-06-10 18:10+1200\n"
 "PO-Revision-Date: 2005-07-22 11:23+0200\n"
 "Last-Translator: Giuseppe Sacco <eppesuig at debian.org>\n"
 "Language-Team: italian <tp at lists.linux.it>\n"
@@ -492,15 +492,75 @@
 "che verranno creati durante questa installazione. Questo utente avrà massima "
 "libertà di inserire, cambiare o cancellare i dati nel database."
 
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:211
+#, fuzzy
+msgid "${dbvendor} storage directory for ${pkg}:"
+msgstr "Utente ${dbvendor} di ${pkg}:"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:211
+#, fuzzy
+msgid ""
+"Please provide a path where the ${dbvendor} database file for ${pkg}  should "
+"be installed into."
+msgstr "Inserire il nome del database ${dbvendor} da fare usare a ${pkg}."
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+#, fuzzy
+msgid "${dbvendor} database ownership for ${pkg}:"
+msgstr "Nome del database ${dbvendor} per ${pkg}:"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+msgid ""
+"Please specify the filesystem ownership that you would like to set on the "
+"${dbvendor} database for ${pkg}."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+msgid "This should be specified in the format owner:group."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+#, fuzzy
+msgid "${dbvendor} database permissions for ${pkg}:"
+msgstr "Nome del database ${dbvendor} per ${pkg}:"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+msgid ""
+"Please specify the filesystem permissions that you would like to set on the "
+"${dbvendor} database for ${pkg}."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+msgid ""
+"This should be specified in octal format as would be passed to the chmod  "
+"unix command. eg. 0644."
+msgstr ""
+
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:213
+#: ../dbconfig-common.templates:236
 msgid "Connection method for MySQL database of ${pkg}:"
 msgstr "Metodo di connessione al database MySQL per ${pkg}:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:213
+#: ../dbconfig-common.templates:236
 msgid ""
 "By default, ${pkg} will be configured to use a MySQL server through a local "
 "unix socket (this provides the best performance). However, if you would like "
@@ -514,13 +574,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:221
+#: ../dbconfig-common.templates:244
 msgid "MySQL application password for ${pkg}:"
 msgstr "Password applicativa per MySQL per ${pkg}:"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:221
+#: ../dbconfig-common.templates:244
 msgid ""
 "Please provide a password for ${pkg} to register with the database server.  "
 "If left blank, a random password will be generated for you."
@@ -530,7 +590,7 @@
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:229
+#: ../dbconfig-common.templates:252
 msgid ""
 "For MySQL, this is almost always \"root\".  Note that this is NOT the same "
 "as the UNIX login 'root'."
@@ -540,7 +600,7 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:239
+#: ../dbconfig-common.templates:262
 msgid ""
 "What is the password for the administrative account with which this package "
 "should create its MySQL database and user?"
@@ -550,31 +610,31 @@
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "unix socket"
 msgstr ""
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "tcp/ip"
 msgstr ""
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "tcp/ip + ssl"
 msgstr ""
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:247
+#: ../dbconfig-common.templates:270
 msgid "Connection method for PostgreSQL database of ${pkg}:"
 msgstr "Metodo di connessione al database PostgreSQL per ${pkg}:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:247
+#: ../dbconfig-common.templates:270
 msgid ""
 "By default, ${pkg} will be configured to use a PostgreSQL server through a "
 "local unix socket (this provides the best performance). However, if you "
@@ -588,13 +648,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:255
+#: ../dbconfig-common.templates:278
 msgid "PostgreSQL application password for ${pkg}:"
 msgstr "Password applicativa di ${pkg} per PostgreSQL:"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:255
+#: ../dbconfig-common.templates:278
 msgid ""
 "Please provide a password for ${pkg} to register with the database server.  "
 "If left blank, a random password will be generated for you. PostgreSQL "
@@ -607,13 +667,13 @@
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:264
+#: ../dbconfig-common.templates:287
 msgid "Name of your database's administrative user:"
 msgstr "Node dell'utente amministratore del database:"
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:264
+#: ../dbconfig-common.templates:287
 msgid ""
 "What is the name of the account with which this package should perform "
 "administrative actions?  This user is the one which is able to create new "
@@ -625,13 +685,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:271
+#: ../dbconfig-common.templates:294
 msgid "Password of your database's administrative user:"
 msgstr "Password per l'utente amministratore del database:"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:271
+#: ../dbconfig-common.templates:294
 msgid ""
 "What is the password for the account with which this package should perform "
 "administrative actions?  (For a normal Debian PostgreSQL installation, a "
@@ -645,13 +705,13 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:281
+#: ../dbconfig-common.templates:304
 msgid "Method for authenticating PostgreSQL administrator:"
 msgstr "Modalità di autenticazione dell'amministratore PostgreSQL:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:281
+#: ../dbconfig-common.templates:304
 msgid ""
 "PostgreSQL servers provide several different mechanisms for authenticating "
 "connections.  Please select what method the administrative user should use "
@@ -663,25 +723,25 @@
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:302
+#: ../dbconfig-common.templates:325
 msgid "ident"
 msgstr ""
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:302
+#: ../dbconfig-common.templates:325
 msgid "password"
 msgstr ""
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid "Method for authenticating PostgreSQL user:"
 msgstr "Modalità di autenticazione dell'utente PostgreSQL:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "PostgreSQL servers provide several different mechanisms for authenticating "
 "connections.  Please select what method the database user should use when "
@@ -693,7 +753,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"ident\" authentication on the local machine, the server will check "
 "that the owner of the unix socket is allowed to connect."
@@ -703,7 +763,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"ident\" authentication to remote hosts, RFC 1413 based ident is used "
 "(note this can be considered a security risk)."
@@ -714,7 +774,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"password\" authentication, a password will be passed to the server "
 "for use with some authentication backend (such as \"md5\" or \"pam\").  Note "
@@ -728,7 +788,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "For a default Debian PostgreSQL installation running on the same host, you "
 "probably want \"ident\"."
@@ -738,13 +798,13 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid "Choose a different PostgreSQL connection method?"
 msgstr "Scegliere un diverso metodo di connessione a PostgreSQL?"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid ""
 "Unfortunately, it seems that the database connection method you have "
 "selected for ${pkg} will not work, because it requires the existence of a "
@@ -756,7 +816,7 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid ""
 "If you would like to reconfigure your application to use a different method, "
 "you should choose this option.  If you know for certain that this method "
@@ -770,13 +830,13 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:337
+#: ../dbconfig-common.templates:360
 msgid "Change PostgreSQL configuration automatically?"
 msgstr "Modificare la configurazione di PostgreSQL automaticamente?"
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:337
+#: ../dbconfig-common.templates:360
 msgid ""
 "It has been determined that the database installation for ${pkg} can not be "
 "automatically accomplished without making changes to your PostgreSQL "
@@ -788,14 +848,14 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 #, fuzzy
 msgid "Revert PostgreSQL configuration automatically?"
 msgstr "Modificare la configurazione di PostgreSQL automaticamente?"
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid ""
 "As ${pkg} is now being removed, it may no longer be necessary to have an "
 "access control entry in your PostgreSQL server's configuration. While "
@@ -808,19 +868,19 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid "${pghbaline}"
 msgstr ""
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:363
+#: ../dbconfig-common.templates:386
 msgid "Please change /etc/postgresql/pg_hba.conf"
 msgstr "Modificare /etc/postgresql/pg_hba.conf"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:363
+#: ../dbconfig-common.templates:386
 msgid ""
 "To get the database for package ${pkg} bootstrapped you have to edit the "
 "configuration of your PostgreSQL server. You may be able to find help in the "
@@ -832,19 +892,19 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:370
+#: ../dbconfig-common.templates:393
 msgid "PostgreSQL does not support empty passwords."
 msgstr "PostgreSQL non permette le password vuote."
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:374
+#: ../dbconfig-common.templates:397
 msgid "dbconfig-common will attempt to load existing settings"
 msgstr "dbconfig-common cercherà di carica le impostazioni esistenti"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:374
+#: ../dbconfig-common.templates:397
 msgid ""
 "dbconfig-common will now attempt to load the pre-existing settings of "
 "${pkg}.  Later, these settings will be validated, and if there is any "

Modified: branches/sqlite/debian/po/nl.po
===================================================================
--- branches/sqlite/debian/po/nl.po	2006-06-10 04:07:53 UTC (rev 250)
+++ branches/sqlite/debian/po/nl.po	2006-06-10 06:14:06 UTC (rev 251)
@@ -14,8 +14,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: dbconfig-common\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-05-24 21:48+0200\n"
+"Report-Msgid-Bugs-To: seanius at debian.org\n"
+"POT-Creation-Date: 2006-06-10 18:10+1200\n"
 "PO-Revision-Date: 2006-02-19 19:12+0100\n"
 "Last-Translator: Bart Cornelis <cobaco at linux.be>\n"
 "Language-Team: debian-l10n-dutch <debian-l10n-dutch at lists.debian.org>\n"
@@ -530,16 +530,81 @@
 "bijgevolg alle vrijheid om dingen in de database toe te voegen, veranderen, "
 "of verwijderen."
 
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:211
+#, fuzzy
+msgid "${dbvendor} storage directory for ${pkg}:"
+msgstr ""
+"Met welke gebruikersnaam dient ${pkg} zich bij ${dbvendor} aan te melden?"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:211
+#, fuzzy
+msgid ""
+"Please provide a path where the ${dbvendor} database file for ${pkg}  should "
+"be installed into."
+msgstr ""
+"Gelieve hier de naam op te geven van de door ${pkg} te gebruiken ${dbvendor}-"
+"database."
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+#, fuzzy
+msgid "${dbvendor} database ownership for ${pkg}:"
+msgstr ""
+"Wat is/wordt de naam van de door ${pkg} te gebruiken ${dbvendor}-database?"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+msgid ""
+"Please specify the filesystem ownership that you would like to set on the "
+"${dbvendor} database for ${pkg}."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+msgid "This should be specified in the format owner:group."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+#, fuzzy
+msgid "${dbvendor} database permissions for ${pkg}:"
+msgstr ""
+"Wat is/wordt de naam van de door ${pkg} te gebruiken ${dbvendor}-database?"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+msgid ""
+"Please specify the filesystem permissions that you would like to set on the "
+"${dbvendor} database for ${pkg}."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+msgid ""
+"This should be specified in octal format as would be passed to the chmod  "
+"unix command. eg. 0644."
+msgstr ""
+
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:213
+#: ../dbconfig-common.templates:236
 msgid "Connection method for MySQL database of ${pkg}:"
 msgstr ""
 "Met welke methode wilt u verbinding leggen met de ${pkg}-MySQL-database?"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:213
+#: ../dbconfig-common.templates:236
 msgid ""
 "By default, ${pkg} will be configured to use a MySQL server through a local "
 "unix socket (this provides the best performance). However, if you would like "
@@ -553,14 +618,14 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:221
+#: ../dbconfig-common.templates:244
 msgid "MySQL application password for ${pkg}:"
 msgstr ""
 "Wat is het wachtwoord waarmee ${pkg} zich bij MySQL dient aan te melden?"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:221
+#: ../dbconfig-common.templates:244
 msgid ""
 "Please provide a password for ${pkg} to register with the database server.  "
 "If left blank, a random password will be generated for you."
@@ -571,7 +636,7 @@
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:229
+#: ../dbconfig-common.templates:252
 msgid ""
 "For MySQL, this is almost always \"root\".  Note that this is NOT the same "
 "as the UNIX login 'root'."
@@ -581,7 +646,7 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:239
+#: ../dbconfig-common.templates:262
 msgid ""
 "What is the password for the administrative account with which this package "
 "should create its MySQL database and user?"
@@ -591,32 +656,32 @@
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "unix socket"
 msgstr "unix socket"
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "tcp/ip"
 msgstr "tcp/ip"
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "tcp/ip + ssl"
 msgstr "tcp/ip + ssl"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:247
+#: ../dbconfig-common.templates:270
 msgid "Connection method for PostgreSQL database of ${pkg}:"
 msgstr ""
 "Met welke methode wilt u verbinding leggen met de ${pkg}-PostgreSQL-database?"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:247
+#: ../dbconfig-common.templates:270
 msgid ""
 "By default, ${pkg} will be configured to use a PostgreSQL server through a "
 "local unix socket (this provides the best performance). However, if you "
@@ -630,14 +695,14 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:255
+#: ../dbconfig-common.templates:278
 msgid "PostgreSQL application password for ${pkg}:"
 msgstr ""
 "Wat is het wachtwoord waarmee ${pkg} zich bij PostgreSQL dient aan te melden?"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:255
+#: ../dbconfig-common.templates:278
 msgid ""
 "Please provide a password for ${pkg} to register with the database server.  "
 "If left blank, a random password will be generated for you. PostgreSQL "
@@ -650,13 +715,13 @@
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:264
+#: ../dbconfig-common.templates:287
 msgid "Name of your database's administrative user:"
 msgstr "Wat is de naam van de beheers-account voor uw database?"
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:264
+#: ../dbconfig-common.templates:287
 msgid ""
 "What is the name of the account with which this package should perform "
 "administrative actions?  This user is the one which is able to create new "
@@ -667,13 +732,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:271
+#: ../dbconfig-common.templates:294
 msgid "Password of your database's administrative user:"
 msgstr "Wat is het wachtwoord van de beheers-account voor uw database?"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:271
+#: ../dbconfig-common.templates:294
 msgid ""
 "What is the password for the account with which this package should perform "
 "administrative actions?  (For a normal Debian PostgreSQL installation, a "
@@ -687,14 +752,14 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:281
+#: ../dbconfig-common.templates:304
 msgid "Method for authenticating PostgreSQL administrator:"
 msgstr ""
 "Welke authenticatiemethode wordt gebruikt door de PostgreSQL-beheerder?"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:281
+#: ../dbconfig-common.templates:304
 msgid ""
 "PostgreSQL servers provide several different mechanisms for authenticating "
 "connections.  Please select what method the administrative user should use "
@@ -706,26 +771,26 @@
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:302
+#: ../dbconfig-common.templates:325
 msgid "ident"
 msgstr "ident"
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:302
+#: ../dbconfig-common.templates:325
 msgid "password"
 msgstr "wachtwoord"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid "Method for authenticating PostgreSQL user:"
 msgstr ""
 "Welke authenticatiemethode wordt gebruikt door de PostgreSQL-gebruiker?"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "PostgreSQL servers provide several different mechanisms for authenticating "
 "connections.  Please select what method the database user should use when "
@@ -738,7 +803,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"ident\" authentication on the local machine, the server will check "
 "that the owner of the unix socket is allowed to connect."
@@ -748,7 +813,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"ident\" authentication to remote hosts, RFC 1413 based ident is used "
 "(note this can be considered a security risk)."
@@ -759,7 +824,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"password\" authentication, a password will be passed to the server "
 "for use with some authentication backend (such as \"md5\" or \"pam\").  Note "
@@ -773,7 +838,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "For a default Debian PostgreSQL installation running on the same host, you "
 "probably want \"ident\"."
@@ -783,13 +848,13 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid "Choose a different PostgreSQL connection method?"
 msgstr "Een andere PostgreSQL verbindingsmethode kiezen?"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid ""
 "Unfortunately, it seems that the database connection method you have "
 "selected for ${pkg} will not work, because it requires the existence of a "
@@ -801,7 +866,7 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid ""
 "If you would like to reconfigure your application to use a different method, "
 "you should choose this option.  If you know for certain that this method "
@@ -815,13 +880,13 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:337
+#: ../dbconfig-common.templates:360
 msgid "Change PostgreSQL configuration automatically?"
 msgstr "Wilt u dat de PostgreSQL-configuratie automatisch aangepast wordt?"
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:337
+#: ../dbconfig-common.templates:360
 msgid ""
 "It has been determined that the database installation for ${pkg} can not be "
 "automatically accomplished without making changes to your PostgreSQL "
@@ -839,13 +904,13 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid "Revert PostgreSQL configuration automatically?"
 msgstr "Wilt u dat de PostgreSQL-configuratie automatisch teruggezet wordt?"
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid ""
 "As ${pkg} is now being removed, it may no longer be necessary to have an "
 "access control entry in your PostgreSQL server's configuration. While "
@@ -865,19 +930,19 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid "${pghbaline}"
 msgstr "${pghbaline}"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:363
+#: ../dbconfig-common.templates:386
 msgid "Please change /etc/postgresql/pg_hba.conf"
 msgstr "Gelieve /etc/postgresql/pg_hba.conf aan te passen."
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:363
+#: ../dbconfig-common.templates:386
 msgid ""
 "To get the database for package ${pkg} bootstrapped you have to edit the "
 "configuration of your PostgreSQL server. You may be able to find help in the "
@@ -889,19 +954,19 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:370
+#: ../dbconfig-common.templates:393
 msgid "PostgreSQL does not support empty passwords."
 msgstr "PostgreSQL ondersteunt geen lege wachtwoorden."
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:374
+#: ../dbconfig-common.templates:397
 msgid "dbconfig-common will attempt to load existing settings"
 msgstr "dbconfig-common zal proberen bestaande instellingen te laden"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:374
+#: ../dbconfig-common.templates:397
 msgid ""
 "dbconfig-common will now attempt to load the pre-existing settings of "
 "${pkg}.  Later, these settings will be validated, and if there is any "

Modified: branches/sqlite/debian/po/pt.po
===================================================================
--- branches/sqlite/debian/po/pt.po	2006-06-10 04:07:53 UTC (rev 250)
+++ branches/sqlite/debian/po/pt.po	2006-06-10 06:14:06 UTC (rev 251)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: dbconfig-common 1.6\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-05-24 21:48+0200\n"
+"Report-Msgid-Bugs-To: seanius at debian.org\n"
+"POT-Creation-Date: 2006-06-10 18:10+1200\n"
 "PO-Revision-Date: 2006-02-21 23:13+0000\n"
 "Last-Translator: Miguel Figueiredo <elmig at debianpt.org>\n"
 "Language-Team: Portuguese <traduz at debianpt.org>\n"
@@ -507,15 +507,77 @@
 "serem criados por esta instalação.  Este utilizador terá completa liberdade "
 "para inserir, alterar ou apagar dados na base de dados."
 
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:211
+#, fuzzy
+msgid "${dbvendor} storage directory for ${pkg}:"
+msgstr "Nome de utilizador de ${dbvendor} para ${pkg}:"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:211
+#, fuzzy
+msgid ""
+"Please provide a path where the ${dbvendor} database file for ${pkg}  should "
+"be installed into."
+msgstr ""
+"Por favor disponibilize um nome para a base de dados ${dbvendor} para ser "
+"utilizada por ${pkg}."
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+#, fuzzy
+msgid "${dbvendor} database ownership for ${pkg}:"
+msgstr "Nome de base de dados ${dbvendor} para ${pkg}:"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+msgid ""
+"Please specify the filesystem ownership that you would like to set on the "
+"${dbvendor} database for ${pkg}."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+msgid "This should be specified in the format owner:group."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+#, fuzzy
+msgid "${dbvendor} database permissions for ${pkg}:"
+msgstr "Nome de base de dados ${dbvendor} para ${pkg}:"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+msgid ""
+"Please specify the filesystem permissions that you would like to set on the "
+"${dbvendor} database for ${pkg}."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+msgid ""
+"This should be specified in octal format as would be passed to the chmod  "
+"unix command. eg. 0644."
+msgstr ""
+
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:213
+#: ../dbconfig-common.templates:236
 msgid "Connection method for MySQL database of ${pkg}:"
 msgstr "Método de ligação para a base de dados MySQL de ${pkg}:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:213
+#: ../dbconfig-common.templates:236
 msgid ""
 "By default, ${pkg} will be configured to use a MySQL server through a local "
 "unix socket (this provides the best performance). However, if you would like "
@@ -529,13 +591,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:221
+#: ../dbconfig-common.templates:244
 msgid "MySQL application password for ${pkg}:"
 msgstr "Password da aplicação MySQL para ${pkg}:"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:221
+#: ../dbconfig-common.templates:244
 msgid ""
 "Please provide a password for ${pkg} to register with the database server.  "
 "If left blank, a random password will be generated for you."
@@ -546,7 +608,7 @@
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:229
+#: ../dbconfig-common.templates:252
 msgid ""
 "For MySQL, this is almost always \"root\".  Note that this is NOT the same "
 "as the UNIX login 'root'."
@@ -556,7 +618,7 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:239
+#: ../dbconfig-common.templates:262
 msgid ""
 "What is the password for the administrative account with which this package "
 "should create its MySQL database and user?"
@@ -566,31 +628,31 @@
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "unix socket"
 msgstr "socket unix"
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "tcp/ip"
 msgstr "tcp/ip"
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "tcp/ip + ssl"
 msgstr "tcp/ip + ssl"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:247
+#: ../dbconfig-common.templates:270
 msgid "Connection method for PostgreSQL database of ${pkg}:"
 msgstr "Método de ligação para a base de dados PostgreSQL para ${pkg}:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:247
+#: ../dbconfig-common.templates:270
 msgid ""
 "By default, ${pkg} will be configured to use a PostgreSQL server through a "
 "local unix socket (this provides the best performance). However, if you "
@@ -604,13 +666,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:255
+#: ../dbconfig-common.templates:278
 msgid "PostgreSQL application password for ${pkg}:"
 msgstr "Password da aplicação PostgreSQL para ${pkg}:"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:255
+#: ../dbconfig-common.templates:278
 msgid ""
 "Please provide a password for ${pkg} to register with the database server.  "
 "If left blank, a random password will be generated for you. PostgreSQL "
@@ -623,13 +685,13 @@
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:264
+#: ../dbconfig-common.templates:287
 msgid "Name of your database's administrative user:"
 msgstr "Nome do utilizador administrativo da sua base de dados:"
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:264
+#: ../dbconfig-common.templates:287
 msgid ""
 "What is the name of the account with which this package should perform "
 "administrative actions?  This user is the one which is able to create new "
@@ -641,13 +703,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:271
+#: ../dbconfig-common.templates:294
 msgid "Password of your database's administrative user:"
 msgstr "Password do utilizador administrativo da sua base de dados:"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:271
+#: ../dbconfig-common.templates:294
 msgid ""
 "What is the password for the account with which this package should perform "
 "administrative actions?  (For a normal Debian PostgreSQL installation, a "
@@ -661,13 +723,13 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:281
+#: ../dbconfig-common.templates:304
 msgid "Method for authenticating PostgreSQL administrator:"
 msgstr "Método para autenticar o administrador de PostgreSQL:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:281
+#: ../dbconfig-common.templates:304
 msgid ""
 "PostgreSQL servers provide several different mechanisms for authenticating "
 "connections.  Please select what method the administrative user should use "
@@ -679,25 +741,25 @@
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:302
+#: ../dbconfig-common.templates:325
 msgid "ident"
 msgstr "ident"
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:302
+#: ../dbconfig-common.templates:325
 msgid "password"
 msgstr "password"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid "Method for authenticating PostgreSQL user:"
 msgstr "Método para autenticar o utilizador de PostgreSQL:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "PostgreSQL servers provide several different mechanisms for authenticating "
 "connections.  Please select what method the database user should use when "
@@ -709,7 +771,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"ident\" authentication on the local machine, the server will check "
 "that the owner of the unix socket is allowed to connect."
@@ -719,7 +781,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"ident\" authentication to remote hosts, RFC 1413 based ident is used "
 "(note this can be considered a security risk)."
@@ -729,7 +791,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"password\" authentication, a password will be passed to the server "
 "for use with some authentication backend (such as \"md5\" or \"pam\").  Note "
@@ -743,7 +805,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "For a default Debian PostgreSQL installation running on the same host, you "
 "probably want \"ident\"."
@@ -753,13 +815,13 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid "Choose a different PostgreSQL connection method?"
 msgstr "Escolher um método de ligação de PostgreSQL diferente?"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid ""
 "Unfortunately, it seems that the database connection method you have "
 "selected for ${pkg} will not work, because it requires the existence of a "
@@ -771,7 +833,7 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid ""
 "If you would like to reconfigure your application to use a different method, "
 "you should choose this option.  If you know for certain that this method "
@@ -784,13 +846,13 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:337
+#: ../dbconfig-common.templates:360
 msgid "Change PostgreSQL configuration automatically?"
 msgstr "Alterar a configuração de PostgreSQL automaticamente?"
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:337
+#: ../dbconfig-common.templates:360
 msgid ""
 "It has been determined that the database installation for ${pkg} can not be "
 "automatically accomplished without making changes to your PostgreSQL "
@@ -808,13 +870,13 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid "Revert PostgreSQL configuration automatically?"
 msgstr "Reverter automaticamente a configuração de PostgreSQL?"
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid ""
 "As ${pkg} is now being removed, it may no longer be necessary to have an "
 "access control entry in your PostgreSQL server's configuration. While "
@@ -834,19 +896,19 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid "${pghbaline}"
 msgstr "${pghbaline}"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:363
+#: ../dbconfig-common.templates:386
 msgid "Please change /etc/postgresql/pg_hba.conf"
 msgstr "Por favor altere /etc/postgresql/pg_hba.conf"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:363
+#: ../dbconfig-common.templates:386
 msgid ""
 "To get the database for package ${pkg} bootstrapped you have to edit the "
 "configuration of your PostgreSQL server. You may be able to find help in the "
@@ -858,19 +920,19 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:370
+#: ../dbconfig-common.templates:393
 msgid "PostgreSQL does not support empty passwords."
 msgstr "O PostgreSQL não suporta passwords vazias."
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:374
+#: ../dbconfig-common.templates:397
 msgid "dbconfig-common will attempt to load existing settings"
 msgstr "o dbconfig-common irá tentar carregar as definições existentes"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:374
+#: ../dbconfig-common.templates:397
 msgid ""
 "dbconfig-common will now attempt to load the pre-existing settings of "
 "${pkg}.  Later, these settings will be validated, and if there is any "

Modified: branches/sqlite/debian/po/pt_BR.po
===================================================================
--- branches/sqlite/debian/po/pt_BR.po	2006-06-10 04:07:53 UTC (rev 250)
+++ branches/sqlite/debian/po/pt_BR.po	2006-06-10 06:14:06 UTC (rev 251)
@@ -14,8 +14,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: dbconfig-common 1.5.1\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-05-24 21:48+0200\n"
+"Report-Msgid-Bugs-To: seanius at debian.org\n"
+"POT-Creation-Date: 2006-06-10 18:10+1200\n"
 "PO-Revision-Date: 2005-04-13 18:51-0300\n"
 "Last-Translator: Gustavo Noronha Silva <kov at debian.org>\n"
 "Language-Team: Brazilian Portuguese <debian-l10n-portuguese at lists.debian."
@@ -499,15 +499,77 @@
 "objetos a serem criados por essa instalação. Esse usuário terá liberdade "
 "completa para inserir, mudar ou excluir dados na base de dados."
 
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:211
+#, fuzzy
+msgid "${dbvendor} storage directory for ${pkg}:"
+msgstr "Nome de usuário ${dbvendor} para o pacote ${pkg}:"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:211
+#, fuzzy
+msgid ""
+"Please provide a path where the ${dbvendor} database file for ${pkg}  should "
+"be installed into."
+msgstr ""
+"Por favor forneça um nome para a base de dados ${dbvendor} a ser usada pelo "
+"pacote ${pkg}."
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+#, fuzzy
+msgid "${dbvendor} database ownership for ${pkg}:"
+msgstr "Nome da base de dados ${dbvendor} para o pacote ${pkg}:"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+msgid ""
+"Please specify the filesystem ownership that you would like to set on the "
+"${dbvendor} database for ${pkg}."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+msgid "This should be specified in the format owner:group."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+#, fuzzy
+msgid "${dbvendor} database permissions for ${pkg}:"
+msgstr "Nome da base de dados ${dbvendor} para o pacote ${pkg}:"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+msgid ""
+"Please specify the filesystem permissions that you would like to set on the "
+"${dbvendor} database for ${pkg}."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+msgid ""
+"This should be specified in octal format as would be passed to the chmod  "
+"unix command. eg. 0644."
+msgstr ""
+
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:213
+#: ../dbconfig-common.templates:236
 msgid "Connection method for MySQL database of ${pkg}:"
 msgstr "Método de conexão para a base de dados MySQL do pacote ${pkg}:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:213
+#: ../dbconfig-common.templates:236
 msgid ""
 "By default, ${pkg} will be configured to use a MySQL server through a local "
 "unix socket (this provides the best performance). However, if you would like "
@@ -521,13 +583,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:221
+#: ../dbconfig-common.templates:244
 msgid "MySQL application password for ${pkg}:"
 msgstr "Senha MySQL da aplicação para o pacote ${pkg}:"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:221
+#: ../dbconfig-common.templates:244
 #, fuzzy
 msgid ""
 "Please provide a password for ${pkg} to register with the database server.  "
@@ -538,7 +600,7 @@
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:229
+#: ../dbconfig-common.templates:252
 msgid ""
 "For MySQL, this is almost always \"root\".  Note that this is NOT the same "
 "as the UNIX login 'root'."
@@ -548,7 +610,7 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:239
+#: ../dbconfig-common.templates:262
 msgid ""
 "What is the password for the administrative account with which this package "
 "should create its MySQL database and user?"
@@ -558,31 +620,31 @@
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "unix socket"
 msgstr ""
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "tcp/ip"
 msgstr ""
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "tcp/ip + ssl"
 msgstr ""
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:247
+#: ../dbconfig-common.templates:270
 msgid "Connection method for PostgreSQL database of ${pkg}:"
 msgstr "Método de conexão para a base de dados PostgreSQL do pacote ${pkg}:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:247
+#: ../dbconfig-common.templates:270
 msgid ""
 "By default, ${pkg} will be configured to use a PostgreSQL server through a "
 "local unix socket (this provides the best performance). However, if you "
@@ -596,13 +658,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:255
+#: ../dbconfig-common.templates:278
 msgid "PostgreSQL application password for ${pkg}:"
 msgstr "Senha da aplicação PostgreSQL para o pacote ${pkg}:"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:255
+#: ../dbconfig-common.templates:278
 #, fuzzy
 msgid ""
 "Please provide a password for ${pkg} to register with the database server.  "
@@ -615,13 +677,13 @@
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:264
+#: ../dbconfig-common.templates:287
 msgid "Name of your database's administrative user:"
 msgstr "Nome do usuário administrativo do banco de dados:"
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:264
+#: ../dbconfig-common.templates:287
 msgid ""
 "What is the name of the account with which this package should perform "
 "administrative actions?  This user is the one which is able to create new "
@@ -632,13 +694,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:271
+#: ../dbconfig-common.templates:294
 msgid "Password of your database's administrative user:"
 msgstr "Senha do usuário administrativo do banco de dados:"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:271
+#: ../dbconfig-common.templates:294
 msgid ""
 "What is the password for the account with which this package should perform "
 "administrative actions?  (For a normal Debian PostgreSQL installation, a "
@@ -651,13 +713,13 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:281
+#: ../dbconfig-common.templates:304
 msgid "Method for authenticating PostgreSQL administrator:"
 msgstr "Método para autenticar o administrador do PostgreSQL:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:281
+#: ../dbconfig-common.templates:304
 msgid ""
 "PostgreSQL servers provide several different mechanisms for authenticating "
 "connections.  Please select what method the administrative user should use "
@@ -669,25 +731,25 @@
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:302
+#: ../dbconfig-common.templates:325
 msgid "ident"
 msgstr ""
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:302
+#: ../dbconfig-common.templates:325
 msgid "password"
 msgstr ""
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid "Method for authenticating PostgreSQL user:"
 msgstr "Método para autenticar o usuário PostgreSQL:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "PostgreSQL servers provide several different mechanisms for authenticating "
 "connections.  Please select what method the database user should use when "
@@ -699,7 +761,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"ident\" authentication on the local machine, the server will check "
 "that the owner of the unix socket is allowed to connect."
@@ -709,7 +771,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"ident\" authentication to remote hosts, RFC 1413 based ident is used "
 "(note this can be considered a security risk)."
@@ -719,7 +781,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"password\" authentication, a password will be passed to the server "
 "for use with some authentication backend (such as \"md5\" or \"pam\").  Note "
@@ -733,7 +795,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "For a default Debian PostgreSQL installation running on the same host, you "
 "probably want \"ident\"."
@@ -743,13 +805,13 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid "Choose a different PostgreSQL connection method?"
 msgstr ""
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid ""
 "Unfortunately, it seems that the database connection method you have "
 "selected for ${pkg} will not work, because it requires the existence of a "
@@ -758,7 +820,7 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 #, fuzzy
 msgid ""
 "If you would like to reconfigure your application to use a different method, "
@@ -773,13 +835,13 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:337
+#: ../dbconfig-common.templates:360
 msgid "Change PostgreSQL configuration automatically?"
 msgstr "Mudar a configuração do PostgreSQL automaticamente?"
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:337
+#: ../dbconfig-common.templates:360
 msgid ""
 "It has been determined that the database installation for ${pkg} can not be "
 "automatically accomplished without making changes to your PostgreSQL "
@@ -791,14 +853,14 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 #, fuzzy
 msgid "Revert PostgreSQL configuration automatically?"
 msgstr "Mudar a configuração do PostgreSQL automaticamente?"
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid ""
 "As ${pkg} is now being removed, it may no longer be necessary to have an "
 "access control entry in your PostgreSQL server's configuration. While "
@@ -811,19 +873,19 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid "${pghbaline}"
 msgstr ""
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:363
+#: ../dbconfig-common.templates:386
 msgid "Please change /etc/postgresql/pg_hba.conf"
 msgstr "Por favor modifique o /etc/postgresql/pg_hba.conf"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:363
+#: ../dbconfig-common.templates:386
 msgid ""
 "To get the database for package ${pkg} bootstrapped you have to edit the "
 "configuration of your PostgreSQL server. You may be able to find help in the "
@@ -835,19 +897,19 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:370
+#: ../dbconfig-common.templates:393
 msgid "PostgreSQL does not support empty passwords."
 msgstr ""
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:374
+#: ../dbconfig-common.templates:397
 msgid "dbconfig-common will attempt to load existing settings"
 msgstr ""
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:374
+#: ../dbconfig-common.templates:397
 msgid ""
 "dbconfig-common will now attempt to load the pre-existing settings of "
 "${pkg}.  Later, these settings will be validated, and if there is any "

Modified: branches/sqlite/debian/po/sv.po
===================================================================
--- branches/sqlite/debian/po/sv.po	2006-06-10 04:07:53 UTC (rev 250)
+++ branches/sqlite/debian/po/sv.po	2006-06-10 06:14:06 UTC (rev 251)
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: dbconfig-common 1.8.5\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-05-24 21:48+0200\n"
+"Report-Msgid-Bugs-To: seanius at debian.org\n"
+"POT-Creation-Date: 2006-06-10 18:10+1200\n"
 "PO-Revision-Date: 2005-12-01 22:10+0100\n"
 "Last-Translator: Daniel Nylander <po at danielnylander.se>\n"
 "Language-Team: Swedish <tp-sv at listor.tp-sv.se>\n"
@@ -497,15 +497,75 @@
 "som skapas av denna installation. Denna användare kommer att ha total frihet "
 "att lägga till, ändra och ta bort data i databasen."
 
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:211
+#, fuzzy
+msgid "${dbvendor} storage directory for ${pkg}:"
+msgstr "${dbvendor}-användarnamn för ${pkg}:"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:211
+#, fuzzy
+msgid ""
+"Please provide a path where the ${dbvendor} database file for ${pkg}  should "
+"be installed into."
+msgstr "Ange ett namn för ${dbvendor}-databasen som ska användas av ${pkg}."
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+#, fuzzy
+msgid "${dbvendor} database ownership for ${pkg}:"
+msgstr "${dbvendor}-databasnamn för ${pkg}:"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+msgid ""
+"Please specify the filesystem ownership that you would like to set on the "
+"${dbvendor} database for ${pkg}."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+msgid "This should be specified in the format owner:group."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+#, fuzzy
+msgid "${dbvendor} database permissions for ${pkg}:"
+msgstr "${dbvendor}-databasnamn för ${pkg}:"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+msgid ""
+"Please specify the filesystem permissions that you would like to set on the "
+"${dbvendor} database for ${pkg}."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+msgid ""
+"This should be specified in octal format as would be passed to the chmod  "
+"unix command. eg. 0644."
+msgstr ""
+
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:213
+#: ../dbconfig-common.templates:236
 msgid "Connection method for MySQL database of ${pkg}:"
 msgstr "Anslutningsmetod för MySQL-databasen för ${pkg}:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:213
+#: ../dbconfig-common.templates:236
 msgid ""
 "By default, ${pkg} will be configured to use a MySQL server through a local "
 "unix socket (this provides the best performance). However, if you would like "
@@ -519,13 +579,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:221
+#: ../dbconfig-common.templates:244
 msgid "MySQL application password for ${pkg}:"
 msgstr "MySQL-lösenord för ${pkg}:"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:221
+#: ../dbconfig-common.templates:244
 msgid ""
 "Please provide a password for ${pkg} to register with the database server.  "
 "If left blank, a random password will be generated for you."
@@ -535,7 +595,7 @@
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:229
+#: ../dbconfig-common.templates:252
 msgid ""
 "For MySQL, this is almost always \"root\".  Note that this is NOT the same "
 "as the UNIX login 'root'."
@@ -545,7 +605,7 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:239
+#: ../dbconfig-common.templates:262
 msgid ""
 "What is the password for the administrative account with which this package "
 "should create its MySQL database and user?"
@@ -555,31 +615,31 @@
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "unix socket"
 msgstr "unix socket"
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "tcp/ip"
 msgstr "tcp/ip"
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "tcp/ip + ssl"
 msgstr "tcp/ip + ssl"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:247
+#: ../dbconfig-common.templates:270
 msgid "Connection method for PostgreSQL database of ${pkg}:"
 msgstr "Anslutningsmetod för PostgreSQL-databasen för ${pkg}:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:247
+#: ../dbconfig-common.templates:270
 msgid ""
 "By default, ${pkg} will be configured to use a PostgreSQL server through a "
 "local unix socket (this provides the best performance). However, if you "
@@ -593,13 +653,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:255
+#: ../dbconfig-common.templates:278
 msgid "PostgreSQL application password for ${pkg}:"
 msgstr "PostgreSQL-lösenord för ${pkg}:"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:255
+#: ../dbconfig-common.templates:278
 msgid ""
 "Please provide a password for ${pkg} to register with the database server.  "
 "If left blank, a random password will be generated for you. PostgreSQL "
@@ -612,13 +672,13 @@
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:264
+#: ../dbconfig-common.templates:287
 msgid "Name of your database's administrative user:"
 msgstr "Namnet på din databasadministratörs användare:"
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:264
+#: ../dbconfig-common.templates:287
 msgid ""
 "What is the name of the account with which this package should perform "
 "administrative actions?  This user is the one which is able to create new "
@@ -630,13 +690,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:271
+#: ../dbconfig-common.templates:294
 msgid "Password of your database's administrative user:"
 msgstr "Lösenord för din databasadministratörs användare:"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:271
+#: ../dbconfig-common.templates:294
 msgid ""
 "What is the password for the account with which this package should perform "
 "administrative actions?  (For a normal Debian PostgreSQL installation, a "
@@ -649,13 +709,13 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:281
+#: ../dbconfig-common.templates:304
 msgid "Method for authenticating PostgreSQL administrator:"
 msgstr "Metod för att autentisera PostgreSQL-administratören:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:281
+#: ../dbconfig-common.templates:304
 msgid ""
 "PostgreSQL servers provide several different mechanisms for authenticating "
 "connections.  Please select what method the administrative user should use "
@@ -667,25 +727,25 @@
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:302
+#: ../dbconfig-common.templates:325
 msgid "ident"
 msgstr "ident"
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:302
+#: ../dbconfig-common.templates:325
 msgid "password"
 msgstr "lösenord"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid "Method for authenticating PostgreSQL user:"
 msgstr "Metod för att autentisera PostgreSQL-användare:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "PostgreSQL servers provide several different mechanisms for authenticating "
 "connections.  Please select what method the database user should use when "
@@ -697,7 +757,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"ident\" authentication on the local machine, the server will check "
 "that the owner of the unix socket is allowed to connect."
@@ -707,7 +767,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"ident\" authentication to remote hosts, RFC 1413 based ident is used "
 "(note this can be considered a security risk)."
@@ -717,7 +777,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"password\" authentication, a password will be passed to the server "
 "for use with some authentication backend (such as \"md5\" or \"pam\").  Note "
@@ -731,7 +791,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "For a default Debian PostgreSQL installation running on the same host, you "
 "probably want \"ident\"."
@@ -741,13 +801,13 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid "Choose a different PostgreSQL connection method?"
 msgstr "Välja en annan anslutningsmetod för PostgreSQL?"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid ""
 "Unfortunately, it seems that the database connection method you have "
 "selected for ${pkg} will not work, because it requires the existence of a "
@@ -759,7 +819,7 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid ""
 "If you would like to reconfigure your application to use a different method, "
 "you should choose this option.  If you know for certain that this method "
@@ -772,13 +832,13 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:337
+#: ../dbconfig-common.templates:360
 msgid "Change PostgreSQL configuration automatically?"
 msgstr "Ändra konfiguration för PostgreSQL automatiskt?"
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:337
+#: ../dbconfig-common.templates:360
 msgid ""
 "It has been determined that the database installation for ${pkg} can not be "
 "automatically accomplished without making changes to your PostgreSQL "
@@ -795,13 +855,13 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid "Revert PostgreSQL configuration automatically?"
 msgstr "Återställ PostgreSQL-konfigurationen automatiskt?"
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid ""
 "As ${pkg} is now being removed, it may no longer be necessary to have an "
 "access control entry in your PostgreSQL server's configuration. While "
@@ -821,19 +881,19 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid "${pghbaline}"
 msgstr "${pghbaline}"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:363
+#: ../dbconfig-common.templates:386
 msgid "Please change /etc/postgresql/pg_hba.conf"
 msgstr "Vänligen ändra /etc/postgresql/pg_hba.conf"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:363
+#: ../dbconfig-common.templates:386
 msgid ""
 "To get the database for package ${pkg} bootstrapped you have to edit the "
 "configuration of your PostgreSQL server. You may be able to find help in the "
@@ -845,20 +905,20 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:370
+#: ../dbconfig-common.templates:393
 msgid "PostgreSQL does not support empty passwords."
 msgstr "PostgreSQL har inte stöd för blanka lösenord."
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:374
+#: ../dbconfig-common.templates:397
 msgid "dbconfig-common will attempt to load existing settings"
 msgstr ""
 "dbconfig-common kommer att försöka att läsa in existerande inställningar"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:374
+#: ../dbconfig-common.templates:397
 msgid ""
 "dbconfig-common will now attempt to load the pre-existing settings of "
 "${pkg}.  Later, these settings will be validated, and if there is any "

Modified: branches/sqlite/debian/po/templates.pot
===================================================================
--- branches/sqlite/debian/po/templates.pot	2006-06-10 04:07:53 UTC (rev 250)
+++ branches/sqlite/debian/po/templates.pot	2006-06-10 06:14:06 UTC (rev 251)
@@ -1,22 +1,14 @@
+# 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 <EMAIL at ADDRESS>, YEAR.
 #
-#    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: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-05-24 21:48+0200\n"
+"Report-Msgid-Bugs-To: seanius at debian.org\n"
+"POT-Creation-Date: 2006-06-10 18:10+1200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -423,15 +415,71 @@
 "insert, change or delete data in the database."
 msgstr ""
 
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:211
+msgid "${dbvendor} storage directory for ${pkg}:"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:211
+msgid ""
+"Please provide a path where the ${dbvendor} database file for ${pkg}  should "
+"be installed into."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+msgid "${dbvendor} database ownership for ${pkg}:"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+msgid ""
+"Please specify the filesystem ownership that you would like to set on the "
+"${dbvendor} database for ${pkg}."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+msgid "This should be specified in the format owner:group."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+msgid "${dbvendor} database permissions for ${pkg}:"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+msgid ""
+"Please specify the filesystem permissions that you would like to set on the "
+"${dbvendor} database for ${pkg}."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+msgid ""
+"This should be specified in octal format as would be passed to the chmod  "
+"unix command. eg. 0644."
+msgstr ""
+
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:213
+#: ../dbconfig-common.templates:236
 msgid "Connection method for MySQL database of ${pkg}:"
 msgstr ""
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:213
+#: ../dbconfig-common.templates:236
 msgid ""
 "By default, ${pkg} will be configured to use a MySQL server through a local "
 "unix socket (this provides the best performance). However, if you would like "
@@ -441,13 +489,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:221
+#: ../dbconfig-common.templates:244
 msgid "MySQL application password for ${pkg}:"
 msgstr ""
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:221
+#: ../dbconfig-common.templates:244
 msgid ""
 "Please provide a password for ${pkg} to register with the database server.  "
 "If left blank, a random password will be generated for you."
@@ -455,7 +503,7 @@
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:229
+#: ../dbconfig-common.templates:252
 msgid ""
 "For MySQL, this is almost always \"root\".  Note that this is NOT the same "
 "as the UNIX login 'root'."
@@ -463,7 +511,7 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:239
+#: ../dbconfig-common.templates:262
 msgid ""
 "What is the password for the administrative account with which this package "
 "should create its MySQL database and user?"
@@ -471,31 +519,31 @@
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "unix socket"
 msgstr ""
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "tcp/ip"
 msgstr ""
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "tcp/ip + ssl"
 msgstr ""
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:247
+#: ../dbconfig-common.templates:270
 msgid "Connection method for PostgreSQL database of ${pkg}:"
 msgstr ""
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:247
+#: ../dbconfig-common.templates:270
 msgid ""
 "By default, ${pkg} will be configured to use a PostgreSQL server through a "
 "local unix socket (this provides the best performance). However, if you "
@@ -505,13 +553,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:255
+#: ../dbconfig-common.templates:278
 msgid "PostgreSQL application password for ${pkg}:"
 msgstr ""
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:255
+#: ../dbconfig-common.templates:278
 msgid ""
 "Please provide a password for ${pkg} to register with the database server.  "
 "If left blank, a random password will be generated for you. PostgreSQL "
@@ -520,13 +568,13 @@
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:264
+#: ../dbconfig-common.templates:287
 msgid "Name of your database's administrative user:"
 msgstr ""
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:264
+#: ../dbconfig-common.templates:287
 msgid ""
 "What is the name of the account with which this package should perform "
 "administrative actions?  This user is the one which is able to create new "
@@ -535,13 +583,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:271
+#: ../dbconfig-common.templates:294
 msgid "Password of your database's administrative user:"
 msgstr ""
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:271
+#: ../dbconfig-common.templates:294
 msgid ""
 "What is the password for the account with which this package should perform "
 "administrative actions?  (For a normal Debian PostgreSQL installation, a "
@@ -551,13 +599,13 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:281
+#: ../dbconfig-common.templates:304
 msgid "Method for authenticating PostgreSQL administrator:"
 msgstr ""
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:281
+#: ../dbconfig-common.templates:304
 msgid ""
 "PostgreSQL servers provide several different mechanisms for authenticating "
 "connections.  Please select what method the administrative user should use "
@@ -566,25 +614,25 @@
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:302
+#: ../dbconfig-common.templates:325
 msgid "ident"
 msgstr ""
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:302
+#: ../dbconfig-common.templates:325
 msgid "password"
 msgstr ""
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid "Method for authenticating PostgreSQL user:"
 msgstr ""
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "PostgreSQL servers provide several different mechanisms for authenticating "
 "connections.  Please select what method the database user should use when "
@@ -593,7 +641,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"ident\" authentication on the local machine, the server will check "
 "that the owner of the unix socket is allowed to connect."
@@ -601,7 +649,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"ident\" authentication to remote hosts, RFC 1413 based ident is used "
 "(note this can be considered a security risk)."
@@ -609,7 +657,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"password\" authentication, a password will be passed to the server "
 "for use with some authentication backend (such as \"md5\" or \"pam\").  Note "
@@ -619,7 +667,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "For a default Debian PostgreSQL installation running on the same host, you "
 "probably want \"ident\"."
@@ -627,13 +675,13 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid "Choose a different PostgreSQL connection method?"
 msgstr ""
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid ""
 "Unfortunately, it seems that the database connection method you have "
 "selected for ${pkg} will not work, because it requires the existence of a "
@@ -642,7 +690,7 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid ""
 "If you would like to reconfigure your application to use a different method, "
 "you should choose this option.  If you know for certain that this method "
@@ -652,13 +700,13 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:337
+#: ../dbconfig-common.templates:360
 msgid "Change PostgreSQL configuration automatically?"
 msgstr ""
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:337
+#: ../dbconfig-common.templates:360
 msgid ""
 "It has been determined that the database installation for ${pkg} can not be "
 "automatically accomplished without making changes to your PostgreSQL "
@@ -670,13 +718,13 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid "Revert PostgreSQL configuration automatically?"
 msgstr ""
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid ""
 "As ${pkg} is now being removed, it may no longer be necessary to have an "
 "access control entry in your PostgreSQL server's configuration. While "
@@ -689,19 +737,19 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid "${pghbaline}"
 msgstr ""
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:363
+#: ../dbconfig-common.templates:386
 msgid "Please change /etc/postgresql/pg_hba.conf"
 msgstr ""
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:363
+#: ../dbconfig-common.templates:386
 msgid ""
 "To get the database for package ${pkg} bootstrapped you have to edit the "
 "configuration of your PostgreSQL server. You may be able to find help in the "
@@ -710,19 +758,19 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:370
+#: ../dbconfig-common.templates:393
 msgid "PostgreSQL does not support empty passwords."
 msgstr ""
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:374
+#: ../dbconfig-common.templates:397
 msgid "dbconfig-common will attempt to load existing settings"
 msgstr ""
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:374
+#: ../dbconfig-common.templates:397
 msgid ""
 "dbconfig-common will now attempt to load the pre-existing settings of "
 "${pkg}.  Later, these settings will be validated, and if there is any "

Modified: branches/sqlite/debian/po/vi.po
===================================================================
--- branches/sqlite/debian/po/vi.po	2006-06-10 04:07:53 UTC (rev 250)
+++ branches/sqlite/debian/po/vi.po	2006-06-10 06:14:06 UTC (rev 251)
@@ -5,8 +5,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: dbconfig-common 1.8.5\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-05-24 21:48+0200\n"
+"Report-Msgid-Bugs-To: seanius at debian.org\n"
+"POT-Creation-Date: 2006-06-10 18:10+1200\n"
 "PO-Revision-Date: 2005-12-05 15:20+1030\n"
 "Last-Translator: Clytie Siddall <clytie at riverland.net.au>\n"
 "Language-Team: Vietnamese <gnomevi-list at lists.sourceforge.net>\n"
@@ -494,15 +494,75 @@
 "tạo trong khi cài đặt. Người dùng này sẽ có mọi quyền chèn, thay đổi và xóa "
 "bỏ dữ liệu trong cơ sở dữ liệu."
 
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:211
+#, fuzzy
+msgid "${dbvendor} storage directory for ${pkg}:"
+msgstr "Tên dùng ${dbvendor} cho ${pkg}:"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:211
+#, fuzzy
+msgid ""
+"Please provide a path where the ${dbvendor} database file for ${pkg}  should "
+"be installed into."
+msgstr "Hãy nhập tên cho cơ sở dữ liệu ${dbvendor} mà ${pkg} sẽ dùng."
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+#, fuzzy
+msgid "${dbvendor} database ownership for ${pkg}:"
+msgstr "Tên cơ sở dữ liệu ${dbvendor} cho ${pkg}:"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+msgid ""
+"Please specify the filesystem ownership that you would like to set on the "
+"${dbvendor} database for ${pkg}."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:217
+msgid "This should be specified in the format owner:group."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+#, fuzzy
+msgid "${dbvendor} database permissions for ${pkg}:"
+msgstr "Tên cơ sở dữ liệu ${dbvendor} cho ${pkg}:"
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+msgid ""
+"Please specify the filesystem permissions that you would like to set on the "
+"${dbvendor} database for ${pkg}."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../dbconfig-common.templates:225
+msgid ""
+"This should be specified in octal format as would be passed to the chmod  "
+"unix command. eg. 0644."
+msgstr ""
+
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:213
+#: ../dbconfig-common.templates:236
 msgid "Connection method for MySQL database of ${pkg}:"
 msgstr "Phương pháp kết nối cho cơ sở dữ liêu MySQL của ${pkg}:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:213
+#: ../dbconfig-common.templates:236
 msgid ""
 "By default, ${pkg} will be configured to use a MySQL server through a local "
 "unix socket (this provides the best performance). However, if you would like "
@@ -516,13 +576,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:221
+#: ../dbconfig-common.templates:244
 msgid "MySQL application password for ${pkg}:"
 msgstr "Mật khẩu ứng dụng MySQL cho ${pkg}:"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:221
+#: ../dbconfig-common.templates:244
 msgid ""
 "Please provide a password for ${pkg} to register with the database server.  "
 "If left blank, a random password will be generated for you."
@@ -532,7 +592,7 @@
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:229
+#: ../dbconfig-common.templates:252
 msgid ""
 "For MySQL, this is almost always \"root\".  Note that this is NOT the same "
 "as the UNIX login 'root'."
@@ -542,7 +602,7 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:239
+#: ../dbconfig-common.templates:262
 msgid ""
 "What is the password for the administrative account with which this package "
 "should create its MySQL database and user?"
@@ -552,31 +612,31 @@
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "unix socket"
 msgstr "ổ cắm UNIX"
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "tcp/ip"
 msgstr "TCP/IP"
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:245
+#: ../dbconfig-common.templates:268
 msgid "tcp/ip + ssl"
 msgstr "TCP/IP + SSL"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:247
+#: ../dbconfig-common.templates:270
 msgid "Connection method for PostgreSQL database of ${pkg}:"
 msgstr "Phương pháp kết nối cho cơ sở dữ liệu PostgreSQL của ${pkg}:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:247
+#: ../dbconfig-common.templates:270
 msgid ""
 "By default, ${pkg} will be configured to use a PostgreSQL server through a "
 "local unix socket (this provides the best performance). However, if you "
@@ -590,13 +650,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:255
+#: ../dbconfig-common.templates:278
 msgid "PostgreSQL application password for ${pkg}:"
 msgstr "Mật khẩu ứng dụng PostgreSQL cho ${pkg}:"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:255
+#: ../dbconfig-common.templates:278
 msgid ""
 "Please provide a password for ${pkg} to register with the database server.  "
 "If left blank, a random password will be generated for you. PostgreSQL "
@@ -609,13 +669,13 @@
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:264
+#: ../dbconfig-common.templates:287
 msgid "Name of your database's administrative user:"
 msgstr "Tên người dùng quản trị cho cơ sở dữ liệu:"
 
 #. Type: string
 #. Description
-#: ../dbconfig-common.templates:264
+#: ../dbconfig-common.templates:287
 msgid ""
 "What is the name of the account with which this package should perform "
 "administrative actions?  This user is the one which is able to create new "
@@ -626,13 +686,13 @@
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:271
+#: ../dbconfig-common.templates:294
 msgid "Password of your database's administrative user:"
 msgstr "Mật khẩu của người dùng quản trị cho cơ sở dữ liệu:"
 
 #. Type: password
 #. Description
-#: ../dbconfig-common.templates:271
+#: ../dbconfig-common.templates:294
 msgid ""
 "What is the password for the account with which this package should perform "
 "administrative actions?  (For a normal Debian PostgreSQL installation, a "
@@ -645,13 +705,13 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:281
+#: ../dbconfig-common.templates:304
 msgid "Method for authenticating PostgreSQL administrator:"
 msgstr "Phương pháp xác thức quản trị PostgreSQL:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:281
+#: ../dbconfig-common.templates:304
 msgid ""
 "PostgreSQL servers provide several different mechanisms for authenticating "
 "connections.  Please select what method the administrative user should use "
@@ -663,25 +723,25 @@
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:302
+#: ../dbconfig-common.templates:325
 msgid "ident"
 msgstr "ident"
 
 #. Type: select
 #. Choices
-#: ../dbconfig-common.templates:302
+#: ../dbconfig-common.templates:325
 msgid "password"
 msgstr "mật khẩu"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid "Method for authenticating PostgreSQL user:"
 msgstr "Phương pháp xác thức người dùng PostgreSQL:"
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "PostgreSQL servers provide several different mechanisms for authenticating "
 "connections.  Please select what method the database user should use when "
@@ -693,7 +753,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"ident\" authentication on the local machine, the server will check "
 "that the owner of the unix socket is allowed to connect."
@@ -703,7 +763,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"ident\" authentication to remote hosts, RFC 1413 based ident is used "
 "(note this can be considered a security risk)."
@@ -713,7 +773,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "With \"password\" authentication, a password will be passed to the server "
 "for use with some authentication backend (such as \"md5\" or \"pam\").  Note "
@@ -727,7 +787,7 @@
 
 #. Type: select
 #. Description
-#: ../dbconfig-common.templates:303
+#: ../dbconfig-common.templates:326
 msgid ""
 "For a default Debian PostgreSQL installation running on the same host, you "
 "probably want \"ident\"."
@@ -737,13 +797,13 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid "Choose a different PostgreSQL connection method?"
 msgstr "Chọn một phương pháp kết nối PostgreSQL khác không?"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid ""
 "Unfortunately, it seems that the database connection method you have "
 "selected for ${pkg} will not work, because it requires the existence of a "
@@ -755,7 +815,7 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:324
+#: ../dbconfig-common.templates:347
 msgid ""
 "If you would like to reconfigure your application to use a different method, "
 "you should choose this option.  If you know for certain that this method "
@@ -769,13 +829,13 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:337
+#: ../dbconfig-common.templates:360
 msgid "Change PostgreSQL configuration automatically?"
 msgstr "Tự động thay đổi cấu hình PostgreSQL không?"
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:337
+#: ../dbconfig-common.templates:360
 msgid ""
 "It has been determined that the database installation for ${pkg} can not be "
 "automatically accomplished without making changes to your PostgreSQL "
@@ -792,13 +852,13 @@
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid "Revert PostgreSQL configuration automatically?"
 msgstr "Tự động hoàn nguyên cấu hình PostgreSQL không?"
 
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid ""
 "As ${pkg} is now being removed, it may no longer be necessary to have an "
 "access control entry in your PostgreSQL server's configuration. While "
@@ -818,19 +878,19 @@
 # Variable: don't translate / Biến: đừng dịch
 #. Type: boolean
 #. Description
-#: ../dbconfig-common.templates:350
+#: ../dbconfig-common.templates:373
 msgid "${pghbaline}"
 msgstr "${pghbaline}"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:363
+#: ../dbconfig-common.templates:386
 msgid "Please change /etc/postgresql/pg_hba.conf"
 msgstr "Hãy sửa đổi </etc/postgresql/pg_hba.conf>"
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:363
+#: ../dbconfig-common.templates:386
 msgid ""
 "To get the database for package ${pkg} bootstrapped you have to edit the "
 "configuration of your PostgreSQL server. You may be able to find help in the "
@@ -842,19 +902,19 @@
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:370
+#: ../dbconfig-common.templates:393
 msgid "PostgreSQL does not support empty passwords."
 msgstr "PostgreSQL không hỗ trợ mật khẩu rỗng."
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:374
+#: ../dbconfig-common.templates:397
 msgid "dbconfig-common will attempt to load existing settings"
 msgstr "Trình dbconfig-common sẽ cố tải thiết lập đã có."
 
 #. Type: note
 #. Description
-#: ../dbconfig-common.templates:374
+#: ../dbconfig-common.templates:397
 msgid ""
 "dbconfig-common will now attempt to load the pre-existing settings of "
 "${pkg}.  Later, these settings will be validated, and if there is any "

Modified: branches/sqlite/dpkg/common
===================================================================
--- branches/sqlite/dpkg/common	2006-06-10 04:07:53 UTC (rev 250)
+++ branches/sqlite/dpkg/common	2006-06-10 06:14:06 UTC (rev 251)
@@ -41,7 +41,7 @@
 	dbc_pgsql_templates="pgsql/method remote/host remote/newhost pgsql/app-pass pgsql/admin-user pgsql/admin-pass remote/port pgsql/authmethod-admin pgsql/authmethod-user pgsql/changeconf pgsql/manualconf db/dbname db/app-user pgsql/no-empty-passwords"
 
 	# templates common to sqlite database types
-	dbc_sqlite_templates="db/dbname"
+	dbc_sqlite_templates="db/dbname db/basepath db/owner db/mode"
 
 	# all dbtypes supported by dbconfig-common
 	dbc_all_supported_dbtypes="mysql pgsql sqlite"
@@ -52,6 +52,9 @@
 	# database types supporting remote access
 	dbc_remote_dbtypes="mysql pgsql"
 
+	# database types storing files on the filesystem
+	dbc_fs_dbtypes="sqlite"
+
 	###
 	### source the pre-existing config, if it exists
 	###
@@ -72,6 +75,9 @@
 	###
 	### dbtype-specific variable section
 	###
+	dbc_default_basepath=""
+	dbc_default_owner=""
+	dbc_default_mode=""
 
 	# now set some variables based on the dbtype
 	case $dbc_dbtype in
@@ -118,7 +124,10 @@
 		dbc_dump_cmd='dbc_sqlite_dump'
 		dbc_register_templates="$dbc_standard_templates $dbc_sqlite_templates"
 		dbc_default_admin=""
-		dbc_default_dbuser=`whoami`;
+		dbc_default_dbuser=``;
+		dbc_default_basepath="/var/lib/dbconfig-common"
+		dbc_default_owner="root:root"
+		dbc_default_mode="0644"
 		dbc_use_dbuser="false"
 		dbc_dbvendor="SQLite"
 	;;
@@ -207,6 +216,15 @@
 		db_set $dbc_package/remote/port "$dbc_dbport"
 	fi
 
+	if echo "$dbc_fs_dbtypes" | grep -qa "$dbc_dbtype"; then
+		# set the directory that the database file is found in
+		db_set $dbc_package/db/basepath "$dbc_basepath"
+
+		# pemissions for the database file
+		db_set $dbc_package/db/owner "$dbc_owner"
+		db_set $dbc_package/db/mode "$dbc_mode"
+	fi
+
 	# set the name of the database to be created
 	db_set $dbc_package/db/dbname "$dbc_dbname"
 
@@ -278,6 +296,15 @@
 		db_get $dbc_package/remote/port && dbc_dbport="$RET"
 	fi
 
+	if echo "$dbc_fs_dbtypes" | grep -qa "$dbc_dbtype"; then
+		# get the directory that the database file is found in
+		db_get $dbc_package/db/basepath && dbc_basepath="$RET"
+
+		# pemissions for the database file
+		db_get $dbc_package/db/owner && dbc_owner="$RET"
+		db_get $dbc_package/db/mode && dbc_mode="$RET"
+	fi
+
 	# get the name of the database to be created
 	db_get $dbc_package/db/dbname && dbc_dbname="$RET"
 
@@ -376,6 +403,21 @@
 #	this is the administrative user that is used to create all of the above
 dbc_dbadmin="$dbc_dbadmin"
 
+# dbc_basepath: base directory to hold database files
+#	leave unset to use the default.  only applicable if you are
+#	using a local (filesystem based) database.    
+dbc_basepath="$dbc_basepath"
+
+# dbc_owner: owner:group to set on the database file
+#	leave unset to use the default.  only applicable if you are
+#	using a local (filesystem based) database.    
+dbc_owner="$dbc_owner"
+
+# dbc_mode: file mode (permissions) for the database
+#	leave unset to use the default.  only applicable if you are
+#	using a local (filesystem based) database.    
+dbc_mode="$dbc_mode"
+
 ##
 ## postgresql specific settings.  if you don't use postgresql,
 ## you can safely ignore all of these

Modified: branches/sqlite/dpkg/config
===================================================================
--- branches/sqlite/dpkg/config	2006-06-10 04:07:53 UTC (rev 250)
+++ branches/sqlite/dpkg/config	2006-06-10 06:14:06 UTC (rev 251)
@@ -161,6 +161,19 @@
 			fi
 		fi
 
+		if echo "$dbc_fs_dbtypes" | grep -q "$dbc_dbtype"; then
+			# if these haven't been specified, use defaults
+			if [ ! "$dbc_basepath" ]; then 
+				dbc_basepath="$dbc_default_basepath"; 
+			fi
+			if [ ! "$dbc_owner" ]; then 
+				dbc_owner="$dbc_default_owner"; 
+			fi
+			if [ ! "$dbc_mode" ]; then 
+				dbc_mode="$dbc_default_mode"; 
+			fi
+		fi
+
 		if [ ! "$dbc_dbname" ]; then 
 			dbc_dbname=`echo $dbc_package | tr -d +-.`; 
 		fi
@@ -199,6 +212,19 @@
 			fi
 			db_input low $dbc_package/$dbc_dbtype/method || true
 		fi
+		if echo "$dbc_fs_dbtypes" | grep -q "$dbc_dbtype"; then
+			# if these haven't been specified, use defaults
+			if [ "$dbc_basepath" ]; then 
+				db_set $dbc_package/db/basepath "$dbc_basepath"
+			fi
+			if [ "$dbc_owner" ]; then 
+				db_set $dbc_package/db/owner "$dbc_owner"
+			fi
+			if [ "$dbc_mode" ]; then 
+				db_set $dbc_package/db/mode "$dbc_mode"
+			fi
+		fi
+
 	;;
 	# state 4 - do stuff based on the connection method
 	4)
@@ -331,6 +357,13 @@
 			fi
 		fi
 
+		if echo "$dbc_fs_dbtypes" | grep -q "$dbc_dbtype"; then
+			# check the path / permissions to install to
+			db_input low $dbc_package/db/basepath || true
+			db_input low $dbc_package/db/owner || true
+			db_input low $dbc_package/db/mode || true
+		fi
+
 		# get the name of the database to use
 		db_input low $dbc_package/db/dbname || true
 	;;

Modified: branches/sqlite/internal/sqlite
===================================================================
--- branches/sqlite/internal/sqlite	2006-06-10 04:07:53 UTC (rev 250)
+++ branches/sqlite/internal/sqlite	2006-06-10 06:14:06 UTC (rev 251)
@@ -10,8 +10,6 @@
 # get some common functions
 . /usr/share/dbconfig-common/internal/common
 
-SQLITE_BASE_DIRECTORY="/var/lib/dbconfig-common"
-
 ##
 ## execute a file with sqlite commands
 ##
@@ -25,7 +23,7 @@
 		dbc_log="no file supplied to execute"
 		return 1
 	fi
-	dbfile="$SQLITE_BASE_DIRECTORY/${dbc_dbname}.sqlite"
+	dbfile="${dbc_basepath}/${dbc_dbname}"
 	sqlite "$dbfile" < "$l_sqlfile"
 	retval=$?
 	return $retval
@@ -57,7 +55,7 @@
 _dbc_sqlite_check_database(){
 	local dbc_dbname
 	dbc_dbname=$1
-	dbfile="$SQLITE_BASE_DIRECTORY/${dbc_dbname}.sqlite"
+	dbfile="${dbc_basepath}/${dbc_dbname}"
 	if test -f "$dbfile"; then
 		return 0
 	else
@@ -80,21 +78,24 @@
 ##
 ##
 dbc_sqlite_createdb(){
-	local ret l_dbname _dbc_nodb
+	local ret l_dbname
 	dbc_status=error
 
 	_dbc_sanity_check dbname sqlite || return 1
 
+	dbfile="${dbc_basepath}/${dbc_dbname}"
+
 	dbc_logpart "creating database $dbc_dbname:"
 
 	if _dbc_sqlite_check_database "$dbc_dbname"; then
 		dbc_logline "already exists"
 		dbc_status=nothing
 	else
-		mkdir -p "$SQLITE_BASE_DIRECTORY"
-		_dbc_nodb="yes" dbc_sqlite_exec_command ".schema"
+		mkdir -p "${dbc_basepath}"
+		dbc_sqlite_exec_command ".schema" && \
+		chown "$dbc_owner" "$dbfile" && \
+		chmod "$dbc_mode" "$dbfile"
 		ret=$?
-		_dbc_nodb=""
 		if [ "$ret" = "0" ]; then
 			dbc_logline "success"
 			dbc_logpart "verifying database $dbc_dbname exists:"
@@ -122,7 +123,7 @@
 	dbc_logpart "dropping database $dbc_dbname:"
 
 	if _dbc_sqlite_check_database "$dbc_dbname"; then
-		if rm -f "$SQLITE_BASE_DIRECTORY/${dbc_dbname}.sqlite"; then
+		if rm -f "${dbc_basepath}/${dbc_dbname}"; then
 			dbc_logline "success"
 			dbc_logpart "verifying database $dbc_dbname was dropped:"
 			if _dbc_sqlite_check_database "$dbc_dbname"; then




More information about the Dbconfig-common-changes mailing list