Skip to content

Commit 84567ae

Browse files
committedFeb 25, 2013
Fix #15540: Wrong example code for custom status translation
1 parent 957b3c0 commit 84567ae

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎docbook/Admin_Guide/en-US/Customizing.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -773,7 +773,7 @@ switch( $g_active_language ) {
773773
$s_testing_bug_button = 'A tester';
774774

775775
$s_email_notification_title_for_status_bug_testing = 'Le bogue suivant est prêt à être TESTE.';
776-
;;
776+
break;
777777

778778
default: # english
779779
$s_status_enum_string = '10:new,20:feedback,30:acknowledged,40:confirmed,50:assigned,60:testing,80:resolved,90:closed';
@@ -782,6 +782,7 @@ switch( $g_active_language ) {
782782
$s_testing_bug_button = 'Ready for Testing';
783783

784784
$s_email_notification_title_for_status_bug_testing = 'The following issue is ready for TESTING.';
785+
break;
785786
}
786787
</programlisting>
787788
<warning><para>Do NOT call

0 commit comments

Comments
 (0)
Please sign in to comment.