View Source Expo.Message.Singular (expo v0.1.0-beta.6)
Struct for non-plural messages
Link to this section Summary
Link to this section Types
@type block() :: :msgid | :msgstr | :msgctxt
@opaque meta()
@type t() :: %Expo.Message.Singular{ __meta__: meta(), comments: [String.t()], extracted_comments: [String.t()], flags: [[String.t()]], msgctxt: Expo.Message.msgctxt() | nil, msgid: Expo.Message.msgid(), msgstr: Expo.Message.msgstr(), obsolete: boolean(), previous_messages: [Expo.Message.t()], references: [ [file :: String.t() | {file :: String.t(), line :: pos_integer()}] ] }
Link to this section Functions
Rebalances all strings
- Put one string per newline of
msgid
/msgstr
- Put all flags onto one line
- Put all references onto a separate line
examples
Examples
iex> Expo.Message.Singular.rebalance(%Expo.Message.Singular{
...> msgid: ["", "hello", "\n", "", "world", ""],
...> msgstr: ["", "hello", "\n", "", "world", ""],
...> flags: [["one", "two"], ["three"]],
...> references: [[{"one", 1}, {"two", 2}], ["three"]]
...> })
%Singular{
msgid: ["hello\n", "world"],
msgstr: ["hello\n", "world"],
flags: [["one", "two", "three"]],
references: [[{"one", 1}], [{"two", 2}], ["three"]]
}
@spec source_line_number(message :: t(), block :: block(), default :: default) :: non_neg_integer() | default when default: term()
Get Source Line Number of statement
examples
Examples
iex> %Expo.Messages{messages: [message]} = Expo.Po.parse_string!("""
...> msgid "foo"
...> msgstr "bar"
...> """)
iex> Expo.Message.Singular.source_line_number(message, :msgid)
1