Aion
view release on metacpan or search on metacpan
i18n/Aion/Meta/Feature.ru-en.po view on Meta::CPAN
"The serial number of the feature in the class."
msgid "## required (;$bool)\n"
"Флаг обÑзаÑелÑноÑÑи ÑиÑи в конÑÑÑÑкÑоÑе (`new`)."
msgstr "## required (;$bool)\n"
"Flag for requiring a feature in the constructor (`new`)."
msgid "## excessive (;$bool)\n"
"Флаг избÑÑоÑноÑÑи ÑиÑи в конÑÑÑÑкÑоÑе (`new`). ÐÑли она Ñам еÑÑÑ Ð´Ð¾Ð»Ð¶Ð½Ð¾ вÑбÑаÑÑваÑÑÑÑ Ð¸ÑклÑÑение."
msgstr "## excessive (;$bool)\n"
"Feature redundancy flag in the constructor (`new`). If it is there, an exception should be thrown."
msgid "## isa (;Object[Aion::Type])\n"
"ÐгÑаниÑение Ñипа Ð´Ð»Ñ Ð·Ð½Ð°ÑÐµÐ½Ð¸Ñ ÑиÑи."
msgstr "## isa (;Object[Aion::Type])\n"
"Type constraint on feature value."
msgid "## lazy (;$bool)\n"
"Флаг ленивой иниÑиализаÑии."
msgstr "## lazy (;$bool)\n"
"Lazy initialization flag."
msgid "## builder (;$sub)\n"
"ÐÐ¸Ð»Ð´ÐµÑ Ð·Ð½Ð°ÑÐµÐ½Ð¸Ñ ÑиÑи или `undef`."
msgstr "## builder (;$sub)\n"
"Feature value builder or `undef`."
msgid "## default (;$value)\n"
"ÐнаÑение по ÑмолÑÐ°Ð½Ð¸Ñ Ð´Ð»Ñ ÑиÑи."
msgstr "## default (;$value)\n"
"Default value for the feature."
i18n/Aion/Types.ru-en.po view on Meta::CPAN
msgid "ÐпÑеделÑÐµÑ Ð·Ð½Ð°Ñение Ð´Ð»Ð¸Ð½Ñ Ð¾Ñ `from` до `to` или Ð¾Ñ 0 до `from`, еÑли `to` оÑÑÑÑÑÑвÑеÑ."
msgstr "Specifies a length value from `from` to `to`, or from 0 to `from` if `to` is missing."
msgid "Perl веÑÑии."
msgstr "Perl version."
msgid "СÑÑоки, вклÑÑÐ°Ñ ÑиÑла."
msgstr "Strings, including numbers."
msgid "СÑÑоки Unicode Ñ Ñлагом utf8 или еÑли декодиÑование в utf8 пÑоиÑÑ
Ð¾Ð´Ð¸Ñ Ð±ÐµÐ· оÑибок."
msgstr "Unicode strings with the utf8 flag or if decoding to utf8 occurs without errors."
msgid "ÐинаÑнÑе ÑÑÑоки без Ñлага utf8 и окÑеÑов Ñ Ð½Ð¾Ð¼ÐµÑами менÑÑе 128."
msgstr "Binary strings without the utf8 flag and octets with numbers less than 128."
msgid "СÑÑока наÑинаеÑÑÑ Ñ `begin`."
msgstr "The line starts with `begin`."
msgid "СÑÑока заканÑиваеÑÑÑ Ð½Ð° `end`."
msgstr "The line ends with `end`."
msgid "СÑÑока Ñ Ð¾Ð´Ð½Ð¸Ð¼ или неÑколÑкими Ñимволами, не ÑвлÑÑÑимиÑÑ Ð¿Ñобелами."
msgstr "A string containing one or more non-blank characters."
lib/Aion/Meta/Feature.pm view on Meta::CPAN
=head2 required (;$bool)
Flag for requiring a feature in the constructor (C<new>).
$::feature->required(1);
$::feature->required # -> 1
=head2 excessive (;$bool)
Feature redundancy flag in the constructor (C<new>). If it is there, an exception should be thrown.
$::feature->excessive(1);
$::feature->excessive # -> 1
=head2 isa (;Object[Aion::Type])
Type constraint on feature value.
use Aion::Type;
my $Int = Aion::Type->new(name => 'Int');
$::feature->isa($Int);
$::feature->isa # -> $Int
=head2 lazy (;$bool)
Lazy initialization flag.
$::feature->lazy(1);
$::feature->lazy # -> 1
=head2 builder (;$sub)
Feature value builder or C<undef>.
my $builder = sub {};
$::feature->builder($builder);
lib/Aion/Types.pm view on Meta::CPAN
=head2 Str
Strings, including numbers.
1.1 ~~ Str # -> 1
"" ~~ Str # -> 1
1.1.0 ~~ Str # -> ""
=head2 Uni
Unicode strings with the utf8 flag or if decoding to utf8 occurs without errors.
"â" ~~ Uni # -> 1
123 ~~ Uni # -> ""
do {no utf8; "â" ~~ Uni} # -> 1
=head2 Bin
Binary strings without the utf8 flag and octets with numbers less than 128.
123 ~~ Bin # -> 1
"z" ~~ Bin # -> 1
"â" ~~ Bin # -> ""
do {no utf8; "â" ~~ Bin } # -> ""
=head2 StartsWith[begin]
The line starts with C<begin>.
( run in 2.182 seconds using v1.01-cache-2.11-cpan-0bb4e1dffa6 )