Complete the code to mark the text for translation using Angular's i18n attribute.
<p [1]="">Hello world</p>
The i18n attribute is used in Angular templates to mark text for translation.
Complete the code to add a custom description for the translation using Angular's i18n attribute.
<button [1]="'Submit button|Click to submit form'">Submit</button>
The i18n attribute can include a description after a pipe | to help translators understand the context.
Fix the error in marking the placeholder text for translation in Angular.
<input [1] placeholder="Enter your name">
To mark an attribute like placeholder for translation, Angular uses i18n-placeholder.
Fill both blanks to mark a title attribute for translation and add a description.
<a href="#" [1] [2]="'Home link|Navigate to homepage'" title="Home">Home</a>
Use i18n to mark the text content and i18n-title to mark the title attribute for translation. Include description with | in the i18n-title value.
Complete the code to mark a button text for translation with a custom id, meaning, and description.
<button [1]="'save|Save changes button|Action to save data'">Save</button>
The i18n attribute can include id, meaning, and description separated by pipes | in this order: id|meaning|description.