You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you want to provide a default value for when a translation is not found in any language, you can do so by passing it as the last parameter to the translate pipe or function:
221
+
222
+
- Template:
223
+
224
+
```html
225
+
{{ 'common.greetings.hello_world' | translate: { name: 'John', time: '10:00' }: 'Hello, this is my default string' }}
226
+
```
227
+
228
+
or without values:
229
+
230
+
```html
231
+
{{ 'common.greetings.hello_world' | translate: 'Hello, this is my default string' }}
232
+
```
233
+
234
+
- Component/Service:
235
+
236
+
```typescript
237
+
this.translateService.translate('common.greetings.hello_world', { name: 'John', time: '10:00' }, 'Hello, this is my default string');
238
+
```
239
+
240
+
or without values:
241
+
242
+
```typescript
243
+
this.translateService.translate('common.greetings.hello_world', undefined, 'Hello, this is my default string');
0 commit comments