0

I am making an Arabic PO translation file of my odoo module in which there is a msgid:

msgid "10"
msgstr ""

Here I am not writing anything in msgstr, what will come out?

Will it show number "10" in string at runtime, or will it show blank as nothing is passed in msgstr?

davidrac
  • 10,723
  • 3
  • 39
  • 71
sakib keriwala
  • 129
  • 3
  • 14

1 Answers1

0

Gettext format uses empty msgstr strings for messages that are not yet translated. So in your example "10" will be interpreted as not translated and the original string ("10") will be used. This will not result in an empty string.

Ludwik Trammer
  • 24,602
  • 6
  • 66
  • 90