Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagexml
themeRDark
titlesrc/views/**/some-views.html
linenumberstrue
<p translate="my.value.to.translate.hello_x" translate-values="{name: "'John"'}"></p>

Directive code

Default

...

Code Block
languagejs
themeRDark
titlesrc/views/**/some-views.directive.coffee
linenumberstrue
$translate('my.value.to.translate.hello_x', {name: "'John"'}).then(
	(translation) ->
		scope.yourVariable = translation
)

...