Translated Fields for Jira & JSM
  • About Translated Fields for Jira & JSM
  • JIRA ADMINISTRATOR
    • Setup guide
    • New custom field types
    • Field configuration
      • Import options and translations
      • Translate field name
      • Default value
    • Limitations
    • Security
  • JIRA SERVICE MANAGEMENT
    • Translated form configuration
    • Limitations
  • Customer Portal
    • Translated form on Customer request
  • SUPPORT
    • Service Desk
  • DEMO
    • Customer Portal Demo
  • ATLASSIAN MARKETPLACE
    • Translated Fields for Jira & JSM
    • Workflow Building Blocks for Jira
    • Field Rules - UI Modifications for Jira
Powered by GitBook
On this page
  1. JIRA ADMINISTRATOR
  2. Field configuration

Default value

PreviousTranslate field nameNextLimitations

Last updated 11 months ago

Setting a default value works in a similar way as for regular custom fields (Jira feature). However, at the moment, the Jira editor doesn't support third-party custom fields well in that area, and the value must be entered in raw form.

  1. Go to Settings -> Issues -> Custom fields

  2. Find the field and click 3 dots icon ⋯ on the right, choose 'Contexts and default value'

  3. Click on the "Edit Default Value" link

  4. Enter the JSON representation of the value in the issue

Custom field value format

It is important to add translations for all configured languages. If a translation is not added here, it will not work for users.

Single choice field types

This includes: Translated Select (single choice), Translated Radio Buttons

{ "id": "112",
  "value": "Green",
  "pl_PL": "Zielony"
}

Multiple choice field types

Translated Select (multiple choice), Translated Checkboxes

{ "items": [
    { "id": "105",
      "value": "Code Review",
      "pl_PL": "Review kodu"
    },
    { "id": "106",
      "value": "Documentation",
      "pl_PL": "Dokumentacja"
    }
  ]
}
⚙️