summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dev-wallet-wx.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev-wallet-wx.rst b/dev-wallet-wx.rst
index 898b754c..4516c015 100644
--- a/dev-wallet-wx.rst
+++ b/dev-wallet-wx.rst
@@ -153,12 +153,12 @@ call `mocha` with the right parameters.
Internationalisation
--------------------
-Strings in the JavaScript code are internationalised using the following functions,
+Strings in the JavaScript code are internationalised using the following functions:
- *i18n*: translate string with arbitrary arguments, the result is returned as string.
.. code-block:: js
- i18n`You have ${n} coins.
+ i18n`You have ${n} coins.`
- *i18n.parts*: Interpolate i18nized values with arbitrary objects. Useful for example to include HTML elements.
.. code-block:: js