docs(localize): Make links out of @see tags (#50110)

This commit is part of the work for angular#50097 to improve the linking on the online documentation.

PR Close #50110
This commit is contained in:
Matthieu Riegler
2023-05-18 17:11:09 +02:00
committed by Pawel Kozlowski
parent 8cd90bacae
commit 20983fc595
+4 -4
View File
@@ -51,8 +51,8 @@ declare const $localize: LocalizeFn&{TRANSLATIONS: Record<MessageId, ParsedTrans
*
* These messages are processed and added to a lookup based on their `MessageId`.
*
* @see `clearTranslations()` for removing translations loaded using this function.
* @see `$localize` for tagging messages as needing to be translated.
* @see {@link clearTranslations} for removing translations loaded using this function.
* @see {@link $localize} for tagging messages as needing to be translated.
* @publicApi
*/
export function loadTranslations(translations: Record<MessageId, TargetMessage>) {
@@ -73,8 +73,8 @@ export function loadTranslations(translations: Record<MessageId, TargetMessage>)
*
* All translations that had been loading into memory using `loadTranslations()` will be removed.
*
* @see `loadTranslations()` for loading translations at runtime.
* @see `$localize` for tagging messages as needing to be translated.
* @see {@link loadTranslations} for loading translations at runtime.
* @see {@link $localize} for tagging messages as needing to be translated.
*
* @publicApi
*/