debian-mirror-gitlab/app/assets/javascripts/vue_shared/translate.js

40 lines
1.3 KiB
JavaScript
Raw Normal View History

2018-12-13 13:39:08 +05:30
import { __, n__, s__, sprintf } from '../locale';
2017-08-17 22:00:37 +05:30
2021-03-08 18:12:59 +05:30
export default (Vue) => {
2017-08-17 22:00:37 +05:30
Vue.mixin({
methods: {
/**
Translates `text`
@param text The text to be translated
@returns {String} The translated text
2018-11-08 19:23:39 +05:30
*/
2017-08-17 22:00:37 +05:30
__,
/**
Translate the text with a number
if the number is more than 1 it will use the `pluralText` translation.
This method allows for contexts, see below re. contexts
@param text Singular text to translate (eg. '%d day')
@param pluralText Plural text to translate (eg. '%d days')
@param count Number to decide which translation to use (eg. 2)
@returns {String} Translated text with the number replaced (eg. '2 days')
2018-11-08 19:23:39 +05:30
*/
2017-08-17 22:00:37 +05:30
n__,
/**
Translate context based text
Either pass in the context translation like `Context|Text to translate`
or allow for dynamic text by doing passing in the context first & then the text to translate
@param keyOrContext Can be either the key to translate including the context
(eg. 'Context|Text') or just the context for the translation
(eg. 'Context')
@param key Is the dynamic variable you want to be translated
@returns {String} Translated context based text
2018-11-08 19:23:39 +05:30
*/
2017-08-17 22:00:37 +05:30
s__,
2018-03-17 18:26:18 +05:30
sprintf,
2017-08-17 22:00:37 +05:30
},
});
};