Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@blackbox-vision/ra-language-spanish
Advanced tools
Spanish messages for react-admin, the frontend framework for building admin applications on top of REST/GraphQL services
Spanish translations for React Admin
.
You can install this library via NPM or YARN.
npm i @blackbox-vision/ra-language-spanish
yarn add @blackbox-vision/ra-language-spanish
You need to have spanish translations in your React Admin
app.
The usage is really simple:
i18nProvider
:// i18nProvider.ts
import polyglotI18nProvider from "ra-i18n-polyglot";
import spanishMessages from "@blackbox-vision/ra-language-spanish";
const messages = {
es: spanishMessages,
};
export const i18nProvider = polyglotI18nProvider((locale) => messages[locale]);
i18nProvider
to your React Admin
instance:// App.tsx
import React from "react";
import { Admin, Resource } from "react-admin";
import jsonServerProvider from "ra-data-json-server";
export const App = () => {
const dataProvider = jsonServerProvider(
"https://jsonplaceholder.typicode.com"
);
return (
<Admin locale="es" i18nProvider={i18nProvider} dataProvider={dataProvider}>
<Resource name="users" list={ListGuesser} />
</Admin>
);
};
App.displayName = "App";
Please, open an issue following one of the issues templates. We will do our best to fix them.
If you want to contribute to this project see contributing for more information.
Distributed under the MIT license. See LICENSE for more information.
FAQs
Spanish messages for react-admin, the frontend framework for building admin applications on top of REST/GraphQL services
We found that @blackbox-vision/ra-language-spanish demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.