Skip to content

Commit

Permalink
Removed trailing ':' from reminder_sent_to language string
Browse files Browse the repository at this point in the history
This is for consistency, as except for error messages punctuation is
generally added by the code.

Issue #2971
  • Loading branch information
dregad committed Feb 7, 2013
1 parent 3d34fba commit 97eb148
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bugnote_view_inc.php
Expand Up @@ -242,7 +242,7 @@
<?php
switch ( $t_bugnote->note_type ) {
case REMINDER:
echo '<em>' . lang_get( 'reminder_sent_to' ) . ' ';
echo '<em>' . lang_get( 'reminder_sent_to' ) . ': ';
$t_note_attr = utf8_substr( $t_bugnote->note_attr, 1, utf8_strlen( $t_bugnote->note_attr ) - 2 );
$t_to = array();
foreach ( explode( '|', $t_note_attr ) as $t_recipient ) {
Expand Down
2 changes: 1 addition & 1 deletion lang/strings_english.txt
Expand Up @@ -470,7 +470,7 @@ If you requested this verification, visit the following URL to change your passw
'to' => 'To',
'sent_you_this_reminder_about' => 'sent you this reminder about',
'bug_reminder' => 'Send a reminder',
'reminder_sent_to' => 'Reminder sent to:',
'reminder_sent_to' => 'Reminder sent to',
'bug_send_button' => 'Send',
'reminder' => 'Reminder',
'reminder_explain' => 'This note will be sent to the recipients listed requesting feedback on this issue.',
Expand Down
2 changes: 1 addition & 1 deletion print_all_bug_page_word.php
Expand Up @@ -557,7 +557,7 @@
<?php
switch ( $t_bugnote->note_type ) {
case REMINDER:
echo lang_get( 'reminder_sent_to' ) . ' ';
echo lang_get( 'reminder_sent_to' ) . ': ';
$t_note_attr = utf8_substr( $t_bugnote->note_attr, 1, utf8_strlen( $t_bugnote->note_attr ) - 2 );
$t_to = array();
foreach ( explode( '|', $t_note_attr ) as $t_recipient ) {
Expand Down
2 changes: 1 addition & 1 deletion print_bugnote_inc.php
Expand Up @@ -151,7 +151,7 @@
<?php
switch ( $v3_note_type ) {
case REMINDER:
echo '<div class="italic">' . lang_get( 'reminder_sent_to' ) . ' ';
echo '<div class="italic">' . lang_get( 'reminder_sent_to' ) . ': ';
$v3_note_attr = utf8_substr( $v3_note_attr, 1, utf8_strlen( $v3_note_attr ) - 2 );
$t_to = array();
foreach ( explode( '|', $v3_note_attr ) as $t_recipient ) {
Expand Down

0 comments on commit 97eb148

Please sign in to comment.