diff options
Diffstat (limited to 'gedrecord.php')
| -rw-r--r-- | gedrecord.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gedrecord.php b/gedrecord.php index b178af153d..6ec0c2f24e 100644 --- a/gedrecord.php +++ b/gedrecord.php @@ -51,8 +51,8 @@ if ($controller->record && $controller->record->canShow()) { if (Auth::isModerator($controller->record->getTree())) { echo '<p class="ui-state-highlight">', - /* I18N: %1$s is “accept”, %2$s is “reject”. These are links. */ I18N::translate( - 'This record has been deleted. You should review the deletion and then %1$s or %2$s it.', + /* I18N: %1$s is “accept”, %2$s is “reject”. These are links. */ I18N::translate( + 'This record has been deleted. You should review the deletion and then %1$s or %2$s it.', '<a href="#" onclick="accept_changes(\'' . $controller->record->getXref() . '\');">' . I18N::translateContext('You should review the deletion and then accept or reject it.', 'accept') . '</a>', '<a href="#" onclick="reject_changes(\'' . $controller->record->getXref() . '\');">' . I18N::translateContext('You should review the deletion and then accept or reject it.', 'reject') . '</a>' ), @@ -61,7 +61,7 @@ if ($controller->record && $controller->record->canShow()) { } elseif (Auth::isEditor($controller->record->getTree())) { echo '<p class="ui-state-highlight">', - I18N::translate('This record has been deleted. The deletion will need to be reviewed by a moderator.'), + I18N::translate('This record has been deleted. The deletion will need to be reviewed by a moderator.'), ' ', FunctionsPrint::helpLink('pending_changes'), '</p>'; } @@ -69,8 +69,8 @@ if ($controller->record && $controller->record->canShow()) { if (Auth::isModerator($controller->record->getTree())) { echo '<p class="ui-state-highlight">', - /* I18N: %1$s is “accept”, %2$s is “reject”. These are links. */ I18N::translate( - 'This record has been edited. You should review the changes and then %1$s or %2$s them.', + /* I18N: %1$s is “accept”, %2$s is “reject”. These are links. */ I18N::translate( + 'This record has been edited. You should review the changes and then %1$s or %2$s them.', '<a href="#" onclick="accept_changes(\'' . $controller->record->getXref() . '\');">' . I18N::translateContext('You should review the changes and then accept or reject them.', 'accept') . '</a>', '<a href="#" onclick="reject_changes(\'' . $controller->record->getXref() . '\');">' . I18N::translateContext('You should review the changes and then accept or reject them.', 'reject') . '</a>' ), @@ -79,7 +79,7 @@ if ($controller->record && $controller->record->canShow()) { } elseif (Auth::isEditor($controller->record->getTree())) { echo '<p class="ui-state-highlight">', - I18N::translate('This record has been edited. The changes need to be reviewed by a moderator.'), + I18N::translate('This record has been edited. The changes need to be reviewed by a moderator.'), ' ', FunctionsPrint::helpLink('pending_changes'), '</p>'; } |
