1.1.1 • Published 3 years ago

strapi-plugin-international-fields v1.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

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 localeNative nameCountryLanguageNationality
arالعربيةx
csČeštinaxx
deDeutschxxx
dkDanskx
enEnglishxxx
esEspañolxx
frFrançaisxxx
heעבריתx
idIndonesianxx
itItalianoxx
ja日本語xx
ko한국어x
msMelayuxx
nlNederlandsxx
noNorwegianxx
plPolskixx
pt-BRPortuguês (Brasil)ptpt
ptPortuguês (Portugal)xx
ruРусскийxx
skSlovenčinax
thไทยxx
trTürkçex
ukУкраїнськаx
viTiếng Việtxx
zh-Hans中文 (简体)zhzh
zh中文 (繁體)xx

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).