Templates.helpers.loc()

loc (str) public

Defined in packages/ember-htmlbars/lib/helpers/loc.js:9

Calls Ember.String.loc with the provided string. This is a convenient way to localize text within a template. For example:

1
2
3
Ember.STRINGS = {
  '_welcome_': 'Bonjour'
};
1
2
3
<div class='message'>
  {{loc '_welcome_'}}
</div>
1
2
3
<div class='message'>
  Bonjour
</div>

See Ember.String.loc for how to set up localized string references.

Parameters:

str String
The string to format.
doc_EmberJs
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.