Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ra-language-polish

Package Overview
Dependencies
Maintainers
2
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ra-language-polish

Polish messages for react-admin, the frontend framework for building admin applications on top of REST/GraphQL services

  • 1.3.9
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
2
Created
Source

Polish Messages for React-Admin

Build

Polish messages for react-admin, the frontend framework for building admin applications on top of REST/GraphQL services.

Installation

npm install ra-language-polish
yarn add ra-language-polish

Usage

As per react-admin documentation

Setting Up Translations

If you want to add or update translations, you'll have to provide your own i18nProvider.

Just like for the dataProvider and the authProvider, you can inject the i18nProvider to your react-admin app using the <Admin i18nProvider> prop:

import { i18nProvider } from './i18nProvider';

const App = () => (
    <Admin 
        dataProvider={dataProvider}
        i18nProvider={i18nProvider}
    >
        {/* ... */}
    </Admin>
);

In most cases, the i18nProvider will contain translations for both react-admin keys and your own keys.

Changing The Default Locale

If you want to display the interface in another language than English by default, you have to set up an i18nProvider that provides the translation for all the keys used by react-admin. Fortunately, the react-admin community has already written translations for more than 40 locales. Check the list of available locales to find the locale you're looking for.

For instance, to change the interface to Polish, install the ra-language-polish npm package, then use it in a custom i18nProvider, as follows:

// in src/i18nProvider.js
import polyglotI18nProvider from 'ra-i18n-polyglot';
import pl from 'ra-language-polish';

export const i18nProvider = polyglotI18nProvider(() => pl, 'pl');

Tip: The ra-i18n-polyglot package allows to build an i18nProvider based on translation messages. It relies on the Polyglot.js library.

License

This translation is licensed under the MIT License.

Keywords

FAQs

Package last updated on 20 Jan 2023

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc