Commit e1d22a05 authored by Phil Hughes's avatar Phil Hughes

Updated JS object for Vue methods

parent 628d641b
...@@ -13,7 +13,7 @@ export default (Vue) => { ...@@ -13,7 +13,7 @@ export default (Vue) => {
@param text The text to be translated @param text The text to be translated
@returns {String} The translated text @returns {String} The translated text
**/ **/
__(text) { return __(text); }, __,
/** /**
Translate the text with a number Translate the text with a number
if the number is more than 1 it will use the `pluralText` translation. if the number is more than 1 it will use the `pluralText` translation.
...@@ -24,7 +24,7 @@ export default (Vue) => { ...@@ -24,7 +24,7 @@ export default (Vue) => {
@param count Number to decide which translation to use (eg. 2) @param count Number to decide which translation to use (eg. 2)
@returns {String} Translated text with the number replaced (eg. '2 days') @returns {String} Translated text with the number replaced (eg. '2 days')
**/ **/
n__(text, pluralText, count) { return n__(text, pluralText, count); }, n__,
/** /**
Translate context based text Translate context based text
Either pass in the context translation like `Context|Text to translate` Either pass in the context translation like `Context|Text to translate`
...@@ -36,7 +36,7 @@ export default (Vue) => { ...@@ -36,7 +36,7 @@ export default (Vue) => {
@param key Is the dynamic variable you want to be translated @param key Is the dynamic variable you want to be translated
@returns {String} Translated context based text @returns {String} Translated context based text
**/ **/
s__(keyOrContext, key) { return s__(keyOrContext, key); }, s__,
}, },
}); });
}; };
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment