
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
This package imports/exports locales from localekey to your project.
pnpm i -D localekey
You need a way to run your the file. tsx is recommended.
This is example on how to use the package with typesafe-i18n. But you can use it with any framework or simply use node to write and read files.
import LocaleKey from 'localekey';
export const localekey = new LocaleKey({
projectId: '<Your project id>', // See url in localekey app
secret: '<Your team secret>', // See team settings in localekey app
});
import { storeTranslationToDisk } from 'typesafe-i18n/importer';
import { localekey } from './utils';
const importTranslations = async () => {
const locales = await localekey.readAll();
await Promise.all(
Object.entries(locales).map(async ([locale, data]) =>
storeTranslationToDisk({
locale,
translations: data,
}),
),
);
};
void importTranslations();
import { readTranslationFromDisk } from 'typesafe-i18n/exporter';
import { locales } from './i18n-util';
import { localekey } from './utils';
const exportTranslations = async () => {
const response = await Promise.all(
locales.map(async (localeCode) => {
const mapping = await readTranslationFromDisk(localeCode);
return {
data: mapping.translations as Record<string, string>,
localeCode,
};
}),
);
const payload: Record<string, Record<string, string>> = {};
for (const { data, localeCode } of response) {
payload[localeCode] = data;
}
await localekey.updateAll(payload);
};
void exportTranslations();
Then run
tsx ./src/importer
tsx ./src/exporter
FAQs
This package is used to import/export locales from LocaleKey.
We found that localekey demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.