npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

strapi-plugin-international-fields

v1.1.1

Published

Strapi plugin that adds international fields with i18n support.

Downloads

8

Readme

strapi-plugin-international-fields

This plugin adds the following custom fields to your Strapi application:

The option labels have localisation applied to if available. Check the locales table down below for the included Admin panel locales.

preview

Supported Strapi versions:

  • v3.6 (and higher)

Older versions may work but are not tested.

Installation

Add plugin package

# using yarn
yarn add strapi-plugin-international-fields

# using npm
npm install strapi-plugin-international-fields --save

Rebuild Admin Panel

# using yarn
yarn build --clean

# using npm
npm run build --clean

Usage

Currently it isn't possible to add custom fields through the Content-Types Builder with Strapi, so you'll need to add it manually. To add one of the custom fields to a content type you need to add it to the attributes field in the models settings file (api/*/models/*.settings.json) like the example below.

{
  // ...
  "attributes": {
    "country": {
-      "type": "string",
+      "type": "country",
+      "columnType": "CHAR(2)"
    },
    "language": {
-      "type": "string",
+      "type": "language",
+      "columnType": "CHAR(2)"
    },
    "nationality": {
-      "type": "string",
+      "type": "nationality",
+      "columnType": "CHAR(2)"
    },
  }
}

Fields

Country

The country field provides an dropdown with every country from the ISO 3166 standard. The two-letter country code (ISO 3166-1 alpha-2) will be saved in the database. Almost all the Strapi Admin panel locales are included, so depending on the selected Interface language, the dropdown will be displayed with localized option labels.

Language

The language field provides an dropdown with every language from the ISO 639 standard. The two-letter language code (ISO 639-1 alpha-2) will be saved in the database. Almost all the Strapi Admin panel locales are included, so depending on the selected Interface language, the dropdown will be displayed with localized option labels.

Nationality

The nationality field provides an dropdown with every nationality from the ISO 3166 standard. The two-letter country code (ISO 3166-1 alpha-2) will be saved in the database. Only English, German and French are included, so depending on the selected Interface language, the dropdown will be displayed with i18n options, with english as fallback.

Locales

The following Strapi locales are supported per field. The default fallback is en (English).

| i18n locale | Native name | Country | Language | Nationality | |-------------|----------------------|:-------:|:--------:|:-----------:| | ar | العربية | x | | | | cs | Čeština | x | x | | | de | Deutsch | x | x | x | | dk | Dansk | x | | | | en | English | x | x | x | | es | Español | x | x | | | fr | Français | x | x | x | | he | עברית | x | | | | id | Indonesian | x | x | | | it | Italiano | x | x | | | ja | 日本語 | x | x | | | ko | 한국어 | x | | | | ms | Melayu | x | x | | | nl | Nederlands | x | x | | | no | Norwegian | x | x | | | pl | Polski | x | x | | | pt-BR | Português (Brasil) | pt | pt | | | pt | Português (Portugal) | x | x | | | ru | Русский | x | x | | | sk | Slovenčina | x | | | | th | ไทย | x | x | | | tr | Türkçe | x | | | | uk | Українська | x | | | | vi | Tiếng Việt | x | x | | | zh-Hans | 中文 (简体) | zh | zh | | | zh | 中文 (繁體) | x | x | |

i18n packages

The following packages are used to display the localized option labels.

Support

Resources

License

  • Copyright (c) 2020-2021 Mattias van den Belt & Strapi Solutions (MIT License).