Flutter ARB file (.arb)

 

What is an ARB file?

ARB stands for Application Resource Bundle. It is essentially a JSON file enhanced for localization, with an .arb extension. Since it is based on JSON, it just defines standardized ways of adding additional information to key-value pairs.

ARB files provide various capabilities, but here we will only mention those relevant to Flutter applications.

Sample ARB file

{
  "@@locale" : "en",

  "appName" : "Demo app",
  
  "pageLoginUsername" : "Your username",
  "@pageLoginUsername" : {},
  
  "pageLoginPassword" : "Your password",
  "@pageLoginPassword" : {},

  "pageHomeTitle" : "Welcome {firstName}",
  "@pageHomeTitle" : {
      "description" : "Welcome message on the Home screen",
      "placeholders": {
          "firstName": {}
      }
  },

  "pageHomeInboxCount" : "{count, plural, zero{You have no new messages} one{You have 1 new message} other{You have {count} new messages}}",
  "@pageHomeInboxCount" : {
      "description" : "New messages count on the Home screen",
      "placeholders": {
          "count": {}
      }
  },

  "pageHomeBirthday": "{sex, select, male{His birthday} female{Her birthday} other{Their birthday}}",
  "@pageHomeBirthday": {
      "description": "Birthday message on the Home screen",
      "placeholders": {
          "sex": {}
      }
  },

  "commonVehicleType": "{vehicleType, select, sedan{Sedan} cabriolet{Solid roof cabriolet} truck{16 wheel truck} other{Other}}",
  "@commonVehicleType": {
      "description": "Vehicle type",
      "placeholders": {
          "vehicleType": {}
      }
  }
}

In the given example we have the following:

  • “@@locale” – (optional) a global attribute that defines locale for translated strings.
  • “appName” – a basic key-value pair with translation.
  • “@pageLoginUsername” – a key prefixed with @ represents a JSON object with additional attributes for the same key. It is optional if using the Flutter Intl IDE plugin.
  • “description” – (optional) short text describing the string key and how it is being used in the app, explaining the context to translators.
  • “placeholders” – A map of placeholder ids. It is optional if using the Flutter Intl IDE plugin. Otherwise, all placeholders from the translation should be listed.

Tired of manually editing translation files?

Our platform streamlines software localization for you.

ARB file features

All localization file formats have some specific features. Here we will list those for the ARB file format, relevant for Flutter apps.

Placeholder

Placeholder is marked by curly brackets. Variable name inside {} must be a valid identifier, like {firstName}.

The simplest placeholder example:

"pageHomeTitle" : "Welcome {firstName}",
"@pageHomeTitle" : {
    "placeholders": {
        "firstName": {}
    }
}

The placeholder example with all possible parameters for DateTime and double types:

"pageHomeBalance" : "Your balance is {amount} on {date}",
"@pageHomeBalance" : {
    "placeholders": {
        "amount": {
            "type": "double",
            "format": "currency",
            "example": "$1000.00",
            "description": "Account balance",
            "optionalParameters": {
                "decimalDigits": 2,
                "name": "USD",
                "symbol": "$",
                "customPattern": "¤#0.00"
            }
        },
        "date": {
            "type": "DateTime",
            "format": "yMd",
            "example": "11/10/2021",
            "description": "Balance date"
        }
    }
}

Placeholder’s type parameter can have one of the following values: String, Object, int, double, num, DateTime.

optionalParameters are available for int, double and num placeholder types, and depend on the format value:

“format” valueAvailable “optionalParameters”Example output for “1 200 000”
compact“1.2M”
compactCurrencyname (example: “USD”),
symbol (example: “$”),
decimalDigits (example: 2)
“$1.2M”
compactSimpleCurrencyname (example: “USD”),
decimalDigits (example: 2)
“$1.2M”
compactLong“1.2 million”
currencyname (example: “USD”),
symbol (example: “$”),
decimalDigits (example: 2),
customPattern (example: “¤#0.00”)
“$1200000.00”
decimalPattern“1,200,000”
decimalPatternDigitsdecimalDigits (example: 2)“1,200,000.00”
decimalPercentPatterndecimalDigits (example: 2)“120,000,000.00%”
percentPattern“120,000,000%”
scientificPattern“1E6”
simpleCurrencyname (example: “USD”),
decimalDigits (example: 2)
“$1,200,000.00”

Placeholders based on the DateTime type support a set of predefined format options, such as yMd, Hms, and similar. These format options are derived from DateFormat class constructors. In case none of these 41 format options works for you, you can use a custom date-time format by setting isCustomDateFormat to "true" and defining your custom format:

"commonCustomDateFormat": "Custom date format: {date}",
"@commonCustomDateFormat": {
    "placeholders": {
        "date": {
            "type": "DateTime",
            "format": "EEE, M/d/y",
            "isCustomDateFormat": "true"
        }
    }
}

Plural

Plurals are defined with ICU syntax.

"pageHomeInboxCount" : "{count, plural, zero{You have no new messages} one{You have 1 new message} other{You have {count} new messages}}",
"@pageHomeInboxCount" : {
    "description" : "New messages count on the Home screen",
    "placeholders": {
        "count": {}
    }
},

other is a mandatory case.

Gender

Genders are defined with ICU syntax.

"pageHomeBirthday": "{sex, select, male{His birthday} female{Her birthday} other{Their birthday}}",
"@pageHomeBirthday": {
    "description": "Birthday message on the Home screen",
        "placeholders": {
        "sex": {}
    }
},

other is a mandatory case.

Select

Custom selects are defined with ICU syntax.

"commonVehicleType": "{vehicleType, select, sedan{Sedan} cabriolet{Solid roof cabriolet} truck{16 wheel truck} other{Other}}",
"@commonVehicleType": {
    "description": "Vehicle type",
    "placeholders": {
        "vehicleType": {}
    }
}

other is a mandatory case.

Newline

Since an ARB file is based on the JSON format, a new line is indicated by the newline character \n.
Note that the actual display on the screen depends on the widget used.

"pageHomeTitle": "Welcome,\n{firstName}",

Special chars

In rare situations, during the localization process, you may need to treat special characters such as { and } as regular text. This largely depends on the localization tool being used. When using the gen-l10n tool, you need to enclose the relevant section of the message in single quotes and enable the escaping mechanism.
Note that other tools may not support this functionality or they might require a different approach.

"escapingExample": "In math, '{1, 2, 3}' denotes a set."

HTML tags

In certain situations, it's beneficial to use HTML tags in localization messages. This strategy prevents the message from being divided into smaller parts for styling purposes or other advantages. An example of such a message is shown below.

"htmlExample": "<i>Discover <b>Flutter</b></i>"

Tired of manually editing translation files?

Our platform streamlines software localization for you.

Copyrights 2024 © Localizely