This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-file("lib/gettext.ex", 1). | |
-module('Elixir.GettextCompile.Gettext'). | |
-behaviour('Elixir.Gettext.Backend'). | |
-external_resource(<<47,85,115,101,114,115,47,106,111,115,101, | |
47,79,83,83,47,109,105,120,45,112,108, | |
97,121,103,114,111,117,110,100,47,95,98, | |
117,105,108,100,47,100,101,118,47,108, | |
105,98,47,103,101,116,116,101,120,116,95, | |
99,111,109,112,105,108,101,47,46,99,111, | |
109,112,105,108,101,95,112,114,105,118, | |
95,103,101,116,116,101,120,116>>). | |
-export(['MACRO-dgettext'/3, | |
'MACRO-dgettext'/4, | |
'MACRO-dgettext_noop'/3, | |
'MACRO-dngettext'/5, | |
'MACRO-dngettext'/6, | |
'MACRO-dngettext_noop'/4, | |
'MACRO-dpgettext'/4, | |
'MACRO-dpgettext'/5, | |
'MACRO-dpgettext_noop'/4, | |
'MACRO-dpngettext'/6, | |
'MACRO-dpngettext'/7, | |
'MACRO-dpngettext_noop'/5, | |
'MACRO-gettext'/2, | |
'MACRO-gettext'/3, | |
'MACRO-gettext_comment'/2, | |
'MACRO-gettext_noop'/2, | |
'MACRO-ngettext'/4, | |
'MACRO-ngettext'/5, | |
'MACRO-ngettext_noop'/3, | |
'MACRO-pgettext'/3, | |
'MACRO-pgettext'/4, | |
'MACRO-pgettext_noop'/3, | |
'MACRO-pngettext'/5, | |
'MACRO-pngettext'/6, | |
'MACRO-pngettext_noop'/4, | |
'__gettext__'/1, | |
'__info__'/1, | |
handle_missing_bindings/2, | |
handle_missing_plural_translation/6, | |
handle_missing_translation/4, | |
lgettext/4, | |
lgettext/5, | |
lngettext/6, | |
lngettext/7]). | |
-spec '__info__'(attributes | compile | functions | macros | md5 | | |
exports_md5 | module | deprecated) -> | |
any(). | |
'__info__'(module) -> | |
'Elixir.GettextCompile.Gettext'; | |
'__info__'(functions) -> | |
[{'__gettext__', 1}, | |
{handle_missing_bindings, 2}, | |
{handle_missing_plural_translation, 6}, | |
{handle_missing_translation, 4}, | |
{lgettext, 4}, | |
{lgettext, 5}, | |
{lngettext, 6}, | |
{lngettext, 7}]; | |
'__info__'(macros) -> | |
[{dgettext, 2}, | |
{dgettext, 3}, | |
{dgettext_noop, 2}, | |
{dngettext, 4}, | |
{dngettext, 5}, | |
{dngettext_noop, 3}, | |
{dpgettext, 3}, | |
{dpgettext, 4}, | |
{dpgettext_noop, 3}, | |
{dpngettext, 5}, | |
{dpngettext, 6}, | |
{dpngettext_noop, 4}, | |
{gettext, 1}, | |
{gettext, 2}, | |
{gettext_comment, 1}, | |
{gettext_noop, 1}, | |
{ngettext, 3}, | |
{ngettext, 4}, | |
{ngettext_noop, 2}, | |
{pgettext, 2}, | |
{pgettext, 3}, | |
{pgettext_noop, 2}, | |
{pngettext, 4}, | |
{pngettext, 5}, | |
{pngettext_noop, 3}]; | |
'__info__'(Key = attributes) -> | |
erlang:get_module_info('Elixir.GettextCompile.Gettext', Key); | |
'__info__'(Key = compile) -> | |
erlang:get_module_info('Elixir.GettextCompile.Gettext', Key); | |
'__info__'(Key = md5) -> | |
erlang:get_module_info('Elixir.GettextCompile.Gettext', Key); | |
'__info__'(deprecated) -> | |
[]. | |
'__gettext__'(priv) -> | |
<<"priv/gettext">>; | |
'__gettext__'(otp_app) -> | |
gettext_compile; | |
'__gettext__'(known_locales) -> | |
[<<"ca">>]; | |
'__gettext__'(default_locale) -> | |
'Elixir.Application':'fetch_env!'(gettext, default_locale); | |
'__gettext__'(default_domain) -> | |
<<"default">>. | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 1 some text to " | |
"be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 1 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 1 some tex" | |
"t translated">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 2 some text to " | |
"be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 2 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 2 some tex" | |
"t translated">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 3 some text to " | |
"be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 3 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 3 some tex" | |
"t translated">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 4 some text to " | |
"be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 4 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 4 some tex" | |
"t translated">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 5 some text to " | |
"be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 5 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 5 some tex" | |
"t translated">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 6 some text to " | |
"be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 6 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 6 some tex" | |
"t translated">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 7 some text to " | |
"be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 7 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 7 some tex" | |
"t translated">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 8 some text to " | |
"be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 8 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 8 some tex" | |
"t translated">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 9 some text to " | |
"be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 9 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 9 some tex" | |
"t translated">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 10 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 10 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 10 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 11 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 11 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 11 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 12 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 12 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 12 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 13 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 13 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 13 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 14 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 14 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 14 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 15 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 15 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 15 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 16 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 16 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 16 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 17 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 17 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 17 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 18 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 18 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 18 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 19 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 19 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 19 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 20 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 20 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 20 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 21 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 21 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 21 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 22 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 22 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 22 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 23 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 23 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 23 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 24 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 24 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 24 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 25 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 25 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 25 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 26 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 26 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 26 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 27 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 27 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 27 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 28 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 28 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 28 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 29 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 29 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 29 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 30 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 30 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 30 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 31 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 31 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 31 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 32 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 32 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 32 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 33 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 33 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 33 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 34 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 34 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 34 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 35 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 35 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 35 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 36 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 36 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 36 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 37 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 37 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 37 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 38 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 38 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 38 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 39 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 39 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 39 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 40 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 40 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 40 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 41 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 41 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 41 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 42 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 42 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 42 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 43 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 43 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 43 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 44 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 44 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 44 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 45 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 45 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 45 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 46 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 46 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 46 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 47 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 47 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 47 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 48 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 48 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 48 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 49 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 49 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 49 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 50 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 50 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 50 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 51 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 51 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 51 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 52 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 52 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 52 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 53 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 53 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 53 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 54 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 54 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 54 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 55 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 55 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 55 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 56 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 56 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 56 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 57 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 57 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 57 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 58 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 58 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 58 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 59 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 59 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 59 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 60 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 60 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 60 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 61 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 61 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 61 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 62 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 62 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 62 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 63 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 63 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 63 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 64 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 64 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 64 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 65 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 65 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 65 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 66 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 66 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 66 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 67 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 67 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 67 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 68 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 68 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 68 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 69 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 69 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 69 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 70 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 70 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 70 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 71 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 71 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 71 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 72 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 72 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 72 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 73 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 73 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 73 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 74 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 74 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 74 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 75 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 75 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 75 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 76 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 76 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 76 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 77 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 77 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 77 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 78 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 78 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 78 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 79 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 79 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 79 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 80 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 80 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 80 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 81 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 81 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 81 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 82 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 82 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 82 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 83 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 83 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 83 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 84 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 84 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 84 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 85 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 85 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 85 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 86 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 86 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 86 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 87 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 87 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 87 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 88 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 88 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 88 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 89 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 89 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 89 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 90 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 90 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 90 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 91 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 91 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 91 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 92 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 92 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 92 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 93 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 93 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 93 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 94 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 94 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 94 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 95 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 95 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 95 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 96 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 96 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 96 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 97 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 97 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 97 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 98 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 98 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 98 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 99 some text to" | |
" be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 99 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 99 some te" | |
"xt translate" | |
"d">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 100 some text t" | |
"o be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 100 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 100 some t" | |
"ext translat" | |
"ed">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 101 some text t" | |
"o be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 101 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 101 some t" | |
"ext translat" | |
"ed">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 102 some text t" | |
"o be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 102 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 102 some t" | |
"ext translat" | |
"ed">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 103 some text t" | |
"o be translated">>, | |
_bindings@1) -> | |
case _bindings@1 of | |
#{some_placeholder := _@1} -> | |
{ok, | |
<<case _@1 of | |
_@2 when is_binary(_@2) -> | |
_@2; | |
_@2 -> | |
'Elixir.String.Chars':to_string(_@2) | |
end/binary, | |
" - ca another 103 some text translated">>}; | |
#{} -> | |
'Elixir.Gettext.Interpolation':interpolate([some_placeholder, | |
<<" - ca anothe" | |
"r 103 some t" | |
"ext translat" | |
"ed">>], | |
_bindings@1) | |
end; | |
ca_another_lgettext(nil, | |
<<"%{some_placeholder} - ca another 104 some text t" | |
"o be translated">>, | |
_bindings@1) -> | |