% if not credit_status["purchased"] and not credit_status["error"] :
- ${_("You are now eligible for credit. Congratulations!")}
+ ${_("You have completed this course and are eligible to purchase course credit. Select Learn More to get started.")}
% elif credit_status["request_status"] in [None, "pending"] and not credit_status["error"] :
% if credit_status["request_status"] == "pending":
- ## Translators: link_to_provider_site is a link to an external webpage. The text of the link will be the name of a
- ## credit provider, such as 'State University' or 'Happy Fun Company'
- ${_("Thank you. Your credit is processing. Please see {link_to_provider_site} for more information.").format(
- link_to_provider_site=provider_link,
+ ## Translators: provider_name is the name of a credit provider, such as 'State University' or 'Happy Fun Company'.
+ ${_("{provider_name} has received your course credit request. We will update you when credit processing is complete.").format(
+ provider_name=credit_status["provider_name"],
)
}
-
% elif credit_status["request_status"] is None:
## Translators: link_to_provider_site is a link to an external webpage. The text of the link will be the name of a
- ## credit provider, such as 'State University' or 'Happy Fun Company'
- ${_("Thank you for your purchase. Please proceed to {link_to_provider_site} to finalize your credit.").format(
+ ## credit provider, such as 'State University' or 'Happy Fun Company'.
+ ${_("Thank you for your payment. To receive course credit, you must now request credit at the {link_to_provider_site} website. Select Request Credit to get started.").format(
link_to_provider_site=provider_link,
)
}
-
+
% endif
% elif credit_status["request_status"] == "approved" and not credit_status["error"] :
## Translators: link_to_provider_site is a link to an external webpage. The text of the link will be the name of a
- ## credit provider, such as 'State University' or 'Happy Fun Company'
- ${_("Your credit has been processed and approved. Congratulations!. Please see {link_to_provider_site} for more information.").format(
+ ## credit provider, such as 'State University' or 'Happy Fun Company'. provider_name is the name of credit provider.
+ ${_("Congratulations! {provider_name} has approved your request for course credit. To see your course credit, visit the {link_to_provider_site} website").format(
+ provider_name=credit_status["provider_name"],
link_to_provider_site=provider_link,
)
}
## Translators: link_to_provider_site is a link to an external webpage. The text of the link will be the name of a
- ## credit provider, such as 'State University' or 'Happy Fun Company'
- ${_("Your credit has been processed but denied. Please contact {link_to_provider_site} for more information.").format(
+ ## credit provider, such as 'State University' or 'Happy Fun Company'. provider_name is the name of credit provider.
+ ${_("{provider_name} did not approve your request for course credit. For more information, contact {link_to_provider_site} directly.").format(
+ provider_name=credit_status["provider_name"],
link_to_provider_site=provider_link,
)
}