basic localization of strings (396 bytes gzip, no deps), including pluralization and reordering of substitutions with template literals.
npm install basic-l10nbasic localization of strings (396 bytes gzip, no dependencies),
including pluralization and reordering of substitutions with template literals.
in the non-minified version (basic-l10n/dist/index.js),
unknown template literals generate a warning when a logger is provided,
unless process.env.NODE_ENV === "production".
in all cases, unknown template literals are returned
as they would from the default template function,
without localization.
ts
import createL10ns from 'basic-l10n/dist/index.js' // dev version with debug warnings
import logger from './console'
const log = logger()
const debug = logger('(debug)')const localizations = {
fr: {
'welcome': 'bienvenue', // default string localization
'date: %s/%s/%s': 'date: %1/%0/%2', // reorder substitutions
'you have %s new messages.': [ // pluralization
'vous n\'avez pas de nouveaux messages.', // 0
'vous avez un nouveau message.', // 1
'vous avez %0 nouveaux messages.' // 2
// not limited to 3 entries, could be any number
]
},
en: {
'welcome': 'welcome',
'date: %s/%s/%s': 'date: %0/%1/%2',
'you have %s new messages.': [
'you have no new messages.',
'you have one new message.',
'you have %0 new messages.'
]
}
}
const l10ns = createL10ns(localizations, { debug })
for (const lang of ['en', 'fr']) {
const t = l10ns[lang]
log(t('welcome')) // default string localization
log(t
date: ${1}/${7}/${1982}) // reordering with template strings
for (const count of [0, 1, 5]) {
log(tyou have ${count} new messages.) // pluralization with template strings
}
}
log(l10ns.enunknown keys generate a warning) // except in production
`
output to console:
`
welcome
date: 1/7/1982
you have no new messages.
you have one new message.
you have 5 new messages.
bienvenue
date: 7/1/1982
vous n'avez pas de nouveaux messages.
vous avez un nouveau message.
vous avez 5 nouveaux messages.
(debug) WARNING: undefined localization for locale "fr" and key "unknown template literals generate a warning"
unknown template literals generate a warning
`
API v2
`ts
export interface L10nTag {
(key: string): string
(strings: TemplateStringsArray, ...substitutes: any[]): string
}export interface L10nOptions {
debug: (...args: any[]) => void
}
export declare type L10n = KVs
export interface KVs {
[key: string]: V
}
export default function createL10n(
l10ns: KVs,
opts?: Partial
): KVs
``Licensed 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.