UNPKG

@superset-ui/core

Version:
72 lines (50 loc) 1.85 kB
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> ## @superset-ui/core/translation `i18n` locales and translation for Superset. ### SupersetTranslation #### Example usage ```js import { configure, t, tn } from '@superset-ui/core'; configure({ languagePack: {...}, }); console.log(t('text to be translated')); console.log(tn('singular text', 'plural text', value)); ``` #### API `configure({ [languagePack] })` - Initialize the translator - Initialize with the default language if no `languagePack` is specified. `t(text[, args])` - Translate `text`. - If `args` is provided, substitute `args` into the `sprintf` placeholders specified within `text` translation. For example ```js t('Hello %(name)s', user); ``` See [sprintf-js](https://github.com/alexei/sprintf.js) for more details on how to define placeholders. `tn(singular, plural, num, [, args])` - Translate and choose between `singular` and `plural` based on `num`. - If `args` is provided, substitute `args` into the `sprintf` placeholders specified within `singular` or `plural` translations. For example ```js tn('%d duck', '%d ducks', 2, 2); ```