Skip to content

Commit

Permalink
Adjust message wording
Browse files Browse the repository at this point in the history
  • Loading branch information
tbar0970 committed Aug 8, 2023
1 parent aa9e4d0 commit c19e9ff
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion views/view_0_generate_service_documents.class.php
Expand Up @@ -109,7 +109,7 @@ static function getCongregations()
public function processView()
{
if (!count(self::getCongregations())) {
add_message("You need to set the 'code name' for some of your congregations before using this feature", 'failure');
add_message("You need to enable services for some of your congregations before using this feature", 'failure');
return;
}

Expand Down
2 changes: 1 addition & 1 deletion views/view_8_services__1_list_all.class.php
Expand Up @@ -386,7 +386,7 @@ function _formatBible($raw, $linked=FALSE)
function _printParamsForm()
{
if (empty($this->_cong_options)) {
print_message("To edit services you must first go to admin > congregations and set the 'code name' for the relevant congregations", 'failure');
print_message("Before editing services, you must go to the Admin > Congregations page and enable services for some of your congregations.", 'failure');
return;
}
?>
Expand Down
2 changes: 1 addition & 1 deletion views/view_8_services__3_component_library.class.php
Expand Up @@ -20,7 +20,7 @@ function printView()
{
$congs = $GLOBALS['system']->getDBObjectData('congregation', Array('!meeting_time' => ''), 'AND', 'name');
if (empty($congs)) {
print_message("To edit services you must first go to admin > congregations and set the 'code name' for the relevant congregations", 'failure');
print_message("To edit services you must first go to admin > congregations and enable services for relevant congregations", 'failure');
return;
}
?>
Expand Down

0 comments on commit c19e9ff

Please sign in to comment.