diff -Naurb mantis-0.19.0a1/bug_close.php mantis-0.19.0a1-arbeitskopie/bug_close.php
--- mantis-0.19.0a1/bug_close.php	2004-06-26 16:05:40.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/bug_close.php	2004-07-11 17:44:28.000000000 +0200
@@ -31,11 +31,11 @@
 	$t_related_custom_field_ids = custom_field_get_linked_ids( $t_bug_data->project_id );
 	foreach( $t_related_custom_field_ids as $t_id ) {
 		$t_def = custom_field_get_definition( $t_id );
-		if ( $t_def['require_close'] && ( gpc_get_string( "custom_field_$t_id", '' ) == '' ) ) {
+		if ( $t_def['require_close'] && ( gpc_get_custom_field( $t_id, $t_def['type'], '' ) == '' ) ) {
 			error_parameters( lang_get_defaulted( custom_field_get_field( $t_id, 'name' ) ) );
 			trigger_error( ERROR_EMPTY_FIELD, ERROR );
 		}
-		if ( !custom_field_validate( $t_id, gpc_get_string( "custom_field_$t_id", $t_def['default_value'] ) ) ) {
+		if ( !custom_field_validate( $t_id, gpc_get_custom_field( $t_id, $t_def['type'], $t_def['default_value'] ) ) ) {
 			error_parameters( lang_get_defaulted( custom_field_get_field( $t_id, 'name' ) ) );
 			trigger_error( ERROR_CUSTOM_FIELD_INVALID_VALUE, ERROR );
 		}
@@ -49,7 +49,7 @@
 		}
 
 		$t_def = custom_field_get_definition( $t_id );
-		if( !custom_field_set_value( $t_id, $f_bug_id, gpc_get_string( "custom_field_$t_id", $t_def['default_value'] ) ) ) {
+		if( !custom_field_set_value( $t_id, $f_bug_id, gpc_get_custom_field( $t_id, $t_def['type'], $t_def['default_value'] ) ) ) {
 			error_parameters( lang_get_defaulted( custom_field_get_field( $t_id, 'name' ) ) );
 			trigger_error( ERROR_CUSTOM_FIELD_INVALID_VALUE, ERROR );
 		}
diff -Naurb mantis-0.19.0a1/bug_close_page.php mantis-0.19.0a1-arbeitskopie/bug_close_page.php
--- mantis-0.19.0a1/bug_close_page.php	2004-06-26 16:05:42.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/bug_close_page.php	2004-07-11 17:36:04.000000000 +0200
@@ -66,10 +66,17 @@
 		<td>
 			<?php
 				$t_custom_field_value = custom_field_get_value( $t_id, $f_bug_id );
-				if( CUSTOM_FIELD_TYPE_EMAIL == $t_def['type'] ) {
+				switch ( $t_def['type'] ) {
+				case CUSTOM_FIELD_TYPE_EMAIL:
 					echo "<a href=\"mailto:$t_custom_field_value\">$t_custom_field_value</a>";
-				} else {
+					break;
+				case CUSTOM_FIELD_TYPE_LISTBOX:
+					$t_custom_field_value_output = implode(', ', explode ('|', $t_custom_field_value ) );
+					echo $t_custom_field_value_output;
+					break;
+				default:
 					echo $t_custom_field_value;
+					break;
 				}
 			?>
 		</td>
diff -Naurb mantis-0.19.0a1/bug_report.php mantis-0.19.0a1-arbeitskopie/bug_report.php
--- mantis-0.19.0a1/bug_report.php	2004-06-26 16:05:42.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/bug_report.php	2004-07-11 18:07:32.000000000 +0200
@@ -84,11 +84,11 @@
 	$t_related_custom_field_ids = custom_field_get_linked_ids( $f_project_id );
 	foreach( $t_related_custom_field_ids as $t_id ) {
 		$t_def = custom_field_get_definition( $t_id );
-		if ( $t_def['require_report'] && ( gpc_get_string( "custom_field_$t_id", '' ) == '' ) ) {
+		if ( $t_def['require_report'] && ( gpc_get_custom_field( $t_id, $t_def['type'], '' ) == '' ) ) {
 			error_parameters( lang_get_defaulted( custom_field_get_field( $t_id, 'name' ) ) );
 			trigger_error( ERROR_EMPTY_FIELD, ERROR );
 		}
-		if ( !custom_field_validate( $t_id, gpc_get_string( "custom_field_$t_id", $t_def['default_value'] ) ) ) {
+		if ( !custom_field_validate( $t_id, gpc_get_custom_field( $t_id, $t_def['type'], $t_def['default_value'] ) ) ) {
 			error_parameters( lang_get_defaulted( custom_field_get_field( $t_id, 'name' ) ) );
 			trigger_error( ERROR_CUSTOM_FIELD_INVALID_VALUE, ERROR );
 		}
@@ -123,7 +123,7 @@
 		}
 
 		$t_def = custom_field_get_definition( $t_id );
-		if( !custom_field_set_value( $t_id, $t_bug_id, gpc_get_string( "custom_field_$t_id", $t_def['default_value'] ) ) ) {
+		if( !custom_field_set_value( $t_id, $t_bug_id, gpc_get_custom_field ( $t_id, $t_def['type'], $t_def['default_value'] ) ) ) {
 			error_parameters( lang_get_defaulted( custom_field_get_field( $t_id, 'name' ) ) );
 			trigger_error( ERROR_CUSTOM_FIELD_INVALID_VALUE, ERROR );
 		}
diff -Naurb mantis-0.19.0a1/bug_resolve.php mantis-0.19.0a1-arbeitskopie/bug_resolve.php
--- mantis-0.19.0a1/bug_resolve.php	2004-06-26 16:05:42.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/bug_resolve.php	2004-07-11 17:45:25.000000000 +0200
@@ -41,11 +41,11 @@
 	$t_related_custom_field_ids = custom_field_get_linked_ids( $t_bug_data->project_id );
 	foreach( $t_related_custom_field_ids as $t_id ) {
 		$t_def = custom_field_get_definition( $t_id );
-		if ( $t_def['require_resolve'] && ( gpc_get_string( "custom_field_$t_id", '' ) == '' ) ) {
+		if ( $t_def['require_resolve'] && ( gpc_get_custom_field( $t_id, $t_def['type'], '' ) == '' ) ) {
 			error_parameters( lang_get_defaulted( custom_field_get_field( $t_id, 'name' ) ) );
 			trigger_error( ERROR_EMPTY_FIELD, ERROR );
 		}
-		if ( !custom_field_validate( $t_id, gpc_get_string( "custom_field_$t_id", $t_def['default_value'] ) ) ) {
+		if ( !custom_field_validate( $t_id, gpc_get_custom_field( $t_id, $t_def['type'], $t_def['default_value'] ) ) ) {
 			error_parameters( lang_get_defaulted( custom_field_get_field( $t_id, 'name' ) ) );
 			trigger_error( ERROR_CUSTOM_FIELD_INVALID_VALUE, ERROR );
 		}
@@ -59,7 +59,7 @@
 		}
 
 		$t_def = custom_field_get_definition( $t_id );
-		if( !custom_field_set_value( $t_id, $f_bug_id, gpc_get_string( "custom_field_$t_id", $t_def['default_value'] ) ) ) {
+		if( !custom_field_set_value( $t_id, $f_bug_id, gpc_get_custom_field( $t_id, $t_def['type'], $t_def['default_value'] ) ) ) {
 			error_parameters( lang_get_defaulted( custom_field_get_field( $t_id, 'name' ) ) );
 			trigger_error( ERROR_CUSTOM_FIELD_INVALID_VALUE, ERROR );
 		}
diff -Naurb mantis-0.19.0a1/bug_resolve_page.php mantis-0.19.0a1-arbeitskopie/bug_resolve_page.php
--- mantis-0.19.0a1/bug_resolve_page.php	2004-06-26 16:05:42.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/bug_resolve_page.php	2004-07-11 17:41:45.000000000 +0200
@@ -95,9 +95,15 @@
 		<td>
 			<?php
 				$t_custom_field_value = custom_field_get_value( $t_id, $f_bug_id );
-				if( CUSTOM_FIELD_TYPE_EMAIL == $t_def['type'] ) {
+				switch ($t_def['type']) {
+				case CUSTOM_FIELD_TYPE_EMAIL:
 					echo "<a href=\"mailto:$t_custom_field_value\">$t_custom_field_value</a>";
-				} else {
+					break;
+				case CUSTOM_FIELD_TYPE_LISTBOX:
+					$t_custom_field_value_output = implode( ', ', explode( '|', $t_custom_field_value ) );
+					echo $t_custom_field_value_output;
+					break;
+				default:
 					echo $t_custom_field_value;
 				}
 			?>
diff -Naurb mantis-0.19.0a1/bug_update.php mantis-0.19.0a1-arbeitskopie/bug_update.php
--- mantis-0.19.0a1/bug_update.php	2004-06-26 16:05:42.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/bug_update.php	2004-07-11 17:46:19.000000000 +0200
@@ -65,7 +65,8 @@
 
 	$t_related_custom_field_ids = custom_field_get_linked_ids( $t_bug_data->project_id );
 	foreach( $t_related_custom_field_ids as $t_id ) {
-		$t_custom_field_value = gpc_get_string( "custom_field_$t_id", null );
+		$t_def = custom_field_get_definition( $t_id );
+		$t_custom_field_value = gpc_get_custom_field( $t_id, $t_def['type'], null );
 
 		# Only update the field if it is posted
 		if ( $t_custom_field_value === null ) {
@@ -77,8 +78,7 @@
 			continue;
 		}
 
-		$t_def = custom_field_get_definition( $t_id );
-		if ( $t_def['require_update'] && ( gpc_get_string( "custom_field_$t_id", '' ) == '' ) ) {
+		if ( $t_def['require_update'] && ( gpc_get_custom_field( $t_id, $t_def['type'], '' ) == '' ) ) {
 			error_parameters( lang_get_defaulted( custom_field_get_field( $t_id, 'name' ) ) );
 			trigger_error( ERROR_EMPTY_FIELD, ERROR );
 		}
diff -Naurb mantis-0.19.0a1/bug_view_advanced_page.php mantis-0.19.0a1-arbeitskopie/bug_view_advanced_page.php
--- mantis-0.19.0a1/bug_view_advanced_page.php	2004-05-24 14:23:18.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/bug_view_advanced_page.php	2004-07-11 17:54:43.000000000 +0200
@@ -389,10 +389,17 @@
 		<td colspan="5">
 		<?php
 			$t_custom_field_value = custom_field_get_value( $t_id, $f_bug_id );
-			if( CUSTOM_FIELD_TYPE_EMAIL == $t_def['type'] ) {
+			switch ( $t_def['type'] ) {
+			case CUSTOM_FIELD_TYPE_EMAIL:
 				echo "<a href=\"mailto:$t_custom_field_value\">$t_custom_field_value</a>";
-			} else {
+				break;
+			case CUSTOM_FIELD_TYPE_LISTBOX:
+				$t_custom_field_value_output = implode( ', ', explode ('|', $t_custom_field_value ) );
+				echo $t_custom_field_value_output;
+				break;
+			default:
 				echo $t_custom_field_value;
+				break;
 			}
 		?>
 		</td>
diff -Naurb mantis-0.19.0a1/bug_view_page.php mantis-0.19.0a1-arbeitskopie/bug_view_page.php
--- mantis-0.19.0a1/bug_view_page.php	2004-06-29 10:23:04.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/bug_view_page.php	2004-07-11 18:05:31.000000000 +0200
@@ -295,10 +295,17 @@
 		<td colspan="5">
 			<?php
 				$t_custom_field_value = custom_field_get_value( $t_id, $f_bug_id );
-				if( CUSTOM_FIELD_TYPE_EMAIL == $t_def['type'] ) {
+				switch ( $t_def['type'] ) {
+				case CUSTOM_FIELD_TYPE_EMAIL:
 					echo "<a href=\"mailto:$t_custom_field_value\">$t_custom_field_value</a>";
-				} else {
+					break;
+				case CUSTOM_FIELD_TYPE_LISTBOX:
+					$t_custom_field_value_output = implode( ', ', explode ('|', $t_custom_field_value ) );
+					echo $t_custom_field_value_output;
+					break;
+				default:
 					echo $t_custom_field_value;
+					break;
 				}
 			?>
 		</td>
diff -Naurb mantis-0.19.0a1/config_defaults_inc.php mantis-0.19.0a1-arbeitskopie/config_defaults_inc.php
--- mantis-0.19.0a1/config_defaults_inc.php	2004-07-07 14:50:16.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/config_defaults_inc.php	2004-07-11 18:43:26.000000000 +0200
@@ -967,7 +967,7 @@
 	$g_projection_enum_string			= '10:none,30:tweak,50:minor fix,70:major rework,90:redesign';
 	$g_eta_enum_string					= '10:none,20:< 1 day,30:2-3 days,40:< 1 week,50:< 1 month,60:> 1 month';
 
-	$g_custom_field_type_enum_string    = '0:string,1:numeric,2:float,3:enum,4:email';
+	$g_custom_field_type_enum_string    = '0:string,1:numeric,2:float,3:enum,4:email,5:listbox';
 
 	#############################
 	# Mantis Javascript Variables
diff -Naurb mantis-0.19.0a1/core/constant_inc.php mantis-0.19.0a1-arbeitskopie/core/constant_inc.php
--- mantis-0.19.0a1/core/constant_inc.php	2004-06-08 08:47:12.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/core/constant_inc.php	2004-07-11 16:21:00.000000000 +0200
@@ -251,6 +251,7 @@
 	define( 'CUSTOM_FIELD_TYPE_FLOAT',    2 );
 	define( 'CUSTOM_FIELD_TYPE_ENUM',     3 );
 	define( 'CUSTOM_FIELD_TYPE_EMAIL',    4 );
+	define( 'CUSTOM_FIELD_TYPE_LISTBOX',  5 );
 
 	# Meta filter values
 	define( 'META_FILTER_MYSELF',	-1 );
diff -Naurb mantis-0.19.0a1/core/custom_field_api.php mantis-0.19.0a1-arbeitskopie/core/custom_field_api.php
--- mantis-0.19.0a1/core/custom_field_api.php	2004-06-26 16:06:14.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/core/custom_field_api.php	2004-07-11 19:00:35.000000000 +0200
@@ -854,13 +854,16 @@
 		$row = db_fetch_array( $result );
 
 		# If an enumeration type, we get all possible values, not just used values
-		if ( CUSTOM_FIELD_TYPE_ENUM == $row['type'] ) {
+		switch ( $row['type'] ) {
+		case CUSTOM_FIELD_TYPE_ENUM:
+		case CUSTOM_FIELD_TYPE_LISTBOX:
 			$t_values_arr = explode( '|', $row['possible_values'] );
 
 			foreach( $t_values_arr as $t_option ) {
 				array_push( $t_return_arr, $t_option );
 			}
-		} else {
+			break;
+		default:
 			$t_where = '';
 			$t_from = $t_custom_field_string_table;
 			if ( ALL_PROJECTS != $p_project_id ) {
@@ -883,6 +886,7 @@
 					array_push( $t_return_arr, $row['value'] );
 				}
 			}
+			break;
 		}
 		return $t_return_arr;
 	}
@@ -1030,6 +1034,28 @@
 			}
 			PRINT '</select>';
 			break;
+		case CUSTOM_FIELD_TYPE_LISTBOX:
+			$t_selected_values = explode( '|', $t_custom_field_value );
+			$t_values = explode('|', $p_field_def['possible_values']);
+			$t_size = min( 10, count( $values ) );
+			PRINT "<select name=\"custom_field_$t_id"."[]\" multiple=\"multiple\" size=\"$t_size\">";
+			foreach( $t_values as $t_option ) {
+				$t_isset = 0;
+				foreach ( $t_selected_values as $t_sv ) {
+					if( $t_option == $t_sv ) {
+						$t_isset = 1;
+						break;
+					}
+				}
+				
+				if( $t_isset == 1  ) {
+					PRINT "<option value=\"$t_option\" selected>$t_option</option>";
+				} else {
+					PRINT "<option value=\"$t_option\">$t_option</option>";
+				}
+			}
+			PRINT '</select>';
+			break;
 		case CUSTOM_FIELD_TYPE_NUMERIC:
 		case CUSTOM_FIELD_TYPE_FLOAT:
 		case CUSTOM_FIELD_TYPE_EMAIL:
diff -Naurb mantis-0.19.0a1/core/email_api.php mantis-0.19.0a1-arbeitskopie/core/email_api.php
--- mantis-0.19.0a1/core/email_api.php	2004-05-26 05:54:28.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/core/email_api.php	2004-07-11 18:04:23.000000000 +0200
@@ -741,10 +741,17 @@
 
 			$t_message .= str_pad( lang_get_defaulted( $t_custom_field_name ) . ': ', $t_email_padding_length, ' ', STR_PAD_RIGHT );
 
-			if ( CUSTOM_FIELD_TYPE_EMAIL === $t_custom_field_data['type'] ) {
+			switch ( $t_custom_field_data['type'] ) {
+			case CUSTOM_FIELD_TYPE_EMAIL:
 				$t_message .= 'mailto:'.$t_custom_field_data['value'];
-			} else {
+				break;
+			case CUSTOM_FIELD_TYPE_LISTBOX:
+				$t_custom_field_value_output = implode( ', ', explode ('|', $t_custom_field_data['value'] ) );
+				$t_message .=  $t_custom_field_value_output;
+				break;
+			default:
 				$t_message .= $t_custom_field_data['value'];
+				break;
 			}
 			$t_message .= "\n";
 		} # end foreach custom field
diff -Naurb mantis-0.19.0a1/core/filter_api.php mantis-0.19.0a1-arbeitskopie/core/filter_api.php
--- mantis-0.19.0a1/core/filter_api.php	2004-06-29 08:38:36.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/core/filter_api.php	2004-07-11 19:18:46.000000000 +0200
@@ -342,6 +346,7 @@
 			foreach( $t_custom_fields as $t_cfid ) {
 			$t_first_time = true;
 			$t_custom_where_clause = '';
+				
 				# Ignore all custom filters that are not set, or that are set to '' or "any"
 				$t_any_found = false;
 				foreach( $t_filter['custom_fields'][$t_cfid] as $t_filter_member ) {
@@ -353,6 +358,7 @@
 					$t_any_found = true;
 				}
 				if ( !$t_any_found ) {
+					$t_def = custom_field_get_definition ( $t_cfid );
 					$t_table_name = $t_custom_field_string_table . '_' . $t_cfid;
 					array_push( $t_join_clauses, "LEFT JOIN $t_custom_field_string_table as $t_table_name ON $t_table_name.bug_id = $t_bug_table.id" );
 					foreach( $t_filter['custom_fields'][$t_cfid] as $t_filter_member ) {
@@ -367,8 +373,20 @@
 								$t_custom_where_clause .= ' OR ';
 							}
 
-							$t_custom_where_clause .= "(  $t_table_name.field_id = $t_cfid AND $t_table_name.value = '";
-							$t_custom_where_clause .= db_prepare_string( trim( $t_filter_member ) )  . "' )";
+							$t_custom_where_clause .= "(  $t_table_name.field_id = $t_cfid AND ";
+							$t_custom_where_clause .= "$t_table_name.value ";
+							switch ( $t_def['type'] ) {
+							case CUSTOM_FIELD_TYPE_LISTBOX:
+								$t_custom_where_clause .= "LIKE '%";
+								$t_custom_where_clause_closing = "%' )";
+								break;
+							default:
+								$t_custom_where_clause .= "= '";
+								$t_custom_where_clause_closing = "' )";
+								break;
+							}
+							$t_custom_where_clause .= db_prepare_string( trim( $t_filter_member ) );
+							$t_custom_where_clause .= $t_custom_where_clause_closing;
 						}
 					}
 					if ( !is_blank( $t_custom_where_clause ) ) {
diff -Naurb mantis-0.19.0a1/core/gpc_api.php mantis-0.19.0a1-arbeitskopie/core/gpc_api.php
--- mantis-0.19.0a1/core/gpc_api.php	2004-06-30 00:29:14.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/core/gpc_api.php	2004-07-11 19:00:04.000000000 +0200
@@ -88,6 +88,35 @@
 	}
 
 	#===================================
+	# Custom Field Functions
+	#===================================
+
+	# -----------------
+	# Retrieve a custom field GPC variable. Uses gpc_get_xxx().
+	#  If you pass in *no* default, an error will be triggered if
+	#  the variable does not exist
+	#  Depending on the type of the custom field, the according
+	#  gpc_get_xxx() - Routine is selected
+	function gpc_get_custom_field( $p_custom_field_id, $p_custom_field_type, $p_default = null ) {
+		# Don't pass along a default unless one was given to us
+		#  otherwise we prevent an error being triggered
+		$args = func_get_args();
+		$args[0] = 'custom_field_'.$args[0];
+		unset( $args[1] ); 
+		
+		switch ( $p_custom_field_type )  {
+		case CUSTOM_FIELD_TYPE_LISTBOX:
+			$t_result = implode( '|', call_user_func_array( 'gpc_get_string_array', $args ) );
+			break;
+		default:
+			$t_result = call_user_func_array( 'gpc_get_string', $args );
+			break;
+		}
+		
+		return $t_result;
+	}
+
+	#===================================
 	# Array Functions
 	#===================================
 
diff -Naurb mantis-0.19.0a1/lang/strings_chinese_simplified.txt mantis-0.19.0a1-arbeitskopie/lang/strings_chinese_simplified.txt
--- mantis-0.19.0a1/lang/strings_chinese_simplified.txt	2004-07-07 14:48:56.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/lang/strings_chinese_simplified.txt	2004-07-11 18:46:58.000000000 +0200
@@ -938,7 +938,7 @@
 $s_custom_field_require_close = 'Required On Close';
 
 $s_custom_field_sequence = '顺序';
-$s_custom_field_type_enum_string = '0:字符串,1:数值,2:浮点数,3:枚举类型,4:Email';
+$s_custom_field_type_enum_string = '0:字符串,1:数值,2:浮点数,3:枚举类型,4:Email,5:Listbox';
 
 $s_confirm_used_custom_field_deletion = '当前有至少一个项目链接到了这个字段，如果继续，这个字段的所有值都将被永久删除；删除操作无法恢复。如果你不想删除这个字段，请点击浏览器的“后退”按钮；点击下面的按钮继续删除。';
 $s_confirm_custom_field_deletion = '你确定要删除这个自定义字段和所有相关联的值吗？';
diff -Naurb mantis-0.19.0a1/lang/strings_chinese_traditional.txt mantis-0.19.0a1-arbeitskopie/lang/strings_chinese_traditional.txt
--- mantis-0.19.0a1/lang/strings_chinese_traditional.txt	2004-07-07 14:48:56.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/lang/strings_chinese_traditional.txt	2004-07-11 18:47:04.000000000 +0200
@@ -934,7 +934,7 @@
 $s_custom_field_require_close = 'Required On Close';
 
 $s_custom_field_sequence = 'Sequence';
-$s_custom_field_type_enum_string = '0:String,1:Numeric,2:Float,3:Enumeration,4:Email';
+$s_custom_field_type_enum_string = '0:String,1:Numeric,2:Float,3:Enumeration,4:Email,5:Listbox';
 
 $s_confirm_used_custom_field_deletion = 'This field is currently linked to at least one project.  If you continue all values for this field will be permanently deleted.  This action cannot be undone.  If you do not want to delete this field, hit the Back button in your browser.  To proceed, click the button below';
 $s_confirm_custom_field_deletion = 'Are you sure you want to delete this custom field and all associated values?';
diff -Naurb mantis-0.19.0a1/lang/strings_croatian.txt mantis-0.19.0a1-arbeitskopie/lang/strings_croatian.txt
--- mantis-0.19.0a1/lang/strings_croatian.txt	2004-07-07 14:48:56.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/lang/strings_croatian.txt	2004-07-11 18:47:10.000000000 +0200
@@ -936,7 +936,7 @@
 $s_custom_field_require_close = 'Required On Close';
 
 $s_custom_field_sequence = 'Sequence';
-$s_custom_field_type_enum_string = '0:String,1:Numeric,2:Float,3:Enumeration,4:Email';
+$s_custom_field_type_enum_string = '0:String,1:Numeric,2:Float,3:Enumeration,4:Email,5:Listbox';
 
 $s_confirm_used_custom_field_deletion = 'This field is currently linked to at least one project.  If you continue all values for this field will be permanently deleted.  This action cannot be undone.  If you do not want to delete this field, hit the Back button in your browser.  To proceed, click the button below';
 $s_confirm_custom_field_deletion = 'Are you sure you want to delete this custom field and all associated values?';
diff -Naurb mantis-0.19.0a1/lang/strings_czech.txt mantis-0.19.0a1-arbeitskopie/lang/strings_czech.txt
--- mantis-0.19.0a1/lang/strings_czech.txt	2004-07-07 14:48:56.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/lang/strings_czech.txt	2004-07-11 18:47:13.000000000 +0200
@@ -941,7 +941,7 @@
 $s_custom_field_require_close = 'Required On Close';
 
 $s_custom_field_sequence = 'Po鴄d';
-$s_custom_field_type_enum_string = '0:Text,1:Cel 桧slo,2:Re醠n 桧slo,3:V齬az,4:Email';
+$s_custom_field_type_enum_string = '0:Text,1:Cel 桧slo,2:Re醠n 桧slo,3:V齬az,4:Email,5:Listbox';
 
 $s_confirm_used_custom_field_deletion = 'Toto pole je moment醠n propojen alespo k jednomu projektu. Budete-li pokra鑟vat, v筫chny hodnoty tohot pole budou trvale zni鑕ny. Tato akce neme b齮 vr醕ena. Nep鴈jete-li si zru筰t toto pole, stizkn靦e tla桧tko "Zp靦" va筫ho prohl砭e鑕.  Pokra鑟vat mete tla桧tkem n砭e';
 $s_confirm_custom_field_deletion = 'Opravdu si p鴈jete zru筰t toto u緄vatelsk pole a v筫chny k n靘u n醠e緀j韈 hodnoty?';
diff -Naurb mantis-0.19.0a1/lang/strings_danish.txt mantis-0.19.0a1-arbeitskopie/lang/strings_danish.txt
--- mantis-0.19.0a1/lang/strings_danish.txt	2004-07-07 14:48:56.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/lang/strings_danish.txt	2004-07-11 18:47:17.000000000 +0200
@@ -934,7 +934,7 @@
 $s_custom_field_require_close = 'Required On Close';
 
 $s_custom_field_sequence = 'Sekvens';
-$s_custom_field_type_enum_string = '0:Streng,1:Nummerisk,2:Kommatal,3:Opt鎙ling,4:E-mail';
+$s_custom_field_type_enum_string = '0:Streng,1:Nummerisk,2:Kommatal,3:Opt鎙ling,4:E-mail,5:Listbox';
 
 $s_confirm_used_custom_field_deletion = 'Dette felt er i 鴍eblikket knyttet til mindst et projekt.  Hvis du forts鎡ter vil alle v鎟dier for dette felt blive slette permanent.  Denne handling kan ikke fortrydes.  Hvis du ikke 鴑sker at slette dette felt, klik p Tilbage knappen i din browser.  Klik p knappen herunder for at forts鎡te.';
 $s_confirm_custom_field_deletion = '豱sker du at slette dette brugerdefinerede felt og alle tilknyttede v鎟dier?';
diff -Naurb mantis-0.19.0a1/lang/strings_dutch.txt mantis-0.19.0a1-arbeitskopie/lang/strings_dutch.txt
--- mantis-0.19.0a1/lang/strings_dutch.txt	2004-07-07 14:48:56.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/lang/strings_dutch.txt	2004-07-11 18:47:20.000000000 +0200
@@ -937,7 +937,7 @@
 $s_custom_field_require_close = 'Required On Close';
 
 $s_custom_field_sequence = 'Rij';
-$s_custom_field_type_enum_string = '0:String,1:Numeriek,2:Drijvende komma,3:Enumeratie,4:E-mail';
+$s_custom_field_type_enum_string = '0:String,1:Numeriek,2:Drijvende komma,3:Enumeratie,4:E-mail,5:Listbox';
 
 $s_confirm_used_custom_field_deletion = 'Op dit moment is dit veld verbonden met tenminste 殚n project.  Als u doorgaat zullen alle waarden voor dit veld permanent verwijderd worden.  Deze actie kan niet ongedaan worden gemaakt.  Als u dit veld niet wilt verwijderen, druk dan op de Vorige toets in uw browser.  Druk om door te gaan op onderstaande button.';
 $s_confirm_custom_field_deletion = 'Weet u zeker dat u dit gebruikersveld en alle bijbehorende waarden wilt verwijderen?';
diff -Naurb mantis-0.19.0a1/lang/strings_english.txt mantis-0.19.0a1-arbeitskopie/lang/strings_english.txt
--- mantis-0.19.0a1/lang/strings_english.txt	2004-06-28 12:13:24.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/lang/strings_english.txt	2004-07-11 18:47:24.000000000 +0200
@@ -936,7 +936,7 @@
 $s_custom_field_require_close = 'Required On Close';
 
 $s_custom_field_sequence = 'Sequence';
-$s_custom_field_type_enum_string = '0:String,1:Numeric,2:Float,3:Enumeration,4:Email';
+$s_custom_field_type_enum_string = '0:String,1:Numeric,2:Float,3:Enumeration,4:Email,5:Listbox';
 
 $s_confirm_used_custom_field_deletion = 'This field is currently linked to at least one project.  If you continue all values for this field will be permanently deleted.  This action cannot be undone.  If you do not want to delete this field, hit the Back button in your browser.  To proceed, click the button below';
 $s_confirm_custom_field_deletion = 'Are you sure you want to delete this custom field and all associated values?';
diff -Naurb mantis-0.19.0a1/lang/strings_estonian.txt mantis-0.19.0a1-arbeitskopie/lang/strings_estonian.txt
--- mantis-0.19.0a1/lang/strings_estonian.txt	2004-07-07 14:48:56.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/lang/strings_estonian.txt	2004-07-11 18:47:27.000000000 +0200
@@ -936,7 +936,7 @@
 $s_custom_field_require_close = 'Required On Close';
 
 $s_custom_field_sequence = 'Jada';
-$s_custom_field_type_enum_string = '0:String,1:Numbriline,2:Ujuv,3:Nummerdus,4:E-mail';
+$s_custom_field_type_enum_string = '0:String,1:Numbriline,2:Ujuv,3:Nummerdus,4:E-mail,5:Listbox';
 
 $s_confirm_used_custom_field_deletion = 'Antud v鋖i on seotud v鋒emalt 黨e projektiga. Kui j鋞kad, kustutatakse j滗davalt k鮥k sellel v鋖jal olevad v滗rtused. Seda toimingut pole v鮥malik tagasi v鮰ta. Kui Sa ei soovi seda v鋖ja kustutada, vajuta oma brauseri Back-nuppu. J鋞kamiseks vajuta allolevat nuppu';
 $s_confirm_custom_field_deletion = 'Oled kindel, et soovid kustutada selle v鋖ja ja k鮥k sellega seonduvad v滗rtused?';
diff -Naurb mantis-0.19.0a1/lang/strings_finnish.txt mantis-0.19.0a1-arbeitskopie/lang/strings_finnish.txt
--- mantis-0.19.0a1/lang/strings_finnish.txt	2004-07-07 14:48:56.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/lang/strings_finnish.txt	2004-07-11 18:47:32.000000000 +0200
@@ -937,7 +937,7 @@
 $s_custom_field_require_close = 'Required On Close';
 
 $s_custom_field_sequence = 'J鋜jestys';
-$s_custom_field_type_enum_string = '0:Merkkijono,1:Numerojono,2:Liukuluku,3:Numeroitu,4:S鋒k鰌ostiosoite';
+$s_custom_field_type_enum_string = '0:Merkkijono,1:Numerojono,2:Liukuluku,3:Numeroitu,4:S鋒k鰌ostiosoite,5:Listbox';
 
 $s_confirm_used_custom_field_deletion = 'T鋗 kentt on liitetty ainakin yhteen projektiin.  Jos jatkat, kaikki t鋒鋘 kentt滗n liitetyt arvot poistetaan. T鋞 komentoa ei voida j鋖keenp鋓n kumota.  Jos et halua poistaa t鋞 kentt滗, paina selaimesi Takaisin-painiketta.  Jatkaaksesi, paina allaolevaa painiketta';
 $s_confirm_custom_field_deletion = 'Oletko varma, ett haluat poistaa t鋗鋘 mukautetun kent鋘 ja kaikki siihe liitetyt arvot?';
diff -Naurb mantis-0.19.0a1/lang/strings_french.txt mantis-0.19.0a1-arbeitskopie/lang/strings_french.txt
--- mantis-0.19.0a1/lang/strings_french.txt	2004-07-07 14:48:56.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/lang/strings_french.txt	2004-07-11 18:47:37.000000000 +0200
@@ -941,7 +941,7 @@
 $s_custom_field_require_close = 'Required On Close';
 
 $s_custom_field_sequence = 'Suite';
-$s_custom_field_type_enum_string = '0:Cha頽e,1:Entier,2:D閏imal,3:Enum閞ation,4:Email';
+$s_custom_field_type_enum_string = '0:Cha頽e,1:Entier,2:D閏imal,3:Enum閞ation,4:Email,5:Listbox';
 
 $s_confirm_used_custom_field_deletion = 'Ce champ est actuellement li  au moins un projet.  Si vous continuez, toutes les valeurs de ce champ seront supprim閑s.  Cette action ne peut 阾re annul閑.  Si vous ne voulez pas supprimer ce champ, cliquer sur le bouton Retour de votre navigateur.  Sinon pour supprimer ce champ, cliquer sur le bouton ci dessous';
 $s_confirm_custom_field_deletion = 'Etes vous s鹯 de vouloir supprimer ce champ personnalis et toutes les valeurs associ閑s ?';
diff -Naurb mantis-0.19.0a1/lang/strings_german.txt mantis-0.19.0a1-arbeitskopie/lang/strings_german.txt
--- mantis-0.19.0a1/lang/strings_german.txt	2004-07-07 14:48:56.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/lang/strings_german.txt	2004-07-11 18:47:41.000000000 +0200
@@ -939,7 +939,7 @@
 $s_custom_field_require_close = 'Required On Close';
 
 $s_custom_field_sequence = 'Reihenfolge';
-$s_custom_field_type_enum_string = '0:Text,1:Zahlen,2:Gleitkomma Zahlen,3:Aufz鋒lung,4:Email';
+$s_custom_field_type_enum_string = '0:Text,1:Zahlen,2:Gleitkomma Zahlen,3:Aufz鋒lung,4:Email,5:Listbox';
 
 $s_confirm_used_custom_field_deletion = 'Dieses Feld wird derzeit von mindestens einem Projekt verwendet. Wenn Sie fortfahren, werden alle Werte f黵 dieses Feld dauerhaft   gel鰏cht. Dieser Vorgang kann nicht r點kg鋘gig gemacht werden. Um das Feld nicht zu l鰏chen, klicken Sie bitten den "Zur點k"-Knopf  in Ihrem Web-Browser. Um fortzufahren, klicken Sie bitten den "Feld l鰏chen"-Knopf.';
 $s_confirm_custom_field_deletion = 'M鯿hten Sie dieses benutzerdefinierte Feld und alle zugeh鰎igen Werte wirklich l鰏chen?';
diff -Naurb mantis-0.19.0a1/lang/strings_hungarian.txt mantis-0.19.0a1-arbeitskopie/lang/strings_hungarian.txt
--- mantis-0.19.0a1/lang/strings_hungarian.txt	2004-07-07 14:48:56.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/lang/strings_hungarian.txt	2004-07-11 18:47:44.000000000 +0200
@@ -935,7 +935,7 @@
 $s_custom_field_require_close = 'Required On Close';
 
 $s_custom_field_sequence = 'Folyatat醩';
-$s_custom_field_type_enum_string = '0:Sz鰒eg,1:Sz醡,2:Float,3:Enumeration,4:Email';
+$s_custom_field_type_enum_string = '0:Sz鰒eg,1:Sz醡,2:Float,3:Enumeration,4:Email,5:Listbox';
 
 $s_confirm_used_custom_field_deletion = 'A Mez legal醔b egy projekthez kell hogy tartozzon.  If you continue all values for this field will be permanently deleted.  This action cannot be undone.  If you do not want to delete this field, hit the Back button in your browser.  To proceed, click the button below';
 $s_confirm_custom_field_deletion = 'Biztos akarja t鰎鰈ni ezt a mez鮰 閟 az 鰏szes hozz tartoz 閞t閗et?';
diff -Naurb mantis-0.19.0a1/lang/strings_italian.txt mantis-0.19.0a1-arbeitskopie/lang/strings_italian.txt
--- mantis-0.19.0a1/lang/strings_italian.txt	2004-07-07 14:48:56.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/lang/strings_italian.txt	2004-07-11 18:47:50.000000000 +0200
@@ -936,7 +936,7 @@
 $s_custom_field_require_close = 'Required On Close';
 
 $s_custom_field_sequence = "Sequenza";
-$s_custom_field_type_enum_string = "0:Stringa,1:Numerico,2:Virgola mobile,3:Valori prestabiliti,4:Email";
+$s_custom_field_type_enum_string = "0:Stringa,1:Numerico,2:Virgola mobile,3:Valori prestabiliti,4:Email,5:Listbox";
 
 $s_confirm_used_custom_field_deletion = "Questo campo  attualmente utilizzato da almeno un progetto.  Se continui tutti i valori associati a questo campo verranno cancellati.  Si tratta di una azione non reversibile.  Se non desideri eliminare questo campo, clicca sul pulsante Indietro del tuo browser.  Per procedere, clicca sul pulsante qui sotto";
 $s_confirm_custom_field_deletion = "Sei sicuro di voler eliminare questo Campo Personalizzato e tutti i valori associati?";
diff -Naurb mantis-0.19.0a1/lang/strings_japanese_euc.txt mantis-0.19.0a1-arbeitskopie/lang/strings_japanese_euc.txt
--- mantis-0.19.0a1/lang/strings_japanese_euc.txt	2004-07-07 14:48:56.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/lang/strings_japanese_euc.txt	2004-07-11 18:47:53.000000000 +0200
@@ -935,7 +935,7 @@
 $s_custom_field_require_close = 'Required On Close';
 
 $s_custom_field_sequence = "山绩界";
-$s_custom_field_type_enum_string = "0:String,1:Numeric,2:Float,3:Enumeration,4:Email";
+$s_custom_field_type_enum_string = "0:String,1:Numeric,2:Float,3:Enumeration,4:Email,5:Listbox";
 
 $s_confirm_used_custom_field_deletion = "このカスタム灌誊は、附哼1つ笆惧のプロジェクトで蝗脱されています。もし鲁乖するならば、この灌誊のすべての猛は猴近されます。猴近したら提すことはできません。猴近したくないなら、ブラウザの提るボタンを联买して布さい。鲁乖するなら、布のボタンをクリックして布さい。";
 $s_confirm_custom_field_deletion = "このカスタム灌誊とすべての肋年した猛を猴近してよろしいですか。";
diff -Naurb mantis-0.19.0a1/lang/strings_japanese_sjis.txt mantis-0.19.0a1-arbeitskopie/lang/strings_japanese_sjis.txt
--- mantis-0.19.0a1/lang/strings_japanese_sjis.txt	2004-07-07 14:48:56.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/lang/strings_japanese_sjis.txt	2004-07-11 18:47:57.000000000 +0200
@@ -935,7 +935,7 @@
 $s_custom_field_require_close = 'Required On Close';
 
 $s_custom_field_sequence = "昞帵弴";
-$s_custom_field_type_enum_string = "0:String,1:Numeric,2:Float,3:Enumeration,4:Email";
+$s_custom_field_type_enum_string = "0:String,1:Numeric,2:Float,3:Enumeration,4:Email,5:Listbox";
 
 $s_confirm_used_custom_field_deletion = "偙偺僇僗僞儉崁栚偼丄尰嵼1偮埲忋偺僾儘僕僃僋僩偱巊梡偝傟偰偄傑偡丅傕偟懕峴偡傞側傜偽丄偙偺崁栚偺偡傋偰偺抣偼嶍彍偝傟傑偡丅嶍彍偟偨傜栠偡偙偲偼偱偒傑偣傫丅嶍彍偟偨偔側偄側傜丄僽儔僂僓偺栠傞儃僞儞傪慖戰偟偰壓偝偄丅懕峴偡傞側傜丄壓偺儃僞儞傪僋儕僢僋偟偰壓偝偄丅";
 $s_confirm_custom_field_deletion = "偙偺僇僗僞儉崁栚偲偡傋偰偺愝掕偟偨抣傪嶍彍偟偰傛傠偟偄偱偡偐丅";
diff -Naurb mantis-0.19.0a1/lang/strings_korean.txt mantis-0.19.0a1-arbeitskopie/lang/strings_korean.txt
--- mantis-0.19.0a1/lang/strings_korean.txt	2004-07-07 14:48:56.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/lang/strings_korean.txt	2004-07-11 18:48:00.000000000 +0200
@@ -935,7 +935,7 @@
 $s_custom_field_require_close = 'Required On Close';
 
 $s_custom_field_sequence = '矫牧胶';
-$s_custom_field_type_enum_string = '0:巩磊,1:箭磊,2:何悼屈,3:凯芭屈,4:捞皋老';
+$s_custom_field_type_enum_string = '0:巩磊,1:箭磊,2:何悼屈,3:凯芭屈,4:捞皋老,5:Listbox';
 
 $s_confirm_used_custom_field_deletion = '捞 鞘靛绰 利绢档 窍唱狼 橇肺璃飘俊 傅农登绢 乐嚼聪促.  捞 鞘靛客 包访等 葛电 蔼篮 昏力瞪 巴涝聪促. 捞 鞘靛甫 昏力窍瘤 臼栏妨搁, 宏扼快历俊辑 第肺 滚瓢阑 穿福矫扁 官而聪促. 昏力甫 拌加 柳青窍扁 困秦辑绰 酒贰狼 滚瓢阑 穿福技夸';
 $s_confirm_custom_field_deletion = '目胶乓 鞘靛客 葛电 包访等 蔼阑 昏力窍矫摆嚼聪鳖?';
diff -Naurb mantis-0.19.0a1/lang/strings_latvian.txt mantis-0.19.0a1-arbeitskopie/lang/strings_latvian.txt
--- mantis-0.19.0a1/lang/strings_latvian.txt	2004-07-07 14:48:56.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/lang/strings_latvian.txt	2004-07-11 18:48:03.000000000 +0200
@@ -936,7 +936,7 @@
 $s_custom_field_require_close = 'Required On Close';
 
 $s_custom_field_sequence = 'Sec頱a(n.p.k)';
-$s_custom_field_type_enum_string = '0:Teksts,1:Skaitlis,2:Float,3:Enumeration,4:E-pasts';
+$s_custom_field_type_enum_string = '0:Teksts,1:Skaitlis,2:Float,3:Enumeration,4:E-pasts,5:Listbox';
 
 $s_confirm_used_custom_field_deletion = '餴s lauks ir saist顃s ar vismaz vienu projektu.  Ja turpin鈙iet, visas v鐁t頱as tiks izdz鐂tas.  蓄 darb頱a ir neatce颽ma.  Lai atliktu, spiediet atgriezieties uz iepriek痃jo lapu.';
 $s_confirm_custom_field_deletion = 'Vai esat p鈘liecin鈚i ka j鈊 Custum lauks un visas ar to saist顃鈙 v鐁t頱as?';
diff -Naurb mantis-0.19.0a1/lang/strings_lithuanian.txt mantis-0.19.0a1-arbeitskopie/lang/strings_lithuanian.txt
--- mantis-0.19.0a1/lang/strings_lithuanian.txt	2004-07-07 14:48:56.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/lang/strings_lithuanian.txt	2004-07-11 18:48:07.000000000 +0200
@@ -946,7 +946,7 @@
 $s_custom_field_require_close = 'Required On Close';
 
 $s_custom_field_sequence = 'Eil雜 tvarka';
-$s_custom_field_type_enum_string = '0:Eilut,1:Sveikasis skai鑙us,2:Realusis skai鑙us,3:S鄏a餫s,4:El.pa餿as';
+$s_custom_field_type_enum_string = '0:Eilut,1:Sveikasis skai鑙us,2:Realusis skai鑙us,3:S鄏a餫s,4:El.pa餿as,5:Listbox';
 
 $s_confirm_used_custom_field_deletion = '衖s laukas susietas su bent vienu projektu.  Jei prat鎠ite, visos 餴o lauko reik餸雜 bus i餿rintos.  Veiksmo nebus galima at餫ukti.  Jeigu nenorite i餿rinti 餴o lauko, paspauskite mygtuk "Atgal" savo nar饄kl雑e.  Jei norite t鎠ti, spauskite 疳 mygtuk';
 $s_confirm_custom_field_deletion = 'Ar tikrai norite i餿rinti 疳 papildom lauk ir visas susijusias reik餸es?';
diff -Naurb mantis-0.19.0a1/lang/strings_norwegian.txt mantis-0.19.0a1-arbeitskopie/lang/strings_norwegian.txt
--- mantis-0.19.0a1/lang/strings_norwegian.txt	2004-07-07 14:48:56.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/lang/strings_norwegian.txt	2004-07-11 18:48:10.000000000 +0200
@@ -936,7 +936,7 @@
 $s_custom_field_require_close = 'Required On Close';
 
 $s_custom_field_sequence = 'Sekvens';
-$s_custom_field_type_enum_string = '0:Streng,1:Numerisk,2:Flyttall,3:Oppramsing,4:Email';
+$s_custom_field_type_enum_string = '0:Streng,1:Numerisk,2:Flyttall,3:Oppramsing,4:Email,5:Listbox';
 
 $s_confirm_used_custom_field_deletion = 'Dette feltet brukes n av minst ett annet prosjekt.  Hvis du fortsetter vil alle verdier for dette feltet bli sletta.  Det er ikke mulig  g tilbake p dette valget.  Hvis du ikke vil slette dette feltet, trykk Tilbake-knappen i vevleseren din.  For  fortsette, trykk knappen under.';
 $s_confirm_custom_field_deletion = 'Er du sikker p at du vil slette dette feltet og alle dets tilkoblede verdier?';
diff -Naurb mantis-0.19.0a1/lang/strings_polish.txt mantis-0.19.0a1-arbeitskopie/lang/strings_polish.txt
--- mantis-0.19.0a1/lang/strings_polish.txt	2004-07-07 14:48:56.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/lang/strings_polish.txt	2004-07-11 18:48:14.000000000 +0200
@@ -936,7 +936,7 @@
 $s_custom_field_require_close = 'Required On Close';
 
 $s_custom_field_sequence = 'Sekwencja';
-$s_custom_field_type_enum_string = '0:馽uch znak體,1:Liczba ca砶owita,2:Liczba zmiennoprzecinkowa,3:Wyliczenie,4:Email';
+$s_custom_field_type_enum_string = '0:馽uch znak體,1:Liczba ca砶owita,2:Liczba zmiennoprzecinkowa,3:Wyliczenie,4:Email,5:Listbox';
 
 $s_confirm_used_custom_field_deletion = 'To pole jest aktualnie po潮czone z co najmniej jednym projektem.  Je縠li je usuniesz, wszystkie warto禼i zostan skasowane. Nie b阣zie te mo縧iwo禼i odzyskania danych.  Je縠li nie chcesz usun辨 tego pola, kliknij Wstecz w przegl眃arce.  By kontynuowa, kliknij przycik poni縠j';
 $s_confirm_custom_field_deletion = 'Czy jeste pewien, 縠 chcesz usun辨 to dodatkowe pole i wszystkie powi眤ane z nim wartoci?';
diff -Naurb mantis-0.19.0a1/lang/strings_portuguese_brazil.txt mantis-0.19.0a1-arbeitskopie/lang/strings_portuguese_brazil.txt
--- mantis-0.19.0a1/lang/strings_portuguese_brazil.txt	2004-07-07 14:48:58.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/lang/strings_portuguese_brazil.txt	2004-07-11 18:48:20.000000000 +0200
@@ -936,7 +936,7 @@
 $s_custom_field_require_close = 'Required On Close';
 
 $s_custom_field_sequence = 'Seqncia';
-$s_custom_field_type_enum_string = '0:String,1:Num閞ico,2:Ponto-flutuante,3:Enumera玢o,4:E-Mail';
+$s_custom_field_type_enum_string = '0:String,1:Num閞ico,2:Ponto-flutuante,3:Enumera玢o,4:E-Mail,5:Listbox';
 
 $s_confirm_used_custom_field_deletion = 'Este campo atualmente est ligado a pelo menos um projeto.  Se voc continuar, todos os valores para este campo ser鉶 apagados permanentemente.  Esta a玢o n鉶 pode ser desfeita.  Se voc n鉶 deseja apagar este campo, clique no bot鉶 Voltar de seu navegador.  Para continuar, clique no bot鉶 abaixo.';
 $s_confirm_custom_field_deletion = 'Voc tem certeza que deseja apagar este campo personalizado e todos os seus valores associados?';
diff -Naurb mantis-0.19.0a1/lang/strings_portuguese_standard.txt mantis-0.19.0a1-arbeitskopie/lang/strings_portuguese_standard.txt
--- mantis-0.19.0a1/lang/strings_portuguese_standard.txt	2004-07-07 14:48:58.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/lang/strings_portuguese_standard.txt	2004-07-11 18:48:24.000000000 +0200
@@ -935,7 +935,7 @@
 $s_custom_field_require_close = 'Required On Close';
 
 $s_custom_field_sequence = 'Sequ阯cia';
-$s_custom_field_type_enum_string = '0:String,1:Numeric,2:Float,3:Enumeration,4:Email';
+$s_custom_field_type_enum_string = '0:String,1:Numeric,2:Float,3:Enumeration,4:Email,5:Listbox';
 
 $s_confirm_used_custom_field_deletion = 'This field is currently linked to at least one project.  If you continue all values for this field will be permanently deleted.  This action cannot be undone.  If you do not want to delete this field, hit the Back button in your browser.  To proceed, click the button below';
 $s_confirm_custom_field_deletion = 'Are you sure you want to delete this custom field and all associated values?';
diff -Naurb mantis-0.19.0a1/lang/strings_romanian.txt mantis-0.19.0a1-arbeitskopie/lang/strings_romanian.txt
--- mantis-0.19.0a1/lang/strings_romanian.txt	2004-07-07 14:48:58.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/lang/strings_romanian.txt	2004-07-11 18:48:27.000000000 +0200
@@ -934,7 +934,7 @@
 $s_custom_field_require_close = 'Required On Close';
 
 $s_custom_field_sequence = 'Sequence';
-$s_custom_field_type_enum_string = '0:String,1:Numeric,2:Float,3:Enumeration,4:Email';
+$s_custom_field_type_enum_string = '0:String,1:Numeric,2:Float,3:Enumeration,4:Email,5:Listbox';
 
 $s_confirm_used_custom_field_deletion = 'This field is currently linked to at least one project.  If you continue all values for this field will be permanently deleted.  This action cannot be undone.  If you do not want to delete this field, hit the Back button in your browser.  To proceed, click the button below';
 $s_confirm_custom_field_deletion = 'Are you sure you want to delete this custom field and all associated values?';
diff -Naurb mantis-0.19.0a1/lang/strings_russian.txt mantis-0.19.0a1-arbeitskopie/lang/strings_russian.txt
--- mantis-0.19.0a1/lang/strings_russian.txt	2004-07-07 14:48:58.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/lang/strings_russian.txt	2004-07-11 18:48:31.000000000 +0200
@@ -935,7 +935,7 @@
 $s_custom_field_require_close = 'Required On Close';
 
 $s_custom_field_sequence = 'Sequence';
-$s_custom_field_type_enum_string = '0:String,1:Numeric,2:Float,3:Enumeration,4:Email';
+$s_custom_field_type_enum_string = '0:String,1:Numeric,2:Float,3:Enumeration,4:Email,5:Listbox';
 
 $s_confirm_used_custom_field_deletion = 'This field is currently linked to at least one project.  If you continue all values for this field will be permanently deleted.  This action cannot be undone.  If you do not want to delete this field, hit the Back button in your browser.  To proceed, click the button below';
 $s_confirm_custom_field_deletion = 'Are you sure you want to delete this custom field and all associated values?';
diff -Naurb mantis-0.19.0a1/lang/strings_russian_koi8.txt mantis-0.19.0a1-arbeitskopie/lang/strings_russian_koi8.txt
--- mantis-0.19.0a1/lang/strings_russian_koi8.txt	2004-07-07 14:48:58.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/lang/strings_russian_koi8.txt	2004-07-11 18:48:34.000000000 +0200
@@ -934,7 +934,7 @@
 $s_custom_field_require_close = 'Required On Close';
 
 $s_custom_field_sequence = 'Sequence';
-$s_custom_field_type_enum_string = '0:String,1:Numeric,2:Float,3:Enumeration,4:Email';
+$s_custom_field_type_enum_string = '0:String,1:Numeric,2:Float,3:Enumeration,4:Email,5:Listbox';
 
 $s_confirm_used_custom_field_deletion = 'This field is currently linked to at least one project.  If you continue all values for this field will be permanently deleted.  This action cannot be undone.  If you do not want to delete this field, hit the Back button in your browser.  To proceed, click the button below';
 $s_confirm_custom_field_deletion = 'Are you sure you want to delete this custom field and all associated values?';
diff -Naurb mantis-0.19.0a1/lang/strings_serbian.txt mantis-0.19.0a1-arbeitskopie/lang/strings_serbian.txt
--- mantis-0.19.0a1/lang/strings_serbian.txt	2004-07-07 14:48:58.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/lang/strings_serbian.txt	2004-07-11 18:48:36.000000000 +0200
@@ -936,7 +936,7 @@
 $s_custom_field_require_close = 'Required On Close';
 
 $s_custom_field_sequence = 'sekvenca';
-$s_custom_field_type_enum_string = '0:String,1:Numeric,2:Float,3:Enumeration,4:Email';
+$s_custom_field_type_enum_string = '0:String,1:Numeric,2:Float,3:Enumeration,4:Email,5:Listbox';
 
 $s_confirm_used_custom_field_deletion = 'Ovo polje je trenutno povezano sa bar jednim projektom.  Ukoliko nastavite, sve vrednosti ovog polja ce permanentno biti izbrisane.  Ovo je nepovratna akcija.  Ako ne 瀍lite da izbri歟te ovo polje kliknite na "Back" polje u va歟m internet pretra瀒vacu. Da bi ste nastavili kliknite na dugme ispod.';
 $s_confirm_custom_field_deletion = 'Da li ste sigurni da 瀍lite da izbrisete ovo korisnicko polje i sve njemu pridru瀍ne vrednosti?';
diff -Naurb mantis-0.19.0a1/lang/strings_slovak.txt mantis-0.19.0a1-arbeitskopie/lang/strings_slovak.txt
--- mantis-0.19.0a1/lang/strings_slovak.txt	2004-07-07 14:48:58.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/lang/strings_slovak.txt	2004-07-11 18:48:39.000000000 +0200
@@ -936,7 +936,7 @@
 $s_custom_field_require_close = 'Required On Close';
 
 $s_custom_field_sequence = 'Sequence';
-$s_custom_field_type_enum_string = '0:String,1:Numeric,2:Float,3:Enumeration,4:Email';
+$s_custom_field_type_enum_string = '0:String,1:Numeric,2:Float,3:Enumeration,4:Email,5:Listbox';
 
 $s_confirm_used_custom_field_deletion = 'This field is currently linked to at least one project.  If you continue all values for this field will be permanently deleted.  This action cannot be undone.  If you do not want to delete this field, hit the Back button in your browser.  To proceed, click the button below';
 $s_confirm_custom_field_deletion = 'Are you sure you want to delete this custom field and all associated values?';
diff -Naurb mantis-0.19.0a1/lang/strings_spanish.txt mantis-0.19.0a1-arbeitskopie/lang/strings_spanish.txt
--- mantis-0.19.0a1/lang/strings_spanish.txt	2004-07-07 14:48:58.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/lang/strings_spanish.txt	2004-07-11 18:48:44.000000000 +0200
@@ -938,7 +938,7 @@
 $s_custom_field_require_close = 'Required On Close';
 
 $s_custom_field_sequence = 'Secuencia';
-$s_custom_field_type_enum_string = '0:Cadena,1:Num閞ico,2:Flotante,3:Enumeraci髇,4:Email';
+$s_custom_field_type_enum_string = '0:Cadena,1:Num閞ico,2:Flotante,3:Enumeraci髇,4:Email,5:Listbox';
 
 $s_confirm_used_custom_field_deletion = 'Este campo est vinculado a al menos un proyecto.  Si contin鷄 todos los valores para este campo ser醤 borrados permanentemente.  Esta acci髇 no puede volverse atr醩.  Si no desea eliminar el campo, haga click sobre el bot髇 Atr醩 de su navegador.  Para proceder, haga click sobre el bot髇 que aparece abajo';
 $s_confirm_custom_field_deletion = '縎eguro que desea eliminar este campo y todos los valores asociados?';
diff -Naurb mantis-0.19.0a1/lang/strings_swedish.txt mantis-0.19.0a1-arbeitskopie/lang/strings_swedish.txt
--- mantis-0.19.0a1/lang/strings_swedish.txt	2004-07-07 14:48:58.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/lang/strings_swedish.txt	2004-07-11 18:48:47.000000000 +0200
@@ -934,7 +934,7 @@
 $s_custom_field_require_close = 'Required On Close';
 
 $s_custom_field_sequence = 'Serie';
-$s_custom_field_type_enum_string = '0:Str鋘g,1:Numerisk,2:Flyttal,3:Uppr鋕ning,4:Epost';
+$s_custom_field_type_enum_string = '0:Str鋘g,1:Numerisk,2:Flyttal,3:Uppr鋕ning,4:Epost,5:Listbox';
 
 $s_confirm_used_custom_field_deletion = 'Detta f鋖t 鋜 f鰎 n鋜varande l鋘kat till 錿minstone ett projekt.  Om du forts鋞ter kommer alla v鋜den f鰎 dett f鋖t att tas bort permanent.  Denna 錿g鋜d kan inte 錸gras.  Om du inte vill ta bort detta f鋖t, tryck Back i din bl鋎drare.  F鰎 att forts鋞ta, tryck p knappen nedan';
 $s_confirm_custom_field_deletion = '膔 du s鋕er p att du vill ta bort detta skr鋎darsydda f鋖t och alla aAre you sure you want to delete this custom field and all associerade v鋜den?';
diff -Naurb mantis-0.19.0a1/lang/strings_turkish.txt mantis-0.19.0a1-arbeitskopie/lang/strings_turkish.txt
--- mantis-0.19.0a1/lang/strings_turkish.txt	2004-07-07 14:48:58.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/lang/strings_turkish.txt	2004-07-11 18:48:50.000000000 +0200
@@ -935,7 +935,7 @@
 $s_custom_field_require_close = 'Required On Close';
 
 $s_custom_field_sequence = 'Sequence';
-$s_custom_field_type_enum_string = '0:String,1:Numeric,2:Float,3:Enumeration,4:Email';
+$s_custom_field_type_enum_string = '0:String,1:Numeric,2:Float,3:Enumeration,4:Email,5:Listbox';
 
 $s_confirm_used_custom_field_deletion = 'This field is currently linked to at least one project.  If you continue all values for this field will be permanently deleted.  This action cannot be undone.  If you do not want to delete this field, hit the Back button in your browser.  To proceed, click the button below';
 $s_confirm_custom_field_deletion = 'Are you sure you want to delete this custom field and all associated values?';
diff -Naurb mantis-0.19.0a1/print_all_bug_page_word.php mantis-0.19.0a1-arbeitskopie/print_all_bug_page_word.php
--- mantis-0.19.0a1/print_all_bug_page_word.php	2004-07-07 13:44:02.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/print_all_bug_page_word.php	2004-07-11 18:12:16.000000000 +0200
@@ -284,7 +284,16 @@
 	</td>
 	<td class="print" colspan="5">
 		<?php
-			echo custom_field_get_value( $t_id, $v_id );
+			$t_custom_field_value = custom_field_get_value( $t_id, $v_id );
+			
+			switch ( $t_def['type'] ) {
+			case CUSTOM_FIELD_TYPE_LISTBOX:
+				$t_custom_field_value_output = implode( ', ', explode ('|', $t_custom_field_value ) );
+				echo $t_custom_field_value_output;
+			default:
+				echo $t_custom_field_value;
+				break;
+			}
 		?>
 	</td>
 </tr>
diff -Naurb mantis-0.19.0a1/print_bug_page.php mantis-0.19.0a1-arbeitskopie/print_bug_page.php
--- mantis-0.19.0a1/print_bug_page.php	2004-05-24 14:23:18.000000000 +0200
+++ mantis-0.19.0a1-arbeitskopie/print_bug_page.php	2004-07-11 18:12:07.000000000 +0200
@@ -238,7 +238,16 @@
 	</td>
 	<td class="print" colspan="4">
 		<?php
-			echo custom_field_get_value( $t_id, $f_bug_id );
+			$t_custom_field_value = custom_field_get_value( $t_id, $f_bug_id );
+
+			switch ( $t_def['type'] ) {
+			case CUSTOM_FIELD_TYPE_LISTBOX:
+				$t_custom_field_value_output = implode( ', ', explode ('|', $t_custom_field_value ) );
+				echo $t_custom_field_value_output;
+			default:
+				echo $t_custom_field_value;
+				break;
+			}
 		?>
 	</td>
 </tr>
